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

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/retirement-calculator/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/retirement-calculator",
5 "title": "Retirement Calculator",
6 "category": "bkbg-calculators",
7 "icon": "chart-line",
8 "description": "Project retirement savings based on current age, target retirement age, monthly contributions, and expected investment returns. Shows inflation-adjusted projections with a visual breakdown.",
9 "keywords": [
10 "retirement",
11 "savings",
12 "investment",
13 "pension",
14 "401k",
15 "ira",
16 "financial",
17 "calculator",
18 "projection"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-retirement-calculator-editor",
22 "style": "bkbg-retirement-calculator-style",
23 "viewScript": "bkbg-retirement-calculator-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "title": {
35 "type": "string",
36 "default": "Retirement Calculator"
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "See how your savings can grow over time."
41 },
42 "showTitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "currency": {
51 "type": "string",
52 "default": "$"
53 },
54 "currencyPos": {
55 "type": "string",
56 "default": "before"
57 },
58 "currentAge": {
59 "type": "number",
60 "default": 30
61 },
62 "retirementAge": {
63 "type": "number",
64 "default": 65
65 },
66 "currentSavings": {
67 "type": "number",
68 "default": 10000
69 },
70 "monthlyContrib": {
71 "type": "number",
72 "default": 500
73 },
74 "annualReturn": {
75 "type": "number",
76 "default": 7
77 },
78 "inflationRate": {
79 "type": "number",
80 "default": 2.5
81 },
82 "showInflation": {
83 "type": "boolean",
84 "default": true
85 },
86 "showBreakdown": {
87 "type": "boolean",
88 "default": true
89 },
90 "showProjection": {
91 "type": "boolean",
92 "default": true
93 },
94 "accentColor": {
95 "type": "string",
96 "default": "#6c3fb5"
97 },
98 "cardBg": {
99 "type": "string",
100 "default": "#ffffff"
101 },
102 "resultBg": {
103 "type": "string",
104 "default": "#f5f3ff"
105 },
106 "resultBorder": {
107 "type": "string",
108 "default": "#ede9fe"
109 },
110 "totalColor": {
111 "type": "string",
112 "default": "#6c3fb5"
113 },
114 "inflationColor": {
115 "type": "string",
116 "default": "#3b82f6"
117 },
118 "contribColor": {
119 "type": "string",
120 "default": "#10b981"
121 },
122 "growthColor": {
123 "type": "string",
124 "default": "#f59e0b"
125 },
126 "barTrackBg": {
127 "type": "string",
128 "default": "#e5e7eb"
129 },
130 "projBgA": {
131 "type": "string",
132 "default": "#f0fdf4"
133 },
134 "projBgB": {
135 "type": "string",
136 "default": "#eff6ff"
137 },
138 "titleColor": {
139 "type": "string",
140 "default": "#1e1b4b"
141 },
142 "subtitleColor": {
143 "type": "string",
144 "default": "#6b7280"
145 },
146 "labelColor": {
147 "type": "string",
148 "default": "#374151"
149 },
150 "sectionBg": {
151 "type": "string",
152 "default": ""
153 },
154 "titleSize": {
155 "type": "number",
156 "default": 28
157 },
158 "totalSize": {
159 "type": "number",
160 "default": 52
161 },
162 "cardRadius": {
163 "type": "number",
164 "default": 16
165 },
166 "inputRadius": {
167 "type": "number",
168 "default": 8
169 },
170 "maxWidth": {
171 "type": "number",
172 "default": 620
173 },
174 "paddingTop": {
175 "type": "number",
176 "default": 60
177 },
178 "paddingBottom": {
179 "type": "number",
180 "default": 60
181 },
182 "titleTypo": {
183 "type": "object",
184 "default": {}
185 },
186 "bodyTypo": {
187 "type": "object",
188 "default": {}
189 }
190 }
191 }
192