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

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

173 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/post-carousel",
4 "title": "Post Carousel",
5 "category": "bkbg-blog",
6 "description": "A responsive carousel of posts with autoplay, arrows, and dots.",
7 "keywords": [
8 "carousel",
9 "posts",
10 "slider",
11 "blog"
12 ],
13 "textdomain": "blockenberg",
14 "editorScript": "bkbg-post-carousel-editor",
15 "editorStyle": "bkbg-post-carousel-style",
16 "style": "bkbg-post-carousel-style",
17 "viewScript": "bkbg-post-carousel-frontend",
18 "supports": {
19 "html": false,
20 "anchor": true,
21 "className": true,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "postType": {
29 "type": "string",
30 "default": "post"
31 },
32 "orderby": {
33 "type": "string",
34 "default": "date"
35 },
36 "order": {
37 "type": "string",
38 "default": "desc"
39 },
40 "perPage": {
41 "type": "number",
42 "default": 6
43 },
44 "excerptLen": {
45 "type": "number",
46 "default": 20
47 },
48 "slidesPerView": {
49 "type": "number",
50 "default": 3
51 },
52 "slidesPerViewTablet": {
53 "type": "number",
54 "default": 2
55 },
56 "slidesPerViewMobile": {
57 "type": "number",
58 "default": 1
59 },
60 "gap": {
61 "type": "number",
62 "default": 24
63 },
64 "autoplay": {
65 "type": "boolean",
66 "default": true
67 },
68 "autoplaySpeed": {
69 "type": "number",
70 "default": 4000
71 },
72 "pauseOnHover": {
73 "type": "boolean",
74 "default": true
75 },
76 "loop": {
77 "type": "boolean",
78 "default": true
79 },
80 "showArrows": {
81 "type": "boolean",
82 "default": true
83 },
84 "showDots": {
85 "type": "boolean",
86 "default": true
87 },
88 "arrowStyle": {
89 "type": "string",
90 "default": "circle"
91 },
92 "showImage": {
93 "type": "boolean",
94 "default": true
95 },
96 "showMeta": {
97 "type": "boolean",
98 "default": true
99 },
100 "showExcerpt": {
101 "type": "boolean",
102 "default": true
103 },
104 "showReadMore": {
105 "type": "boolean",
106 "default": true
107 },
108 "readMoreLabel": {
109 "type": "string",
110 "default": "Read More"
111 },
112 "imageRatio": {
113 "type": "string",
114 "default": "56.25"
115 },
116 "cardStyle": {
117 "type": "string",
118 "default": "shadow"
119 },
120 "cardBg": {
121 "type": "string",
122 "default": "#ffffff"
123 },
124 "cardRadius": {
125 "type": "number",
126 "default": 10
127 },
128 "titleColor": {
129 "type": "string",
130 "default": "#111827"
131 },
132 "excerptColor": {
133 "type": "string",
134 "default": "#6b7280"
135 },
136 "metaColor": {
137 "type": "string",
138 "default": "#9ca3af"
139 },
140 "linkColor": {
141 "type": "string",
142 "default": "#2563eb"
143 },
144 "arrowBg": {
145 "type": "string",
146 "default": "#ffffff"
147 },
148 "arrowColor": {
149 "type": "string",
150 "default": "#111827"
151 },
152 "dotColor": {
153 "type": "string",
154 "default": "#d1d5db"
155 },
156 "dotActiveColor": {
157 "type": "string",
158 "default": "#111827"
159 },
160 "titleTypo": {
161 "type": "object",
162 "default": {}
163 },
164 "excerptTypo": {
165 "type": "object",
166 "default": {}
167 },
168 "metaTypo": {
169 "type": "object",
170 "default": {}
171 }
172 }
173 }