build/scripts/block-library/rss
block.json
1.4 KB
7 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/rss/block.json
| 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 |