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 / error-page / block.json

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

156 lines 3.9 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/error-page",
5 "version": "1.0.0",
6 "title": "Error Page",
7 "category": "bkbg-dev",
8 "icon": "warning",
9 "description": "404 / error page section with large decorative error code, heading, description, primary and secondary CTA buttons, optional illustration image, and full background controls.",
10 "keywords": [
11 "404",
12 "error",
13 "not found",
14 "page",
15 "section"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-error-page-editor",
19 "style": "bkbg-error-page-style",
20 "viewScript": "bkbg-error-page-frontend",
21 "attributes": {
22 "errorCode": {
23 "type": "string",
24 "default": "404"
25 },
26 "showError": {
27 "type": "boolean",
28 "default": true
29 },
30 "heading": {
31 "type": "string",
32 "default": "Page not found."
33 },
34 "subtext": {
35 "type": "string",
36 "default": "Oops! The page you're looking for doesn't exist. It might have been moved or deleted."
37 },
38 "showImage": {
39 "type": "boolean",
40 "default": false
41 },
42 "imageUrl": {
43 "type": "string",
44 "default": ""
45 },
46 "imageId": {
47 "type": "number",
48 "default": 0
49 },
50 "imageAlt": {
51 "type": "string",
52 "default": ""
53 },
54 "imageWidth": {
55 "type": "number",
56 "default": 360
57 },
58 "primaryLabel": {
59 "type": "string",
60 "default": "Go to Homepage"
61 },
62 "primaryUrl": {
63 "type": "string",
64 "default": "/"
65 },
66 "showSecondary": {
67 "type": "boolean",
68 "default": true
69 },
70 "secondaryLabel": {
71 "type": "string",
72 "default": "Contact Support"
73 },
74 "secondaryUrl": {
75 "type": "string",
76 "default": "/contact"
77 },
78 "showSearch": {
79 "type": "boolean",
80 "default": false
81 },
82 "layout": {
83 "type": "string",
84 "default": "centered"
85 },
86 "bgColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "errorCodeColor": {
91 "type": "string",
92 "default": "#f3f0ff"
93 },
94 "headingColor": {
95 "type": "string",
96 "default": "#111827"
97 },
98 "textColor": {
99 "type": "string",
100 "default": "#6b7280"
101 },
102 "primaryBg": {
103 "type": "string",
104 "default": "#7c3aed"
105 },
106 "primaryColor": {
107 "type": "string",
108 "default": "#ffffff"
109 },
110 "secondaryBg": {
111 "type": "string",
112 "default": "transparent"
113 },
114 "secondaryColor": {
115 "type": "string",
116 "default": "#374151"
117 },
118 "errorCodeSize": {
119 "type": "number",
120 "default": 180
121 },
122 "headingSize": {
123 "type": "number",
124 "default": 40
125 },
126 "textSize": {
127 "type": "number",
128 "default": 18
129 },
130 "typoCode": { "type": "object", "default": {} },
131 "typoHeading": { "type": "object", "default": {} },
132 "typoBody": { "type": "object", "default": {} },
133 "paddingTop": {
134 "type": "number",
135 "default": 100
136 },
137 "paddingBottom": {
138 "type": "number",
139 "default": 100
140 },
141 "maxWidth": {
142 "type": "number",
143 "default": 700
144 }
145 },
146 "supports": {
147 "html": false,
148 "anchor": true,
149 "className": true,
150 "align": [
151 "wide",
152 "full"
153 ]
154 }
155 }
156