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

126 lines 2.3 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-image",
5 "version": "0.1.0",
6 "title": "Atomic Image",
7 "category": "ablocks-atomic",
8 "description": "A single image with object-fit, sizing and the full atomic style system.",
9 "keywords": [
10 "ablocks",
11 "image",
12 "img",
13 "picture",
14 "media",
15 "atomic"
16 ],
17 "supports": {
18 "html": false,
19 "anchor": true,
20 "className": false
21 },
22 "textdomain": "ablocks",
23 "editorStyle": [
24 "ablocks-common-style",
25 "file:./style.css"
26 ],
27 "style": [
28 "file:./style.css"
29 ],
30 "editorScript": [
31 "ablocks-common-script"
32 ],
33 "viewScript": [
34 "file:./view.js"
35 ],
36 "attributes": {
37 "block_id": {
38 "type": "string",
39 "default": ""
40 },
41 "blockVersion": {
42 "type": "number",
43 "default": 3
44 },
45 "src": {
46 "type": "string",
47 "source": "attribute",
48 "selector": "img",
49 "attribute": "src",
50 "default": ""
51 },
52 "alt": {
53 "type": "string",
54 "source": "attribute",
55 "selector": "img",
56 "attribute": "alt",
57 "default": ""
58 },
59 "imageId": {
60 "type": "number",
61 "default": 0
62 },
63 "sizeSlug": {
64 "type": "string",
65 "default": ""
66 },
67 "link": {
68 "type": "object",
69 "default": {
70 "url": "",
71 "newTab": false,
72 "noFollow": false
73 }
74 },
75 "globalClasses": {
76 "type": "array",
77 "default": []
78 },
79 "htmlId": {
80 "type": "string",
81 "default": ""
82 },
83 "animation": {
84 "type": "object",
85 "default": {
86 "type": "",
87 "duration": "0.6",
88 "delay": "0"
89 }
90 },
91 "animations": {
92 "type": "array",
93 "default": []
94 },
95 "transitionDuration": {
96 "type": "string",
97 "default": ""
98 },
99 "alignment": {
100 "type": "object",
101 "default": {
102 "value": "",
103 "valueTablet": "",
104 "valueMobile": ""
105 }
106 },
107 "styles": {
108 "type": "object",
109 "default": {
110 "v": 3
111 }
112 },
113 "customCSS": {
114 "type": "string",
115 "default": ""
116 },
117 "hideOn": {
118 "type": "object",
119 "default": {
120 "desktop": false,
121 "tablet": false,
122 "mobile": false
123 }
124 }
125 }
126 }