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 / text-divider / block.json

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

121 lines 2.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/text-divider",
5 "title": "Text Divider",
6 "category": "bkbg-content",
7 "icon": "minus",
8 "description": "Styled horizontal rule with centered text, icon, or badge label.",
9 "keywords": [
10 "divider",
11 "separator",
12 "rule",
13 "text",
14 "section break"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-text-divider-editor",
18 "editorStyle": "bkbg-text-divider-style",
19 "style": "bkbg-text-divider-style",
20 "viewScript": "bkbg-text-divider-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "label": {
32 "type": "string",
33 "default": "OR"
34 },
35 "showLabel": {
36 "type": "boolean",
37 "default": true
38 },
39 "lineStyle": {
40 "type": "string",
41 "default": "solid"
42 },
43 "lineThickness": {
44 "type": "number",
45 "default": 1
46 },
47 "lineColor": {
48 "type": "string",
49 "default": "#e5e7eb"
50 },
51 "lineWidth": {
52 "type": "number",
53 "default": 100
54 },
55 "labelStyle": {
56 "type": "string",
57 "default": "text"
58 },
59 "labelBg": {
60 "type": "string",
61 "default": "#ffffff"
62 },
63 "labelColor": {
64 "type": "string",
65 "default": "#6b7280"
66 },
67 "labelBorderColor": {
68 "type": "string",
69 "default": "#e5e7eb"
70 },
71 "labelBorder": {
72 "type": "boolean",
73 "default": false
74 },
75 "labelRadius": {
76 "type": "number",
77 "default": 50
78 },
79 "labelPaddingX": {
80 "type": "number",
81 "default": 16
82 },
83 "labelPaddingY": {
84 "type": "number",
85 "default": 6
86 },
87 "labelTypo": {
88 "type": "object",
89 "default": {}
90 },
91 "icon": {
92 "type": "string",
93 "default": "star-filled"
94 },
95 "showIcon": {
96 "type": "boolean",
97 "default": false
98 },
99 "iconSize": {
100 "type": "number",
101 "default": 18
102 },
103 "iconColor": {
104 "type": "string",
105 "default": "#9ca3af"
106 },
107 "align": {
108 "type": "string",
109 "default": "center"
110 },
111 "marginTop": {
112 "type": "number",
113 "default": 24
114 },
115 "marginBottom": {
116 "type": "number",
117 "default": 24
118 }
119 }
120 }
121