PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / icon / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/icon/block.json

161 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/icon",
5 "title": "Icon",
6 "description": "Standalone styled icon with label, link, shape, animation, and rich customization.",
7 "category": "bkbg-content",
8 "icon": "star-filled",
9 "keywords": [
10 "icon",
11 "symbol",
12 "emoji",
13 "badge",
14 "feature"
15 ],
16 "supports": {
17 "html": false,
18 "align": [
19 "wide",
20 "full"
21 ]
22 },
23 "attributes": {
24 "icon": {
25 "type": "string",
26 "default": ""
27 },
28 "iconPreset": {
29 "type": "string",
30 "default": "custom"
31 },
32 "shape": {
33 "type": "string",
34 "default": "circle"
35 },
36 "iconSize": {
37 "type": "number",
38 "default": 48
39 },
40 "bgSize": {
41 "type": "number",
42 "default": 96
43 },
44 "showBg": {
45 "type": "boolean",
46 "default": true
47 },
48 "borderWidth": {
49 "type": "number",
50 "default": 0
51 },
52 "borderRadius": {
53 "type": "number",
54 "default": 50
55 },
56 "shadow": {
57 "type": "boolean",
58 "default": false
59 },
60 "animation": {
61 "type": "string",
62 "default": "none"
63 },
64 "align": {
65 "type": "string",
66 "default": "center"
67 },
68 "label": {
69 "type": "string",
70 "default": ""
71 },
72 "showLabel": {
73 "type": "boolean",
74 "default": false
75 },
76 "subLabel": {
77 "type": "string",
78 "default": ""
79 },
80 "showSubLabel": {
81 "type": "boolean",
82 "default": false
83 },
84 "linkUrl": {
85 "type": "string",
86 "default": ""
87 },
88 "linkNewTab": {
89 "type": "boolean",
90 "default": false
91 },
92 "containerBg": {
93 "type": "string",
94 "default": ""
95 },
96 "bgColor": {
97 "type": "string",
98 "default": "#6366f1"
99 },
100 "iconColor": {
101 "type": "string",
102 "default": "#ffffff"
103 },
104 "labelColor": {
105 "type": "string",
106 "default": "#111827"
107 },
108 "subLabelColor": {
109 "type": "string",
110 "default": "#6b7280"
111 },
112 "borderColor": {
113 "type": "string",
114 "default": "#6366f1"
115 },
116 "containerPadding": {
117 "type": "number",
118 "default": 16
119 },
120 "gap": {
121 "type": "number",
122 "default": 10
123 },
124 "labelSize": {
125 "type": "number",
126 "default": 16
127 },
128 "labelFontWeight": {
129 "type": "string",
130 "default": "600"
131 },
132 "labelLineHeight": {
133 "type": "number",
134 "default": 1.3
135 },
136 "subLabelSize": {
137 "type": "number",
138 "default": 13
139 },
140 "subLabelFontWeight": {
141 "type": "string",
142 "default": "400"
143 },
144 "subLabelLineHeight": {
145 "type": "number",
146 "default": 1.4
147 },
148 "labelTypo": {
149 "type": "object",
150 "default": {}
151 },
152 "subLabelTypo": {
153 "type": "object",
154 "default": {}
155 }
156 },
157 "editorScript": "bkbg-icon-editor",
158 "style": "bkbg-icon-style",
159 "viewScript": "bkbg-icon-frontend"
160 }
161