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 / number-base-converter / block.json

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

176 lines 4.2 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/number-base-converter",
5 "version": "1.0.0",
6 "title": "Number Base Converter",
7 "category": "bkbg-calculators",
8 "icon": "calculator",
9 "description": "Convert numbers between binary, octal, decimal, and hexadecimal with live cross-conversion.",
10 "keywords": [
11 "number",
12 "base",
13 "binary",
14 "hex",
15 "octal",
16 "decimal",
17 "converter",
18 "calculator"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-number-base-converter-editor",
22 "style": "bkbg-number-base-converter-style",
23 "viewScript": "bkbg-number-base-converter-frontend",
24 "attributes": {
25 "defaultValue": {
26 "type": "string",
27 "default": "255"
28 },
29 "showBinary": {
30 "type": "boolean",
31 "default": true
32 },
33 "showOctal": {
34 "type": "boolean",
35 "default": true
36 },
37 "showDecimal": {
38 "type": "boolean",
39 "default": true
40 },
41 "showHex": {
42 "type": "boolean",
43 "default": true
44 },
45 "showBitLength": {
46 "type": "boolean",
47 "default": true
48 },
49 "showCopyButtons": {
50 "type": "boolean",
51 "default": true
52 },
53 "title": {
54 "type": "string",
55 "default": "Number Base Converter"
56 },
57 "subtitle": {
58 "type": "string",
59 "default": "Convert between binary, octal, decimal and hexadecimal instantly"
60 },
61 "showTitle": {
62 "type": "boolean",
63 "default": true
64 },
65 "showSubtitle": {
66 "type": "boolean",
67 "default": true
68 },
69 "binaryColor": {
70 "type": "string",
71 "default": "#3b82f6"
72 },
73 "octalColor": {
74 "type": "string",
75 "default": "#f59e0b"
76 },
77 "decimalColor": {
78 "type": "string",
79 "default": "#6c3fb5"
80 },
81 "hexColor": {
82 "type": "string",
83 "default": "#10b981"
84 },
85 "cardBg": {
86 "type": "string",
87 "default": "#ffffff"
88 },
89 "rowBg": {
90 "type": "string",
91 "default": "#f3f4f6"
92 },
93 "rowBorder": {
94 "type": "string",
95 "default": "#e5e7eb"
96 },
97 "inputBorder": {
98 "type": "string",
99 "default": "#e5e7eb"
100 },
101 "labelColor": {
102 "type": "string",
103 "default": "#374151"
104 },
105 "valueFontSize": {
106 "type": "integer",
107 "default": 18
108 },
109 "titleColor": {
110 "type": "string",
111 "default": ""
112 },
113 "subtitleColor": {
114 "type": "string",
115 "default": ""
116 },
117 "sectionBg": {
118 "type": "string",
119 "default": ""
120 },
121 "titleSize": {
122 "type": "integer",
123 "default": 28
124 },
125 "titleFontWeight": {
126 "type": "integer",
127 "default": 700
128 },
129 "subtitleSize": {
130 "type": "integer",
131 "default": 14
132 },
133 "lineHeight": {
134 "type": "number",
135 "default": 1.4
136 },
137 "titleTypo": {
138 "type": "object",
139 "default": {}
140 },
141 "subtitleTypo": {
142 "type": "object",
143 "default": {}
144 },
145 "cardRadius": {
146 "type": "integer",
147 "default": 16
148 },
149 "inputRadius": {
150 "type": "integer",
151 "default": 8
152 },
153 "maxWidth": {
154 "type": "integer",
155 "default": 560
156 },
157 "paddingTop": {
158 "type": "integer",
159 "default": 60
160 },
161 "paddingBottom": {
162 "type": "integer",
163 "default": 60
164 }
165 },
166 "supports": {
167 "html": false,
168 "anchor": true,
169 "className": true,
170 "align": [
171 "wide",
172 "full"
173 ]
174 }
175 }
176