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 / dual-heading / block.json

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

157 lines 3.8 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/dual-heading",
5 "title": "Dual Heading",
6 "description": "A two-part heading where each line has fully independent typography — color, size, weight, style, and special effects like gradient, highlight, or text stroke. Perfect for emphasis and visual hierarchy.",
7 "category": "bkbg-content",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-dual-heading-editor",
10 "style": "bkbg-dual-heading-style",
11 "viewScript": "bkbg-dual-heading-frontend",
12 "icon": "heading",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "line1": {
24 "type": "string",
25 "default": "Build something"
26 },
27 "line2": {
28 "type": "string",
29 "default": "extraordinary."
30 },
31 "subtext": {
32 "type": "string",
33 "default": ""
34 },
35 "showSubtext": {
36 "type": "boolean",
37 "default": false
38 },
39 "tag": {
40 "type": "string",
41 "default": "h2"
42 },
43 "layout": {
44 "type": "string",
45 "default": "stacked"
46 },
47 "textAlign": {
48 "type": "string",
49 "default": "center"
50 },
51 "lineGap": {
52 "type": "number",
53 "default": 4
54 },
55 "line1Color": {
56 "type": "string",
57 "default": "#111827"
58 },
59 "line1Size": {
60 "type": "number",
61 "default": 52
62 },
63 "line1Weight": {
64 "type": "string",
65 "default": "700"
66 },
67 "line1Style": {
68 "type": "string",
69 "default": "normal"
70 },
71 "line1Transform": {
72 "type": "string",
73 "default": "none"
74 },
75 "line1Effect": {
76 "type": "string",
77 "default": "none"
78 },
79 "line2Color": {
80 "type": "string",
81 "default": "#7c3aed"
82 },
83 "line2Size": {
84 "type": "number",
85 "default": 52
86 },
87 "line2Weight": {
88 "type": "string",
89 "default": "800"
90 },
91 "line2Style": {
92 "type": "string",
93 "default": "normal"
94 },
95 "line2Transform": {
96 "type": "string",
97 "default": "none"
98 },
99 "line2Effect": {
100 "type": "string",
101 "default": "none"
102 },
103 "effectColor": {
104 "type": "string",
105 "default": "#fef08a"
106 },
107 "effectColor2": {
108 "type": "string",
109 "default": "#f97316"
110 },
111 "strokeColor": {
112 "type": "string",
113 "default": "#7c3aed"
114 },
115 "strokeWidth": {
116 "type": "number",
117 "default": 1
118 },
119 "subtextColor": {
120 "type": "string",
121 "default": "#6b7280"
122 },
123 "subtextSize": {
124 "type": "number",
125 "default": 18
126 },
127 "bgColor": {
128 "type": "string",
129 "default": ""
130 },
131 "maxWidth": {
132 "type": "number",
133 "default": 900
134 },
135 "paddingTop": {
136 "type": "number",
137 "default": 16
138 },
139 "paddingBottom": {
140 "type": "number",
141 "default": 16
142 },
143 "typoLine1": {
144 "type": "object",
145 "default": {}
146 },
147 "typoLine2": {
148 "type": "object",
149 "default": {}
150 },
151 "typoSubtext": {
152 "type": "object",
153 "default": {}
154 }
155 }
156 }
157