PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
ablocks / assets / build / blocks / atomic-div / block.json

block.json in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.14.0, at assets/build/blocks/atomic-div/block.json

112 lines 2.0 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": "ablocks/atomic-div",
5 "version": "0.1.0",
6 "title": "Atomic Div",
7 "category": "ablocks-atomic",
8 "description": "A generic container — one semantic element wrapping inner blocks, with the full atomic style system.",
9 "keywords": [
10 "ablocks",
11 "div",
12 "container",
13 "box",
14 "atomic",
15 "wrapper"
16 ],
17 "supports": {
18 "align": [
19 "wide",
20 "full"
21 ],
22 "html": false,
23 "anchor": true,
24 "className": false
25 },
26 "textdomain": "ablocks",
27 "editorStyle": [
28 "ablocks-common-style",
29 "file:./style.css"
30 ],
31 "style": [
32 "file:./style.css"
33 ],
34 "editorScript": [
35 "ablocks-common-script"
36 ],
37 "viewScript": [
38 "file:./view.js"
39 ],
40 "attributes": {
41 "block_id": {
42 "type": "string",
43 "default": ""
44 },
45 "blockVersion": {
46 "type": "number",
47 "default": 3
48 },
49 "htmlTag": {
50 "type": "string",
51 "default": "div"
52 },
53 "globalClasses": {
54 "type": "array",
55 "default": []
56 },
57 "htmlId": {
58 "type": "string",
59 "default": ""
60 },
61 "link": {
62 "type": "object",
63 "default": {
64 "url": "",
65 "newTab": false,
66 "noFollow": false
67 }
68 },
69 "animation": {
70 "type": "object",
71 "default": {
72 "type": "",
73 "duration": "0.6",
74 "delay": "0"
75 }
76 },
77 "animations": {
78 "type": "array",
79 "default": []
80 },
81 "transitionDuration": {
82 "type": "string",
83 "default": ""
84 },
85 "alignment": {
86 "type": "object",
87 "default": {
88 "value": "",
89 "valueTablet": "",
90 "valueMobile": ""
91 }
92 },
93 "styles": {
94 "type": "object",
95 "default": {
96 "v": 3
97 }
98 },
99 "customCSS": {
100 "type": "string",
101 "default": ""
102 },
103 "hideOn": {
104 "type": "object",
105 "default": {
106 "desktop": false,
107 "tablet": false,
108 "mobile": false
109 }
110 }
111 }
112 }