PluginProbe
Gutenberg / 23.3.1
Gutenberg v23.3.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 / preformatted / block.json

block.json in Gutenberg 23.3.1, at build/scripts/block-library/preformatted/block.json

62 lines 1.3 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/preformatted",
5 "title": "Preformatted",
6 "category": "text",
7 "description": "Add text that respects your spacing and tabs, and also allows styling.",
8 "textdomain": "default",
9 "attributes": {
10 "content": {
11 "type": "rich-text",
12 "source": "rich-text",
13 "selector": "pre",
14 "__unstablePreserveWhiteSpace": true,
15 "role": "content"
16 }
17 },
18 "supports": {
19 "anchor": true,
20 "color": {
21 "gradients": true,
22 "__experimentalDefaultControls": {
23 "background": true,
24 "text": true
25 }
26 },
27 "spacing": {
28 "padding": true,
29 "margin": true
30 },
31 "typography": {
32 "fontSize": true,
33 "lineHeight": true,
34 "__experimentalFontFamily": true,
35 "__experimentalFontWeight": true,
36 "__experimentalFontStyle": true,
37 "__experimentalTextTransform": true,
38 "__experimentalTextDecoration": true,
39 "__experimentalLetterSpacing": true,
40 "__experimentalDefaultControls": {
41 "fontSize": true
42 }
43 },
44 "interactivity": {
45 "clientNavigation": true
46 },
47 "__experimentalBorder": {
48 "radius": true,
49 "color": true,
50 "width": true,
51 "style": true,
52 "__experimentalDefaultControls": {
53 "radius": true,
54 "color": true,
55 "width": true,
56 "style": true
57 }
58 }
59 },
60 "style": "wp-block-preformatted"
61 }
62