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

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

150 lines 3.8 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/percentage-calculator",
5 "title": "Percentage Calculator",
6 "category": "bkbg-calculators",
7 "icon": "editor-help",
8 "description": "An interactive percentage calculator with three modes: find percentage of a number, find what percentage one number is of another, and calculate percentage change between two values.",
9 "keywords": [
10 "percentage",
11 "percent",
12 "calculator",
13 "math",
14 "increase",
15 "decrease",
16 "change",
17 "ratio"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-percentage-calculator-editor",
21 "style": "bkbg-percentage-calculator-style",
22 "viewScript": "bkbg-percentage-calculator-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": "Percentage Calculator"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Three tools in one \u2014 solve any percentage problem instantly"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "mode1Label": {
50 "type": "string",
51 "default": "% of Number"
52 },
53 "mode2Label": {
54 "type": "string",
55 "default": "Find %"
56 },
57 "mode3Label": {
58 "type": "string",
59 "default": "% Change"
60 },
61 "accentColor": {
62 "type": "string",
63 "default": "#6c3fb5"
64 },
65 "cardBg": {
66 "type": "string",
67 "default": "#ffffff"
68 },
69 "tabActiveBg": {
70 "type": "string",
71 "default": "#6c3fb5"
72 },
73 "tabActiveColor": {
74 "type": "string",
75 "default": "#ffffff"
76 },
77 "tabInactiveBg": {
78 "type": "string",
79 "default": "#f3f4f6"
80 },
81 "tabInactiveColor": {
82 "type": "string",
83 "default": "#374151"
84 },
85 "resultBg": {
86 "type": "string",
87 "default": "#f5f3ff"
88 },
89 "resultBorder": {
90 "type": "string",
91 "default": "#ede9fe"
92 },
93 "resultColor": {
94 "type": "string",
95 "default": "#6c3fb5"
96 },
97 "titleColor": {
98 "type": "string",
99 "default": "#1e1b4b"
100 },
101 "subtitleColor": {
102 "type": "string",
103 "default": "#6b7280"
104 },
105 "labelColor": {
106 "type": "string",
107 "default": "#374151"
108 },
109 "bgColor": {
110 "type": "string",
111 "default": ""
112 },
113 "cardRadius": {
114 "type": "number",
115 "default": 16
116 },
117 "tabRadius": {
118 "type": "number",
119 "default": 99
120 },
121 "inputRadius": {
122 "type": "number",
123 "default": 8
124 },
125 "maxWidth": {
126 "type": "number",
127 "default": 600
128 },
129 "paddingTop": {
130 "type": "number",
131 "default": 60
132 },
133 "paddingBottom": {
134 "type": "number",
135 "default": 60
136 },
137 "titleTypo": {
138 "type": "object",
139 "default": {}
140 },
141 "subtitleTypo": {
142 "type": "object",
143 "default": {}
144 },
145 "resultTypo": {
146 "type": "object",
147 "default": {}
148 }
149 }
150 }