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

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

138 lines 3.5 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/electricity-cost-calculator",
5 "title": "Electricity Cost Calculator",
6 "category": "bkbg-calculators",
7 "icon": "lightbulb",
8 "description": "Calculate electricity costs for home appliances. Add appliances with wattage and daily usage, set your rate per kWh, and see daily, monthly and annual costs.",
9 "keywords": [
10 "electricity",
11 "energy",
12 "cost",
13 "power",
14 "kWh",
15 "appliance",
16 "bill",
17 "calculator",
18 "utility"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-electricity-cost-calculator-editor",
22 "style": "bkbg-electricity-cost-calculator-style",
23 "viewScript": "bkbg-electricity-cost-calculator-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "title": {
35 "type": "string",
36 "default": "Electricity Cost Calculator"
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "Estimate your monthly energy bill"
41 },
42 "showTitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "defaultRate": {
51 "type": "number",
52 "default": 0.12
53 },
54 "currency": {
55 "type": "string",
56 "default": "$"
57 },
58 "showPresets": {
59 "type": "boolean",
60 "default": true
61 },
62 "showCarbon": {
63 "type": "boolean",
64 "default": true
65 },
66 "showChart": {
67 "type": "boolean",
68 "default": true
69 },
70 "carbonFactor": {
71 "type": "number",
72 "default": 0.92
73 },
74 "accentColor": {
75 "type": "string",
76 "default": "#f59e0b"
77 },
78 "sectionBg": {
79 "type": "string",
80 "default": "#fffbeb"
81 },
82 "cardBg": {
83 "type": "string",
84 "default": "#ffffff"
85 },
86 "inputBg": {
87 "type": "string",
88 "default": "#fef9c3"
89 },
90 "lowCostColor": {
91 "type": "string",
92 "default": "#22c55e"
93 },
94 "highCostColor": {
95 "type": "string",
96 "default": "#ef4444"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#92400e"
101 },
102 "subtitleColor": {
103 "type": "string",
104 "default": "#6b7280"
105 },
106 "labelColor": {
107 "type": "string",
108 "default": "#374151"
109 },
110 "titleFontSize": {
111 "type": "number",
112 "default": 26
113 },
114 "titleFontWeight": {
115 "type": "string",
116 "default": "700"
117 },
118 "titleLineHeight": {
119 "type": "number",
120 "default": 1.2
121 },
122 "subtitleFontSize": {
123 "type": "number",
124 "default": 15
125 },
126 "subtitleFontWeight": {
127 "type": "string",
128 "default": "400"
129 },
130 "contentMaxWidth": {
131 "type": "number",
132 "default": 720
133 },
134 "typoTitle": { "type": "object", "default": {} },
135 "typoSubtitle": { "type": "object", "default": {} }
136 }
137 }
138