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 / password-strength-meter / block.json

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

182 lines 4.4 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/password-strength-meter",
5 "version": "1.0.0",
6 "title": "Password Strength Meter",
7 "category": "bkbg-dev",
8 "icon": "lock",
9 "description": "Real-time password strength checker with visual bar, strength label and requirements checklist.",
10 "keywords": [
11 "password",
12 "strength",
13 "security",
14 "checker",
15 "meter"
16 ],
17 "supports": {
18 "html": false,
19 "align": [
20 "wide",
21 "full"
22 ]
23 },
24 "textdomain": "blockenberg",
25 "editorScript": "bkbg-password-strength-meter-editor",
26 "style": "bkbg-password-strength-meter-style",
27 "viewScript": "bkbg-password-strength-meter-frontend",
28 "attributes": {
29 "title": {
30 "type": "string",
31 "default": "Password Strength Checker"
32 },
33 "subtitle": {
34 "type": "string",
35 "default": "Type a password to see how secure it is"
36 },
37 "showTitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "showSubtitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "placeholder": {
46 "type": "string",
47 "default": "Enter a password\u2026"
48 },
49 "minLength": {
50 "type": "number",
51 "default": 8
52 },
53 "showLengthReq": {
54 "type": "boolean",
55 "default": true
56 },
57 "showUppercaseReq": {
58 "type": "boolean",
59 "default": true
60 },
61 "showLowercaseReq": {
62 "type": "boolean",
63 "default": true
64 },
65 "showNumberReq": {
66 "type": "boolean",
67 "default": true
68 },
69 "showSymbolReq": {
70 "type": "boolean",
71 "default": true
72 },
73 "showToggleVisibility": {
74 "type": "boolean",
75 "default": true
76 },
77 "labelWeak": {
78 "type": "string",
79 "default": "Weak"
80 },
81 "labelFair": {
82 "type": "string",
83 "default": "Fair"
84 },
85 "labelGood": {
86 "type": "string",
87 "default": "Good"
88 },
89 "labelStrong": {
90 "type": "string",
91 "default": "Strong"
92 },
93 "colorWeak": {
94 "type": "string",
95 "default": "#ef4444"
96 },
97 "colorFair": {
98 "type": "string",
99 "default": "#f59e0b"
100 },
101 "colorGood": {
102 "type": "string",
103 "default": "#3b82f6"
104 },
105 "colorStrong": {
106 "type": "string",
107 "default": "#10b981"
108 },
109 "accentColor": {
110 "type": "string",
111 "default": "#6c3fb5"
112 },
113 "cardBg": {
114 "type": "string",
115 "default": ""
116 },
117 "inputBg": {
118 "type": "string",
119 "default": "#f9fafb"
120 },
121 "inputBorder": {
122 "type": "string",
123 "default": "#e5e7eb"
124 },
125 "barBg": {
126 "type": "string",
127 "default": "#e5e7eb"
128 },
129 "reqMetColor": {
130 "type": "string",
131 "default": "#10b981"
132 },
133 "reqUnmetColor": {
134 "type": "string",
135 "default": "#9ca3af"
136 },
137 "labelColor": {
138 "type": "string",
139 "default": "#374151"
140 },
141 "titleColor": {
142 "type": "string",
143 "default": ""
144 },
145 "subtitleColor": {
146 "type": "string",
147 "default": ""
148 },
149 "sectionBg": {
150 "type": "string",
151 "default": ""
152 },
153 "cardRadius": {
154 "type": "number",
155 "default": 16
156 },
157 "inputRadius": {
158 "type": "number",
159 "default": 10
160 },
161 "maxWidth": {
162 "type": "number",
163 "default": 480
164 },
165 "paddingTop": {
166 "type": "number",
167 "default": 60
168 },
169 "paddingBottom": {
170 "type": "number",
171 "default": 60
172 },
173 "titleTypo": {
174 "type": "object",
175 "default": {}
176 },
177 "subtitleTypo": {
178 "type": "object",
179 "default": {}
180 }
181 }
182 }