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-links / block.json

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

168 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/social-links",
5 "title": "Social Links",
6 "category": "bkbg-marketing",
7 "icon": "share",
8 "description": "Social media icon links with brand colors, custom styles, and multiple layout options.",
9 "keywords": [
10 "social",
11 "links",
12 "icons",
13 "facebook",
14 "instagram",
15 "twitter",
16 "youtube",
17 "linkedin",
18 "share"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-social-links-editor",
22 "editorStyle": "bkbg-social-links-style",
23 "style": "bkbg-social-links-style",
24 "viewScript": "bkbg-social-links-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "links": {
36 "type": "array",
37 "default": [
38 {
39 "platform": "facebook",
40 "url": "https://facebook.com/yourpage",
41 "label": "Facebook",
42 "enabled": true
43 },
44 {
45 "platform": "instagram",
46 "url": "https://instagram.com/yourprofile",
47 "label": "Instagram",
48 "enabled": true
49 },
50 {
51 "platform": "twitter",
52 "url": "https://twitter.com/yourhandle",
53 "label": "Twitter/X",
54 "enabled": true
55 },
56 {
57 "platform": "youtube",
58 "url": "https://youtube.com/@yourchannel",
59 "label": "YouTube",
60 "enabled": true
61 },
62 {
63 "platform": "linkedin",
64 "url": "https://linkedin.com/in/you",
65 "label": "LinkedIn",
66 "enabled": false
67 }
68 ]
69 },
70 "layout": {
71 "type": "string",
72 "default": "horizontal"
73 },
74 "alignment": {
75 "type": "string",
76 "default": "left"
77 },
78 "iconStyle": {
79 "type": "string",
80 "default": "brand-solid"
81 },
82 "showLabel": {
83 "type": "boolean",
84 "default": false
85 },
86 "labelPosition": {
87 "type": "string",
88 "default": "right"
89 },
90 "openNewTab": {
91 "type": "boolean",
92 "default": true
93 },
94 "iconSize": {
95 "type": "number",
96 "default": 20
97 },
98 "buttonSize": {
99 "type": "number",
100 "default": 44
101 },
102 "gap": {
103 "type": "number",
104 "default": 10
105 },
106 "borderRadius": {
107 "type": "number",
108 "default": 8
109 },
110 "borderWidth": {
111 "type": "number",
112 "default": 2
113 },
114 "hoverEffect": {
115 "type": "string",
116 "default": "lift"
117 },
118 "customIconColor": {
119 "type": "string",
120 "default": "#ffffff"
121 },
122 "customBgColor": {
123 "type": "string",
124 "default": "#2563eb"
125 },
126 "customHoverIconColor": {
127 "type": "string",
128 "default": "#ffffff"
129 },
130 "customHoverBgColor": {
131 "type": "string",
132 "default": "#1d4ed8"
133 },
134 "labelFontSize": {
135 "type": "number",
136 "default": 14
137 },
138 "labelFontWeight": {
139 "type": "string",
140 "default": "500"
141 },
142 "labelLineHeight": {
143 "type": "number",
144 "default": 1.4
145 },
146 "labelTypo": {
147 "type": "object",
148 "default": {}
149 },
150 "labelColor": {
151 "type": "string",
152 "default": "#334155"
153 },
154 "labelColorHover": {
155 "type": "string",
156 "default": "#0f172a"
157 },
158 "wrapperPaddingTop": {
159 "type": "number",
160 "default": 0
161 },
162 "wrapperPaddingBottom": {
163 "type": "number",
164 "default": 0
165 }
166 }
167 }
168