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 / button-group / block.json

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

136 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/button-group",
5 "title": "Button Group",
6 "description": "Group of styled CTA buttons with alignment, spacing, individual per-button overrides, and responsive stacking.",
7 "category": "bkbg-marketing",
8 "icon": "button",
9 "keywords": [
10 "buttons",
11 "cta",
12 "call to action",
13 "group",
14 "link"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-button-group-editor",
18 "editorStyle": "bkbg-button-group-style",
19 "style": "bkbg-button-group-style",
20 "viewScript": "bkbg-button-group-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "buttons": {
32 "type": "array",
33 "default": [
34 {
35 "label": "Get Started",
36 "url": "#",
37 "target": false,
38 "rel": "",
39 "style": "primary",
40 "size": "md",
41 "icon": "none",
42 "iconPosition": "left",
43 "customBg": "",
44 "customColor": "",
45 "customBorder": ""
46 },
47 {
48 "label": "Learn More",
49 "url": "#",
50 "target": false,
51 "rel": "",
52 "style": "outline",
53 "size": "md",
54 "icon": "none",
55 "iconPosition": "left",
56 "customBg": "",
57 "customColor": "",
58 "customBorder": ""
59 }
60 ]
61 },
62 "alignment": {
63 "type": "string",
64 "default": "left"
65 },
66 "direction": {
67 "type": "string",
68 "default": "row"
69 },
70 "mobileStack": {
71 "type": "boolean",
72 "default": true
73 },
74 "gap": {
75 "type": "number",
76 "default": 12
77 },
78 "btnBg": {
79 "type": "string",
80 "default": "#2563eb"
81 },
82 "btnColor": {
83 "type": "string",
84 "default": "#ffffff"
85 },
86 "outlineBorderColor": {
87 "type": "string",
88 "default": "#2563eb"
89 },
90 "outlineColor": {
91 "type": "string",
92 "default": "#2563eb"
93 },
94 "ghostColor": {
95 "type": "string",
96 "default": "#2563eb"
97 },
98 "btnRadius": {
99 "type": "number",
100 "default": 8
101 },
102 "btnFontSize": {
103 "type": "number",
104 "default": 15
105 },
106 "btnFontWeight": {
107 "type": "number",
108 "default": 600
109 },
110 "btnPaddingV": {
111 "type": "number",
112 "default": 12
113 },
114 "btnPaddingH": {
115 "type": "number",
116 "default": 24
117 },
118 "btnShadow": {
119 "type": "string",
120 "default": "none"
121 },
122 "hoverEffect": {
123 "type": "string",
124 "default": "lift"
125 },
126 "fullWidthMobile": {
127 "type": "boolean",
128 "default": false
129 },
130 "typoBtn": {
131 "type": "object",
132 "default": {}
133 }
134 }
135 }
136