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

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

179 lines 4.4 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/discount-calculator",
5 "title": "Discount Calculator",
6 "category": "bkbg-calculators",
7 "icon": "tag",
8 "description": "Calculate sale prices from discount percentages, find original prices from sale prices, or determine what discount percentage was applied. Three versatile calculation modes.",
9 "keywords": [
10 "discount",
11 "sale",
12 "price",
13 "coupon",
14 "percentage",
15 "calculator",
16 "savings",
17 "deal"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-discount-calculator-editor",
21 "style": "bkbg-discount-calculator-style",
22 "viewScript": "bkbg-discount-calculator-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Discount Calculator"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Find sale prices, original prices, or what discount was applied."
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "mode": {
50 "type": "string",
51 "default": "sale_price"
52 },
53 "currency": {
54 "type": "string",
55 "default": "$"
56 },
57 "currencyPos": {
58 "type": "string",
59 "default": "before"
60 },
61 "defaultOriginal": {
62 "type": "number",
63 "default": 200
64 },
65 "defaultDiscount": {
66 "type": "number",
67 "default": 25
68 },
69 "defaultSale": {
70 "type": "number",
71 "default": 150
72 },
73 "showSavingsBar": {
74 "type": "boolean",
75 "default": true
76 },
77 "showBadge": {
78 "type": "boolean",
79 "default": true
80 },
81 "accentColor": {
82 "type": "string",
83 "default": "#6c3fb5"
84 },
85 "cardBg": {
86 "type": "string",
87 "default": "#ffffff"
88 },
89 "resultBg": {
90 "type": "string",
91 "default": "#f5f3ff"
92 },
93 "resultBorder": {
94 "type": "string",
95 "default": "#ede9fe"
96 },
97 "salePriceColor": {
98 "type": "string",
99 "default": "#6c3fb5"
100 },
101 "origPriceColor": {
102 "type": "string",
103 "default": "#9ca3af"
104 },
105 "savingsColor": {
106 "type": "string",
107 "default": "#10b981"
108 },
109 "badgeBg": {
110 "type": "string",
111 "default": "#ef4444"
112 },
113 "badgeColor": {
114 "type": "string",
115 "default": "#ffffff"
116 },
117 "barBg": {
118 "type": "string",
119 "default": "#e5e7eb"
120 },
121 "barFill": {
122 "type": "string",
123 "default": "#10b981"
124 },
125 "titleColor": {
126 "type": "string",
127 "default": "#1e1b4b"
128 },
129 "subtitleColor": {
130 "type": "string",
131 "default": "#6b7280"
132 },
133 "labelColor": {
134 "type": "string",
135 "default": "#374151"
136 },
137 "sectionBg": {
138 "type": "string",
139 "default": ""
140 },
141 "titleSize": {
142 "type": "number",
143 "default": 28
144 },
145 "salePriceSize": {
146 "type": "number",
147 "default": 56
148 },
149 "cardRadius": {
150 "type": "number",
151 "default": 16
152 },
153 "inputRadius": {
154 "type": "number",
155 "default": 8
156 },
157 "maxWidth": {
158 "type": "number",
159 "default": 520
160 },
161 "paddingTop": {
162 "type": "number",
163 "default": 60
164 },
165 "paddingBottom": {
166 "type": "number",
167 "default": 60
168 },
169 "typoTitle": {
170 "type": "object",
171 "default": {}
172 },
173 "typoSubtitle": {
174 "type": "object",
175 "default": {}
176 }
177 }
178 }
179