PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / grid-column / block.json

block.json in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/blocks/grid-column/block.json

104 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "ghostkit/grid-column",
5 "parent": ["ghostkit/grid"],
6 "category": "ghostkit",
7 "title": "Column",
8 "description": "A single column within a grid block.",
9 "supports": {
10 "awb": true,
11 "ghostkit": {
12 "styles": {
13 "customSelector": ".ghostkit-grid &"
14 }
15 },
16 "html": false,
17 "className": false,
18 "anchor": true,
19 "reusable": false,
20 "spacing": {
21 "blockGap": true,
22 "__experimentalDefaultControls": {
23 "blockGap": true
24 }
25 },
26 "__experimentalLayout": true,
27 "layout": true
28 },
29 "attributes": {
30 "sm_size": {
31 "type": "string",
32 "default": ""
33 },
34 "sm_order": {
35 "type": "string",
36 "default": ""
37 },
38 "sm_verticalAlign": {
39 "type": "string",
40 "default": ""
41 },
42
43 "md_size": {
44 "type": "string",
45 "default": ""
46 },
47 "md_order": {
48 "type": "string",
49 "default": ""
50 },
51 "md_verticalAlign": {
52 "type": "string",
53 "default": ""
54 },
55
56 "lg_size": {
57 "type": "string",
58 "default": ""
59 },
60 "lg_order": {
61 "type": "string",
62 "default": ""
63 },
64 "lg_verticalAlign": {
65 "type": "string",
66 "default": ""
67 },
68
69 "xl_size": {
70 "type": "string",
71 "default": ""
72 },
73 "xl_order": {
74 "type": "string",
75 "default": ""
76 },
77 "xl_verticalAlign": {
78 "type": "string",
79 "default": ""
80 },
81
82 "size": {
83 "type": "string",
84 "default": "auto"
85 },
86 "order": {
87 "type": "string",
88 "default": ""
89 },
90 "verticalAlign": {
91 "type": "string",
92 "default": ""
93 },
94 "stickyContent": {
95 "type": "string",
96 "default": ""
97 },
98 "stickyContentOffset": {
99 "type": "number",
100 "default": 0
101 }
102 }
103 }
104