PluginProbe
Getwid – Gutenberg Blocks / 3.0.2
Getwid – Gutenberg Blocks v3.0.2
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / assets / blocks / post-slider / block.json

block.json in Getwid – Gutenberg Blocks 3.0.2, at assets/blocks/post-slider/block.json

142 lines 2.6 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 "textdomain": "getwid",
5 "name": "getwid/post-slider",
6 "description": "Displays posts in a customizable slider.",
7 "category": "getwid-blocks",
8 "title": "Post Slider",
9 "supports": {
10 "html": false,
11 "align": [
12 "wide",
13 "full"
14 ]
15 },
16 "attributes": {
17 "postTemplate": {
18 "type": "string"
19 },
20 "postsToShow": {
21 "type": "number",
22 "default": 5
23 },
24 "offset": {
25 "type": "number",
26 "default": 0
27 },
28 "ignoreSticky": {
29 "type": "boolean",
30 "default": true
31 },
32 "filterById": {
33 "type": "string"
34 },
35 "excludeById": {
36 "type": "string"
37 },
38 "excludeCurrentPost": {
39 "type": "boolean",
40 "default": false
41 },
42 "childPagesCurrentPage": {
43 "type": "boolean",
44 "default": false
45 },
46 "parentPageId": {
47 "type": "string"
48 },
49 "postType": {
50 "type": "string",
51 "default": "post"
52 },
53 "taxonomy": {
54 "type": "array",
55 "items": {
56 "type": "string"
57 }
58 },
59 "terms": {
60 "type": "array",
61 "items": {
62 "type": "string"
63 }
64 },
65 "relation": {
66 "type": "string",
67 "default": "AND"
68 },
69 "order": {
70 "type": "string",
71 "default": "desc"
72 },
73 "orderBy": {
74 "type": "string",
75 "default": "date"
76 },
77 "minHeight": {
78 "type": "string"
79 },
80 "textAlignment": {
81 "type": "string",
82 "default": "left"
83 },
84 "sliderAnimationEffect": {
85 "type": "string",
86 "default": "slide"
87 },
88 "sliderAutoplay": {
89 "type": "boolean",
90 "default": false
91 },
92 "sliderPauseOnHover": {
93 "type": "boolean",
94 "default": false
95 },
96 "sliderAutoplaySpeed": {
97 "type": "string",
98 "default": "6000"
99 },
100 "sliderInfinite": {
101 "type": "boolean",
102 "default": true
103 },
104 "sliderAnimationSpeed": {
105 "type": "string",
106 "default": "800"
107 },
108 "sliderArrows": {
109 "type": "string",
110 "default": "inside"
111 },
112 "sliderDots": {
113 "type": "string",
114 "default": "inside"
115 },
116 "className": {
117 "type": "string"
118 },
119 "metaQuery": {
120 "type": "array",
121 "default": []
122 }
123 },
124 "editorScript": [
125 "jquery",
126 "slick",
127 "imagesloaded",
128 "file:./index.js"
129 ],
130 "editorStyle": "file:./index.css",
131 "style": [
132 "slick",
133 "slick-theme",
134 "file:./style-index.css"
135 ],
136 "viewScript": [
137 "jquery",
138 "imagesloaded",
139 "slick",
140 "file:./view.js"
141 ]
142 }