PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / 1.0.1
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites v1.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 2.6.1 All 38 releases
blockspare / src / blocks / latest-posts-list / block.json

block.json in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites 1.0.1, at src/blocks/latest-posts-list/block.json

169 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "blockspare/blockspare-latest-posts-list",
3 "category": "blockspare",
4 "attributes" : {
5 "categories": {
6 "type": "string"
7 },
8 "className": {
9 "type": "string"
10 },
11 "postsToShow": {
12 "type": "number",
13 "default": 5
14 },
15 "displayPostDate": {
16 "type": "boolean",
17 "default": true
18 },
19 "displayPostExcerpt": {
20 "type": "boolean",
21 "default": false
22 },
23 "displayPostAuthor": {
24 "type": "boolean",
25 "default": true
26 },
27 "displayPostImage": {
28 "type": "boolean",
29 "default": true
30 },
31 "displayPostLink": {
32 "type": "boolean",
33 "default": false
34 },
35 "displayPostTitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "postTitleColor": {
40 "type": "string",
41 "default": "#000"
42 },
43 "postTitleFontSize": {
44 "type": "number",
45 "default": 20
46 },
47
48 "linkColor": {
49 "type": "string",
50 "default": "#8b249c"
51 },
52
53 "generalColor": {
54 "type": "string",
55 "default": "#404040"
56 },
57
58 "displayPostCategory": {
59 "type": "boolean",
60 "default": true
61 },
62
63 "design": {
64 "type": "string",
65 "default": "blockspare-list-layout-1"
66 },
67 "align": {
68 "type": "string",
69 "default": "center"
70 },
71 "order": {
72 "type": "string",
73 "default": "desc"
74 },
75 "orderBy": {
76 "type": "string",
77 "default": "date"
78 },
79
80 "readMoreText": {
81 "type": "string",
82 "default": "Continue Reading"
83 },
84 "offset": {
85 "type": "number",
86 "default": 0
87 },
88 "excerptLength": {
89 "type": "number",
90 "default": 20
91 },
92 "postType": {
93 "type": "string",
94 "default": "post"
95 },
96 "displayPostsBy": {
97 "type": "string",
98 "default": "blockspare-post-by-category"
99 },
100 "sectionTag": {
101 "type": "string",
102 "default": "section"
103 },
104 "sectionTitle": {
105 "type": "string"
106 },
107 "imageSize": {
108 "type": "string",
109 "default": "large"
110 },
111 "url": {
112 "type": "string",
113 "source": "attribute",
114 "selector": "img",
115 "attribute": "src"
116 },
117 "id": {
118 "type": "number"
119 },
120 "marginTop": {
121 "type": "number",
122 "default": 30
123 },
124 "marginBottom": {
125 "type": "number",
126 "default": 30
127 },
128 "backGroundColor": {
129 "type": "string",
130 "default": "#fff"
131 },
132 "borderRadius": {
133 "type": "number",
134 "default": 0
135 },
136 "enableBackgroundColor": {
137 "type": "boolean",
138 "default": true
139 },
140 "contentOrder": {
141 "type": "string",
142 "default": "content-order-1"
143 },
144 "enableBoxShadow": {
145 "type": "boolean",
146 "default": false
147 },
148 "xOffset": {
149 "type": "number",
150 "default": 0
151 },
152 "yOffset": {
153 "type": "number",
154 "default": 6
155 },
156 "blur": {
157 "type": "number",
158 "default": 12
159 },
160 "spread": {
161 "type": "number",
162 "default": -10
163 },
164 "shadowColor": {
165 "type": "string",
166 "default": "#000"
167 }
168 }
169 }