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

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

89 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/shape-divider",
4 "title": "Shape Divider",
5 "category": "bkbg-layout",
6 "icon": "chart-area",
7 "description": "SVG shape dividers — wave, curve, triangle, tilt, zigzag — to create seamless section transitions.",
8 "keywords": [
9 "shape",
10 "divider",
11 "wave",
12 "separator",
13 "svg",
14 "section"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-shape-divider-editor",
18 "editorStyle": "bkbg-shape-divider-style",
19 "style": "bkbg-shape-divider-style",
20 "viewScript": "bkbg-shape-divider-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "shape": {
32 "type": "string",
33 "default": "wave"
34 },
35 "position": {
36 "type": "string",
37 "default": "bottom"
38 },
39 "height": {
40 "type": "number",
41 "default": 80
42 },
43 "color": {
44 "type": "string",
45 "default": "#ffffff"
46 },
47 "bgColor": {
48 "type": "string",
49 "default": ""
50 },
51 "flipHorizontal": {
52 "type": "boolean",
53 "default": false
54 },
55 "flipVertical": {
56 "type": "boolean",
57 "default": false
58 },
59 "width": {
60 "type": "number",
61 "default": 100
62 },
63 "animate": {
64 "type": "boolean",
65 "default": false
66 },
67 "animationSpeed": {
68 "type": "number",
69 "default": 8
70 },
71 "layers": {
72 "type": "number",
73 "default": 1
74 },
75 "layer2Color": {
76 "type": "string",
77 "default": "rgba(255,255,255,0.4)"
78 },
79 "layer2Offset": {
80 "type": "number",
81 "default": 12
82 },
83 "zIndex": {
84 "type": "number",
85 "default": 1
86 }
87 }
88 }
89