PluginProbe
Gutenberg / 18.9.0
Gutenberg v18.9.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 / block-library / blocks / quote / block.json

block.json in Gutenberg 18.9.0, at build/block-library/blocks/quote/block.json

104 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": "core/quote",
5 "title": "Quote",
6 "category": "text",
7 "description": "Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar",
8 "keywords": [ "blockquote", "cite" ],
9 "textdomain": "default",
10 "attributes": {
11 "value": {
12 "type": "string",
13 "source": "html",
14 "selector": "blockquote",
15 "multiline": "p",
16 "default": "",
17 "__experimentalRole": "content"
18 },
19 "citation": {
20 "type": "rich-text",
21 "source": "rich-text",
22 "selector": "cite",
23 "__experimentalRole": "content"
24 },
25 "textAlign": {
26 "type": "string"
27 }
28 },
29 "supports": {
30 "anchor": true,
31 "html": false,
32 "background": {
33 "backgroundImage": true,
34 "backgroundSize": true,
35 "__experimentalDefaultControls": {
36 "backgroundImage": true
37 }
38 },
39 "__experimentalBorder": {
40 "color": true,
41 "radius": true,
42 "style": true,
43 "width": true,
44 "__experimentalDefaultControls": {
45 "color": true,
46 "radius": true,
47 "style": true,
48 "width": true
49 }
50 },
51 "dimensions": {
52 "minHeight": true,
53 "__experimentalDefaultControls": {
54 "minHeight": false
55 }
56 },
57 "__experimentalOnEnter": true,
58 "__experimentalOnMerge": true,
59 "typography": {
60 "fontSize": true,
61 "lineHeight": true,
62 "__experimentalFontFamily": true,
63 "__experimentalFontWeight": true,
64 "__experimentalFontStyle": true,
65 "__experimentalTextTransform": true,
66 "__experimentalTextDecoration": true,
67 "__experimentalLetterSpacing": true,
68 "__experimentalDefaultControls": {
69 "fontSize": true
70 }
71 },
72 "color": {
73 "gradients": true,
74 "heading": true,
75 "link": true,
76 "__experimentalDefaultControls": {
77 "background": true,
78 "text": true
79 }
80 },
81 "layout": {
82 "allowEditing": false
83 },
84 "spacing": {
85 "blockGap": true,
86 "padding": true,
87 "margin": true
88 },
89 "interactivity": {
90 "clientNavigation": true
91 }
92 },
93 "styles": [
94 {
95 "name": "default",
96 "label": "Default",
97 "isDefault": true
98 },
99 { "name": "plain", "label": "Plain" }
100 ],
101 "editorStyle": "wp-block-quote-editor",
102 "style": "wp-block-quote"
103 }
104