PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 5.0.1
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v5.0.1
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
blockspare / build / block / image-slider / block.json

block.json in BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs 5.0.1, at build/block/image-slider/block.json

141 lines 2.9 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": "blockspare/blockspare-slider",
5 "title": "Image Slider",
6 "category": "blockspare",
7 "description": "Image silder with customizable transition effects and navigation controls.",
8 "attributes": {
9 "align": {
10 "type": "string"
11 },
12 "animation": {
13 "type": "string",
14 "default": ""
15 },
16 "uniqueClass": {
17 "type": "string",
18 "default": ""
19 },
20 "images": {
21 "type": "array",
22 "default": [],
23 "selector": "img",
24 "query": {
25 "url": {
26 "type": "string",
27 "source": "attribute",
28 "attribute": "src"
29 },
30 "alt": {
31 "type": "string",
32 "source": "attribute",
33 "attribute": "alt",
34 "default": ""
35 },
36 "id": {
37 "type": "string",
38 "source": "attribute",
39 "attribute": "data-id"
40 },
41 "width": {
42 "type": "string",
43 "source": "attribute",
44 "attribute": "data-width"
45 }
46 }
47 },
48 "imageSize": {
49 "type": "string",
50 "default": "thumbnail"
51 },
52 "showsliderNextPrev": {
53 "type": "boolean",
54 "default": true
55 },
56 "showDots": {
57 "type": "boolean",
58 "default": false
59 },
60 "numberofSlide": {
61 "type": "number",
62 "default": 1
63 },
64 "enableAutoPlay": {
65 "type": "boolean",
66 "default": true
67 },
68 "carouselSpeed": {
69 "type": "number",
70 "default": "1000"
71 },
72 "carouselNextIcon": {
73 "type": "string",
74 "default": "fas fa-chevron-right"
75 },
76 "navigationColor": {
77 "type": "string",
78 "default": "#000"
79 },
80 "gutterSpace": {
81 "type": "number",
82 "default": 1
83 },
84 "colorFilter": {
85 "type": "string",
86 "default": "blockspare-original"
87 },
88 "showOriginalOnHover": {
89 "type": "boolean",
90 "default": false
91 },
92 "navigationSize": {
93 "type": "string",
94 "default": "blockspare-navigation-small"
95 },
96 "navigationShape": {
97 "type": "string",
98 "default": "lpc-navigation-1"
99 },
100 "navigationShapeColor": {
101 "type": "string",
102 "default": "#fff"
103 },
104 "enableEqualHeight": {
105 "type": "boolean",
106 "default": true
107 },
108 "borderRadius": {
109 "type": "number",
110 "default": 0
111 },
112 "marginTop": {
113 "type": "number",
114 "default": 30
115 },
116 "marginRight": {
117 "type": "number",
118 "default": 0
119 },
120 "marginBottom": {
121 "type": "number",
122 "default": 30
123 },
124 "marginLeft": {
125 "type": "number",
126 "default": 0
127 },
128 "blockHoverEffect": {
129 "type": "string",
130 "default": ""
131 },
132 "imageHoverEffect": {
133 "type": "string",
134 "default": ""
135 }
136 },
137 "editorScript": "file:./index.js",
138 "editorStyle": "file:./index.css",
139 "style": "file:./style-index.css",
140 "viewScript": "file:./view.js"
141 }