forked from RobStino/progress-indicator-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.json
33 lines (33 loc) · 754 Bytes
/
block.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"version": "0.1.0",
"name": "progress-indicator/progress-indicator",
"title": "Progress Indicator",
"description": "Easily display a progress indicator on your WordPress posts or pages.",
"attributes": {
"color": {
"type": "string",
"default": "#10b981"
},
"currentStep": {
"type": "number",
"default": 2
},
"numberOfSteps": {
"type": "number",
"default": 5
}
},
"category": "design",
"editorScript": "file:js/dist/index.js",
"example": {
"color": "#10b981",
"currentStype": 2,
"numberOfSteps": 5
},
"icon": "chart-area",
"keywords": [ "progress", "steps" ],
"style": "file:css/block.css",
"textdomain": "progress-indicator"
}