PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 2.8.0
Kubio AI Page Builder v2.8.0
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 / row / block.json
kubio / build / block-library / blocks / row Last commit date
block.json 2 years ago index.php 3 years ago
block.json
110 lines
1 {
2 "name": "kubio/row",
3 "title": "Columns",
4 "category": "kubio-basic",
5 "attributes": {
6 "kubio": {
7 "type": "object"
8 },
9 "templateLock": {
10 "type": "string"
11 }
12 },
13 "supports": {
14 "anchor": true,
15 "disabledOnSimpleMode": true,
16 "kubio": {
17 "appearanceEffect": true,
18 "props": {
19 "fullBackground": {
20 "type": "boolean"
21 },
22 "layout": {
23 "type": "object"
24 }
25 },
26 "elementsEnum": {
27 "CONTAINER": "container",
28 "INNER": "inner",
29 "CENTER": "center",
30 "OUTER_GAPS": "outerGaps",
31 "INNER_GAPS": "innerGaps",
32 "TYPOGRAPHY_HOLDERS": "typographyHolders"
33 },
34 "elementsByName": {
35 "container": {
36 "wrapper": true,
37 "default": true,
38 "supports": {
39 "separator": true,
40 "background": true
41 }
42 },
43 "center": {},
44 "inner": {
45 "props": {
46 "className": [
47 "h-row"
48 ]
49 }
50 },
51 "outerGaps": {
52 "selector": "> * > .h-row > [class*='h-col-'] > [class*='h-px-']"
53 },
54 "innerGaps": {
55 "selector": " > * > .h-row > [class*='h-col-']"
56 }
57 },
58 "template": {
59 "type": "element",
60 "props": {
61 "name": "container"
62 },
63 "children": [
64 {
65 "type": "background"
66 },
67 {
68 "type": "separators"
69 },
70 {
71 "type": "element",
72 "props": {
73 "name": "inner"
74 },
75 "children": [
76 {
77 "type": "wp:InnerBlocks"
78 }
79 ]
80 }
81 ]
82 },
83 "default": {
84 "props": {
85 "fullBackground": false,
86 "layout": {
87 "equalWidth": false,
88 "equalHeight": true,
89 "itemsPerRow": 2,
90 "verticalAlign": "center",
91 "horizontalAlign": "center",
92 "horizontalGap": 2,
93 "verticalGap": 2,
94 "horizontalInnerGap": 2,
95 "verticalInnerGap": 2
96 },
97 "media": {
98 "mobile": {
99 "layout": {
100 "itemsPerRow": 1,
101 "horizontalGap": 0
102 }
103 }
104 }
105 }
106 }
107 }
108 }
109 }
110