PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / reading-progress / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/reading-progress/block.json

67 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/reading-progress",
4 "title": "Reading Progress",
5 "category": "bkbg-blog",
6 "description": "A fixed reading progress bar that fills as the visitor scrolls.",
7 "keywords": [
8 "progress",
9 "reading",
10 "scroll",
11 "bar"
12 ],
13 "textdomain": "blockenberg",
14 "editorScript": "bkbg-reading-progress-editor",
15 "editorStyle": "bkbg-reading-progress-style",
16 "style": "bkbg-reading-progress-style",
17 "viewScript": "bkbg-reading-progress-frontend",
18 "supports": {
19 "html": false,
20 "anchor": false,
21 "className": false,
22 "align": []
23 },
24 "attributes": {
25 "height": {
26 "type": "number",
27 "default": 4
28 },
29 "position": {
30 "type": "string",
31 "default": "top"
32 },
33 "color": {
34 "type": "string",
35 "default": "#2563eb"
36 },
37 "bgColor": {
38 "type": "string",
39 "default": "#e5e7eb"
40 },
41 "showPercentage": {
42 "type": "boolean",
43 "default": false
44 },
45 "zIndex": {
46 "type": "number",
47 "default": 9999
48 },
49 "animation": {
50 "type": "string",
51 "default": "smooth"
52 },
53 "gradientEnd": {
54 "type": "string",
55 "default": ""
56 },
57 "useGradient": {
58 "type": "boolean",
59 "default": false
60 },
61 "labelTypo": {
62 "type": "object",
63 "default": {}
64 }
65 }
66 }
67