build/scripts/block-library/comments-pagination
block.json
1.5 KB
8 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/comments-pagination/block.json
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "core/comments-pagination", |
| 5 | "title": "Comments Pagination", |
| 6 | "category": "theme", |
| 7 | "parent": [ "core/comments" ], |
| 8 | "allowedBlocks": [ |
| 9 | "core/comments-pagination-previous", |
| 10 | "core/comments-pagination-numbers", |
| 11 | "core/comments-pagination-next" |
| 12 | ], |
| 13 | "description": "Displays a paginated navigation to next/previous set of comments, when applicable.", |
| 14 | "textdomain": "default", |
| 15 | "attributes": { |
| 16 | "paginationArrow": { |
| 17 | "type": "string", |
| 18 | "default": "none" |
| 19 | } |
| 20 | }, |
| 21 | "example": { |
| 22 | "attributes": { |
| 23 | "paginationArrow": "none" |
| 24 | } |
| 25 | }, |
| 26 | "providesContext": { |
| 27 | "comments/paginationArrow": "paginationArrow" |
| 28 | }, |
| 29 | "supports": { |
| 30 | "anchor": true, |
| 31 | "align": true, |
| 32 | "reusable": false, |
| 33 | "html": false, |
| 34 | "color": { |
| 35 | "gradients": true, |
| 36 | "link": true, |
| 37 | "__experimentalDefaultControls": { |
| 38 | "background": true, |
| 39 | "text": true, |
| 40 | "link": true |
| 41 | } |
| 42 | }, |
| 43 | "layout": { |
| 44 | "allowSwitching": false, |
| 45 | "allowInheriting": false, |
| 46 | "default": { |
| 47 | "type": "flex" |
| 48 | } |
| 49 | }, |
| 50 | "typography": { |
| 51 | "fontSize": true, |
| 52 | "lineHeight": true, |
| 53 | "__experimentalFontFamily": true, |
| 54 | "__experimentalFontWeight": true, |
| 55 | "__experimentalFontStyle": true, |
| 56 | "__experimentalTextTransform": true, |
| 57 | "__experimentalTextDecoration": true, |
| 58 | "__experimentalLetterSpacing": true, |
| 59 | "__experimentalDefaultControls": { |
| 60 | "fontSize": true |
| 61 | } |
| 62 | }, |
| 63 | "interactivity": { |
| 64 | "clientNavigation": true |
| 65 | } |
| 66 | }, |
| 67 | "editorStyle": "wp-block-comments-pagination-editor", |
| 68 | "style": "wp-block-comments-pagination" |
| 69 | } |
| 70 |