PluginProbe
Icon Separator / trunk
Icon Separator vtrunk
trunk 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5
icon-separator / src / block.json

block.json in Icon Separator trunk, at src/block.json

56 lines 1.1 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": "boldblocks/icon-separator",
5 "title": "Icon Separator",
6 "category": "design",
7 "description": "A simple horizontal separator with icon.",
8 "keywords": ["separator", "icon", "divider", "svg", "image"],
9 "attributes": {
10 "icon": {
11 "type": "string"
12 },
13 "iconWidth": {
14 "type": "object"
15 },
16 "iconSpacing": {
17 "type": "object"
18 },
19 "iconPosition": {
20 "type": "string"
21 },
22 "iconFillColor": {
23 "type": "object"
24 },
25 "iconStrokeColor": {
26 "type": "object"
27 },
28 "width": {
29 "type": "object"
30 },
31 "margin": {
32 "type": "object"
33 },
34 "justifyAlignment": {
35 "type": "string"
36 },
37 "border": {
38 "type": "object",
39 "default": {
40 "width": "1px",
41 "style": "solid"
42 }
43 }
44 },
45 "supports": {
46 "html": false,
47 "align": true,
48 "interactivity": {
49 "clientNavigation": true
50 }
51 },
52 "textdomain": "icon-separator",
53 "editorScript": "file:./index.js",
54 "style": "file:./style-index.css"
55 }
56