PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / 2.1.0
bBlocks – Essential Gutenberg Blocks & Patterns Collection v2.1.0
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 / section-heading / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection 2.1.0, at build/section-heading/block.json

117 lines 2.1 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/section-heading",
4 "title": "Section Heading",
5 "description": "Display heading before section.",
6 "category": "bBlocks",
7 "keywords": [
8 "headline",
9 "section headline",
10 "heading description"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": ""
17 },
18 "textAlign": {
19 "type": "string",
20 "default": "left"
21 },
22 "title": {
23 "type": "string",
24 "default": "Section Heading"
25 },
26 "titleTypo": {
27 "type": "object",
28 "default": {
29 "fontSize": {
30 "desktop": "25px",
31 "tablet": "22px",
32 "mobile": "20px"
33 },
34 "fontWeight": 600
35 }
36 },
37 "titleColor": {
38 "type": "string",
39 "default": ""
40 },
41 "titleMargin": {
42 "type": "object",
43 "default": {
44 "side": 4,
45 "bottom": "10px"
46 }
47 },
48 "isSep": {
49 "type": "boolean",
50 "default": true
51 },
52 "separator": {
53 "type": "object",
54 "default": {
55 "width": "150px",
56 "height": "3px",
57 "color": "#0c0d3c1a"
58 }
59 },
60 "sepMargin": {
61 "type": "object",
62 "default": {
63 "side": 4,
64 "bottom": "5px"
65 }
66 },
67 "isDesc": {
68 "type": "boolean",
69 "default": true
70 },
71 "desc": {
72 "type": "string",
73 "default": "This content area describes section heading descriptions or details."
74 },
75 "descTypo": {
76 "type": "object",
77 "default": {
78 "fontSize": {
79 "desktop": "15px"
80 }
81 }
82 },
83 "descColor": {
84 "type": "string",
85 "default": ""
86 },
87 "descMargin": {
88 "type": "object",
89 "default": {
90 "side": 4,
91 "bottom": "15px"
92 }
93 }
94 },
95 "supports": {
96 "align": [
97 "wide",
98 "full"
99 ],
100 "html": false
101 },
102 "example": {
103 "attributes": {
104 "preview": true
105 }
106 },
107 "editorScript": "file:../index.js",
108 "style": [
109 "file:./view.css",
110 "fontAwesome"
111 ],
112 "render": "file:./render.php",
113 "viewScript": [
114 "file:./view.js",
115 "mailtoui"
116 ]
117 }