PluginProbe
Gutenberg / 23.5.1
Gutenberg v23.5.1
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 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / icon / block.json

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

83 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 "flipHorizontal": {
16 "type": "boolean",
17 "default": false
18 },
19 "flipVertical": {
20 "type": "boolean",
21 "default": false
22 },
23 "rotation": {
24 "type": "number",
25 "default": 0
26 }
27 },
28 "supports": {
29 "anchor": true,
30 "ariaLabel": {
31 "__experimentalSkipSerialization": true
32 },
33 "align": [ "left", "center", "right" ],
34 "html": false,
35 "color": {
36 "background": true,
37 "text": true,
38 "__experimentalSkipSerialization": true
39 },
40 "interactivity": {
41 "clientNavigation": true
42 },
43 "__experimentalBorder": {
44 "color": true,
45 "radius": true,
46 "style": true,
47 "width": true,
48 "__experimentalSkipSerialization": true,
49 "__experimentalDefaultControls": {
50 "color": false,
51 "radius": false,
52 "style": false,
53 "width": false
54 }
55 },
56 "spacing": {
57 "padding": true,
58 "margin": true,
59 "__experimentalSkipSerialization": [ "padding" ],
60 "__experimentalDefaultControls": {
61 "margin": false,
62 "padding": false
63 }
64 },
65 "dimensions": {
66 "width": true,
67 "__experimentalSkipSerialization": [ "width" ],
68 "__experimentalDefaultControls": {
69 "width": true
70 }
71 }
72 },
73 "selectors": {
74 "root": ".wp-block-icon svg",
75 "css": ".wp-block-icon",
76 "spacing": {
77 "margin": ".wp-block-icon"
78 }
79 },
80 "style": "wp-block-icon",
81 "editorStyle": "wp-block-icon-editor"
82 }
83