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

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

154 lines 2.5 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/size-guide",
4 "title": "Size Guide",
5 "category": "bkbg-marketing",
6 "icon": "editor-table",
7 "description": "Product or clothing sizing table with editable columns, rows, and optional highlight for recommended size.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-size-guide-editor",
10 "style": "bkbg-size-guide-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Size Guide"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "note": {
21 "type": "string",
22 "default": "Measurements are in centimetres. Model is 5'10\" wearing size M."
23 },
24 "showNote": {
25 "type": "boolean",
26 "default": true
27 },
28 "highlightCol": {
29 "type": "number",
30 "default": 2
31 },
32 "showHighlight": {
33 "type": "boolean",
34 "default": true
35 },
36 "highlightLabel": {
37 "type": "string",
38 "default": "Recommended"
39 },
40 "headerBg": {
41 "type": "string",
42 "default": "#111827"
43 },
44 "headerText": {
45 "type": "string",
46 "default": "#ffffff"
47 },
48 "highlightBg": {
49 "type": "string",
50 "default": "#eef2ff"
51 },
52 "highlightText": {
53 "type": "string",
54 "default": "#4338ca"
55 },
56 "rowAltBg": {
57 "type": "string",
58 "default": "#f9fafb"
59 },
60 "borderColor": {
61 "type": "string",
62 "default": "#e5e7eb"
63 },
64 "bgColor": {
65 "type": "string",
66 "default": "#ffffff"
67 },
68 "titleColor": {
69 "type": "string",
70 "default": "#111827"
71 },
72 "textColor": {
73 "type": "string",
74 "default": "#374151"
75 },
76 "fontSize": {
77 "type": "number",
78 "default": 14
79 },
80 "cellPadding": {
81 "type": "number",
82 "default": 12
83 },
84 "borderRadius": {
85 "type": "number",
86 "default": 10
87 },
88 "columns": {
89 "type": "array",
90 "default": [
91 "Size",
92 "XS",
93 "S",
94 "M",
95 "L",
96 "XL",
97 "XXL"
98 ]
99 },
100 "rows": {
101 "type": "array",
102 "default": [
103 [
104 "Chest (cm)",
105 "78–83",
106 "84–89",
107 "90–95",
108 "96–101",
109 "102–107",
110 "108–113"
111 ],
112 [
113 "Waist (cm)",
114 "62–67",
115 "68–73",
116 "74–79",
117 "80–85",
118 "86–91",
119 "92–97"
120 ],
121 [
122 "Hips (cm)",
123 "84–89",
124 "90–95",
125 "96–101",
126 "102–107",
127 "108–113",
128 "114–119"
129 ],
130 [
131 "Length (cm)",
132 "65",
133 "67",
134 "69",
135 "71",
136 "73",
137 "75"
138 ]
139 ]
140 },
141 "fontWeight": {
142 "type": "number",
143 "default": 700
144 },
145 "titleTypo": {
146 "type": "object",
147 "default": {}
148 },
149 "bodyTypo": {
150 "type": "object",
151 "default": {}
152 }
153 }
154 }