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 / lesson-objectives / block.json

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

193 lines 4.8 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/lesson-objectives",
5 "title": "Lesson Objectives",
6 "description": "\"What You'll Learn\" educational objectives box with bullet points, level badge, and estimated read time.",
7 "category": "bkbg-blog",
8 "icon": "welcome-learn-more",
9 "keywords": [
10 "lesson",
11 "objectives",
12 "learn",
13 "educational",
14 "what you'll learn",
15 "course",
16 "tutorial",
17 "guide"
18 ],
19 "editorScript": "bkbg-lesson-objectives-editor",
20 "style": "bkbg-lesson-objectives-style",
21 "viewScript": "bkbg-lesson-objectives-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "heading": {
31 "type": "string",
32 "default": "What You'll Learn"
33 },
34 "headingIcon": {
35 "type": "string",
36 "default": "🎯"
37 },
38 "headingIconType": {
39 "type": "string",
40 "default": "custom-char"
41 },
42 "headingIconDashicon": {
43 "type": "string",
44 "default": "flag"
45 },
46 "headingIconImageUrl": {
47 "type": "string",
48 "default": ""
49 },
50 "showIcon": {
51 "type": "boolean",
52 "default": true
53 },
54 "objectives": {
55 "type": "array",
56 "default": [
57 {
58 "text": "Understand the core principles of on-page SEO"
59 },
60 {
61 "text": "Build a keyword research strategy from scratch"
62 },
63 {
64 "text": "Audit and fix technical SEO issues on any site"
65 },
66 {
67 "text": "Create content that consistently ranks on page one"
68 }
69 ]
70 },
71 "showLevel": {
72 "type": "boolean",
73 "default": true
74 },
75 "level": {
76 "type": "string",
77 "default": "beginner"
78 },
79 "showReadTime": {
80 "type": "boolean",
81 "default": true
82 },
83 "readTime": {
84 "type": "string",
85 "default": "12 min read"
86 },
87 "bulletStyle": {
88 "type": "string",
89 "default": "check"
90 },
91 "customBullet": {
92 "type": "string",
93 "default": ""
94 },
95 "style": {
96 "type": "string",
97 "default": "card"
98 },
99 "columns": {
100 "type": "number",
101 "default": 1
102 },
103 "bgColor": {
104 "type": "string",
105 "default": "#f0fdf4"
106 },
107 "borderColor": {
108 "type": "string",
109 "default": "#86efac"
110 },
111 "accentColor": {
112 "type": "string",
113 "default": "#16a34a"
114 },
115 "headingColor": {
116 "type": "string",
117 "default": "#14532d"
118 },
119 "iconColor": {
120 "type": "string",
121 "default": "#16a34a"
122 },
123 "bulletColor": {
124 "type": "string",
125 "default": "#16a34a"
126 },
127 "bulletBg": {
128 "type": "string",
129 "default": "#dcfce7"
130 },
131 "textColor": {
132 "type": "string",
133 "default": "#166534"
134 },
135 "metaColor": {
136 "type": "string",
137 "default": "#4b7a5a"
138 },
139 "levelBg": {
140 "type": "string",
141 "default": "#16a34a"
142 },
143 "levelColor": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "borderRadius": {
148 "type": "number",
149 "default": 10
150 },
151 "paddingTop": {
152 "type": "number",
153 "default": 0
154 },
155 "paddingBottom": {
156 "type": "number",
157 "default": 0
158 },
159 "titleFontSize": {
160 "type": "number",
161 "default": 22
162 },
163 "titleFontWeight": {
164 "type": "number",
165 "default": 700
166 },
167 "titleLineHeight": {
168 "type": "number",
169 "default": 1.2
170 },
171 "headingTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "objectiveFontSize": {
176 "type": "number",
177 "default": 15
178 },
179 "objectiveFontWeight": {
180 "type": "number",
181 "default": 400
182 },
183 "objectiveLineHeight": {
184 "type": "number",
185 "default": 1.6
186 },
187 "objectiveTypo": {
188 "type": "object",
189 "default": {}
190 }
191 }
192 }
193