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 / gradient-section / block.json

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

214 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/gradient-section",
5 "title": "Gradient Section",
6 "description": "A full-width section with an animated CSS gradient background, headline, subtext, and dual call-to-action buttons.",
7 "category": "bkbg-layout",
8 "icon": "art",
9 "keywords": [
10 "gradient",
11 "section",
12 "cta",
13 "hero",
14 "animated",
15 "colorful"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-gradient-section-editor",
19 "style": "bkbg-gradient-section-style",
20 "viewScript": "bkbg-gradient-section-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "gradient": {
32 "type": "array",
33 "default": [
34 {
35 "id": "gc1",
36 "color": "#6c3fb5"
37 },
38 {
39 "id": "gc2",
40 "color": "#a855f7"
41 },
42 {
43 "id": "gc3",
44 "color": "#3b82f6"
45 }
46 ]
47 },
48 "gradientAngle": {
49 "type": "integer",
50 "default": 135
51 },
52 "animate": {
53 "type": "boolean",
54 "default": true
55 },
56 "animationDuration": {
57 "type": "integer",
58 "default": 8
59 },
60 "overlay": {
61 "type": "boolean",
62 "default": false
63 },
64 "overlayColor": {
65 "type": "string",
66 "default": "rgba(0,0,0,0.3)"
67 },
68 "badge": {
69 "type": "string",
70 "default": "\u2728 New Feature"
71 },
72 "showBadge": {
73 "type": "boolean",
74 "default": true
75 },
76 "headline": {
77 "type": "string",
78 "default": "Make Something Beautiful"
79 },
80 "subtext": {
81 "type": "string",
82 "default": "Create stunning gradient sections that capture attention and drive action \u2014 no coding required."
83 },
84 "headlineTag": {
85 "type": "string",
86 "default": "h2"
87 },
88 "btnLabel": {
89 "type": "string",
90 "default": "Get Started Free"
91 },
92 "btnUrl": {
93 "type": "string",
94 "default": ""
95 },
96 "btnStyle": {
97 "type": "string",
98 "default": "filled"
99 },
100 "btnRadius": {
101 "type": "integer",
102 "default": 99
103 },
104 "showSecondBtn": {
105 "type": "boolean",
106 "default": true
107 },
108 "btn2Label": {
109 "type": "string",
110 "default": "Watch Demo"
111 },
112 "btn2Url": {
113 "type": "string",
114 "default": ""
115 },
116 "minHeight": {
117 "type": "integer",
118 "default": 480
119 },
120 "textAlign": {
121 "type": "string",
122 "default": "center"
123 },
124 "contentMaxWidth": {
125 "type": "integer",
126 "default": 680
127 },
128 "headlineSize": {
129 "type": "integer",
130 "default": 52
131 },
132 "subtextSize": {
133 "type": "integer",
134 "default": 19
135 },
136 "badgeSize": {
137 "type": "integer",
138 "default": 13
139 },
140 "btnSize": {
141 "type": "integer",
142 "default": 16
143 },
144 "headlineColor": {
145 "type": "string",
146 "default": "#ffffff"
147 },
148 "subtextColor": {
149 "type": "string",
150 "default": "rgba(255,255,255,0.82)"
151 },
152 "badgeBg": {
153 "type": "string",
154 "default": "rgba(255,255,255,0.18)"
155 },
156 "badgeColor": {
157 "type": "string",
158 "default": "#ffffff"
159 },
160 "badgeRadius": {
161 "type": "integer",
162 "default": 99
163 },
164 "btnBg": {
165 "type": "string",
166 "default": "#ffffff"
167 },
168 "btnColor": {
169 "type": "string",
170 "default": "#6c3fb5"
171 },
172 "btn2Color": {
173 "type": "string",
174 "default": "#ffffff"
175 },
176 "btn2BorderColor": {
177 "type": "string",
178 "default": "rgba(255,255,255,0.6)"
179 },
180 "paddingTop": {
181 "type": "integer",
182 "default": 96
183 },
184 "paddingBottom": {
185 "type": "integer",
186 "default": 96
187 },
188 "headlineFontWeight": {
189 "type": "string",
190 "default": "900"
191 },
192 "headlineLineHeight": {
193 "type": "number",
194 "default": 1.15
195 },
196 "subtextLineHeight": {
197 "type": "number",
198 "default": 1.65
199 },
200 "typoHeadline": {
201 "type": "object",
202 "default": {}
203 },
204 "typoSubtext": {
205 "type": "object",
206 "default": {}
207 },
208 "typoBadge": {
209 "type": "object",
210 "default": {}
211 }
212 }
213 }
214