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

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

225 lines 5.5 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/password-generator",
5 "title": "Password Generator",
6 "category": "bkbg-dev",
7 "icon": "lock",
8 "description": "Secure random password generator with configurable length, character types (uppercase, lowercase, numbers, symbols), strength indicator, copy button, and fully customizable styling.",
9 "keywords": [
10 "password",
11 "generator",
12 "security",
13 "random",
14 "strong",
15 "secure",
16 "tool"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-password-generator-editor",
20 "style": "bkbg-password-generator-style",
21 "viewScript": "bkbg-password-generator-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Password Generator"
35 },
36 "showTitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "subtitle": {
41 "type": "string",
42 "default": "Generate a strong, secure random password instantly."
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "defaultLength": {
49 "type": "number",
50 "default": 16
51 },
52 "minLength": {
53 "type": "number",
54 "default": 6
55 },
56 "maxLength": {
57 "type": "number",
58 "default": 64
59 },
60 "includeUppercase": {
61 "type": "boolean",
62 "default": true
63 },
64 "includeLowercase": {
65 "type": "boolean",
66 "default": true
67 },
68 "includeNumbers": {
69 "type": "boolean",
70 "default": true
71 },
72 "includeSymbols": {
73 "type": "boolean",
74 "default": true
75 },
76 "excludeAmbiguous": {
77 "type": "boolean",
78 "default": false
79 },
80 "showStrength": {
81 "type": "boolean",
82 "default": true
83 },
84 "showLength": {
85 "type": "boolean",
86 "default": true
87 },
88 "showCopyBtn": {
89 "type": "boolean",
90 "default": true
91 },
92 "showRefreshBtn": {
93 "type": "boolean",
94 "default": true
95 },
96 "showToggleVisible": {
97 "type": "boolean",
98 "default": true
99 },
100 "copyLabel": {
101 "type": "string",
102 "default": "Copy Password"
103 },
104 "copiedLabel": {
105 "type": "string",
106 "default": "Copied!"
107 },
108 "generateLabel": {
109 "type": "string",
110 "default": "Generate New"
111 },
112 "accentColor": {
113 "type": "string",
114 "default": "#6c3fb5"
115 },
116 "copyBtnBg": {
117 "type": "string",
118 "default": "#6c3fb5"
119 },
120 "copyBtnColor": {
121 "type": "string",
122 "default": "#ffffff"
123 },
124 "genBtnBg": {
125 "type": "string",
126 "default": "#f3f4f6"
127 },
128 "genBtnColor": {
129 "type": "string",
130 "default": "#374151"
131 },
132 "strengthWeak": {
133 "type": "string",
134 "default": "#ef4444"
135 },
136 "strengthFair": {
137 "type": "string",
138 "default": "#f59e0b"
139 },
140 "strengthGood": {
141 "type": "string",
142 "default": "#3b82f6"
143 },
144 "strengthStrong": {
145 "type": "string",
146 "default": "#10b981"
147 },
148 "cardBg": {
149 "type": "string",
150 "default": "#ffffff"
151 },
152 "pwdBg": {
153 "type": "string",
154 "default": "#f5f3ff"
155 },
156 "pwdBorder": {
157 "type": "string",
158 "default": "#ede9fe"
159 },
160 "pwdColor": {
161 "type": "string",
162 "default": "#1e1b4b"
163 },
164 "titleColor": {
165 "type": "string",
166 "default": "#1e1b4b"
167 },
168 "subtitleColor": {
169 "type": "string",
170 "default": "#6b7280"
171 },
172 "labelColor": {
173 "type": "string",
174 "default": "#374151"
175 },
176 "bgColor": {
177 "type": "string",
178 "default": ""
179 },
180 "titleSize": {
181 "type": "number",
182 "default": 26
183 },
184 "pwdFontSize": {
185 "type": "number",
186 "default": 20
187 },
188 "cardRadius": {
189 "type": "number",
190 "default": 16
191 },
192 "btnRadius": {
193 "type": "number",
194 "default": 8
195 },
196 "maxWidth": {
197 "type": "number",
198 "default": 560
199 },
200 "paddingTop": {
201 "type": "number",
202 "default": 60
203 },
204 "paddingBottom": {
205 "type": "number",
206 "default": 60
207 },
208 "titleFontWeight": {
209 "type": "string",
210 "default": "700"
211 },
212 "pwdFontWeight": {
213 "type": "string",
214 "default": "400"
215 },
216 "titleTypo": {
217 "type": "object",
218 "default": {}
219 },
220 "pwdTypo": {
221 "type": "object",
222 "default": {}
223 }
224 }
225 }