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 / count-up / block.json

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

115 lines 2.6 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": "blockenberg/count-up",
5 "title": "Count Up",
6 "category": "bkbg-effects",
7 "icon": "chart-bar",
8 "description": "Animated number counter that counts up when scrolled into view.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-count-up-editor",
11 "style": "bkbg-count-up-style",
12 "viewScript": "bkbg-count-up-frontend",
13 "attributes": {
14 "value": {
15 "type": "number",
16 "default": 1000
17 },
18 "prefix": {
19 "type": "string",
20 "default": ""
21 },
22 "suffix": {
23 "type": "string",
24 "default": "+"
25 },
26 "duration": {
27 "type": "number",
28 "default": 2000
29 },
30 "separator": {
31 "type": "string",
32 "default": ","
33 },
34 "decimals": {
35 "type": "number",
36 "default": 0
37 },
38 "label": {
39 "type": "string",
40 "default": "Happy Clients"
41 },
42 "showLabel": {
43 "type": "boolean",
44 "default": true
45 },
46 "icon": {
47 "type": "string",
48 "default": "😊"
49 },
50 "showIcon": {
51 "type": "boolean",
52 "default": true
53 },
54 "iconSize": {
55 "type": "number",
56 "default": 40
57 },
58 "valueSize": {
59 "type": "number",
60 "default": 72
61 },
62 "labelSize": {
63 "type": "number",
64 "default": 18
65 },
66 "valueColor": {
67 "type": "string",
68 "default": "#7c3aed"
69 },
70 "labelColor": {
71 "type": "string",
72 "default": "#374151"
73 },
74 "iconColor": {
75 "type": "string",
76 "default": "#7c3aed"
77 },
78 "bgColor": {
79 "type": "string",
80 "default": ""
81 },
82 "textAlign": {
83 "type": "string",
84 "default": "center"
85 },
86 "maxWidth": {
87 "type": "number",
88 "default": 360
89 },
90 "paddingTop": {
91 "type": "number",
92 "default": 48
93 },
94 "paddingBottom": {
95 "type": "number",
96 "default": 48
97 },
98 "typoValue": {
99 "type": "object",
100 "default": {}
101 },
102 "typoLabel": {
103 "type": "object",
104 "default": {}
105 }
106 },
107 "supports": {
108 "html": false,
109 "align": [
110 "wide",
111 "full"
112 ]
113 }
114 }
115