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

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

121 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/content-slider",
5 "title": "Content Slider",
6 "category": "bkbg-content",
7 "icon": "slides",
8 "description": "Full-slide carousel with custom backgrounds per slide (color, gradient, or image) and rich text content.",
9 "keywords": [
10 "slider",
11 "carousel",
12 "content",
13 "slide",
14 "hero",
15 "sections"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-content-slider-editor",
19 "editorStyle": "bkbg-content-slider-style",
20 "style": "bkbg-content-slider-style",
21 "viewScript": "bkbg-content-slider-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "slides": {
33 "type": "array",
34 "default": [
35 {
36 "bgType": "color",
37 "bgColor": "#6c3fb5",
38 "bgGradient": "linear-gradient(135deg,#6c3fb5,#e040fb)",
39 "bgImageUrl": "",
40 "bgImageId": 0,
41 "overlayOpacity": 0,
42 "heading": "First Slide",
43 "subtext": "Your compelling message goes here.",
44 "btnLabel": "Get Started",
45 "btnUrl": "#",
46 "btnShow": true,
47 "textColor": "#ffffff",
48 "contentAlign": "center"
49 },
50 {
51 "bgType": "gradient",
52 "bgColor": "#1e0a3c",
53 "bgGradient": "linear-gradient(135deg,#f5a623,#e54a1c)",
54 "bgImageUrl": "",
55 "bgImageId": 0,
56 "overlayOpacity": 0,
57 "heading": "Second Slide",
58 "subtext": "Another great section for your content.",
59 "btnLabel": "Learn More",
60 "btnUrl": "#",
61 "btnShow": true,
62 "textColor": "#ffffff",
63 "contentAlign": "center"
64 }
65 ]
66 },
67 "height": {
68 "type": "number",
69 "default": 480
70 },
71 "transition": {
72 "type": "string",
73 "default": "fade"
74 },
75 "autoplay": {
76 "type": "boolean",
77 "default": true
78 },
79 "speed": {
80 "type": "number",
81 "default": 4000
82 },
83 "showArrows": {
84 "type": "boolean",
85 "default": true
86 },
87 "showDots": {
88 "type": "boolean",
89 "default": true
90 },
91 "borderRadius": {
92 "type": "number",
93 "default": 12
94 },
95 "headingSize": {
96 "type": "number",
97 "default": 36
98 },
99 "subtextSize": {
100 "type": "number",
101 "default": 18
102 },
103 "btnFontSize": {
104 "type": "number",
105 "default": 16
106 },
107 "typoHeading": {
108 "type": "object",
109 "default": {}
110 },
111 "typoSubtext": {
112 "type": "object",
113 "default": {}
114 },
115 "typoButton": {
116 "type": "object",
117 "default": {}
118 }
119 }
120 }
121