PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.7.2
Block Animations, Motion & Scroll Effects – Ghost Kit v3.7.2
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 3.7.2, at gutenberg/blocks/progress/block.json

69 lines 1.3 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": "ghostkit/progress",
5 "category": "ghostkit",
6 "title": "Progress",
7 "description": "Show the progress of your work, skills or earnings.",
8 "keywords": ["progress", "bar"],
9 "supports": {
10 "html": false,
11 "className": false,
12 "anchor": true,
13 "align": ["wide", "full"]
14 },
15 "attributes": {
16 "caption": {
17 "type": "string",
18 "source": "html",
19 "selector": ".ghostkit-progress-caption",
20 "default": "Progress Caption"
21 },
22 "height": {
23 "type": "number",
24 "default": 15
25 },
26 "percent": {
27 "type": "number",
28 "default": 75
29 },
30 "borderRadius": {
31 "type": "number"
32 },
33 "striped": {
34 "type": "boolean",
35 "default": true
36 },
37 "animateInViewport": {
38 "type": "boolean",
39 "default": false
40 },
41 "showCount": {
42 "type": "boolean",
43 "default": false
44 },
45 "countPrefix": {
46 "type": "string",
47 "default": ""
48 },
49 "countSuffix": {
50 "type": "string",
51 "default": "%"
52 },
53 "color": {
54 "type": "string"
55 },
56 "backgroundColor": {
57 "type": "string"
58 },
59 "hoverColor": {
60 "type": "string"
61 },
62 "hoverBackgroundColor": {
63 "type": "string"
64 }
65 },
66 "style": ["ghostkit", "ghostkit-block-progress"],
67 "viewScript": ["ghostkit", "ghostkit-block-progress"]
68 }
69