PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 2.8.3
Kubio AI Page Builder v2.8.3
2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / build / block-library / blocks / section / block.json
kubio / build / block-library / blocks / section Last commit date
block.json 3 years ago index.php 1 year ago types.json 4 years ago
block.json
83 lines
1 {
2 "name": "kubio/section",
3 "title": "Section",
4 "category": "kubio-layout",
5 "attributes": {
6 "kubio": {
7 "type": "object"
8 },
9 "attrs": {
10 "type": "object"
11 }
12 },
13 "supports": {
14 "anchor": true,
15 "kubio": {
16 "appearanceEffect": true,
17 "elementsEnum": {
18 "OUTER": "outer",
19 "INNER": "inner"
20 },
21 "elementsByName": {
22 "outer": {
23 "default": true,
24 "wrapper": true,
25 "props": {
26 "className": [
27 "d-flex",
28 "h-section-global-spacing"
29 ]
30 },
31 "supports": {
32 "background": true,
33 "separator": true
34 }
35 },
36 "inner": {
37 "props": {
38 "className": [
39 "h-section-grid-container"
40 ]
41 }
42 }
43 },
44 "template": {
45 "type": "element",
46 "props": {
47 "name": "outer"
48 },
49 "children": [
50 {
51 "type": "background"
52 },
53 {
54 "type": "separators"
55 },
56 {
57 "type": "element",
58 "props": {
59 "name": "inner"
60 },
61 "children": [
62 {
63 "type": "wp:InnerBlocks"
64 }
65 ]
66 }
67 ]
68 },
69 "default": {
70 "style": {
71 "customHeight": {
72 "type": "fit-to-content"
73 }
74 },
75 "props": {
76 "width": "boxed",
77 "verticalAlign": "center"
78 }
79 }
80 }
81 }
82 }
83