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

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

180 lines 4.3 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/listicle",
5 "version": "1.0.0",
6 "title": "Listicle",
7 "category": "bkbg-blog",
8 "description": "Rich numbered list article format for Top 10, Best of, and ranked editorial content. Each item has number badge, title, image, description, verdict and tags.",
9 "keywords": [
10 "listicle",
11 "top 10",
12 "ranked",
13 "list",
14 "numbered",
15 "editorial",
16 "best of"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-listicle-editor",
20 "style": "bkbg-listicle-style",
21 "viewScript": "bkbg-listicle-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "heading": {
31 "type": "string",
32 "default": ""
33 },
34 "showHeading": {
35 "type": "boolean",
36 "default": false
37 },
38 "items": {
39 "type": "array",
40 "default": [
41 {
42 "title": "First Item",
43 "subtitle": "",
44 "description": "",
45 "imageUrl": "",
46 "imageId": 0,
47 "imageAlt": "",
48 "tag": "",
49 "verdict": "",
50 "rating": 5
51 }
52 ]
53 },
54 "layout": {
55 "type": "string",
56 "default": "list"
57 },
58 "numberStyle": {
59 "type": "string",
60 "default": "badge"
61 },
62 "showNumbers": {
63 "type": "boolean",
64 "default": true
65 },
66 "showImages": {
67 "type": "boolean",
68 "default": true
69 },
70 "showRatings": {
71 "type": "boolean",
72 "default": false
73 },
74 "showTags": {
75 "type": "boolean",
76 "default": true
77 },
78 "showVerdicts": {
79 "type": "boolean",
80 "default": false
81 },
82 "countDown": {
83 "type": "boolean",
84 "default": false
85 },
86 "imageRatio": {
87 "type": "string",
88 "default": "16:9"
89 },
90 "imageRadius": {
91 "type": "integer",
92 "default": 8
93 },
94 "gap": {
95 "type": "integer",
96 "default": 24
97 },
98 "cardRadius": {
99 "type": "integer",
100 "default": 12
101 },
102 "paddingTop": {
103 "type": "integer",
104 "default": 0
105 },
106 "paddingBottom": {
107 "type": "integer",
108 "default": 0
109 },
110 "bgColor": {
111 "type": "string",
112 "default": ""
113 },
114 "cardBg": {
115 "type": "string",
116 "default": "#ffffff"
117 },
118 "cardBorder": {
119 "type": "string",
120 "default": "#e5e7eb"
121 },
122 "numberBg": {
123 "type": "string",
124 "default": "#6366f1"
125 },
126 "numberColor": {
127 "type": "string",
128 "default": "#ffffff"
129 },
130 "titleColor": {
131 "type": "string",
132 "default": "#111827"
133 },
134 "subtitleColor": {
135 "type": "string",
136 "default": "#6b7280"
137 },
138 "descColor": {
139 "type": "string",
140 "default": "#374151"
141 },
142 "tagBg": {
143 "type": "string",
144 "default": "#ede9fe"
145 },
146 "tagColor": {
147 "type": "string",
148 "default": "#6366f1"
149 },
150 "verdictBg": {
151 "type": "string",
152 "default": "#dcfce7"
153 },
154 "verdictColor": {
155 "type": "string",
156 "default": "#15803d"
157 },
158 "starColor": {
159 "type": "string",
160 "default": "#f59e0b"
161 },
162 "accentColor": {
163 "type": "string",
164 "default": "#6366f1"
165 },
166 "headingTypo": {
167 "type": "object",
168 "default": {}
169 },
170 "titleTypo": {
171 "type": "object",
172 "default": {}
173 },
174 "descTypo": {
175 "type": "object",
176 "default": {}
177 }
178 }
179 }
180