PluginProbe
Gutenberg / 19.6.0
Gutenberg v19.6.0
24.0.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 All 403 releases
gutenberg / build / block-library / blocks / comments-pagination / block.json

block.json in Gutenberg 19.6.0, at build/block-library/blocks/comments-pagination/block.json

64 lines 1.5 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/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 "providesContext": {
22 "comments/paginationArrow": "paginationArrow"
23 },
24 "supports": {
25 "align": true,
26 "reusable": false,
27 "html": false,
28 "color": {
29 "gradients": true,
30 "link": true,
31 "__experimentalDefaultControls": {
32 "background": true,
33 "text": true,
34 "link": true
35 }
36 },
37 "layout": {
38 "allowSwitching": false,
39 "allowInheriting": false,
40 "default": {
41 "type": "flex"
42 }
43 },
44 "typography": {
45 "fontSize": true,
46 "lineHeight": true,
47 "__experimentalFontFamily": true,
48 "__experimentalFontWeight": true,
49 "__experimentalFontStyle": true,
50 "__experimentalTextTransform": true,
51 "__experimentalTextDecoration": true,
52 "__experimentalLetterSpacing": true,
53 "__experimentalDefaultControls": {
54 "fontSize": true
55 }
56 },
57 "interactivity": {
58 "clientNavigation": true
59 }
60 },
61 "editorStyle": "wp-block-comments-pagination-editor",
62 "style": "wp-block-comments-pagination"
63 }
64