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

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

181 lines 3.2 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/net-worth-calculator",
5 "title": "Net Worth Calculator",
6 "category": "bkbg-calculators",
7 "icon": "chart-line",
8 "description": "Track assets and liabilities to calculate total net worth. Categorised inputs for cash, investments, real estate, vehicles, and various debt types.",
9 "keywords": [
10 "net worth",
11 "assets",
12 "liabilities",
13 "finance",
14 "wealth",
15 "calculator"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-net-worth-calculator-editor",
19 "style": "bkbg-net-worth-calculator-style",
20 "viewScript": "bkbg-net-worth-calculator-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Net Worth Calculator"
34 },
35 "showTitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "subtitle": {
40 "type": "string",
41 "default": "Add your assets and liabilities to calculate your net worth."
42 },
43 "showSubtitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "currency": {
48 "type": "string",
49 "default": "$"
50 },
51 "showChart": {
52 "type": "boolean",
53 "default": true
54 },
55 "showBreakdown": {
56 "type": "boolean",
57 "default": true
58 },
59 "accentColor": {
60 "type": "string",
61 "default": "#10b981"
62 },
63 "assetColor": {
64 "type": "string",
65 "default": "#10b981"
66 },
67 "liabilityColor": {
68 "type": "string",
69 "default": "#ef4444"
70 },
71 "netPositiveColor": {
72 "type": "string",
73 "default": "#10b981"
74 },
75 "netNegativeColor": {
76 "type": "string",
77 "default": "#ef4444"
78 },
79 "cashColor": {
80 "type": "string",
81 "default": "#0ea5e9"
82 },
83 "investColor": {
84 "type": "string",
85 "default": "#6c3fb5"
86 },
87 "realEstateColor": {
88 "type": "string",
89 "default": "#f59e0b"
90 },
91 "vehicleColor": {
92 "type": "string",
93 "default": "#ec4899"
94 },
95 "otherAssetColor": {
96 "type": "string",
97 "default": "#9ca3af"
98 },
99 "sectionBg": {
100 "type": "string",
101 "default": "#f0fdf4"
102 },
103 "cardBg": {
104 "type": "string",
105 "default": "#ffffff"
106 },
107 "panelBg": {
108 "type": "string",
109 "default": "#f9fafb"
110 },
111 "titleColor": {
112 "type": "string",
113 "default": "#111827"
114 },
115 "subtitleColor": {
116 "type": "string",
117 "default": "#6b7280"
118 },
119 "labelColor": {
120 "type": "string",
121 "default": "#374151"
122 },
123 "inputBg": {
124 "type": "string",
125 "default": "#ffffff"
126 },
127 "inputBorder": {
128 "type": "string",
129 "default": "#d1d5db"
130 },
131 "cardRadius": {
132 "type": "number",
133 "default": 16
134 },
135 "panelRadius": {
136 "type": "number",
137 "default": 12
138 },
139 "inputRadius": {
140 "type": "number",
141 "default": 8
142 },
143 "titleSize": {
144 "type": "number",
145 "default": 26
146 },
147 "maxWidth": {
148 "type": "number",
149 "default": 720
150 },
151 "paddingTop": {
152 "type": "number",
153 "default": 60
154 },
155 "paddingBottom": {
156 "type": "number",
157 "default": 60
158 },
159 "titleFontWeight": {
160 "type": "number",
161 "default": 700
162 },
163 "subtitleFontSize": {
164 "type": "number",
165 "default": 14
166 },
167 "lineHeight": {
168 "type": "number",
169 "default": 1.4
170 },
171 "titleTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "subtitleTypo": {
176 "type": "object",
177 "default": {}
178 }
179 }
180 }
181