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

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

175 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/break-even-calculator",
5 "version": "1.0.0",
6 "title": "Break-Even Calculator",
7 "category": "bkbg-calculators",
8 "icon": "chart-bar",
9 "description": "Calculate break-even point, profit zone, and contribution margin for business analysis.",
10 "keywords": [
11 "break even",
12 "breakeven",
13 "profit",
14 "business",
15 "calculator",
16 "fixed costs",
17 "variable costs"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-break-even-calculator-editor",
21 "style": "bkbg-break-even-calculator-style",
22 "viewScript": "bkbg-break-even-calculator-frontend",
23 "attributes": {
24 "title": {
25 "type": "string",
26 "default": "Break-Even Calculator"
27 },
28 "subtitle": {
29 "type": "string",
30 "default": "Find the exact point where revenue covers all costs"
31 },
32 "showTitle": {
33 "type": "boolean",
34 "default": true
35 },
36 "showSubtitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "currency": {
41 "type": "string",
42 "default": "$"
43 },
44 "defaultFixedCosts": {
45 "type": "number",
46 "default": 10000
47 },
48 "defaultPricePerUnit": {
49 "type": "number",
50 "default": 50
51 },
52 "defaultVarCostUnit": {
53 "type": "number",
54 "default": 20
55 },
56 "defaultUnitsToSell": {
57 "type": "number",
58 "default": 500
59 },
60 "showContribution": {
61 "type": "boolean",
62 "default": true
63 },
64 "showProfitZone": {
65 "type": "boolean",
66 "default": true
67 },
68 "showMarginRatio": {
69 "type": "boolean",
70 "default": true
71 },
72 "accentColor": {
73 "type": "string",
74 "default": "#6c3fb5"
75 },
76 "cardBg": {
77 "type": "string",
78 "default": ""
79 },
80 "resultBg": {
81 "type": "string",
82 "default": "#6c3fb5"
83 },
84 "resultColor": {
85 "type": "string",
86 "default": "#ffffff"
87 },
88 "profitColor": {
89 "type": "string",
90 "default": "#10b981"
91 },
92 "lossColor": {
93 "type": "string",
94 "default": "#ef4444"
95 },
96 "barBg": {
97 "type": "string",
98 "default": "#e5e7eb"
99 },
100 "statBg": {
101 "type": "string",
102 "default": "#f3f4f6"
103 },
104 "statBorder": {
105 "type": "string",
106 "default": "#e5e7eb"
107 },
108 "inputBorder": {
109 "type": "string",
110 "default": "#e5e7eb"
111 },
112 "labelColor": {
113 "type": "string",
114 "default": "#374151"
115 },
116 "titleColor": {
117 "type": "string",
118 "default": ""
119 },
120 "subtitleColor": {
121 "type": "string",
122 "default": ""
123 },
124 "sectionBg": {
125 "type": "string",
126 "default": ""
127 },
128 "titleSize": {
129 "type": "number",
130 "default": 28
131 },
132 "resultSize": {
133 "type": "number",
134 "default": 46
135 },
136 "cardRadius": {
137 "type": "number",
138 "default": 16
139 },
140 "inputRadius": {
141 "type": "number",
142 "default": 8
143 },
144 "maxWidth": {
145 "type": "number",
146 "default": 580
147 },
148 "paddingTop": {
149 "type": "number",
150 "default": 60
151 },
152 "paddingBottom": {
153 "type": "number",
154 "default": 60
155 },
156 "typoTitle": {
157 "type": "object",
158 "default": {}
159 },
160 "typoSubtitle": {
161 "type": "object",
162 "default": {}
163 }
164 },
165 "supports": {
166 "html": false,
167 "anchor": true,
168 "className": true,
169 "align": [
170 "wide",
171 "full"
172 ]
173 }
174 }
175