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

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

216 lines 5.3 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/page-header",
5 "version": "1.0.0",
6 "title": "Page Header",
7 "category": "bkbg-layout",
8 "icon": "welcome-view-site",
9 "description": "A versatile page hero/banner section: eyebrow label, headline, subtitle, breadcrumbs, CTA buttons, and rich background options.",
10 "keywords": [
11 "hero",
12 "banner",
13 "page header",
14 "heading",
15 "jumbotron",
16 "intro"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-page-header-editor",
20 "style": "bkbg-page-header-style",
21 "viewScript": "bkbg-page-header-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "style": {
31 "type": "string",
32 "default": "centered"
33 },
34 "showEyebrow": {
35 "type": "boolean",
36 "default": true
37 },
38 "eyebrow": {
39 "type": "string",
40 "default": "Welcome"
41 },
42 "headline": {
43 "type": "string",
44 "default": "The headline that makes them stay"
45 },
46 "subtitle": {
47 "type": "string",
48 "default": "A compelling subtitle that explains your value proposition in one or two lines."
49 },
50 "showSubtitle": {
51 "type": "boolean",
52 "default": true
53 },
54 "showBreadcrumbs": {
55 "type": "boolean",
56 "default": false
57 },
58 "breadcrumbs": {
59 "type": "array",
60 "default": [
61 {
62 "label": "Home",
63 "url": "/"
64 },
65 {
66 "label": "Page",
67 "url": ""
68 }
69 ]
70 },
71 "showPrimaryBtn": {
72 "type": "boolean",
73 "default": true
74 },
75 "primaryLabel": {
76 "type": "string",
77 "default": "Get Started"
78 },
79 "primaryUrl": {
80 "type": "string",
81 "default": "#"
82 },
83 "primaryTarget": {
84 "type": "boolean",
85 "default": false
86 },
87 "showSecondaryBtn": {
88 "type": "boolean",
89 "default": true
90 },
91 "secondaryLabel": {
92 "type": "string",
93 "default": "Learn More"
94 },
95 "secondaryUrl": {
96 "type": "string",
97 "default": "#"
98 },
99 "bgType": {
100 "type": "string",
101 "default": "color"
102 },
103 "bgColor": {
104 "type": "string",
105 "default": "#f8f5ff"
106 },
107 "bgGradient": {
108 "type": "string",
109 "default": "linear-gradient(135deg,#ede9fe 0%,#eff6ff 100%)"
110 },
111 "bgImageUrl": {
112 "type": "string",
113 "default": ""
114 },
115 "bgImageId": {
116 "type": "number",
117 "default": 0
118 },
119 "bgOverlayColor": {
120 "type": "string",
121 "default": "#0f172a"
122 },
123 "bgOverlayOpacity": {
124 "type": "number",
125 "default": 55
126 },
127 "textAlign": {
128 "type": "string",
129 "default": "center"
130 },
131 "contentMaxWidth": {
132 "type": "number",
133 "default": 760
134 },
135 "paddingTop": {
136 "type": "number",
137 "default": 100
138 },
139 "paddingBottom": {
140 "type": "number",
141 "default": 100
142 },
143 "headlineSize": {
144 "type": "number",
145 "default": 52
146 },
147 "subtitleSize": {
148 "type": "number",
149 "default": 19
150 },
151 "eyebrowSize": {
152 "type": "number",
153 "default": 13
154 },
155 "btnRadius": {
156 "type": "number",
157 "default": 50
158 },
159 "eyebrowColor": {
160 "type": "string",
161 "default": "#6c3fb5"
162 },
163 "eyebrowBg": {
164 "type": "string",
165 "default": "#ede9fe"
166 },
167 "headlineColor": {
168 "type": "string",
169 "default": "#1e293b"
170 },
171 "subtitleColor": {
172 "type": "string",
173 "default": "#64748b"
174 },
175 "primaryBtnBg": {
176 "type": "string",
177 "default": "#6c3fb5"
178 },
179 "primaryBtnColor": {
180 "type": "string",
181 "default": "#ffffff"
182 },
183 "secBtnColor": {
184 "type": "string",
185 "default": "#6c3fb5"
186 },
187 "breadcrumbColor": {
188 "type": "string",
189 "default": "#94a3b8"
190 },
191 "headlineFontWeight": {
192 "type": "string",
193 "default": "800"
194 },
195 "subtitleFontWeight": {
196 "type": "string",
197 "default": "400"
198 },
199 "eyebrowFontWeight": {
200 "type": "string",
201 "default": "700"
202 },
203 "headlineTypo": {
204 "type": "object",
205 "default": {}
206 },
207 "subtitleTypo": {
208 "type": "object",
209 "default": {}
210 },
211 "eyebrowTypo": {
212 "type": "object",
213 "default": {}
214 }
215 }
216 }