PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.0
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / progress / block.json

block.json in Block Animations, Motion & Scroll Effects – Ghost Kit 2.25.0, at gutenberg/blocks/progress/block.json

65 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "ghostkit/progress",
3 "category": "design",
4 "title": "Progress",
5 "description": "Show the progress of your work, skills or earnings.",
6 "keywords": ["progress", "bar"],
7 "supports": {
8 "html": false,
9 "className": false,
10 "anchor": true,
11 "align": ["wide", "full"]
12 },
13 "attributes": {
14 "caption": {
15 "type": "string",
16 "source": "html",
17 "selector": ".ghostkit-progress-caption",
18 "default": "Progress Caption"
19 },
20 "height": {
21 "type": "number",
22 "default": 15
23 },
24 "percent": {
25 "type": "number",
26 "default": 75
27 },
28 "borderRadius": {
29 "type": "number"
30 },
31 "striped": {
32 "type": "boolean",
33 "default": true
34 },
35 "animateInViewport": {
36 "type": "boolean",
37 "default": false
38 },
39 "showCount": {
40 "type": "boolean",
41 "default": false
42 },
43 "countPrefix": {
44 "type": "string",
45 "default": ""
46 },
47 "countSuffix": {
48 "type": "string",
49 "default": "%"
50 },
51 "color": {
52 "type": "string"
53 },
54 "backgroundColor": {
55 "type": "string"
56 },
57 "hoverColor": {
58 "type": "string"
59 },
60 "hoverBackgroundColor": {
61 "type": "string"
62 }
63 }
64 }
65