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 / tldr-box / block.json

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

154 lines 3.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/tldr-box",
5 "version": "1.0.0",
6 "title": "TL;DR Box",
7 "category": "bkbg-blog",
8 "description": "Article TL;DR / executive summary box with optional bullet points and read-time indicator.",
9 "keywords": [
10 "tldr",
11 "summary",
12 "abstract",
13 "overview",
14 "short"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-tldr-box-editor",
18 "style": "bkbg-tldr-box-style",
19 "viewScript": "bkbg-tldr-box-frontend",
20 "supports": {
21 "html": false,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "headingIcon": {
29 "type": "string",
30 "default": ""
31 },
32 "iconType": {
33 "type": "string",
34 "default": "custom-char"
35 },
36 "iconDashicon": {
37 "type": "string",
38 "default": "lightbulb"
39 },
40 "iconImageUrl": {
41 "type": "string",
42 "default": ""
43 },
44 "heading": {
45 "type": "string",
46 "default": "TL;DR"
47 },
48 "showIcon": {
49 "type": "boolean",
50 "default": true
51 },
52 "summary": {
53 "type": "string",
54 "default": ""
55 },
56 "points": {
57 "type": "array",
58 "items": {
59 "type": "object",
60 "properties": {
61 "text": {
62 "type": "string"
63 }
64 }
65 },
66 "default": [
67 {
68 "text": ""
69 }
70 ]
71 },
72 "showPoints": {
73 "type": "boolean",
74 "default": true
75 },
76 "readTime": {
77 "type": "string",
78 "default": ""
79 },
80 "showReadTime": {
81 "type": "boolean",
82 "default": false
83 },
84 "expandable": {
85 "type": "boolean",
86 "default": false
87 },
88 "expandLabel": {
89 "type": "string",
90 "default": "Show less"
91 },
92 "collapseLabel": {
93 "type": "string",
94 "default": "Read full article"
95 },
96 "style": {
97 "type": "string",
98 "default": "highlight"
99 },
100 "bgColor": {
101 "type": "string",
102 "default": "#fef9c3"
103 },
104 "borderColor": {
105 "type": "string",
106 "default": "#fde047"
107 },
108 "accentColor": {
109 "type": "string",
110 "default": "#ca8a04"
111 },
112 "headingColor": {
113 "type": "string",
114 "default": "#713f12"
115 },
116 "summaryColor": {
117 "type": "string",
118 "default": "#1c1917"
119 },
120 "pointColor": {
121 "type": "string",
122 "default": "#292524"
123 },
124 "metaColor": {
125 "type": "string",
126 "default": "#a8a29e"
127 },
128 "iconColor": {
129 "type": "string",
130 "default": "#ca8a04"
131 },
132 "borderRadius": {
133 "type": "integer",
134 "default": 10
135 },
136 "paddingTop": {
137 "type": "integer",
138 "default": 0
139 },
140 "paddingBottom": {
141 "type": "integer",
142 "default": 0
143 },
144 "headingTypo": {
145 "type": "object",
146 "default": {}
147 },
148 "summaryTypo": {
149 "type": "object",
150 "default": {}
151 }
152 }
153 }
154