PluginProbe
Gutenberg / 23.6.2
Gutenberg v23.6.2
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 / quote / block.json

block.json in Gutenberg 23.6.2, at build/scripts/block-library/quote/block.json

108 lines 2.2 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 "role": "content"
18 },
19 "citation": {
20 "type": "rich-text",
21 "source": "rich-text",
22 "selector": "cite",
23 "role": "content"
24 },
25 "textAlign": {
26 "type": "string"
27 }
28 },
29 "supports": {
30 "anchor": true,
31 "align": [ "left", "right", "wide", "full" ],
32 "html": false,
33 "background": {
34 "backgroundImage": true,
35 "backgroundSize": true,
36 "gradient": true,
37 "__experimentalDefaultControls": {
38 "backgroundImage": true,
39 "gradient": true
40 }
41 },
42 "__experimentalBorder": {
43 "color": true,
44 "radius": true,
45 "style": true,
46 "width": true,
47 "__experimentalDefaultControls": {
48 "color": true,
49 "radius": true,
50 "style": true,
51 "width": true
52 }
53 },
54 "dimensions": {
55 "minHeight": true,
56 "__experimentalDefaultControls": {
57 "minHeight": false
58 }
59 },
60 "__experimentalOnEnter": true,
61 "__experimentalOnMerge": true,
62 "typography": {
63 "fontSize": true,
64 "lineHeight": true,
65 "__experimentalFontFamily": true,
66 "__experimentalFontWeight": true,
67 "__experimentalFontStyle": true,
68 "__experimentalTextTransform": true,
69 "__experimentalTextDecoration": true,
70 "__experimentalLetterSpacing": true,
71 "__experimentalDefaultControls": {
72 "fontSize": true
73 }
74 },
75 "color": {
76 "gradients": true,
77 "heading": true,
78 "link": true,
79 "__experimentalDefaultControls": {
80 "background": true,
81 "text": true
82 }
83 },
84 "layout": {
85 "allowEditing": false
86 },
87 "spacing": {
88 "blockGap": true,
89 "padding": true,
90 "margin": true
91 },
92 "interactivity": {
93 "clientNavigation": true
94 },
95 "allowedBlocks": true
96 },
97 "styles": [
98 {
99 "name": "default",
100 "label": "Default",
101 "isDefault": true
102 },
103 { "name": "plain", "label": "Plain" }
104 ],
105 "editorStyle": "wp-block-quote-editor",
106 "style": "wp-block-quote"
107 }
108