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

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

192 lines 4.7 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/currency-converter",
5 "title": "Currency Converter",
6 "category": "bkbg-calculators",
7 "icon": "money-alt",
8 "description": "Interactive currency converter supporting 30+ world currencies with instant conversion, swap button, common pairs quick-select, and customizable styling. Uses built-in indicative rates.",
9 "keywords": [
10 "currency",
11 "converter",
12 "exchange",
13 "rate",
14 "money",
15 "forex",
16 "calculator",
17 "finance"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-currency-converter-editor",
21 "style": "bkbg-currency-converter-style",
22 "viewScript": "bkbg-currency-converter-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Currency Converter"
36 },
37 "showTitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "subtitle": {
42 "type": "string",
43 "default": "Convert between major world currencies instantly."
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "defaultFrom": {
50 "type": "string",
51 "default": "USD"
52 },
53 "defaultTo": {
54 "type": "string",
55 "default": "EUR"
56 },
57 "defaultAmount": {
58 "type": "number",
59 "default": 100
60 },
61 "showSwapBtn": {
62 "type": "boolean",
63 "default": true
64 },
65 "showQuickPairs": {
66 "type": "boolean",
67 "default": true
68 },
69 "quickPairs": {
70 "type": "array",
71 "default": [
72 [
73 "USD",
74 "EUR"
75 ],
76 [
77 "USD",
78 "GBP"
79 ],
80 [
81 "USD",
82 "JPY"
83 ],
84 [
85 "EUR",
86 "GBP"
87 ],
88 [
89 "USD",
90 "CAD"
91 ],
92 [
93 "USD",
94 "AUD"
95 ]
96 ]
97 },
98 "showDisclaimer": {
99 "type": "boolean",
100 "default": true
101 },
102 "disclaimer": {
103 "type": "string",
104 "default": "Rates are indicative and updated periodically. Not for financial use."
105 },
106 "accentColor": {
107 "type": "string",
108 "default": "#6c3fb5"
109 },
110 "cardBg": {
111 "type": "string",
112 "default": "#ffffff"
113 },
114 "resultBg": {
115 "type": "string",
116 "default": "#f5f3ff"
117 },
118 "resultBorder": {
119 "type": "string",
120 "default": "#ede9fe"
121 },
122 "resultColor": {
123 "type": "string",
124 "default": "#6c3fb5"
125 },
126 "titleColor": {
127 "type": "string",
128 "default": "#1e1b4b"
129 },
130 "subtitleColor": {
131 "type": "string",
132 "default": "#6b7280"
133 },
134 "labelColor": {
135 "type": "string",
136 "default": "#374151"
137 },
138 "quickPairBg": {
139 "type": "string",
140 "default": "#f3f4f6"
141 },
142 "quickPairColor": {
143 "type": "string",
144 "default": "#374151"
145 },
146 "bgColor": {
147 "type": "string",
148 "default": ""
149 },
150 "titleSize": {
151 "type": "number",
152 "default": 26
153 },
154 "resultSize": {
155 "type": "number",
156 "default": 40
157 },
158 "labelFontSize": {
159 "type": "number",
160 "default": 12
161 },
162 "cardRadius": {
163 "type": "number",
164 "default": 16
165 },
166 "btnRadius": {
167 "type": "number",
168 "default": 8
169 },
170 "maxWidth": {
171 "type": "number",
172 "default": 580
173 },
174 "paddingTop": {
175 "type": "number",
176 "default": 60
177 },
178 "paddingBottom": {
179 "type": "number",
180 "default": 60
181 },
182 "typoTitle": {
183 "type": "object",
184 "default": {}
185 },
186 "typoResult": {
187 "type": "object",
188 "default": {}
189 }
190 }
191 }
192