PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.12.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.12.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.12.0, at assets/build/blocks/atomic-image/block.json

120 lines 2.1 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 "default": ""
48 },
49 "alt": {
50 "type": "string",
51 "default": ""
52 },
53 "imageId": {
54 "type": "number",
55 "default": 0
56 },
57 "sizeSlug": {
58 "type": "string",
59 "default": ""
60 },
61 "link": {
62 "type": "object",
63 "default": {
64 "url": "",
65 "newTab": false,
66 "noFollow": false
67 }
68 },
69 "globalClasses": {
70 "type": "array",
71 "default": []
72 },
73 "htmlId": {
74 "type": "string",
75 "default": ""
76 },
77 "animation": {
78 "type": "object",
79 "default": {
80 "type": "",
81 "duration": "0.6",
82 "delay": "0"
83 }
84 },
85 "animations": {
86 "type": "array",
87 "default": []
88 },
89 "transitionDuration": {
90 "type": "string",
91 "default": ""
92 },
93 "alignment": {
94 "type": "object",
95 "default": {
96 "value": "",
97 "valueTablet": "",
98 "valueMobile": ""
99 }
100 },
101 "styles": {
102 "type": "object",
103 "default": {
104 "v": 3
105 }
106 },
107 "customCSS": {
108 "type": "string",
109 "default": ""
110 },
111 "hideOn": {
112 "type": "object",
113 "default": {
114 "desktop": false,
115 "tablet": false,
116 "mobile": false
117 }
118 }
119 }
120 }