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 / progress-bar / block.json

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

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