PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.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 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / rss / block.json

block.json in Gutenberg 22.3.0, at build/scripts/block-library/rss/block.json

82 lines 1.4 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/rss",
5 "title": "RSS",
6 "category": "widgets",
7 "description": "Display entries from any RSS or Atom feed.",
8 "keywords": [ "atom", "feed" ],
9 "textdomain": "default",
10 "attributes": {
11 "columns": {
12 "type": "number",
13 "default": 2
14 },
15 "blockLayout": {
16 "type": "string",
17 "default": "list"
18 },
19 "feedURL": {
20 "type": "string",
21 "default": "",
22 "role": "content"
23 },
24 "itemsToShow": {
25 "type": "number",
26 "default": 5
27 },
28 "displayExcerpt": {
29 "type": "boolean",
30 "default": false
31 },
32 "displayAuthor": {
33 "type": "boolean",
34 "default": false
35 },
36 "displayDate": {
37 "type": "boolean",
38 "default": false
39 },
40 "excerptLength": {
41 "type": "number",
42 "default": 55
43 },
44 "openInNewTab": {
45 "type": "boolean",
46 "default": false
47 },
48 "rel": {
49 "type": "string"
50 }
51 },
52 "supports": {
53 "align": true,
54 "html": false,
55 "interactivity": {
56 "clientNavigation": true
57 },
58 "__experimentalBorder": {
59 "radius": true,
60 "color": true,
61 "width": true,
62 "style": true
63 },
64 "spacing": {
65 "margin": true,
66 "padding": true,
67 "__experimentalDefaultControls": {
68 "padding": false,
69 "margin": false
70 }
71 },
72 "color": {
73 "background": true,
74 "text": true,
75 "gradients": true,
76 "link": true
77 }
78 },
79 "editorStyle": "wp-block-rss-editor",
80 "style": "wp-block-rss"
81 }
82