PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / 2.1.7
bBlocks – Essential Gutenberg Blocks & Patterns Collection v2.1.7
2.1.7 2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 All 107 releases
b-blocks / build / price-lists / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection 2.1.7, at build/price-lists/block.json

205 lines 4.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "b-blocks/price-lists",
4 "title": "Price Lists",
5 "description": "Display Price lists section.",
6 "category": "bBlocks",
7 "keywords": [
8 "price",
9 "lists",
10 "price lists section"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": "wide"
17 },
18 "products": {
19 "type": "array",
20 "default": [
21 {
22 "background": {
23 "color": "#0000"
24 },
25 "img": {
26 "id": null,
27 "url": "",
28 "alt": "",
29 "title": ""
30 },
31 "imgBorder": {},
32 "name": "Product 1 Name",
33 "nameColor": "#333",
34 "desc": "This content area describes product 1 descriptions or details.",
35 "descColor": "#333",
36 "price": "$99.99",
37 "priceColor": "#146EF5",
38 "separator": {
39 "width": "40%",
40 "height": "1px",
41 "color": "#bbb"
42 }
43 },
44 {
45 "background": {
46 "color": "#0000"
47 },
48 "img": {
49 "id": null,
50 "url": "",
51 "alt": "",
52 "title": ""
53 },
54 "imgBorder": {},
55 "name": "Product 2 Name",
56 "nameColor": "#333",
57 "desc": "This content area describes product 2 descriptions or details.",
58 "descColor": "#333",
59 "price": "$99.99",
60 "priceColor": "#146EF5",
61 "separator": {
62 "width": "40%",
63 "height": "1px",
64 "color": "#bbb"
65 }
66 },
67 {
68 "background": {
69 "color": "#0000"
70 },
71 "img": {
72 "id": null,
73 "url": "",
74 "alt": "",
75 "title": ""
76 },
77 "imgBorder": {},
78 "name": "Product 3 Name",
79 "nameColor": "#333",
80 "desc": "This content area describes product 3 descriptions or details.",
81 "descColor": "#333",
82 "price": "$99.99",
83 "priceColor": "#146EF5",
84 "separator": {
85 "width": "40%",
86 "height": "1px",
87 "color": "#bbb"
88 }
89 }
90 ]
91 },
92 "columns": {
93 "type": "object",
94 "default": {
95 "desktop": 3,
96 "tablet": 2,
97 "mobile": 1
98 }
99 },
100 "columnGap": {
101 "type": "string",
102 "default": "40px"
103 },
104 "rowGap": {
105 "type": "string",
106 "default": "30px"
107 },
108 "layout": {
109 "type": "string",
110 "default": "vertical"
111 },
112 "textAlign": {
113 "type": "string",
114 "default": "center"
115 },
116 "padding": {
117 "type": "object",
118 "default": {
119 "vertical": "50px",
120 "horizontal": "20px"
121 }
122 },
123 "imgMargin": {
124 "type": "object",
125 "default": {
126 "side": 4,
127 "bottom": "20px"
128 }
129 },
130 "nameTypo": {
131 "type": "object",
132 "default": {
133 "fontSize": {
134 "desktop": "18px",
135 "tablet": "17px",
136 "mobile": "16px"
137 },
138 "fontWeight": 600
139 }
140 },
141 "nameMargin": {
142 "type": "object",
143 "default": {
144 "side": 4,
145 "bottom": "10px"
146 }
147 },
148 "isDesc": {
149 "type": "boolean",
150 "default": true
151 },
152 "descTypo": {
153 "type": "object",
154 "default": {
155 "fontSize": {
156 "desktop": "15px"
157 },
158 "fontStyle": "italic"
159 }
160 },
161 "descMargin": {
162 "type": "object",
163 "default": {
164 "side": 4,
165 "bottom": "15px"
166 }
167 },
168 "priceTypo": {
169 "type": "object",
170 "default": {
171 "fontSize": {
172 "desktop": "24px",
173 "tablet": "22px",
174 "mobile": "20px"
175 },
176 "fontStyle": "italic"
177 }
178 },
179 "isSep": {
180 "type": "boolean",
181 "default": true
182 }
183 },
184 "supports": {
185 "align": [
186 "wide",
187 "full"
188 ],
189 "html": false
190 },
191 "example": {
192 "attributes": {
193 "preview": true,
194 "columns": {
195 "desktop": 1,
196 "tablet": 1,
197 "mobile": 1
198 }
199 }
200 },
201 "editorScript": "file:../index.js",
202 "style": "file:./view.css",
203 "render": "file:./render.php",
204 "viewScript": "file:./view.js"
205 }