PluginProbe
Gutenberg / 20.0.1
Gutenberg v20.0.1
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 / query-pagination / block.json

block.json in Gutenberg 20.0.1, at build/block-library/blocks/query-pagination/block.json

70 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/query-pagination",
5 "title": "Pagination",
6 "category": "theme",
7 "ancestor": [ "core/query" ],
8 "allowedBlocks": [
9 "core/query-pagination-previous",
10 "core/query-pagination-numbers",
11 "core/query-pagination-next"
12 ],
13 "description": "Displays a paginated navigation to next/previous set of posts, when applicable.",
14 "textdomain": "default",
15 "attributes": {
16 "paginationArrow": {
17 "type": "string",
18 "default": "none"
19 },
20 "showLabel": {
21 "type": "boolean",
22 "default": true
23 }
24 },
25 "usesContext": [ "queryId", "query" ],
26 "providesContext": {
27 "paginationArrow": "paginationArrow",
28 "showLabel": "showLabel"
29 },
30 "supports": {
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-query-pagination-editor",
68 "style": "wp-block-query-pagination"
69 }
70