PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / checklist / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/checklist/block.json

177 lines 4.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/checklist",
5 "title": "Interactive Checklist",
6 "category": "bkbg-content",
7 "icon": "list-view",
8 "description": "A fully interactive checklist with progress tracking, emoji icons, add/remove items, and optional persistence via localStorage. Rich color and layout controls.",
9 "keywords": [
10 "checklist",
11 "todo",
12 "tasks",
13 "list",
14 "interactive",
15 "progress",
16 "check"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-checklist-editor",
20 "style": "bkbg-checklist-style",
21 "viewScript": "bkbg-checklist-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Checklist"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Check off items as you go"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "showProgress": {
49 "type": "boolean",
50 "default": true
51 },
52 "showAddItem": {
53 "type": "boolean",
54 "default": true
55 },
56 "allowDelete": {
57 "type": "boolean",
58 "default": true
59 },
60 "rememberState": {
61 "type": "boolean",
62 "default": true
63 },
64 "checkStyle": {
65 "type": "string",
66 "default": "circle"
67 },
68 "items": {
69 "type": "array",
70 "default": [
71 {
72 "id": "1",
73 "text": "Read the documentation",
74 "done": false,
75 "icon": "📄"
76 },
77 {
78 "id": "2",
79 "text": "Install the plugin",
80 "done": false,
81 "icon": "🔌"
82 },
83 {
84 "id": "3",
85 "text": "Configure block settings",
86 "done": false,
87 "icon": "⚙️"
88 },
89 {
90 "id": "4",
91 "text": "Publish your first post",
92 "done": false,
93 "icon": "🚀"
94 },
95 {
96 "id": "5",
97 "text": "Share with your audience",
98 "done": false,
99 "icon": "📢"
100 }
101 ]
102 },
103 "accentColor": {
104 "type": "string",
105 "default": "#10b981"
106 },
107 "checkColor": {
108 "type": "string",
109 "default": "#ffffff"
110 },
111 "doneTextColor": {
112 "type": "string",
113 "default": "#9ca3af"
114 },
115 "progressBg": {
116 "type": "string",
117 "default": "#d1fae5"
118 },
119 "sectionBg": {
120 "type": "string",
121 "default": "#f0fdf4"
122 },
123 "cardBg": {
124 "type": "string",
125 "default": "#ffffff"
126 },
127 "itemBg": {
128 "type": "string",
129 "default": "#f9fafb"
130 },
131 "titleColor": {
132 "type": "string",
133 "default": "#111827"
134 },
135 "subtitleColor": {
136 "type": "string",
137 "default": "#6b7280"
138 },
139 "labelColor": {
140 "type": "string",
141 "default": "#374151"
142 },
143 "titleFontSize": {
144 "type": "number",
145 "default": 26
146 },
147 "contentMaxWidth": {
148 "type": "number",
149 "default": 600
150 },
151 "titleFontWeight": {
152 "type": "string",
153 "default": "700"
154 },
155 "titleLineHeight": {
156 "type": "number",
157 "default": 1.3
158 },
159 "itemFontSize": {
160 "type": "number",
161 "default": 14
162 },
163 "itemFontWeight": {
164 "type": "string",
165 "default": "400"
166 },
167 "typoTitle": {
168 "type": "object",
169 "default": {}
170 },
171 "typoItem": {
172 "type": "object",
173 "default": {}
174 }
175 }
176 }
177