PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.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
build/scripts/block-library/icon
block.json 1.4 KB 5 months ago

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

71 lines 1.4 KB 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 svg",
63 "css": ".wp-block-icon",
64 "spacing": {
65 "margin": ".wp-block-icon"
66 }
67 },
68 "style": "wp-block-icon",
69 "editorStyle": "wp-block-icon-editor"
70 }
71