PluginProbe
Gutenberg / 22.7.0
Gutenberg v22.7.0
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 / scripts / block-library / icon / block.json

block.json in Gutenberg 22.7.0, at build/scripts/block-library/icon/block.json

80 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "core/icon",
5 "title": "Icon",
6 "category": "media",
7 "description": "Insert an SVG icon.",
8 "keywords": [ "icon", "svg" ],
9 "textdomain": "default",
10 "attributes": {
11 "icon": {
12 "type": "string",
13 "role": "content"
14 }
15 },
16 "supports": {
17 "anchor": true,
18 "ariaLabel": {
19 "__experimentalSkipSerialization": true
20 },
21 "align": [ "left", "center", "right" ],
22 "html": false,
23 "color": {
24 "background": true,
25 "text": true,
26 "__experimentalSkipSerialization": true
27 },
28 "interactivity": {
29 "clientNavigation": true
30 },
31 "__experimentalBorder": {
32 "color": true,
33 "radius": true,
34 "style": true,
35 "width": true,
36 "__experimentalSkipSerialization": true,
37 "__experimentalDefaultControls": {
38 "color": false,
39 "radius": false,
40 "style": false,
41 "width": false
42 }
43 },
44 "spacing": {
45 "padding": true,
46 "margin": true,
47 "__experimentalSkipSerialization": [ "padding" ],
48 "__experimentalDefaultControls": {
49 "margin": false,
50 "padding": false
51 }
52 },
53 "dimensions": {
54 "width": true,
55 "__experimentalSkipSerialization": [ "width" ],
56 "__experimentalDefaultControls": {
57 "width": true
58 }
59 }
60 },
61 "selectors": {
62 "root": ".wp-block-icon",
63 "color": {
64 "root": ".wp-block-icon svg"
65 },
66 "border": {
67 "root": ".wp-block-icon svg"
68 },
69 "spacing": {
70 "padding": ".wp-block-icon svg"
71 },
72 "dimensions": {
73 "root": ".wp-block-icon svg",
74 "width": ".wp-block-icon svg"
75 }
76 },
77 "style": "wp-block-icon",
78 "editorStyle": "wp-block-icon-editor"
79 }
80