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

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

140 lines 2.7 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/column",
5 "title": "Column",
6 "category": "blockenberg",
7 "icon": "align-center",
8 "description": "A column container within a row for content.",
9 "keywords": ["column", "layout", "grid", "cell"],
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-column-editor",
12 "editorStyle": "bkbg-column-style",
13 "style": "bkbg-column-style",
14 "parent": ["blockenberg/row"],
15 "supports": {
16 "html": false,
17 "anchor": true,
18 "className": true,
19 "reusable": false
20 },
21 "attributes": {
22 "widths": {
23 "type": "object",
24 "default": {
25 "desktop": 50,
26 "tablet": 50,
27 "mobile": 100
28 }
29 },
30 "uid": {
31 "type": "string",
32 "default": ""
33 },
34 "paddingInner": {
35 "type": "string",
36 "default": "none"
37 },
38 "vAlign": {
39 "type": "string",
40 "default": "top"
41 },
42 "paddingTop": {
43 "type": "string",
44 "default": ""
45 },
46 "paddingTopUnit": {
47 "type": "string",
48 "default": "px"
49 },
50 "paddingTopCustomUnit": {
51 "type": "string",
52 "default": ""
53 },
54 "paddingRight": {
55 "type": "string",
56 "default": ""
57 },
58 "paddingRightUnit": {
59 "type": "string",
60 "default": "px"
61 },
62 "paddingRightCustomUnit": {
63 "type": "string",
64 "default": ""
65 },
66 "paddingBottom": {
67 "type": "string",
68 "default": ""
69 },
70 "paddingBottomUnit": {
71 "type": "string",
72 "default": "px"
73 },
74 "paddingBottomCustomUnit": {
75 "type": "string",
76 "default": ""
77 },
78 "paddingLeft": {
79 "type": "string",
80 "default": ""
81 },
82 "paddingLeftUnit": {
83 "type": "string",
84 "default": "px"
85 },
86 "paddingLeftCustomUnit": {
87 "type": "string",
88 "default": ""
89 },
90 "marginTop": {
91 "type": "string",
92 "default": ""
93 },
94 "marginTopUnit": {
95 "type": "string",
96 "default": "px"
97 },
98 "marginTopCustomUnit": {
99 "type": "string",
100 "default": ""
101 },
102 "marginRight": {
103 "type": "string",
104 "default": ""
105 },
106 "marginRightUnit": {
107 "type": "string",
108 "default": "px"
109 },
110 "marginRightCustomUnit": {
111 "type": "string",
112 "default": ""
113 },
114 "marginBottom": {
115 "type": "string",
116 "default": ""
117 },
118 "marginBottomUnit": {
119 "type": "string",
120 "default": "px"
121 },
122 "marginBottomCustomUnit": {
123 "type": "string",
124 "default": ""
125 },
126 "marginLeft": {
127 "type": "string",
128 "default": ""
129 },
130 "marginLeftUnit": {
131 "type": "string",
132 "default": "px"
133 },
134 "marginLeftCustomUnit": {
135 "type": "string",
136 "default": ""
137 }
138 }
139 }
140