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

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

162 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/section-intro",
5 "title": "Section Intro",
6 "category": "bkbg-content",
7 "icon": "editor-aligncenter",
8 "description": "Reusable section header — eyebrow badge, large heading, subtitle, and optional CTA button. Use before any content section.",
9 "keywords": [
10 "section",
11 "header",
12 "intro",
13 "heading",
14 "eyebrow",
15 "cta",
16 "title"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-section-intro-editor",
20 "style": "bkbg-section-intro-style",
21 "attributes": {
22 "showEyebrow": {
23 "type": "boolean",
24 "default": true
25 },
26 "eyebrow": {
27 "type": "string",
28 "default": "Why choose us"
29 },
30 "eyebrowStyle": {
31 "type": "string",
32 "default": "pill"
33 },
34 "heading": {
35 "type": "string",
36 "default": "Everything you need to succeed"
37 },
38 "headingTag": {
39 "type": "string",
40 "default": "h2"
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "subtitle": {
47 "type": "string",
48 "default": "We've built a platform that grows with you — from first launch to global scale."
49 },
50 "showCta": {
51 "type": "boolean",
52 "default": false
53 },
54 "ctaLabel": {
55 "type": "string",
56 "default": "Learn more"
57 },
58 "ctaUrl": {
59 "type": "string",
60 "default": "#"
61 },
62 "ctaTarget": {
63 "type": "string",
64 "default": "_self"
65 },
66 "ctaStyle": {
67 "type": "string",
68 "default": "link-arrow"
69 },
70 "showDivider": {
71 "type": "boolean",
72 "default": false
73 },
74 "dividerWidth": {
75 "type": "number",
76 "default": 48
77 },
78 "align": {
79 "type": "string",
80 "default": "center"
81 },
82 "maxWidth": {
83 "type": "number",
84 "default": 680
85 },
86 "headingSize": {
87 "type": "number",
88 "default": 40
89 },
90 "headingWeight": {
91 "type": "string",
92 "default": "800"
93 },
94 "subtitleSize": {
95 "type": "number",
96 "default": 18
97 },
98 "eyebrowSize": {
99 "type": "number",
100 "default": 12
101 },
102 "headingTypo": {
103 "type": "object",
104 "default": {}
105 },
106 "eyebrowTypo": {
107 "type": "object",
108 "default": {}
109 },
110 "subtitleTypo": {
111 "type": "object",
112 "default": {}
113 },
114 "gap": {
115 "type": "number",
116 "default": 16
117 },
118 "paddingTop": {
119 "type": "number",
120 "default": 0
121 },
122 "paddingBottom": {
123 "type": "number",
124 "default": 0
125 },
126 "headingColor": {
127 "type": "string",
128 "default": "#0f172a"
129 },
130 "subtitleColor": {
131 "type": "string",
132 "default": "#475569"
133 },
134 "eyebrowBg": {
135 "type": "string",
136 "default": "#f0ebff"
137 },
138 "eyebrowColor": {
139 "type": "string",
140 "default": "#6c3fb5"
141 },
142 "dividerColor": {
143 "type": "string",
144 "default": "#6c3fb5"
145 },
146 "ctaColor": {
147 "type": "string",
148 "default": "#6c3fb5"
149 }
150 },
151 "supports": {
152 "html": false,
153 "align": [
154 "wide",
155 "full"
156 ],
157 "spacing": {
158 "margin": true
159 }
160 }
161 }
162