PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
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 / progress-bar / block.json

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

125 lines 3.2 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/progress-bar",
4 "title": "Progress Bar",
5 "category": "blockenberg",
6 "icon": "chart-bar",
7 "description": "Display animated progress bars with customizable styles and labels.",
8 "keywords": ["progress", "bar", "skill", "percentage", "stats", "chart"],
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-progress-bar-editor",
11 "editorStyle": "bkbg-progress-bar-style",
12 "style": "bkbg-progress-bar-style",
13 "viewScript": "bkbg-progress-bar-frontend",
14 "supports": {
15 "html": false,
16 "align": ["wide", "full"]
17 },
18 "attributes": {
19 "items": {
20 "type": "array",
21 "default": [
22 { "label": "Web Design", "percentage": 90, "color": "#3b82f6" },
23 { "label": "Development", "percentage": 85, "color": "#10b981" },
24 { "label": "Marketing", "percentage": 75, "color": "#f59e0b" }
25 ]
26 },
27 "layoutStyle": {
28 "type": "string",
29 "default": "default"
30 },
31 "showPercentage": {
32 "type": "boolean",
33 "default": true
34 },
35 "showLabels": {
36 "type": "boolean",
37 "default": true
38 },
39 "animateOnScroll": {
40 "type": "boolean",
41 "default": true
42 },
43 "animationDuration": {
44 "type": "number",
45 "default": 1000
46 },
47 "barHeight": {
48 "type": "number",
49 "default": 20
50 },
51 "barSpacing": {
52 "type": "number",
53 "default": 24
54 },
55 "barRadius": {
56 "type": "number",
57 "default": 10
58 },
59 "trackColor": {
60 "type": "string",
61 "default": "#e5e7eb"
62 },
63 "labelColor": {
64 "type": "string",
65 "default": "#1f2937"
66 },
67 "percentageColor": {
68 "type": "string",
69 "default": "#6b7280"
70 },
71 "labelSize": {
72 "type": "number",
73 "default": 16
74 },
75 "percentageSize": {
76 "type": "number",
77 "default": 14
78 },
79 "labelWeight": {
80 "type": "number",
81 "default": 500
82 },
83 "percentagePosition": {
84 "type": "string",
85 "default": "right"
86 },
87 "stripes": {
88 "type": "boolean",
89 "default": false
90 },
91 "stripesAnimated": {
92 "type": "boolean",
93 "default": false
94 },
95 "glowEffect": {
96 "type": "boolean",
97 "default": false
98 },
99 "gradient": {
100 "type": "boolean",
101 "default": false
102 },
103 "gradientAngle": {
104 "type": "number",
105 "default": 90
106 },
107 "title": {
108 "type": "string",
109 "default": ""
110 },
111 "showTitle": {
112 "type": "boolean",
113 "default": false
114 },
115 "titleColor": {
116 "type": "string",
117 "default": "#1f2937"
118 },
119 "titleSize": {
120 "type": "number",
121 "default": 24
122 }
123 }
124 }
125