PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / row / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.6, at blocks/row/block.json

144 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/row",
5 "title": "Row",
6 "category": "blockenberg",
7 "icon": "columns",
8 "description": "A row container for columns with drag-resize support.",
9 "keywords": ["row", "columns", "grid", "layout", "flex"],
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-row-editor",
12 "editorStyle": "bkbg-row-style",
13 "style": "bkbg-row-style",
14 "parent": ["blockenberg/section"],
15 "supports": {
16 "html": false,
17 "anchor": true,
18 "className": true
19 },
20 "attributes": {
21 "gap": {
22 "type": "string",
23 "default": "m"
24 },
25 "vAlign": {
26 "type": "string",
27 "default": "top"
28 },
29 "responsiveMode": {
30 "type": "string",
31 "default": "desktop"
32 },
33 "stackOnMobile": {
34 "type": "boolean",
35 "default": true
36 },
37 "minColumnPct": {
38 "type": "number",
39 "default": 10
40 },
41 "columnsCount": {
42 "type": "number",
43 "default": 1
44 },
45 "paddingTop": {
46 "type": "string",
47 "default": ""
48 },
49 "paddingTopUnit": {
50 "type": "string",
51 "default": "px"
52 },
53 "paddingTopCustomUnit": {
54 "type": "string",
55 "default": ""
56 },
57 "paddingRight": {
58 "type": "string",
59 "default": ""
60 },
61 "paddingRightUnit": {
62 "type": "string",
63 "default": "px"
64 },
65 "paddingRightCustomUnit": {
66 "type": "string",
67 "default": ""
68 },
69 "paddingBottom": {
70 "type": "string",
71 "default": ""
72 },
73 "paddingBottomUnit": {
74 "type": "string",
75 "default": "px"
76 },
77 "paddingBottomCustomUnit": {
78 "type": "string",
79 "default": ""
80 },
81 "paddingLeft": {
82 "type": "string",
83 "default": ""
84 },
85 "paddingLeftUnit": {
86 "type": "string",
87 "default": "px"
88 },
89 "paddingLeftCustomUnit": {
90 "type": "string",
91 "default": ""
92 },
93 "marginTop": {
94 "type": "string",
95 "default": ""
96 },
97 "marginTopUnit": {
98 "type": "string",
99 "default": "px"
100 },
101 "marginTopCustomUnit": {
102 "type": "string",
103 "default": ""
104 },
105 "marginRight": {
106 "type": "string",
107 "default": ""
108 },
109 "marginRightUnit": {
110 "type": "string",
111 "default": "px"
112 },
113 "marginRightCustomUnit": {
114 "type": "string",
115 "default": ""
116 },
117 "marginBottom": {
118 "type": "string",
119 "default": ""
120 },
121 "marginBottomUnit": {
122 "type": "string",
123 "default": "px"
124 },
125 "marginBottomCustomUnit": {
126 "type": "string",
127 "default": ""
128 },
129 "marginLeft": {
130 "type": "string",
131 "default": ""
132 },
133 "marginLeftUnit": {
134 "type": "string",
135 "default": "px"
136 },
137 "marginLeftCustomUnit": {
138 "type": "string",
139 "default": ""
140 }
141 },
142 "allowedBlocks": ["blockenberg/column"]
143 }
144