PluginProbe
Getwid – Gutenberg Blocks / 3.0.2
Getwid – Gutenberg Blocks v3.0.2
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / assets / blocks / progress-bar / block.json

block.json in Getwid – Gutenberg Blocks 3.0.2, at assets/blocks/progress-bar/block.json

59 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 "textdomain": "getwid",
5 "name": "getwid/progress-bar",
6 "description": "Shows progress with a horizontal bar.",
7 "category": "getwid-blocks",
8 "title": "Progress Bar",
9 "supports": {
10 "align": [
11 "wide",
12 "full"
13 ],
14 "html": false
15 },
16 "attributes": {
17 "align": {
18 "type": "string"
19 },
20 "backgroundColor": {
21 "type": "string"
22 },
23 "textColor": {
24 "type": "string"
25 },
26 "customBackgroundColor": {
27 "type": "string"
28 },
29 "customTextColor": {
30 "type": "string"
31 },
32 "fillAmount": {
33 "type": "string",
34 "source": "attribute",
35 "selector": ".wp-block-getwid-progress-bar__wrapper",
36 "attribute": "data-fill-amount",
37 "default": "75"
38 },
39 "title": {
40 "type": "string",
41 "source": "html",
42 "selector": ".wp-block-getwid-progress-bar__title"
43 },
44 "isAnimated": {
45 "type": "string",
46 "source": "attribute",
47 "selector": ".wp-block-getwid-progress-bar__wrapper",
48 "attribute": "data-is-animated",
49 "default": "true"
50 }
51 },
52 "editorScript": "file:./index.js",
53 "editorStyle": "file:./index.css",
54 "style": "file:./style-index.css",
55 "viewScript": [
56 "waypoints",
57 "file:./view.js"
58 ]
59 }