PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / highlight-section / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/highlight-section/block.json

151 lines 3.7 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/highlight-section",
5 "title": "Highlight Section",
6 "category": "bkbg-content",
7 "icon": "align-full-width",
8 "description": "Editorial hero section with a giant decorative background word, heading, subtext, and optional CTA button.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-highlight-section-editor",
11 "style": "bkbg-highlight-section-style",
12 "viewScript": "bkbg-highlight-section-frontend",
13 "attributes": {
14 "bgWord": {
15 "type": "string",
16 "default": "IMPACT"
17 },
18 "showBgWord": {
19 "type": "boolean",
20 "default": true
21 },
22 "bgWordSize": {
23 "type": "number",
24 "default": 240
25 },
26 "bgWordColor": {
27 "type": "string",
28 "default": "rgba(0,0,0,0.05)"
29 },
30 "bgWordWeight": {
31 "type": "string",
32 "default": "900"
33 },
34 "heading": {
35 "type": "string",
36 "default": "Built for Bold Brands"
37 },
38 "subtext": {
39 "type": "string",
40 "default": "We craft digital experiences that leave a lasting impression and drive real business results."
41 },
42 "showSubtext": {
43 "type": "boolean",
44 "default": true
45 },
46 "showCta": {
47 "type": "boolean",
48 "default": true
49 },
50 "ctaLabel": {
51 "type": "string",
52 "default": "Get Started"
53 },
54 "ctaUrl": {
55 "type": "string",
56 "default": "#"
57 },
58 "ctaOpenNewTab": {
59 "type": "boolean",
60 "default": false
61 },
62 "textAlign": {
63 "type": "string",
64 "default": "center"
65 },
66 "bgColor": {
67 "type": "string",
68 "default": "#ffffff"
69 },
70 "headingColor": {
71 "type": "string",
72 "default": "#111827"
73 },
74 "subtextColor": {
75 "type": "string",
76 "default": "#4b5563"
77 },
78 "ctaBg": {
79 "type": "string",
80 "default": "#7c3aed"
81 },
82 "ctaColor": {
83 "type": "string",
84 "default": "#ffffff"
85 },
86 "headingSize": {
87 "type": "number",
88 "default": 56
89 },
90 "headingFontWeight": {
91 "type": "string",
92 "default": "800"
93 },
94 "headingLineHeight": {
95 "type": "number",
96 "default": 1.15
97 },
98 "subtextSize": {
99 "type": "number",
100 "default": 20
101 },
102 "subtextFontWeight": {
103 "type": "string",
104 "default": "400"
105 },
106 "subtextLineHeight": {
107 "type": "number",
108 "default": 1.6
109 },
110 "ctaFontWeight": {
111 "type": "string",
112 "default": "600"
113 },
114 "ctaFontSize": {
115 "type": "number",
116 "default": 16
117 },
118 "maxWidth": {
119 "type": "number",
120 "default": 880
121 },
122 "paddingTop": {
123 "type": "number",
124 "default": 100
125 },
126 "paddingBottom": {
127 "type": "number",
128 "default": 100
129 },
130 "headingTypo": {
131 "type": "object",
132 "default": {}
133 },
134 "subtextTypo": {
135 "type": "object",
136 "default": {}
137 },
138 "ctaTypo": {
139 "type": "object",
140 "default": {}
141 }
142 },
143 "supports": {
144 "html": false,
145 "align": [
146 "wide",
147 "full"
148 ]
149 }
150 }
151