PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / pagination / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/pagination/block.json

93 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/pagination",
5 "title": "Pagination",
6 "category": "bkbg-layout",
7 "icon": "controls-forward",
8 "description": "Styled numeric pagination preview with prev/next, colors, shape and alignment controls.",
9 "keywords": [
10 "pagination",
11 "pages",
12 "nav",
13 "next",
14 "previous",
15 "page numbers"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-pagination-editor",
19 "editorStyle": "bkbg-pagination-style",
20 "style": "bkbg-pagination-style",
21 "viewScript": "bkbg-pagination-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "prevLabel": {
33 "type": "string",
34 "default": "\u2190 Previous"
35 },
36 "nextLabel": {
37 "type": "string",
38 "default": "Next \u2192"
39 },
40 "pageRange": {
41 "type": "number",
42 "default": 2
43 },
44 "alignment": {
45 "type": "string",
46 "default": "center"
47 },
48 "style": {
49 "type": "string",
50 "default": "rounded"
51 },
52 "itemSize": {
53 "type": "number",
54 "default": 40
55 },
56 "gap": {
57 "type": "number",
58 "default": 6
59 },
60 "fontSize": {
61 "type": "number",
62 "default": 14
63 },
64 "activeBg": {
65 "type": "string",
66 "default": "#6c3fb5"
67 },
68 "activeText": {
69 "type": "string",
70 "default": "#ffffff"
71 },
72 "normalBg": {
73 "type": "string",
74 "default": "#f3f4f6"
75 },
76 "normalText": {
77 "type": "string",
78 "default": "#374151"
79 },
80 "hoverBg": {
81 "type": "string",
82 "default": "#ede9fe"
83 },
84 "fontWeight": {
85 "type": "string",
86 "default": "600"
87 },
88 "itemTypo": {
89 "type": "object",
90 "default": {}
91 }
92 }
93 }