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

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

171 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/compound-interest-calculator",
5 "version": "1.0.0",
6 "title": "Compound Interest Calculator",
7 "category": "bkbg-calculators",
8 "icon": "chart-line",
9 "description": "Calculate compound interest growth with configurable compounding frequency, monthly contributions, and a year-by-year breakdown.",
10 "keywords": [
11 "compound interest",
12 "investment",
13 "calculator",
14 "finance",
15 "growth"
16 ],
17 "supports": {
18 "html": false,
19 "align": [
20 "wide",
21 "full"
22 ]
23 },
24 "textdomain": "blockenberg",
25 "editorScript": "bkbg-compound-interest-calculator-editor",
26 "style": "bkbg-compound-interest-calculator-style",
27 "viewScript": "bkbg-compound-interest-calculator-frontend",
28 "attributes": {
29 "title": {
30 "type": "string",
31 "default": "Compound Interest Calculator"
32 },
33 "subtitle": {
34 "type": "string",
35 "default": "See how your money grows over time"
36 },
37 "showTitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "showSubtitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "currency": {
46 "type": "string",
47 "default": "$"
48 },
49 "defaultPrincipal": {
50 "type": "number",
51 "default": 10000
52 },
53 "defaultMonthly": {
54 "type": "number",
55 "default": 200
56 },
57 "defaultRate": {
58 "type": "number",
59 "default": 7
60 },
61 "defaultYears": {
62 "type": "number",
63 "default": 20
64 },
65 "defaultFrequency": {
66 "type": "string",
67 "default": "12"
68 },
69 "showTable": {
70 "type": "boolean",
71 "default": true
72 },
73 "tableRows": {
74 "type": "number",
75 "default": 10
76 },
77 "accentColor": {
78 "type": "string",
79 "default": "#6c3fb5"
80 },
81 "cardBg": {
82 "type": "string",
83 "default": ""
84 },
85 "resultBg": {
86 "type": "string",
87 "default": "#6c3fb5"
88 },
89 "resultColor": {
90 "type": "string",
91 "default": "#ffffff"
92 },
93 "principalColor": {
94 "type": "string",
95 "default": "#3b82f6"
96 },
97 "interestColor": {
98 "type": "string",
99 "default": "#10b981"
100 },
101 "tableBg": {
102 "type": "string",
103 "default": "#f9fafb"
104 },
105 "tableHeaderBg": {
106 "type": "string",
107 "default": "#f3f4f6"
108 },
109 "tableBorder": {
110 "type": "string",
111 "default": "#e5e7eb"
112 },
113 "labelColor": {
114 "type": "string",
115 "default": "#374151"
116 },
117 "inputBorder": {
118 "type": "string",
119 "default": "#e5e7eb"
120 },
121 "titleColor": {
122 "type": "string",
123 "default": ""
124 },
125 "subtitleColor": {
126 "type": "string",
127 "default": ""
128 },
129 "sectionBg": {
130 "type": "string",
131 "default": ""
132 },
133 "titleSize": {
134 "type": "number",
135 "default": 28
136 },
137 "resultSize": {
138 "type": "number",
139 "default": 48
140 },
141 "cardRadius": {
142 "type": "number",
143 "default": 16
144 },
145 "inputRadius": {
146 "type": "number",
147 "default": 8
148 },
149 "maxWidth": {
150 "type": "number",
151 "default": 580
152 },
153 "paddingTop": {
154 "type": "number",
155 "default": 60
156 },
157 "paddingBottom": {
158 "type": "number",
159 "default": 60
160 },
161 "typoTitle": {
162 "type": "object",
163 "default": {}
164 },
165 "typoResult": {
166 "type": "object",
167 "default": {}
168 }
169 }
170 }
171