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

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

130 lines 3.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/mixed-heading",
5 "title": "Mixed Heading",
6 "category": "bkbg-content",
7 "description": "A heading or paragraph where each word/phrase segment can have its own style — gradient, highlight, stroke, badge, mono, or normal.",
8 "keywords": [
9 "heading",
10 "typography",
11 "styled text",
12 "gradient",
13 "highlight",
14 "mixed"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-mixed-heading-editor",
18 "editorStyle": "bkbg-mixed-heading-style",
19 "style": "bkbg-mixed-heading-style",
20 "viewScript": "bkbg-mixed-heading-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "segments": {
32 "type": "array",
33 "default": [
34 {
35 "text": "Build sites",
36 "style": "normal",
37 "color": "#111827",
38 "color2": "#6366f1",
39 "bg": "transparent",
40 "weight": "700",
41 "italic": false,
42 "underline": false,
43 "scale": 1,
44 "spacing": 0
45 },
46 {
47 "text": " ",
48 "style": "normal",
49 "color": "#111827",
50 "color2": "#6366f1",
51 "bg": "transparent",
52 "weight": "700",
53 "italic": false,
54 "underline": false,
55 "scale": 1,
56 "spacing": 0
57 },
58 {
59 "text": "that inspire.",
60 "style": "gradient",
61 "color": "#6366f1",
62 "color2": "#ec4899",
63 "bg": "transparent",
64 "weight": "700",
65 "italic": false,
66 "underline": false,
67 "scale": 1,
68 "spacing": 0
69 }
70 ]
71 },
72 "tag": {
73 "type": "string",
74 "default": "h2"
75 },
76 "textAlign": {
77 "type": "string",
78 "default": "center"
79 },
80 "fontSize": {
81 "type": "number",
82 "default": 48
83 },
84 "lineHeight": {
85 "type": "number",
86 "default": 1.15
87 },
88 "letterSpacing": {
89 "type": "number",
90 "default": 0
91 },
92 "headingTypo": {
93 "type": "object",
94 "default": {}
95 },
96 "maxWidth": {
97 "type": "number",
98 "default": 800
99 },
100 "paddingTop": {
101 "type": "number",
102 "default": 0
103 },
104 "paddingBottom": {
105 "type": "number",
106 "default": 0
107 },
108 "strokeWidth": {
109 "type": "number",
110 "default": 2
111 },
112 "badgeRadius": {
113 "type": "number",
114 "default": 6
115 },
116 "badgePaddingX": {
117 "type": "number",
118 "default": 8
119 },
120 "badgePaddingY": {
121 "type": "number",
122 "default": 3
123 },
124 "gradientDir": {
125 "type": "string",
126 "default": "to right"
127 }
128 }
129 }
130