PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / trunk
bBlocks – Essential Gutenberg Blocks & Patterns Collection vtrunk
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 1.5.5 All 106 releases
b-blocks / build / services / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection trunk, at build/services/block.json

143 lines 2.5 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/services",
4 "title": "Services",
5 "description": "Services section for web page.",
6 "category": "bBlocks",
7 "keywords": [
8 "our services",
9 "services template",
10 "services section"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": "wide"
17 },
18 "cId": {
19 "type": "string",
20 "default": ""
21 },
22 "layout": {
23 "type": "string",
24 "default": "default"
25 },
26 "columns": {
27 "type": "object",
28 "default": {
29 "desktop": 3,
30 "tablet": 2,
31 "mobile": 1
32 }
33 },
34 "columnGap": {
35 "type": "string",
36 "default": "30px"
37 },
38 "rowGap": {
39 "type": "string",
40 "default": "30px"
41 },
42 "background": {
43 "type": "object",
44 "default": {
45 "color": "#0000"
46 }
47 },
48 "textAlign": {
49 "type": "string",
50 "default": "left"
51 },
52 "itemHeight": {
53 "type": "string",
54 "default": "375px"
55 },
56 "itemPadding": {
57 "type": "object",
58 "default": {
59 "side": 4,
60 "top": "50px",
61 "right": "30px",
62 "bottom": "50px",
63 "left": "50px"
64 }
65 },
66 "itemBorder": {
67 "type": "object",
68 "default": {
69 "radius": "15px"
70 }
71 },
72 "itemShadow": {
73 "type": "object",
74 "default": {
75 "blur": "20px",
76 "color": "#0000001a"
77 }
78 },
79 "iconPadding": {
80 "type": "object",
81 "default": {
82 "side": 4,
83 "bottom": "10px"
84 }
85 },
86 "iconMargin": {
87 "type": "object",
88 "default": {
89 "side": 4,
90 "bottom": "20px"
91 }
92 },
93 "titleTypo": {
94 "type": "object",
95 "default": {
96 "fontSize": {
97 "desktop": "23px",
98 "tablet": "20px",
99 "mobile": "18px"
100 }
101 }
102 },
103 "titleMargin": {
104 "type": "object",
105 "default": {
106 "side": 4,
107 "bottom": "30px"
108 }
109 },
110 "descTypo": {
111 "type": "object",
112 "default": {
113 "fontSize": {
114 "desktop": "16px"
115 }
116 }
117 }
118 },
119 "supports": {
120 "align": [
121 "wide",
122 "full"
123 ],
124 "html": false
125 },
126 "example": {
127 "attributes": {
128 "preview": true,
129 "columns": {
130 "desktop": 1,
131 "tablet": 1,
132 "mobile": 1
133 }
134 }
135 },
136 "editorScript": "file:../index.js",
137 "style": [
138 "file:./view.css",
139 "fontAwesome"
140 ],
141 "render": "file:./render.php",
142 "viewScript": "file:./view.js"
143 }