PluginProbe
Gutenberg / 13.5.1
Gutenberg v13.5.1
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / block-library / blocks / image / block.json

block.json in Gutenberg 13.5.1, at build/block-library/blocks/image/block.json

109 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": 2,
4 "name": "core/image",
5 "title": "Image",
6 "category": "media",
7 "usesContext": [ "allowResize", "imageCrop", "fixedHeight" ],
8 "description": "Insert an image to make a visual statement.",
9 "keywords": [ "img", "photo", "picture" ],
10 "textdomain": "default",
11 "attributes": {
12 "align": {
13 "type": "string"
14 },
15 "url": {
16 "type": "string",
17 "source": "attribute",
18 "selector": "img",
19 "attribute": "src"
20 },
21 "alt": {
22 "type": "string",
23 "source": "attribute",
24 "selector": "img",
25 "attribute": "alt",
26 "default": ""
27 },
28 "caption": {
29 "type": "string",
30 "source": "html",
31 "selector": "figcaption"
32 },
33 "title": {
34 "type": "string",
35 "source": "attribute",
36 "selector": "img",
37 "attribute": "title"
38 },
39 "href": {
40 "type": "string",
41 "source": "attribute",
42 "selector": "figure > a",
43 "attribute": "href"
44 },
45 "rel": {
46 "type": "string",
47 "source": "attribute",
48 "selector": "figure > a",
49 "attribute": "rel"
50 },
51 "linkClass": {
52 "type": "string",
53 "source": "attribute",
54 "selector": "figure > a",
55 "attribute": "class"
56 },
57 "id": {
58 "type": "number"
59 },
60 "width": {
61 "type": "number"
62 },
63 "height": {
64 "type": "number"
65 },
66 "sizeSlug": {
67 "type": "string"
68 },
69 "linkDestination": {
70 "type": "string"
71 },
72 "linkTarget": {
73 "type": "string",
74 "source": "attribute",
75 "selector": "figure > a",
76 "attribute": "target"
77 }
78 },
79 "supports": {
80 "anchor": true,
81 "color": {
82 "__experimentalDuotone": "img",
83 "text": false,
84 "background": false
85 },
86 "__experimentalBorder": {
87 "radius": true,
88 "__experimentalDefaultControls": {
89 "radius": true
90 }
91 },
92 "__experimentalStyle": {
93 "spacing": {
94 "margin": "0 0 1em 0"
95 }
96 }
97 },
98 "styles": [
99 {
100 "name": "default",
101 "label": "Default",
102 "isDefault": true
103 },
104 { "name": "rounded", "label": "Rounded" }
105 ],
106 "editorStyle": "wp-block-image-editor",
107 "style": "wp-block-image"
108 }
109