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 / service / block.json

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

136 lines 2.6 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/service",
4 "title": "Service",
5 "description": "Service item for services section.",
6 "parent": [
7 "b-blocks/services"
8 ],
9 "category": "bBlocks",
10 "keywords": [
11 "our service",
12 "service item",
13 "service card"
14 ],
15 "textdomain": "b-blocks",
16 "attributes": {
17 "align": {
18 "type": "string",
19 "default": ""
20 },
21 "background": {
22 "type": "object",
23 "default": {
24 "color": "#0000"
25 }
26 },
27 "hoverBG": {
28 "type": "object",
29 "default": {
30 "type": "image",
31 "image": {
32 "url": "https://i.imgur.com/i6qCSdM.png"
33 },
34 "overlayColor": "#0000",
35 "position": "bottom left",
36 "repeat": "no-repeat",
37 "size": "auto"
38 }
39 },
40 "isIcon": {
41 "type": "boolean",
42 "default": true
43 },
44 "isUpIcon": {
45 "type": "boolean",
46 "default": false
47 },
48 "icon": {
49 "type": "object",
50 "default": {
51 "class": "fa-brands fa-wordpress",
52 "fontSize": 70
53 }
54 },
55 "upIcon": {
56 "type": "object",
57 "default": {
58 "id": null,
59 "url": "",
60 "alt": "",
61 "title": ""
62 }
63 },
64 "iconWidth": {
65 "type": "string",
66 "default": "70px"
67 },
68 "iconBorder": {
69 "type": "object",
70 "default": {}
71 },
72 "isTitle": {
73 "type": "boolean",
74 "default": true
75 },
76 "title": {
77 "type": "string",
78 "selector": ".bBlocksService h3.title",
79 "default": "Service title"
80 },
81 "titleColor": {
82 "type": "string",
83 "default": "#222"
84 },
85 "isDesc": {
86 "type": "boolean",
87 "default": true
88 },
89 "desc": {
90 "type": "string",
91 "selector": ".bBlocksService h3.description",
92 "default": "Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accusamus, fuga."
93 },
94 "descColor": {
95 "type": "string",
96 "default": "#333"
97 },
98 "isLink": {
99 "type": "boolean",
100 "default": true
101 },
102 "link": {
103 "type": "string",
104 "default": "#"
105 },
106 "linkIn": {
107 "type": "string",
108 "default": "button"
109 },
110 "linkIconColor": {
111 "type": "string",
112 "default": "#fff"
113 },
114 "linkBGColor": {
115 "type": "string",
116 "default": "#d2d2d2"
117 },
118 "linkBGHovColor": {
119 "type": "string",
120 "default": "#146EF5"
121 }
122 },
123 "supports": {
124 "align": false,
125 "reusable": false,
126 "html": false
127 },
128 "example": {
129 "attributes": {
130 "preview": true
131 }
132 },
133 "editorScript": "file:../index.js",
134 "render": "file:./render.php",
135 "viewScript": "file:./view.js"
136 }