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

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

170 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/split-bill-calculator",
4 "title": "Split Bill Calculator",
5 "description": "Calculate how much each person owes when splitting a bill with tip among a group.",
6 "category": "bkbg-calculators",
7 "icon": "groups",
8 "keywords": [
9 "split",
10 "bill",
11 "tip",
12 "group",
13 "calculator",
14 "dutch",
15 "share"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-split-bill-calculator-editor",
19 "style": "bkbg-split-bill-calculator-style",
20 "viewScript": "bkbg-split-bill-calculator-frontend",
21 "attributes": {
22 "title": {
23 "type": "string",
24 "default": "Split Bill Calculator"
25 },
26 "subtitle": {
27 "type": "string",
28 "default": "Quickly calculate how much everyone owes."
29 },
30 "showTitle": {
31 "type": "boolean",
32 "default": true
33 },
34 "showSubtitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "currencySymbol": {
39 "type": "string",
40 "default": "$"
41 },
42 "defaultBill": {
43 "type": "number",
44 "default": 100
45 },
46 "defaultTip": {
47 "type": "number",
48 "default": 15
49 },
50 "defaultPeople": {
51 "type": "number",
52 "default": 4
53 },
54 "showTipPresets": {
55 "type": "boolean",
56 "default": true
57 },
58 "tipPresets": {
59 "type": "string",
60 "default": "10,15,20,25"
61 },
62 "showBreakdown": {
63 "type": "boolean",
64 "default": true
65 },
66 "roundUp": {
67 "type": "boolean",
68 "default": false
69 },
70 "accentColor": {
71 "type": "string",
72 "default": "#6c3fb5"
73 },
74 "cardBg": {
75 "type": "string",
76 "default": "#ffffff"
77 },
78 "resultBg": {
79 "type": "string",
80 "default": "#6c3fb5"
81 },
82 "resultColor": {
83 "type": "string",
84 "default": "#ffffff"
85 },
86 "presetBg": {
87 "type": "string",
88 "default": "#f3f4f6"
89 },
90 "presetColor": {
91 "type": "string",
92 "default": "#374151"
93 },
94 "presetActiveBg": {
95 "type": "string",
96 "default": "#6c3fb5"
97 },
98 "presetActiveColor": {
99 "type": "string",
100 "default": "#ffffff"
101 },
102 "breakdownBg": {
103 "type": "string",
104 "default": "#f5f3ff"
105 },
106 "breakdownBorder": {
107 "type": "string",
108 "default": "#ede9fe"
109 },
110 "labelColor": {
111 "type": "string",
112 "default": "#374151"
113 },
114 "inputBorder": {
115 "type": "string",
116 "default": "#e5e7eb"
117 },
118 "titleColor": {
119 "type": "string",
120 "default": "#1f2937"
121 },
122 "subtitleColor": {
123 "type": "string",
124 "default": "#6b7280"
125 },
126 "sectionBg": {
127 "type": "string",
128 "default": ""
129 },
130 "titleTypo": {
131 "type": "object",
132 "default": {}
133 },
134 "subtitleTypo": {
135 "type": "object",
136 "default": {}
137 },
138 "resultTypo": {
139 "type": "object",
140 "default": {}
141 },
142 "cardRadius": {
143 "type": "number",
144 "default": 16
145 },
146 "inputRadius": {
147 "type": "number",
148 "default": 8
149 },
150 "maxWidth": {
151 "type": "number",
152 "default": 500
153 },
154 "paddingTop": {
155 "type": "number",
156 "default": 60
157 },
158 "paddingBottom": {
159 "type": "number",
160 "default": 60
161 }
162 },
163 "supports": {
164 "html": false,
165 "align": [
166 "wide",
167 "full"
168 ]
169 }
170 }