PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
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 / separator / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.6, at blocks/separator/block.json

135 lines 2.6 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/separator",
5 "title": "Separator / Divider",
6 "category": "blockenberg",
7 "icon": "minus",
8 "description": "Decorative divider: line, wave, zigzag or dot pattern, optionally with an icon or text in the centre.",
9 "keywords": ["separator", "divider", "hr", "line", "wave", "zigzag", "rule"],
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-separator-editor",
12 "editorStyle": "bkbg-separator-style",
13 "style": "bkbg-separator-style",
14 "viewScript": "bkbg-separator-frontend",
15 "supports": {
16 "html": false,
17 "anchor": true,
18 "className": true,
19 "align": ["wide", "full"]
20 },
21 "attributes": {
22
23 "blockId": {
24 "type": "string",
25 "default": ""
26 },
27
28 "dividerType": {
29 "type": "string",
30 "default": "line"
31 },
32
33 "lineColor": {
34 "type": "string",
35 "default": "#d1d5db"
36 },
37 "lineThickness": {
38 "type": "number",
39 "default": 1
40 },
41 "svgHeight": {
42 "type": "number",
43 "default": 24
44 },
45 "dotSpacing": {
46 "type": "number",
47 "default": 14
48 },
49
50 "marginTop": {
51 "type": "number",
52 "default": 24
53 },
54 "marginBottom": {
55 "type": "number",
56 "default": 24
57 },
58 "widthPercent": {
59 "type": "number",
60 "default": 100
61 },
62
63 "middleType": {
64 "type": "string",
65 "default": "none"
66 },
67 "middlePosition": {
68 "type": "string",
69 "default": "center"
70 },
71 "gapAroundMiddle": {
72 "type": "number",
73 "default": 16
74 },
75
76 "iconName": {
77 "type": "string",
78 "default": "star"
79 },
80 "iconSize": {
81 "type": "number",
82 "default": 20
83 },
84 "iconColor": {
85 "type": "string",
86 "default": "#9ca3af"
87 },
88 "iconBgColor": {
89 "type": "string",
90 "default": "transparent"
91 },
92 "iconBgShape": {
93 "type": "string",
94 "default": "none"
95 },
96 "iconBgSize": {
97 "type": "number",
98 "default": 36
99 },
100
101 "middleText": {
102 "type": "string",
103 "default": "§"
104 },
105 "textSize": {
106 "type": "number",
107 "default": 14
108 },
109 "textWeight": {
110 "type": "number",
111 "default": 400
112 },
113 "textColor": {
114 "type": "string",
115 "default": "#9ca3af"
116 },
117 "textBgColor": {
118 "type": "string",
119 "default": "transparent"
120 },
121 "textPaddingH": {
122 "type": "number",
123 "default": 12
124 },
125 "textPaddingV": {
126 "type": "number",
127 "default": 4
128 },
129 "textRadius": {
130 "type": "number",
131 "default": 4
132 }
133 }
134 }
135