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

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

151 lines 3.7 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/salary-calculator",
5 "version": "1.0.0",
6 "title": "Salary Calculator",
7 "category": "bkbg-calculators",
8 "icon": "money-alt",
9 "description": "Calculate take-home pay after federal/state taxes, Social Security, Medicare and retirement contributions.",
10 "keywords": [
11 "salary",
12 "paycheck",
13 "take-home",
14 "income",
15 "tax",
16 "net pay",
17 "calculator"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-salary-calculator-editor",
21 "style": "bkbg-salary-calculator-style",
22 "viewScript": "bkbg-salary-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": "Salary & Take-Home Pay Calculator"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Estimate your net pay after taxes and deductions"
40 },
41 "currency": {
42 "type": "string",
43 "default": "$"
44 },
45 "defaultIncome": {
46 "type": "number",
47 "default": 75000
48 },
49 "defaultPeriod": {
50 "type": "string",
51 "default": "annual"
52 },
53 "defaultFiling": {
54 "type": "string",
55 "default": "single"
56 },
57 "defaultStateTax": {
58 "type": "number",
59 "default": 5.0
60 },
61 "default401k": {
62 "type": "number",
63 "default": 6.0
64 },
65 "defaultOtherDed": {
66 "type": "number",
67 "default": 0
68 },
69 "showBreakdown": {
70 "type": "boolean",
71 "default": true
72 },
73 "showAllPeriods": {
74 "type": "boolean",
75 "default": true
76 },
77 "showEffectiveRate": {
78 "type": "boolean",
79 "default": true
80 },
81 "accentColor": {
82 "type": "string",
83 "default": "#0ea5e9"
84 },
85 "sectionBg": {
86 "type": "string",
87 "default": "#f0f9ff"
88 },
89 "cardBg": {
90 "type": "string",
91 "default": "#ffffff"
92 },
93 "inputBg": {
94 "type": "string",
95 "default": "#f9fafb"
96 },
97 "resultBg": {
98 "type": "string",
99 "default": "#e0f2fe"
100 },
101 "titleColor": {
102 "type": "string",
103 "default": "#0c4a6e"
104 },
105 "subtitleColor": {
106 "type": "string",
107 "default": "#6b7280"
108 },
109 "labelColor": {
110 "type": "string",
111 "default": "#374151"
112 },
113 "netColor": {
114 "type": "string",
115 "default": "#0ea5e9"
116 },
117 "taxColor": {
118 "type": "string",
119 "default": "#ef4444"
120 },
121 "dedColor": {
122 "type": "string",
123 "default": "#f59e0b"
124 },
125 "titleFontSize": {
126 "type": "integer",
127 "default": 26
128 },
129 "contentMaxWidth": {
130 "type": "integer",
131 "default": 720
132 },
133 "titleFontWeight": {
134 "type": "integer",
135 "default": 700
136 },
137 "titleLineHeight": {
138 "type": "number",
139 "default": 1.2
140 },
141 "titleTypo": {
142 "type": "object",
143 "default": {}
144 },
145 "subtitleTypo": {
146 "type": "object",
147 "default": {}
148 }
149 }
150 }
151