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 / age-calculator / block.json

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

167 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 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/age-calculator",
5 "title": "Age Calculator",
6 "category": "bkbg-calculators",
7 "icon": "calendar",
8 "description": "An interactive age calculator that computes exact age in years, months, and days from a birth date. Includes next birthday countdown, total days lived, zodiac sign, and day of week born.",
9 "keywords": [
10 "age",
11 "birthday",
12 "calculator",
13 "born",
14 "date",
15 "years",
16 "zodiac",
17 "countdown"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-age-calculator-editor",
21 "style": "bkbg-age-calculator-style",
22 "viewScript": "bkbg-age-calculator-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Age Calculator"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Enter your birth date to find out your exact age"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "showAgeCards": {
50 "type": "boolean",
51 "default": true
52 },
53 "showNextBirthday": {
54 "type": "boolean",
55 "default": true
56 },
57 "showLifeStats": {
58 "type": "boolean",
59 "default": true
60 },
61 "showZodiac": {
62 "type": "boolean",
63 "default": true
64 },
65 "showBornDay": {
66 "type": "boolean",
67 "default": true
68 },
69 "yearsLabel": {
70 "type": "string",
71 "default": "Years"
72 },
73 "monthsLabel": {
74 "type": "string",
75 "default": "Months"
76 },
77 "daysLabel": {
78 "type": "string",
79 "default": "Days"
80 },
81 "accentColor": {
82 "type": "string",
83 "default": "#6c3fb5"
84 },
85 "cardBg": {
86 "type": "string",
87 "default": "#ffffff"
88 },
89 "resultBg": {
90 "type": "string",
91 "default": "#f5f3ff"
92 },
93 "resultBorder": {
94 "type": "string",
95 "default": "#ede9fe"
96 },
97 "ageCardBg": {
98 "type": "string",
99 "default": "#6c3fb5"
100 },
101 "ageCardColor": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "statsBg": {
106 "type": "string",
107 "default": "#fafafa"
108 },
109 "statsBorder": {
110 "type": "string",
111 "default": "#e5e7eb"
112 },
113 "titleColor": {
114 "type": "string",
115 "default": "#1e1b4b"
116 },
117 "subtitleColor": {
118 "type": "string",
119 "default": "#6b7280"
120 },
121 "labelColor": {
122 "type": "string",
123 "default": "#374151"
124 },
125 "bgColor": {
126 "type": "string",
127 "default": ""
128 },
129 "titleSize": {
130 "type": "number",
131 "default": 28
132 },
133 "ageNumSize": {
134 "type": "number",
135 "default": 52
136 },
137 "cardRadius": {
138 "type": "number",
139 "default": 16
140 },
141 "ageCardRadius": {
142 "type": "number",
143 "default": 12
144 },
145 "maxWidth": {
146 "type": "number",
147 "default": 680
148 },
149 "paddingTop": {
150 "type": "number",
151 "default": 60
152 },
153 "paddingBottom": {
154 "type": "number",
155 "default": 60
156 },
157 "titleTypo": {
158 "type": "object",
159 "default": {}
160 },
161 "ageNumTypo": {
162 "type": "object",
163 "default": {}
164 }
165 }
166 }
167