PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / social-share / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/social-share/block.json

94 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/social-share",
4 "title": "Social Share",
5 "category": "bkbg-blog",
6 "description": "Social sharing buttons for any page or post.",
7 "keywords": [
8 "share",
9 "social",
10 "twitter",
11 "facebook"
12 ],
13 "textdomain": "blockenberg",
14 "editorScript": "bkbg-social-share-editor",
15 "editorStyle": "bkbg-social-share-style",
16 "style": "bkbg-social-share-style",
17 "viewScript": "bkbg-social-share-frontend",
18 "supports": {
19 "html": false,
20 "anchor": true,
21 "className": true,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "networks": {
29 "type": "array",
30 "default": [
31 "twitter",
32 "facebook",
33 "linkedin"
34 ]
35 },
36 "style": {
37 "type": "string",
38 "default": "icon-text"
39 },
40 "size": {
41 "type": "number",
42 "default": 38
43 },
44 "gap": {
45 "type": "number",
46 "default": 8
47 },
48 "iconRadius": {
49 "type": "number",
50 "default": 8
51 },
52 "alignment": {
53 "type": "string",
54 "default": "left"
55 },
56 "useBrandColors": {
57 "type": "boolean",
58 "default": true
59 },
60 "bgColor": {
61 "type": "string",
62 "default": "#1d4ed8"
63 },
64 "iconColor": {
65 "type": "string",
66 "default": "#ffffff"
67 },
68 "labelColor": {
69 "type": "string",
70 "default": "#ffffff"
71 },
72 "fontSize": {
73 "type": "number",
74 "default": 13
75 },
76 "fontWeight": {
77 "type": "number",
78 "default": 600
79 },
80 "label": {
81 "type": "string",
82 "default": "Share:"
83 },
84 "showLabel": {
85 "type": "boolean",
86 "default": false
87 },
88 "labelTypo": {
89 "type": "object",
90 "default": {}
91 }
92 }
93 }
94