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 / post-navigation / block.json

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

130 lines 3.2 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": "blockenberg/post-navigation",
5 "version": "1.0.0",
6 "title": "Post Navigation",
7 "category": "bkbg-blog",
8 "icon": "arrow-left-alt",
9 "description": "Previous / Next article navigation with styled arrows, post titles, and optional thumbnails. Supports four layout styles: minimal text links, large arrow cards, split full-width divider, and pill buttons.",
10 "keywords": [
11 "post navigation",
12 "prev next",
13 "previous next",
14 "blog navigation",
15 "article navigation"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-post-navigation-editor",
19 "style": "bkbg-post-navigation-style",
20 "supports": {
21 "html": false,
22 "align": [
23 "wide",
24 "full"
25 ]
26 },
27 "attributes": {
28 "prevLabel": {
29 "type": "string",
30 "default": "Previous Article"
31 },
32 "prevTitle": {
33 "type": "string",
34 "default": "How to Build a Design System from Scratch"
35 },
36 "prevUrl": {
37 "type": "string",
38 "default": "#"
39 },
40 "nextLabel": {
41 "type": "string",
42 "default": "Next Article"
43 },
44 "nextTitle": {
45 "type": "string",
46 "default": "10 Principles Every Product Designer Should Know"
47 },
48 "nextUrl": {
49 "type": "string",
50 "default": "#"
51 },
52 "showLabels": {
53 "type": "boolean",
54 "default": true
55 },
56 "showArrows": {
57 "type": "boolean",
58 "default": true
59 },
60 "showDivider": {
61 "type": "boolean",
62 "default": true
63 },
64 "style": {
65 "type": "string",
66 "default": "cards"
67 },
68 "maxWidth": {
69 "type": "integer",
70 "default": 860
71 },
72 "paddingTop": {
73 "type": "integer",
74 "default": 48
75 },
76 "paddingBottom": {
77 "type": "integer",
78 "default": 48
79 },
80 "borderRadius": {
81 "type": "integer",
82 "default": 14
83 },
84 "gap": {
85 "type": "integer",
86 "default": 16
87 },
88
89 "arrowSize": {
90 "type": "integer",
91 "default": 22
92 },
93 "bgColor": {
94 "type": "string",
95 "default": "#ffffff"
96 },
97 "cardBg": {
98 "type": "string",
99 "default": "#f8fafc"
100 },
101 "textColor": {
102 "type": "string",
103 "default": "#0f172a"
104 },
105 "labelColor": {
106 "type": "string",
107 "default": "#94a3b8"
108 },
109 "accentColor": {
110 "type": "string",
111 "default": "#6c3fb5"
112 },
113 "borderColor": {
114 "type": "string",
115 "default": "#e2e8f0"
116 },
117 "hoverBg": {
118 "type": "string",
119 "default": "#f1f5f9"
120 },
121 "labelTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "titleTypo": {
126 "type": "object",
127 "default": {}
128 }
129 }
130 }