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 / chapter-intro / block.json

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

145 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/chapter-intro",
5 "title": "Chapter Intro",
6 "description": "A decorative chapter opener with large chapter number, label, heading, and intro paragraph.",
7 "category": "bkbg-content",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-chapter-intro-editor",
10 "style": "bkbg-chapter-intro-style",
11 "viewScript": "bkbg-chapter-intro-frontend",
12 "icon": "book-alt",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "chapterNumber": {
24 "type": "string",
25 "default": "01"
26 },
27 "chapterLabel": {
28 "type": "string",
29 "default": "Chapter"
30 },
31 "showLabel": {
32 "type": "boolean",
33 "default": true
34 },
35 "heading": {
36 "type": "string",
37 "default": "Introduction"
38 },
39 "introText": {
40 "type": "string",
41 "default": "Begin your journey here. This section sets the stage for everything that follows, providing context, background, and the key ideas you need to understand."
42 },
43 "showDivider": {
44 "type": "boolean",
45 "default": true
46 },
47 "dividerStyle": {
48 "type": "string",
49 "default": "line"
50 },
51 "layout": {
52 "type": "string",
53 "default": "centered"
54 },
55 "numberStyle": {
56 "type": "string",
57 "default": "display"
58 },
59 "bgColor": {
60 "type": "string",
61 "default": "#ffffff"
62 },
63 "numberColor": {
64 "type": "string",
65 "default": "#f0eeff"
66 },
67 "labelColor": {
68 "type": "string",
69 "default": "#7c3aed"
70 },
71 "headingColor": {
72 "type": "string",
73 "default": "#111827"
74 },
75 "textColor": {
76 "type": "string",
77 "default": "#4b5563"
78 },
79 "dividerColor": {
80 "type": "string",
81 "default": "#e5e7eb"
82 },
83 "accentColor": {
84 "type": "string",
85 "default": "#7c3aed"
86 },
87 "numberSize": {
88 "type": "number",
89 "default": 160
90 },
91 "headingSize": {
92 "type": "number",
93 "default": 40
94 },
95 "textSize": {
96 "type": "number",
97 "default": 18
98 },
99 "labelSize": {
100 "type": "number",
101 "default": 13
102 },
103 "maxWidth": {
104 "type": "number",
105 "default": 760
106 },
107 "paddingTop": {
108 "type": "number",
109 "default": 80
110 },
111 "paddingBottom": {
112 "type": "number",
113 "default": 80
114 },
115 "headingFontWeight": {
116 "type": "string",
117 "default": "700"
118 },
119 "headingLineHeight": {
120 "type": "number",
121 "default": 1.2
122 },
123 "textFontWeight": {
124 "type": "string",
125 "default": "400"
126 },
127 "textLineHeight": {
128 "type": "number",
129 "default": 1.7
130 },
131 "typoHeading": {
132 "type": "object",
133 "default": {}
134 },
135 "typoText": {
136 "type": "object",
137 "default": {}
138 },
139 "typoLabel": {
140 "type": "object",
141 "default": {}
142 }
143 }
144 }
145