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 / expense-tracker / block.json

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

123 lines 3.0 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/expense-tracker",
5 "title": "Expense Tracker",
6 "category": "bkbg-interactive",
7 "icon": "chart-bar",
8 "description": "Track and visualize expenses by category with charts, totals, and budget management.",
9 "keywords": [
10 "expense",
11 "budget",
12 "finance",
13 "tracker",
14 "money",
15 "spending"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-expense-tracker-editor",
19 "style": "bkbg-expense-tracker-style",
20 "viewScript": "bkbg-expense-tracker-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Expense Tracker"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Track your spending by category"
38 },
39 "showTitle": {
40 "type": "boolean",
41 "default": true
42 },
43 "showSubtitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "showChart": {
48 "type": "boolean",
49 "default": true
50 },
51 "showBudget": {
52 "type": "boolean",
53 "default": true
54 },
55 "defaultBudget": {
56 "type": "number",
57 "default": 1000
58 },
59 "currency": {
60 "type": "string",
61 "default": "$"
62 },
63 "accentColor": {
64 "type": "string",
65 "default": "#10b981"
66 },
67 "dangerColor": {
68 "type": "string",
69 "default": "#ef4444"
70 },
71 "sectionBg": {
72 "type": "string",
73 "default": "#f0fdf4"
74 },
75 "cardBg": {
76 "type": "string",
77 "default": "#ffffff"
78 },
79 "titleColor": {
80 "type": "string",
81 "default": "#064e3b"
82 },
83 "subtitleColor": {
84 "type": "string",
85 "default": "#6b7280"
86 },
87 "labelColor": {
88 "type": "string",
89 "default": "#374151"
90 },
91 "borderColor": {
92 "type": "string",
93 "default": "#d1fae5"
94 },
95 "titleFontSize": {
96 "type": "number",
97 "default": 26
98 },
99 "titleFontWeight": {
100 "type": "string",
101 "default": "700"
102 },
103 "titleLineHeight": {
104 "type": "number",
105 "default": 1.2
106 },
107 "subtitleFontSize": {
108 "type": "number",
109 "default": 14
110 },
111 "subtitleFontWeight": {
112 "type": "string",
113 "default": "400"
114 },
115 "contentMaxWidth": {
116 "type": "number",
117 "default": 720
118 },
119 "typoTitle": { "type": "object", "default": {} },
120 "typoSubtitle": { "type": "object", "default": {} }
121 }
122 }
123