PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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.9.0, at build/scripts/block-library/rss/block.json

83 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 "anchor": true,
54 "align": true,
55 "html": false,
56 "interactivity": {
57 "clientNavigation": true
58 },
59 "__experimentalBorder": {
60 "radius": true,
61 "color": true,
62 "width": true,
63 "style": true
64 },
65 "spacing": {
66 "margin": true,
67 "padding": true,
68 "__experimentalDefaultControls": {
69 "padding": false,
70 "margin": false
71 }
72 },
73 "color": {
74 "background": true,
75 "text": true,
76 "gradients": true,
77 "link": true
78 }
79 },
80 "editorStyle": "wp-block-rss-editor",
81 "style": "wp-block-rss"
82 }
83