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

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

174 lines 4.1 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/roi-calculator",
5 "version": "1.0.0",
6 "title": "ROI Calculator",
7 "category": "bkbg-calculators",
8 "icon": "chart-line",
9 "description": "Calculate return on investment with net profit, ROI %, payback period, and annualized return.",
10 "keywords": [
11 "roi",
12 "return",
13 "investment",
14 "profit",
15 "calculator",
16 "business"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-roi-calculator-editor",
20 "style": "bkbg-roi-calculator-style",
21 "viewScript": "bkbg-roi-calculator-frontend",
22 "attributes": {
23 "title": {
24 "type": "string",
25 "default": "ROI Calculator"
26 },
27 "subtitle": {
28 "type": "string",
29 "default": "Calculate your return on investment instantly"
30 },
31 "showTitle": {
32 "type": "boolean",
33 "default": true
34 },
35 "showSubtitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "currency": {
40 "type": "string",
41 "default": "$"
42 },
43 "defaultInvestment": {
44 "type": "number",
45 "default": 10000
46 },
47 "defaultReturn": {
48 "type": "number",
49 "default": 15000
50 },
51 "defaultYears": {
52 "type": "number",
53 "default": 3
54 },
55 "showPayback": {
56 "type": "boolean",
57 "default": true
58 },
59 "showAnnualized": {
60 "type": "boolean",
61 "default": true
62 },
63 "showBreakdown": {
64 "type": "boolean",
65 "default": true
66 },
67 "accentColor": {
68 "type": "string",
69 "default": "#6c3fb5"
70 },
71 "cardBg": {
72 "type": "string",
73 "default": ""
74 },
75 "resultBg": {
76 "type": "string",
77 "default": "#6c3fb5"
78 },
79 "resultColor": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "positiveColor": {
84 "type": "string",
85 "default": "#10b981"
86 },
87 "negativeColor": {
88 "type": "string",
89 "default": "#ef4444"
90 },
91 "statBg": {
92 "type": "string",
93 "default": "#f3f4f6"
94 },
95 "statBorder": {
96 "type": "string",
97 "default": "#e5e7eb"
98 },
99 "statValueColor": {
100 "type": "string",
101 "default": "#111827"
102 },
103 "statLabelColor": {
104 "type": "string",
105 "default": "#6b7280"
106 },
107 "inputBorder": {
108 "type": "string",
109 "default": "#e5e7eb"
110 },
111 "labelColor": {
112 "type": "string",
113 "default": "#374151"
114 },
115 "titleColor": {
116 "type": "string",
117 "default": ""
118 },
119 "subtitleColor": {
120 "type": "string",
121 "default": ""
122 },
123 "sectionBg": {
124 "type": "string",
125 "default": ""
126 },
127 "titleSize": {
128 "type": "number",
129 "default": 28
130 },
131 "resultSize": {
132 "type": "number",
133 "default": 48
134 },
135 "cardRadius": {
136 "type": "number",
137 "default": 16
138 },
139 "inputRadius": {
140 "type": "number",
141 "default": 8
142 },
143 "maxWidth": {
144 "type": "number",
145 "default": 560
146 },
147 "paddingTop": {
148 "type": "number",
149 "default": 60
150 },
151 "paddingBottom": {
152 "type": "number",
153 "default": 60
154 },
155 "titleTypo": {
156 "type": "object",
157 "default": {}
158 },
159 "subtitleTypo": {
160 "type": "object",
161 "default": {}
162 }
163 },
164 "supports": {
165 "html": false,
166 "anchor": true,
167 "className": true,
168 "align": [
169 "wide",
170 "full"
171 ]
172 }
173 }
174