PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / number-box / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/number-box/block.json

115 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/number-box",
5 "title": "Number Box",
6 "category": "bkbg-content",
7 "icon": "tag",
8 "description": "Square or circle box with a large metric number, prefix, suffix and label.",
9 "keywords": [
10 "number",
11 "metric",
12 "stat",
13 "kpi",
14 "counter",
15 "box"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-number-box-editor",
19 "editorStyle": "bkbg-number-box-style",
20 "style": "bkbg-number-box-style",
21 "viewScript": "bkbg-number-box-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": []
27 },
28 "attributes": {
29 "number": {
30 "type": "string",
31 "default": "42"
32 },
33 "prefix": {
34 "type": "string",
35 "default": ""
36 },
37 "suffix": {
38 "type": "string",
39 "default": "%"
40 },
41 "label": {
42 "type": "string",
43 "default": "Satisfaction Rate"
44 },
45 "shape": {
46 "type": "string",
47 "default": "square"
48 },
49 "bgColor": {
50 "type": "string",
51 "default": "#6c3fb5"
52 },
53 "textColor": {
54 "type": "string",
55 "default": "#ffffff"
56 },
57 "labelColor": {
58 "type": "string",
59 "default": ""
60 },
61 "numberSz": {
62 "type": "number",
63 "default": 56
64 },
65 "labelSz": {
66 "type": "number",
67 "default": 14
68 },
69 "numberFontWeight": {
70 "type": "integer",
71 "default": 700
72 },
73 "labelFontWeight": {
74 "type": "integer",
75 "default": 500
76 },
77 "lineHeight": {
78 "type": "number",
79 "default": 1.2
80 },
81 "numberTypo": {
82 "type": "object",
83 "default": {}
84 },
85 "labelTypo": {
86 "type": "object",
87 "default": {}
88 },
89 "boxSize": {
90 "type": "number",
91 "default": 160
92 },
93 "borderRadius": {
94 "type": "number",
95 "default": 16
96 },
97 "shadow": {
98 "type": "boolean",
99 "default": true
100 },
101 "border": {
102 "type": "boolean",
103 "default": false
104 },
105 "borderColor": {
106 "type": "string",
107 "default": "#e0d7f8"
108 },
109 "borderWidth": {
110 "type": "number",
111 "default": 2
112 }
113 }
114 }
115