@protontech/autofill 0.0.35059265 → 0.0.35481761

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/features/feature.d.ts +13 -2
  2. package/features/feature.js +37 -15
  3. package/features/feature.spec.js +56 -7
  4. package/features/v1/abstract.field.d.ts +8377 -406
  5. package/features/v1/abstract.field.js +24 -24
  6. package/features/v1/abstract.form.d.ts +3428 -14
  7. package/features/v1/abstract.form.js +197 -197
  8. package/features/v1/field.email.d.ts +3421 -0
  9. package/features/v1/field.email.js +7 -7
  10. package/features/v1/field.otp.d.ts +71178 -0
  11. package/features/v1/field.otp.js +42 -42
  12. package/features/v1/field.password.d.ts +99166 -0
  13. package/features/v1/field.password.js +42 -42
  14. package/features/v1/field.username-hidden.d.ts +908 -0
  15. package/features/v1/field.username-hidden.js +7 -7
  16. package/features/v1/field.username.d.ts +42382 -0
  17. package/features/v1/field.username.js +11 -11
  18. package/features/v1/fields.sorted.gen.d.ts +1441 -0
  19. package/features/v1/fields.sorted.gen.js +344 -0
  20. package/features/v1/forms.sorted.gen.d.ts +734 -0
  21. package/features/v1/forms.sorted.gen.js +334 -0
  22. package/features/v1/index.d.ts +5305 -12
  23. package/features/v1/index.js +7 -11
  24. package/features/v1/index.spec.js +34 -20
  25. package/models/perceptron/params/login-model.json +91 -91
  26. package/models/perceptron/params/new-password-model.json +21 -21
  27. package/models/perceptron/params/otp-model.json +29 -29
  28. package/models/perceptron/params/password-change-model.json +72 -72
  29. package/models/perceptron/params/password-model.json +23 -23
  30. package/models/perceptron/params/recovery-model.json +81 -81
  31. package/models/perceptron/params/register-model.json +99 -99
  32. package/models/perceptron/params/username-hidden-model.json +10 -10
  33. package/models/perceptron/params/username-model.json +7 -7
  34. package/models/random_forest/params/otp-model.json +306 -366
  35. package/package.json +3 -3
  36. package/rules/v1/index.js +2 -2
  37. package/scripts/gen-sorted-features.js +125 -29
  38. package/types/index.d.ts +2 -1
  39. package/utils/fathom.d.ts +1 -2
  40. package/utils/fathom.js +2 -2
  41. package/features/registry.d.ts +0 -3
  42. package/features/registry.js +0 -9
  43. package/features/sorted.gen.d.ts +0 -14
  44. package/features/sorted.gen.js +0 -22
@@ -1,62 +1,3483 @@
1
+ export declare const typeEmail: import("../..").Feature<"typeEmail", boolean, {
2
+ fieldType: import("../..").Feature<"type", string | null, {
3
+ field: import("../..").Feature<"field", HTMLInputElement, {}>;
4
+ }>;
5
+ }>;
6
+ export declare const exactAttrEmail: import("../..").Feature<"exactAttrEmail", boolean, {
7
+ field: import("../..").Feature<"field", HTMLInputElement, {}>;
8
+ }>;
9
+ export declare const textEmail: import("../..").Feature<"textEmail", boolean, {
10
+ fieldText: import("../..").Feature<"fieldText", string, {
11
+ fieldFeats: import("../..").Feature<"fieldFeats", import("../..").ComputedFeatures<{
12
+ attrs: {
13
+ name: "attrs";
14
+ parents: import("../..").AbstractFeatures;
15
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string[];
16
+ private?: true;
17
+ };
18
+ autocomplete: {
19
+ name: "autocomplete";
20
+ parents: import("../..").AbstractFeatures;
21
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string | undefined;
22
+ private?: true;
23
+ };
24
+ isCC: {
25
+ name: "isCC";
26
+ parents: import("../..").AbstractFeatures;
27
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
28
+ private?: true;
29
+ };
30
+ isFormLogin: {
31
+ name: "isFormLogin";
32
+ parents: import("../..").AbstractFeatures;
33
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
34
+ private?: true;
35
+ };
36
+ isFormNoop: {
37
+ name: "isFormNoop";
38
+ parents: import("../..").AbstractFeatures;
39
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
40
+ private?: true;
41
+ };
42
+ isFormPasswordChange: {
43
+ name: "isFormPasswordChange";
44
+ parents: import("../..").AbstractFeatures;
45
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
46
+ private?: true;
47
+ };
48
+ isFormRecovery: {
49
+ name: "isFormRecovery";
50
+ parents: import("../..").AbstractFeatures;
51
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
52
+ private?: true;
53
+ };
54
+ isFormRegister: {
55
+ name: "isFormRegister";
56
+ parents: import("../..").AbstractFeatures;
57
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
58
+ private?: true;
59
+ };
60
+ isIdentity: {
61
+ name: "isIdentity";
62
+ parents: import("../..").AbstractFeatures;
63
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
64
+ private?: true;
65
+ };
66
+ label: {
67
+ name: "label";
68
+ parents: import("../..").AbstractFeatures;
69
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
70
+ private?: true;
71
+ };
72
+ nextField: {
73
+ name: "nextField";
74
+ parents: import("../..").AbstractFeatures;
75
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
76
+ private?: true;
77
+ };
78
+ parentFormFeatures: {
79
+ name: "parentFormFeatures";
80
+ parents: import("../..").AbstractFeatures;
81
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").ComputedFeatures<{
82
+ formInputMFACandidates: {
83
+ name: "formInputMFACandidates";
84
+ parents: import("../..").AbstractFeatures;
85
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
86
+ private?: true;
87
+ };
88
+ formMFA: {
89
+ name: "formMFA";
90
+ parents: import("../..").AbstractFeatures;
91
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
92
+ private?: true;
93
+ };
94
+ formOTPOutlier: {
95
+ name: "formOTPOutlier";
96
+ parents: import("../..").AbstractFeatures;
97
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
98
+ private?: true;
99
+ };
100
+ formTextAuthenticator: {
101
+ name: "formTextAuthenticator";
102
+ parents: import("../..").AbstractFeatures;
103
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
104
+ private?: true;
105
+ };
106
+ headingsOTPOutlier: {
107
+ name: "headingsOTPOutlier";
108
+ parents: import("../..").AbstractFeatures;
109
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
110
+ private?: true;
111
+ };
112
+ inputIterator: {
113
+ name: "inputIterator";
114
+ parents: import("../..").AbstractFeatures;
115
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
116
+ private?: true;
117
+ };
118
+ linkOTPOutlier: {
119
+ name: "linkOTPOutlier";
120
+ parents: import("../..").AbstractFeatures;
121
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
122
+ private?: true;
123
+ };
124
+ visibleFieldsCount: {
125
+ name: "visibleFieldsCountScaled";
126
+ parents: import("../..").AbstractFeatures;
127
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
128
+ private?: true;
129
+ };
130
+ visibleInputsCount: {
131
+ name: "visibleInputsCountScaled";
132
+ parents: import("../..").AbstractFeatures;
133
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
134
+ private?: true;
135
+ };
136
+ fieldsetsCount: {
137
+ name: "fieldsetsCountScaled";
138
+ parents: import("../..").AbstractFeatures;
139
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
140
+ private?: true;
141
+ };
142
+ textsCount: {
143
+ name: "textsCountScaled";
144
+ parents: import("../..").AbstractFeatures;
145
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
146
+ private?: true;
147
+ };
148
+ textareasCount: {
149
+ name: "textareasCountScaled";
150
+ parents: import("../..").AbstractFeatures;
151
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
152
+ private?: true;
153
+ };
154
+ selectsCount: {
155
+ name: "selectsCountScaled";
156
+ parents: import("../..").AbstractFeatures;
157
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
158
+ private?: true;
159
+ };
160
+ disabledCount: {
161
+ name: "disabledCountScaled";
162
+ parents: import("../..").AbstractFeatures;
163
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
164
+ private?: true;
165
+ };
166
+ radiosCount: {
167
+ name: "radiosCountScaled";
168
+ parents: import("../..").AbstractFeatures;
169
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
170
+ private?: true;
171
+ };
172
+ readOnlyCount: {
173
+ name: "readOnlyCountScaled";
174
+ parents: import("../..").AbstractFeatures;
175
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
176
+ private?: true;
177
+ };
178
+ formComplexity: {
179
+ name: "formComplexityScaled";
180
+ parents: import("../..").AbstractFeatures;
181
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
182
+ private?: true;
183
+ };
184
+ visibleIdentifiersCount: {
185
+ name: "visibleIdentifiersCountScaled";
186
+ parents: import("../..").AbstractFeatures;
187
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
188
+ private?: true;
189
+ };
190
+ hiddenIdentifiersCount: {
191
+ name: "hiddenIdentifiersCountScaled";
192
+ parents: import("../..").AbstractFeatures;
193
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
194
+ private?: true;
195
+ };
196
+ usernamesCount: {
197
+ name: "usernamesCountScaled";
198
+ parents: import("../..").AbstractFeatures;
199
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
200
+ private?: true;
201
+ };
202
+ emailsCount: {
203
+ name: "emailsCountScaled";
204
+ parents: import("../..").AbstractFeatures;
205
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
206
+ private?: true;
207
+ };
208
+ hiddenCount: {
209
+ name: "hiddenCountScaled";
210
+ parents: import("../..").AbstractFeatures;
211
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
212
+ private?: true;
213
+ };
214
+ hiddenPasswordsCount: {
215
+ name: "hiddenPasswordsCountScaled";
216
+ parents: import("../..").AbstractFeatures;
217
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
218
+ private?: true;
219
+ };
220
+ submitsCount: {
221
+ name: "submitsCountScaled";
222
+ parents: import("../..").AbstractFeatures;
223
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
224
+ private?: true;
225
+ };
226
+ identitiesCount: {
227
+ name: "identitiesCountScaled";
228
+ parents: import("../..").AbstractFeatures;
229
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
230
+ private?: true;
231
+ };
232
+ ccsCount: {
233
+ name: "ccsCountScaled";
234
+ parents: import("../..").AbstractFeatures;
235
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
236
+ private?: true;
237
+ };
238
+ hasTels: {
239
+ name: "hasTels";
240
+ parents: import("../..").AbstractFeatures;
241
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
242
+ private?: true;
243
+ };
244
+ hasOAuth: {
245
+ name: "hasOAuth";
246
+ parents: import("../..").AbstractFeatures;
247
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
248
+ private?: true;
249
+ };
250
+ hasCaptchas: {
251
+ name: "hasCaptchas";
252
+ parents: import("../..").AbstractFeatures;
253
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
254
+ private?: true;
255
+ };
256
+ hasFiles: {
257
+ name: "hasFiles";
258
+ parents: import("../..").AbstractFeatures;
259
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
260
+ private?: true;
261
+ };
262
+ hasDate: {
263
+ name: "hasDate";
264
+ parents: import("../..").AbstractFeatures;
265
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
266
+ private?: true;
267
+ };
268
+ hasNumber: {
269
+ name: "hasNumber";
270
+ parents: import("../..").AbstractFeatures;
271
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
272
+ private?: true;
273
+ };
274
+ oneVisibleField: {
275
+ name: "oneVisibleField";
276
+ parents: import("../..").AbstractFeatures;
277
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
278
+ private?: true;
279
+ };
280
+ twoVisibleFields: {
281
+ name: "twoVisibleFields";
282
+ parents: import("../..").AbstractFeatures;
283
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
284
+ private?: true;
285
+ };
286
+ threeOrMoreVisibleFields: {
287
+ name: "threeOrMoreVisibleFields";
288
+ parents: import("../..").AbstractFeatures;
289
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
290
+ private?: true;
291
+ };
292
+ noPasswords: {
293
+ name: "noPasswords";
294
+ parents: import("../..").AbstractFeatures;
295
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
296
+ private?: true;
297
+ };
298
+ onePassword: {
299
+ name: "onePassword";
300
+ parents: import("../..").AbstractFeatures;
301
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
302
+ private?: true;
303
+ };
304
+ twoPasswords: {
305
+ name: "twoPasswords";
306
+ parents: import("../..").AbstractFeatures;
307
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
308
+ private?: true;
309
+ };
310
+ threeOrMorePasswords: {
311
+ name: "threeOrMorePasswords";
312
+ parents: import("../..").AbstractFeatures;
313
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
314
+ private?: true;
315
+ };
316
+ noIdentifiers: {
317
+ name: "noIdentifiers";
318
+ parents: import("../..").AbstractFeatures;
319
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
320
+ private?: true;
321
+ };
322
+ oneIdentifier: {
323
+ name: "oneIdentifier";
324
+ parents: import("../..").AbstractFeatures;
325
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
326
+ private?: true;
327
+ };
328
+ twoIdentifiers: {
329
+ name: "twoIdentifiers";
330
+ parents: import("../..").AbstractFeatures;
331
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
332
+ private?: true;
333
+ };
334
+ threeOrMoreIdentifiers: {
335
+ name: "threeOrMoreIdentifiers";
336
+ parents: import("../..").AbstractFeatures;
337
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
338
+ private?: true;
339
+ };
340
+ autofocusedIsIdentifier: {
341
+ name: "autofocusedIsIdentifier";
342
+ parents: import("../..").AbstractFeatures;
343
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
344
+ private?: true;
345
+ };
346
+ autofocusedIsPassword: {
347
+ name: "autofocusedIsPassword";
348
+ parents: import("../..").AbstractFeatures;
349
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
350
+ private?: true;
351
+ };
352
+ visibleRatio: {
353
+ name: "visibleRatio";
354
+ parents: import("../..").AbstractFeatures;
355
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
356
+ private?: true;
357
+ };
358
+ inputRatio: {
359
+ name: "inputRatio";
360
+ parents: import("../..").AbstractFeatures;
361
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
362
+ private?: true;
363
+ };
364
+ hiddenRatio: {
365
+ name: "hiddenRatio";
366
+ parents: import("../..").AbstractFeatures;
367
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
368
+ private?: true;
369
+ };
370
+ identifierRatio: {
371
+ name: "identifierRatio";
372
+ parents: import("../..").AbstractFeatures;
373
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
374
+ private?: true;
375
+ };
376
+ emailRatio: {
377
+ name: "emailRatio";
378
+ parents: import("../..").AbstractFeatures;
379
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
380
+ private?: true;
381
+ };
382
+ usernameRatio: {
383
+ name: "usernameRatio";
384
+ parents: import("../..").AbstractFeatures;
385
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
386
+ private?: true;
387
+ };
388
+ passwordRatio: {
389
+ name: "passwordRatio";
390
+ parents: import("../..").AbstractFeatures;
391
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
392
+ private?: true;
393
+ };
394
+ disabledRatio: {
395
+ name: "disabledRatio";
396
+ parents: import("../..").AbstractFeatures;
397
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
398
+ private?: true;
399
+ };
400
+ requiredRatio: {
401
+ name: "requiredRatio";
402
+ parents: import("../..").AbstractFeatures;
403
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
404
+ private?: true;
405
+ };
406
+ checkboxRatio: {
407
+ name: "checkboxRatio";
408
+ parents: import("../..").AbstractFeatures;
409
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
410
+ private?: true;
411
+ };
412
+ hiddenIdentifierRatio: {
413
+ name: "hiddenIdentifierRatio";
414
+ parents: import("../..").AbstractFeatures;
415
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
416
+ private?: true;
417
+ };
418
+ hiddenPasswordRatio: {
419
+ name: "hiddenPasswordRatio";
420
+ parents: import("../..").AbstractFeatures;
421
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
422
+ private?: true;
423
+ };
424
+ pageLogin: {
425
+ name: "pageLogin";
426
+ parents: import("../..").AbstractFeatures;
427
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
428
+ private?: true;
429
+ };
430
+ formTextLogin: {
431
+ name: "formTextLogin";
432
+ parents: import("../..").AbstractFeatures;
433
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
434
+ private?: true;
435
+ };
436
+ formAttrsLogin: {
437
+ name: "formAttrsLogin";
438
+ parents: import("../..").AbstractFeatures;
439
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
440
+ private?: true;
441
+ };
442
+ headingsLogin: {
443
+ name: "headingsLogin";
444
+ parents: import("../..").AbstractFeatures;
445
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
446
+ private?: true;
447
+ };
448
+ layoutLogin: {
449
+ name: "layoutLogin";
450
+ parents: import("../..").AbstractFeatures;
451
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
452
+ private?: true;
453
+ };
454
+ rememberMeCheckbox: {
455
+ name: "rememberMeCheckbox";
456
+ parents: import("../..").AbstractFeatures;
457
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
458
+ private?: true;
459
+ };
460
+ troubleLink: {
461
+ name: "troubleLink";
462
+ parents: import("../..").AbstractFeatures;
463
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
464
+ private?: true;
465
+ };
466
+ submitLogin: {
467
+ name: "submitLogin";
468
+ parents: import("../..").AbstractFeatures;
469
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
470
+ private?: true;
471
+ };
472
+ pageRegister: {
473
+ name: "pageRegister";
474
+ parents: import("../..").AbstractFeatures;
475
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
476
+ private?: true;
477
+ };
478
+ formTextRegister: {
479
+ name: "formTextRegister";
480
+ parents: import("../..").AbstractFeatures;
481
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
482
+ private?: true;
483
+ };
484
+ formAttrsRegister: {
485
+ name: "formAttrsRegister";
486
+ parents: import("../..").AbstractFeatures;
487
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
488
+ private?: true;
489
+ };
490
+ headingsRegister: {
491
+ name: "headingsRegister";
492
+ parents: import("../..").AbstractFeatures;
493
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
494
+ private?: true;
495
+ };
496
+ layoutRegister: {
497
+ name: "layoutRegister";
498
+ parents: import("../..").AbstractFeatures;
499
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
500
+ private?: true;
501
+ };
502
+ pwNewRegister: {
503
+ name: "pwNewRegister";
504
+ parents: import("../..").AbstractFeatures;
505
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
506
+ private?: true;
507
+ };
508
+ pwConfirmRegister: {
509
+ name: "pwConfirmRegister";
510
+ parents: import("../..").AbstractFeatures;
511
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
512
+ private?: true;
513
+ };
514
+ submitRegister: {
515
+ name: "submitRegister";
516
+ parents: import("../..").AbstractFeatures;
517
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
518
+ private?: true;
519
+ };
520
+ TOSRef: {
521
+ name: "TOSRef";
522
+ parents: import("../..").AbstractFeatures;
523
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
524
+ private?: true;
525
+ };
526
+ pagePwReset: {
527
+ name: "pagePwReset";
528
+ parents: import("../..").AbstractFeatures;
529
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
530
+ private?: true;
531
+ };
532
+ formTextPwReset: {
533
+ name: "formTextPwReset";
534
+ parents: import("../..").AbstractFeatures;
535
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
536
+ private?: true;
537
+ };
538
+ formAttrsPwReset: {
539
+ name: "formAttrsPwReset";
540
+ parents: import("../..").AbstractFeatures;
541
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
542
+ private?: true;
543
+ };
544
+ headingsPwReset: {
545
+ name: "headingsPwReset";
546
+ parents: import("../..").AbstractFeatures;
547
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
548
+ private?: true;
549
+ };
550
+ layoutPwReset: {
551
+ name: "layoutPwReset";
552
+ parents: import("../..").AbstractFeatures;
553
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
554
+ private?: true;
555
+ };
556
+ pageRecovery: {
557
+ name: "pageRecovery";
558
+ parents: import("../..").AbstractFeatures;
559
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
560
+ private?: true;
561
+ };
562
+ formTextRecovery: {
563
+ name: "formTextRecovery";
564
+ parents: import("../..").AbstractFeatures;
565
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
566
+ private?: true;
567
+ };
568
+ formAttrsRecovery: {
569
+ name: "formAttrsRecovery";
570
+ parents: import("../..").AbstractFeatures;
571
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
572
+ private?: true;
573
+ };
574
+ headingsRecovery: {
575
+ name: "headingsRecovery";
576
+ parents: import("../..").AbstractFeatures;
577
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
578
+ private?: true;
579
+ };
580
+ layoutRecovery: {
581
+ name: "layoutRecovery";
582
+ parents: import("../..").AbstractFeatures;
583
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
584
+ private?: true;
585
+ };
586
+ identifierRecovery: {
587
+ name: "identifierRecovery";
588
+ parents: import("../..").AbstractFeatures;
589
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
590
+ private?: true;
591
+ };
592
+ submitRecovery: {
593
+ name: "submitRecovery";
594
+ parents: import("../..").AbstractFeatures;
595
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
596
+ private?: true;
597
+ };
598
+ formTextMFA: {
599
+ name: "formTextMFA";
600
+ parents: import("../..").AbstractFeatures;
601
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
602
+ private?: true;
603
+ };
604
+ formAttrsMFA: {
605
+ name: "formAttrsMFA";
606
+ parents: import("../..").AbstractFeatures;
607
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
608
+ private?: true;
609
+ };
610
+ inputsMFA: {
611
+ name: "inputsMFA";
612
+ parents: import("../..").AbstractFeatures;
613
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
614
+ private?: true;
615
+ };
616
+ newsletterForm: {
617
+ name: "newsletterForm";
618
+ parents: import("../..").AbstractFeatures;
619
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
620
+ private?: true;
621
+ };
622
+ searchForm: {
623
+ name: "searchForm";
624
+ parents: import("../..").AbstractFeatures;
625
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
626
+ private?: true;
627
+ };
628
+ multistepForm: {
629
+ name: "multistepForm";
630
+ parents: import("../..").AbstractFeatures;
631
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
632
+ private?: true;
633
+ };
634
+ multiAuthForm: {
635
+ name: "multiAuthForm";
636
+ parents: import("../..").AbstractFeatures;
637
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
638
+ private?: true;
639
+ };
640
+ multistepForm_multiAuthForm: {
641
+ name: "multistepForm,multiAuthForm";
642
+ parents: import("../..").AbstractFeatures;
643
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
644
+ private?: true;
645
+ };
646
+ visibleRatio_visibleFieldsCount: {
647
+ name: "visibleRatio,visibleFieldsCountScaled";
648
+ parents: import("../..").AbstractFeatures;
649
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
650
+ private?: true;
651
+ };
652
+ visibleRatio_visibleIdentifiersCount: {
653
+ name: "visibleRatio,visibleIdentifiersCountScaled";
654
+ parents: import("../..").AbstractFeatures;
655
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
656
+ private?: true;
657
+ };
658
+ visibleRatio_visiblePasswordsCount: {
659
+ name: "visibleRatio,visiblePasswordsCountScaled";
660
+ parents: import("../..").AbstractFeatures;
661
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
662
+ private?: true;
663
+ };
664
+ visibleRatio_hiddenIdentifiersCount: {
665
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
666
+ parents: import("../..").AbstractFeatures;
667
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
668
+ private?: true;
669
+ };
670
+ visibleRatio_hiddenPasswordsCount: {
671
+ name: "visibleRatio,hiddenPasswordsCountScaled";
672
+ parents: import("../..").AbstractFeatures;
673
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
674
+ private?: true;
675
+ };
676
+ visibleRatio_multiAuthForm: {
677
+ name: "visibleRatio,multiAuthForm";
678
+ parents: import("../..").AbstractFeatures;
679
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
680
+ private?: true;
681
+ };
682
+ visibleRatio_multistepForm: {
683
+ name: "visibleRatio,multistepForm";
684
+ parents: import("../..").AbstractFeatures;
685
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
686
+ private?: true;
687
+ };
688
+ identifierRatio_visibleFieldsCount: {
689
+ name: "identifierRatio,visibleFieldsCountScaled";
690
+ parents: import("../..").AbstractFeatures;
691
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
692
+ private?: true;
693
+ };
694
+ identifierRatio_visibleIdentifiersCount: {
695
+ name: "identifierRatio,visibleIdentifiersCountScaled";
696
+ parents: import("../..").AbstractFeatures;
697
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
698
+ private?: true;
699
+ };
700
+ identifierRatio_visiblePasswordsCount: {
701
+ name: "identifierRatio,visiblePasswordsCountScaled";
702
+ parents: import("../..").AbstractFeatures;
703
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
704
+ private?: true;
705
+ };
706
+ identifierRatio_hiddenIdentifiersCount: {
707
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
708
+ parents: import("../..").AbstractFeatures;
709
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
710
+ private?: true;
711
+ };
712
+ identifierRatio_hiddenPasswordsCount: {
713
+ name: "identifierRatio,hiddenPasswordsCountScaled";
714
+ parents: import("../..").AbstractFeatures;
715
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
716
+ private?: true;
717
+ };
718
+ identifierRatio_multiAuthForm: {
719
+ name: "identifierRatio,multiAuthForm";
720
+ parents: import("../..").AbstractFeatures;
721
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
722
+ private?: true;
723
+ };
724
+ identifierRatio_multistepForm: {
725
+ name: "identifierRatio,multistepForm";
726
+ parents: import("../..").AbstractFeatures;
727
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
728
+ private?: true;
729
+ };
730
+ passwordRatio_visibleFieldsCount: {
731
+ name: "passwordRatio,visibleFieldsCountScaled";
732
+ parents: import("../..").AbstractFeatures;
733
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
734
+ private?: true;
735
+ };
736
+ passwordRatio_visibleIdentifiersCount: {
737
+ name: "passwordRatio,visibleIdentifiersCountScaled";
738
+ parents: import("../..").AbstractFeatures;
739
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
740
+ private?: true;
741
+ };
742
+ passwordRatio_visiblePasswordsCount: {
743
+ name: "passwordRatio,visiblePasswordsCountScaled";
744
+ parents: import("../..").AbstractFeatures;
745
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
746
+ private?: true;
747
+ };
748
+ passwordRatio_hiddenIdentifiersCount: {
749
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
750
+ parents: import("../..").AbstractFeatures;
751
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
752
+ private?: true;
753
+ };
754
+ passwordRatio_hiddenPasswordsCount: {
755
+ name: "passwordRatio,hiddenPasswordsCountScaled";
756
+ parents: import("../..").AbstractFeatures;
757
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
758
+ private?: true;
759
+ };
760
+ passwordRatio_multiAuthForm: {
761
+ name: "passwordRatio,multiAuthForm";
762
+ parents: import("../..").AbstractFeatures;
763
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
764
+ private?: true;
765
+ };
766
+ passwordRatio_multistepForm: {
767
+ name: "passwordRatio,multistepForm";
768
+ parents: import("../..").AbstractFeatures;
769
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
770
+ private?: true;
771
+ };
772
+ requiredRatio_visibleFieldsCount: {
773
+ name: "requiredRatio,visibleFieldsCountScaled";
774
+ parents: import("../..").AbstractFeatures;
775
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
776
+ private?: true;
777
+ };
778
+ requiredRatio_visibleIdentifiersCount: {
779
+ name: "requiredRatio,visibleIdentifiersCountScaled";
780
+ parents: import("../..").AbstractFeatures;
781
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
782
+ private?: true;
783
+ };
784
+ requiredRatio_visiblePasswordsCount: {
785
+ name: "requiredRatio,visiblePasswordsCountScaled";
786
+ parents: import("../..").AbstractFeatures;
787
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
788
+ private?: true;
789
+ };
790
+ requiredRatio_hiddenIdentifiersCount: {
791
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
792
+ parents: import("../..").AbstractFeatures;
793
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
794
+ private?: true;
795
+ };
796
+ requiredRatio_hiddenPasswordsCount: {
797
+ name: "requiredRatio,hiddenPasswordsCountScaled";
798
+ parents: import("../..").AbstractFeatures;
799
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
800
+ private?: true;
801
+ };
802
+ requiredRatio_multiAuthForm: {
803
+ name: "requiredRatio,multiAuthForm";
804
+ parents: import("../..").AbstractFeatures;
805
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
806
+ private?: true;
807
+ };
808
+ requiredRatio_multistepForm: {
809
+ name: "requiredRatio,multistepForm";
810
+ parents: import("../..").AbstractFeatures;
811
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
812
+ private?: true;
813
+ };
814
+ }> | undefined;
815
+ private?: true;
816
+ };
817
+ parentFormFnode: {
818
+ name: "parentFormFnode";
819
+ parents: import("../..").AbstractFeatures;
820
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/fathom").Fnode | null;
821
+ private?: true;
822
+ };
823
+ prevField: {
824
+ name: "prevField";
825
+ parents: import("../..").AbstractFeatures;
826
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
827
+ private?: true;
828
+ };
829
+ prevInput: {
830
+ name: "prevInput";
831
+ parents: import("../..").AbstractFeatures;
832
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
833
+ private?: true;
834
+ };
835
+ searchField: {
836
+ name: "searchField";
837
+ parents: import("../..").AbstractFeatures;
838
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
839
+ private?: true;
840
+ };
841
+ text: {
842
+ name: "text";
843
+ parents: import("../..").AbstractFeatures;
844
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
845
+ private?: true;
846
+ };
847
+ visible: {
848
+ name: "visible";
849
+ parents: import("../..").AbstractFeatures;
850
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
851
+ private?: true;
852
+ };
853
+ }>, {}>;
854
+ }>;
855
+ }>;
856
+ export declare const labelEmail: import("../..").Feature<"labelEmail", boolean, {
857
+ fieldLabel: import("../..").Feature<"fieldLabel", string, {
858
+ fieldFeats: import("../..").Feature<"fieldFeats", import("../..").ComputedFeatures<{
859
+ attrs: {
860
+ name: "attrs";
861
+ parents: import("../..").AbstractFeatures;
862
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string[];
863
+ private?: true;
864
+ };
865
+ autocomplete: {
866
+ name: "autocomplete";
867
+ parents: import("../..").AbstractFeatures;
868
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string | undefined;
869
+ private?: true;
870
+ };
871
+ isCC: {
872
+ name: "isCC";
873
+ parents: import("../..").AbstractFeatures;
874
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
875
+ private?: true;
876
+ };
877
+ isFormLogin: {
878
+ name: "isFormLogin";
879
+ parents: import("../..").AbstractFeatures;
880
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
881
+ private?: true;
882
+ };
883
+ isFormNoop: {
884
+ name: "isFormNoop";
885
+ parents: import("../..").AbstractFeatures;
886
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
887
+ private?: true;
888
+ };
889
+ isFormPasswordChange: {
890
+ name: "isFormPasswordChange";
891
+ parents: import("../..").AbstractFeatures;
892
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
893
+ private?: true;
894
+ };
895
+ isFormRecovery: {
896
+ name: "isFormRecovery";
897
+ parents: import("../..").AbstractFeatures;
898
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
899
+ private?: true;
900
+ };
901
+ isFormRegister: {
902
+ name: "isFormRegister";
903
+ parents: import("../..").AbstractFeatures;
904
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
905
+ private?: true;
906
+ };
907
+ isIdentity: {
908
+ name: "isIdentity";
909
+ parents: import("../..").AbstractFeatures;
910
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
911
+ private?: true;
912
+ };
913
+ label: {
914
+ name: "label";
915
+ parents: import("../..").AbstractFeatures;
916
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
917
+ private?: true;
918
+ };
919
+ nextField: {
920
+ name: "nextField";
921
+ parents: import("../..").AbstractFeatures;
922
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
923
+ private?: true;
924
+ };
925
+ parentFormFeatures: {
926
+ name: "parentFormFeatures";
927
+ parents: import("../..").AbstractFeatures;
928
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").ComputedFeatures<{
929
+ formInputMFACandidates: {
930
+ name: "formInputMFACandidates";
931
+ parents: import("../..").AbstractFeatures;
932
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
933
+ private?: true;
934
+ };
935
+ formMFA: {
936
+ name: "formMFA";
937
+ parents: import("../..").AbstractFeatures;
938
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
939
+ private?: true;
940
+ };
941
+ formOTPOutlier: {
942
+ name: "formOTPOutlier";
943
+ parents: import("../..").AbstractFeatures;
944
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
945
+ private?: true;
946
+ };
947
+ formTextAuthenticator: {
948
+ name: "formTextAuthenticator";
949
+ parents: import("../..").AbstractFeatures;
950
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
951
+ private?: true;
952
+ };
953
+ headingsOTPOutlier: {
954
+ name: "headingsOTPOutlier";
955
+ parents: import("../..").AbstractFeatures;
956
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
957
+ private?: true;
958
+ };
959
+ inputIterator: {
960
+ name: "inputIterator";
961
+ parents: import("../..").AbstractFeatures;
962
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
963
+ private?: true;
964
+ };
965
+ linkOTPOutlier: {
966
+ name: "linkOTPOutlier";
967
+ parents: import("../..").AbstractFeatures;
968
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
969
+ private?: true;
970
+ };
971
+ visibleFieldsCount: {
972
+ name: "visibleFieldsCountScaled";
973
+ parents: import("../..").AbstractFeatures;
974
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
975
+ private?: true;
976
+ };
977
+ visibleInputsCount: {
978
+ name: "visibleInputsCountScaled";
979
+ parents: import("../..").AbstractFeatures;
980
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
981
+ private?: true;
982
+ };
983
+ fieldsetsCount: {
984
+ name: "fieldsetsCountScaled";
985
+ parents: import("../..").AbstractFeatures;
986
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
987
+ private?: true;
988
+ };
989
+ textsCount: {
990
+ name: "textsCountScaled";
991
+ parents: import("../..").AbstractFeatures;
992
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
993
+ private?: true;
994
+ };
995
+ textareasCount: {
996
+ name: "textareasCountScaled";
997
+ parents: import("../..").AbstractFeatures;
998
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
999
+ private?: true;
1000
+ };
1001
+ selectsCount: {
1002
+ name: "selectsCountScaled";
1003
+ parents: import("../..").AbstractFeatures;
1004
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1005
+ private?: true;
1006
+ };
1007
+ disabledCount: {
1008
+ name: "disabledCountScaled";
1009
+ parents: import("../..").AbstractFeatures;
1010
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1011
+ private?: true;
1012
+ };
1013
+ radiosCount: {
1014
+ name: "radiosCountScaled";
1015
+ parents: import("../..").AbstractFeatures;
1016
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1017
+ private?: true;
1018
+ };
1019
+ readOnlyCount: {
1020
+ name: "readOnlyCountScaled";
1021
+ parents: import("../..").AbstractFeatures;
1022
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1023
+ private?: true;
1024
+ };
1025
+ formComplexity: {
1026
+ name: "formComplexityScaled";
1027
+ parents: import("../..").AbstractFeatures;
1028
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1029
+ private?: true;
1030
+ };
1031
+ visibleIdentifiersCount: {
1032
+ name: "visibleIdentifiersCountScaled";
1033
+ parents: import("../..").AbstractFeatures;
1034
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1035
+ private?: true;
1036
+ };
1037
+ hiddenIdentifiersCount: {
1038
+ name: "hiddenIdentifiersCountScaled";
1039
+ parents: import("../..").AbstractFeatures;
1040
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1041
+ private?: true;
1042
+ };
1043
+ usernamesCount: {
1044
+ name: "usernamesCountScaled";
1045
+ parents: import("../..").AbstractFeatures;
1046
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1047
+ private?: true;
1048
+ };
1049
+ emailsCount: {
1050
+ name: "emailsCountScaled";
1051
+ parents: import("../..").AbstractFeatures;
1052
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1053
+ private?: true;
1054
+ };
1055
+ hiddenCount: {
1056
+ name: "hiddenCountScaled";
1057
+ parents: import("../..").AbstractFeatures;
1058
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1059
+ private?: true;
1060
+ };
1061
+ hiddenPasswordsCount: {
1062
+ name: "hiddenPasswordsCountScaled";
1063
+ parents: import("../..").AbstractFeatures;
1064
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1065
+ private?: true;
1066
+ };
1067
+ submitsCount: {
1068
+ name: "submitsCountScaled";
1069
+ parents: import("../..").AbstractFeatures;
1070
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1071
+ private?: true;
1072
+ };
1073
+ identitiesCount: {
1074
+ name: "identitiesCountScaled";
1075
+ parents: import("../..").AbstractFeatures;
1076
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1077
+ private?: true;
1078
+ };
1079
+ ccsCount: {
1080
+ name: "ccsCountScaled";
1081
+ parents: import("../..").AbstractFeatures;
1082
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1083
+ private?: true;
1084
+ };
1085
+ hasTels: {
1086
+ name: "hasTels";
1087
+ parents: import("../..").AbstractFeatures;
1088
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1089
+ private?: true;
1090
+ };
1091
+ hasOAuth: {
1092
+ name: "hasOAuth";
1093
+ parents: import("../..").AbstractFeatures;
1094
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1095
+ private?: true;
1096
+ };
1097
+ hasCaptchas: {
1098
+ name: "hasCaptchas";
1099
+ parents: import("../..").AbstractFeatures;
1100
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1101
+ private?: true;
1102
+ };
1103
+ hasFiles: {
1104
+ name: "hasFiles";
1105
+ parents: import("../..").AbstractFeatures;
1106
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1107
+ private?: true;
1108
+ };
1109
+ hasDate: {
1110
+ name: "hasDate";
1111
+ parents: import("../..").AbstractFeatures;
1112
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1113
+ private?: true;
1114
+ };
1115
+ hasNumber: {
1116
+ name: "hasNumber";
1117
+ parents: import("../..").AbstractFeatures;
1118
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1119
+ private?: true;
1120
+ };
1121
+ oneVisibleField: {
1122
+ name: "oneVisibleField";
1123
+ parents: import("../..").AbstractFeatures;
1124
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1125
+ private?: true;
1126
+ };
1127
+ twoVisibleFields: {
1128
+ name: "twoVisibleFields";
1129
+ parents: import("../..").AbstractFeatures;
1130
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1131
+ private?: true;
1132
+ };
1133
+ threeOrMoreVisibleFields: {
1134
+ name: "threeOrMoreVisibleFields";
1135
+ parents: import("../..").AbstractFeatures;
1136
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1137
+ private?: true;
1138
+ };
1139
+ noPasswords: {
1140
+ name: "noPasswords";
1141
+ parents: import("../..").AbstractFeatures;
1142
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1143
+ private?: true;
1144
+ };
1145
+ onePassword: {
1146
+ name: "onePassword";
1147
+ parents: import("../..").AbstractFeatures;
1148
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1149
+ private?: true;
1150
+ };
1151
+ twoPasswords: {
1152
+ name: "twoPasswords";
1153
+ parents: import("../..").AbstractFeatures;
1154
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1155
+ private?: true;
1156
+ };
1157
+ threeOrMorePasswords: {
1158
+ name: "threeOrMorePasswords";
1159
+ parents: import("../..").AbstractFeatures;
1160
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1161
+ private?: true;
1162
+ };
1163
+ noIdentifiers: {
1164
+ name: "noIdentifiers";
1165
+ parents: import("../..").AbstractFeatures;
1166
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1167
+ private?: true;
1168
+ };
1169
+ oneIdentifier: {
1170
+ name: "oneIdentifier";
1171
+ parents: import("../..").AbstractFeatures;
1172
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1173
+ private?: true;
1174
+ };
1175
+ twoIdentifiers: {
1176
+ name: "twoIdentifiers";
1177
+ parents: import("../..").AbstractFeatures;
1178
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1179
+ private?: true;
1180
+ };
1181
+ threeOrMoreIdentifiers: {
1182
+ name: "threeOrMoreIdentifiers";
1183
+ parents: import("../..").AbstractFeatures;
1184
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1185
+ private?: true;
1186
+ };
1187
+ autofocusedIsIdentifier: {
1188
+ name: "autofocusedIsIdentifier";
1189
+ parents: import("../..").AbstractFeatures;
1190
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1191
+ private?: true;
1192
+ };
1193
+ autofocusedIsPassword: {
1194
+ name: "autofocusedIsPassword";
1195
+ parents: import("../..").AbstractFeatures;
1196
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1197
+ private?: true;
1198
+ };
1199
+ visibleRatio: {
1200
+ name: "visibleRatio";
1201
+ parents: import("../..").AbstractFeatures;
1202
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1203
+ private?: true;
1204
+ };
1205
+ inputRatio: {
1206
+ name: "inputRatio";
1207
+ parents: import("../..").AbstractFeatures;
1208
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1209
+ private?: true;
1210
+ };
1211
+ hiddenRatio: {
1212
+ name: "hiddenRatio";
1213
+ parents: import("../..").AbstractFeatures;
1214
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1215
+ private?: true;
1216
+ };
1217
+ identifierRatio: {
1218
+ name: "identifierRatio";
1219
+ parents: import("../..").AbstractFeatures;
1220
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1221
+ private?: true;
1222
+ };
1223
+ emailRatio: {
1224
+ name: "emailRatio";
1225
+ parents: import("../..").AbstractFeatures;
1226
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1227
+ private?: true;
1228
+ };
1229
+ usernameRatio: {
1230
+ name: "usernameRatio";
1231
+ parents: import("../..").AbstractFeatures;
1232
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1233
+ private?: true;
1234
+ };
1235
+ passwordRatio: {
1236
+ name: "passwordRatio";
1237
+ parents: import("../..").AbstractFeatures;
1238
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1239
+ private?: true;
1240
+ };
1241
+ disabledRatio: {
1242
+ name: "disabledRatio";
1243
+ parents: import("../..").AbstractFeatures;
1244
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1245
+ private?: true;
1246
+ };
1247
+ requiredRatio: {
1248
+ name: "requiredRatio";
1249
+ parents: import("../..").AbstractFeatures;
1250
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1251
+ private?: true;
1252
+ };
1253
+ checkboxRatio: {
1254
+ name: "checkboxRatio";
1255
+ parents: import("../..").AbstractFeatures;
1256
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1257
+ private?: true;
1258
+ };
1259
+ hiddenIdentifierRatio: {
1260
+ name: "hiddenIdentifierRatio";
1261
+ parents: import("../..").AbstractFeatures;
1262
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1263
+ private?: true;
1264
+ };
1265
+ hiddenPasswordRatio: {
1266
+ name: "hiddenPasswordRatio";
1267
+ parents: import("../..").AbstractFeatures;
1268
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1269
+ private?: true;
1270
+ };
1271
+ pageLogin: {
1272
+ name: "pageLogin";
1273
+ parents: import("../..").AbstractFeatures;
1274
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1275
+ private?: true;
1276
+ };
1277
+ formTextLogin: {
1278
+ name: "formTextLogin";
1279
+ parents: import("../..").AbstractFeatures;
1280
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1281
+ private?: true;
1282
+ };
1283
+ formAttrsLogin: {
1284
+ name: "formAttrsLogin";
1285
+ parents: import("../..").AbstractFeatures;
1286
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1287
+ private?: true;
1288
+ };
1289
+ headingsLogin: {
1290
+ name: "headingsLogin";
1291
+ parents: import("../..").AbstractFeatures;
1292
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1293
+ private?: true;
1294
+ };
1295
+ layoutLogin: {
1296
+ name: "layoutLogin";
1297
+ parents: import("../..").AbstractFeatures;
1298
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1299
+ private?: true;
1300
+ };
1301
+ rememberMeCheckbox: {
1302
+ name: "rememberMeCheckbox";
1303
+ parents: import("../..").AbstractFeatures;
1304
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1305
+ private?: true;
1306
+ };
1307
+ troubleLink: {
1308
+ name: "troubleLink";
1309
+ parents: import("../..").AbstractFeatures;
1310
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1311
+ private?: true;
1312
+ };
1313
+ submitLogin: {
1314
+ name: "submitLogin";
1315
+ parents: import("../..").AbstractFeatures;
1316
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1317
+ private?: true;
1318
+ };
1319
+ pageRegister: {
1320
+ name: "pageRegister";
1321
+ parents: import("../..").AbstractFeatures;
1322
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1323
+ private?: true;
1324
+ };
1325
+ formTextRegister: {
1326
+ name: "formTextRegister";
1327
+ parents: import("../..").AbstractFeatures;
1328
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1329
+ private?: true;
1330
+ };
1331
+ formAttrsRegister: {
1332
+ name: "formAttrsRegister";
1333
+ parents: import("../..").AbstractFeatures;
1334
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1335
+ private?: true;
1336
+ };
1337
+ headingsRegister: {
1338
+ name: "headingsRegister";
1339
+ parents: import("../..").AbstractFeatures;
1340
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1341
+ private?: true;
1342
+ };
1343
+ layoutRegister: {
1344
+ name: "layoutRegister";
1345
+ parents: import("../..").AbstractFeatures;
1346
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1347
+ private?: true;
1348
+ };
1349
+ pwNewRegister: {
1350
+ name: "pwNewRegister";
1351
+ parents: import("../..").AbstractFeatures;
1352
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1353
+ private?: true;
1354
+ };
1355
+ pwConfirmRegister: {
1356
+ name: "pwConfirmRegister";
1357
+ parents: import("../..").AbstractFeatures;
1358
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1359
+ private?: true;
1360
+ };
1361
+ submitRegister: {
1362
+ name: "submitRegister";
1363
+ parents: import("../..").AbstractFeatures;
1364
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1365
+ private?: true;
1366
+ };
1367
+ TOSRef: {
1368
+ name: "TOSRef";
1369
+ parents: import("../..").AbstractFeatures;
1370
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1371
+ private?: true;
1372
+ };
1373
+ pagePwReset: {
1374
+ name: "pagePwReset";
1375
+ parents: import("../..").AbstractFeatures;
1376
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1377
+ private?: true;
1378
+ };
1379
+ formTextPwReset: {
1380
+ name: "formTextPwReset";
1381
+ parents: import("../..").AbstractFeatures;
1382
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1383
+ private?: true;
1384
+ };
1385
+ formAttrsPwReset: {
1386
+ name: "formAttrsPwReset";
1387
+ parents: import("../..").AbstractFeatures;
1388
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1389
+ private?: true;
1390
+ };
1391
+ headingsPwReset: {
1392
+ name: "headingsPwReset";
1393
+ parents: import("../..").AbstractFeatures;
1394
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1395
+ private?: true;
1396
+ };
1397
+ layoutPwReset: {
1398
+ name: "layoutPwReset";
1399
+ parents: import("../..").AbstractFeatures;
1400
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1401
+ private?: true;
1402
+ };
1403
+ pageRecovery: {
1404
+ name: "pageRecovery";
1405
+ parents: import("../..").AbstractFeatures;
1406
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1407
+ private?: true;
1408
+ };
1409
+ formTextRecovery: {
1410
+ name: "formTextRecovery";
1411
+ parents: import("../..").AbstractFeatures;
1412
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1413
+ private?: true;
1414
+ };
1415
+ formAttrsRecovery: {
1416
+ name: "formAttrsRecovery";
1417
+ parents: import("../..").AbstractFeatures;
1418
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1419
+ private?: true;
1420
+ };
1421
+ headingsRecovery: {
1422
+ name: "headingsRecovery";
1423
+ parents: import("../..").AbstractFeatures;
1424
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1425
+ private?: true;
1426
+ };
1427
+ layoutRecovery: {
1428
+ name: "layoutRecovery";
1429
+ parents: import("../..").AbstractFeatures;
1430
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1431
+ private?: true;
1432
+ };
1433
+ identifierRecovery: {
1434
+ name: "identifierRecovery";
1435
+ parents: import("../..").AbstractFeatures;
1436
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1437
+ private?: true;
1438
+ };
1439
+ submitRecovery: {
1440
+ name: "submitRecovery";
1441
+ parents: import("../..").AbstractFeatures;
1442
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1443
+ private?: true;
1444
+ };
1445
+ formTextMFA: {
1446
+ name: "formTextMFA";
1447
+ parents: import("../..").AbstractFeatures;
1448
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1449
+ private?: true;
1450
+ };
1451
+ formAttrsMFA: {
1452
+ name: "formAttrsMFA";
1453
+ parents: import("../..").AbstractFeatures;
1454
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1455
+ private?: true;
1456
+ };
1457
+ inputsMFA: {
1458
+ name: "inputsMFA";
1459
+ parents: import("../..").AbstractFeatures;
1460
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1461
+ private?: true;
1462
+ };
1463
+ newsletterForm: {
1464
+ name: "newsletterForm";
1465
+ parents: import("../..").AbstractFeatures;
1466
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1467
+ private?: true;
1468
+ };
1469
+ searchForm: {
1470
+ name: "searchForm";
1471
+ parents: import("../..").AbstractFeatures;
1472
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1473
+ private?: true;
1474
+ };
1475
+ multistepForm: {
1476
+ name: "multistepForm";
1477
+ parents: import("../..").AbstractFeatures;
1478
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1479
+ private?: true;
1480
+ };
1481
+ multiAuthForm: {
1482
+ name: "multiAuthForm";
1483
+ parents: import("../..").AbstractFeatures;
1484
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1485
+ private?: true;
1486
+ };
1487
+ multistepForm_multiAuthForm: {
1488
+ name: "multistepForm,multiAuthForm";
1489
+ parents: import("../..").AbstractFeatures;
1490
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1491
+ private?: true;
1492
+ };
1493
+ visibleRatio_visibleFieldsCount: {
1494
+ name: "visibleRatio,visibleFieldsCountScaled";
1495
+ parents: import("../..").AbstractFeatures;
1496
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1497
+ private?: true;
1498
+ };
1499
+ visibleRatio_visibleIdentifiersCount: {
1500
+ name: "visibleRatio,visibleIdentifiersCountScaled";
1501
+ parents: import("../..").AbstractFeatures;
1502
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1503
+ private?: true;
1504
+ };
1505
+ visibleRatio_visiblePasswordsCount: {
1506
+ name: "visibleRatio,visiblePasswordsCountScaled";
1507
+ parents: import("../..").AbstractFeatures;
1508
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1509
+ private?: true;
1510
+ };
1511
+ visibleRatio_hiddenIdentifiersCount: {
1512
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
1513
+ parents: import("../..").AbstractFeatures;
1514
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1515
+ private?: true;
1516
+ };
1517
+ visibleRatio_hiddenPasswordsCount: {
1518
+ name: "visibleRatio,hiddenPasswordsCountScaled";
1519
+ parents: import("../..").AbstractFeatures;
1520
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1521
+ private?: true;
1522
+ };
1523
+ visibleRatio_multiAuthForm: {
1524
+ name: "visibleRatio,multiAuthForm";
1525
+ parents: import("../..").AbstractFeatures;
1526
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1527
+ private?: true;
1528
+ };
1529
+ visibleRatio_multistepForm: {
1530
+ name: "visibleRatio,multistepForm";
1531
+ parents: import("../..").AbstractFeatures;
1532
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1533
+ private?: true;
1534
+ };
1535
+ identifierRatio_visibleFieldsCount: {
1536
+ name: "identifierRatio,visibleFieldsCountScaled";
1537
+ parents: import("../..").AbstractFeatures;
1538
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1539
+ private?: true;
1540
+ };
1541
+ identifierRatio_visibleIdentifiersCount: {
1542
+ name: "identifierRatio,visibleIdentifiersCountScaled";
1543
+ parents: import("../..").AbstractFeatures;
1544
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1545
+ private?: true;
1546
+ };
1547
+ identifierRatio_visiblePasswordsCount: {
1548
+ name: "identifierRatio,visiblePasswordsCountScaled";
1549
+ parents: import("../..").AbstractFeatures;
1550
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1551
+ private?: true;
1552
+ };
1553
+ identifierRatio_hiddenIdentifiersCount: {
1554
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
1555
+ parents: import("../..").AbstractFeatures;
1556
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1557
+ private?: true;
1558
+ };
1559
+ identifierRatio_hiddenPasswordsCount: {
1560
+ name: "identifierRatio,hiddenPasswordsCountScaled";
1561
+ parents: import("../..").AbstractFeatures;
1562
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1563
+ private?: true;
1564
+ };
1565
+ identifierRatio_multiAuthForm: {
1566
+ name: "identifierRatio,multiAuthForm";
1567
+ parents: import("../..").AbstractFeatures;
1568
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1569
+ private?: true;
1570
+ };
1571
+ identifierRatio_multistepForm: {
1572
+ name: "identifierRatio,multistepForm";
1573
+ parents: import("../..").AbstractFeatures;
1574
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1575
+ private?: true;
1576
+ };
1577
+ passwordRatio_visibleFieldsCount: {
1578
+ name: "passwordRatio,visibleFieldsCountScaled";
1579
+ parents: import("../..").AbstractFeatures;
1580
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1581
+ private?: true;
1582
+ };
1583
+ passwordRatio_visibleIdentifiersCount: {
1584
+ name: "passwordRatio,visibleIdentifiersCountScaled";
1585
+ parents: import("../..").AbstractFeatures;
1586
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1587
+ private?: true;
1588
+ };
1589
+ passwordRatio_visiblePasswordsCount: {
1590
+ name: "passwordRatio,visiblePasswordsCountScaled";
1591
+ parents: import("../..").AbstractFeatures;
1592
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1593
+ private?: true;
1594
+ };
1595
+ passwordRatio_hiddenIdentifiersCount: {
1596
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
1597
+ parents: import("../..").AbstractFeatures;
1598
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1599
+ private?: true;
1600
+ };
1601
+ passwordRatio_hiddenPasswordsCount: {
1602
+ name: "passwordRatio,hiddenPasswordsCountScaled";
1603
+ parents: import("../..").AbstractFeatures;
1604
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1605
+ private?: true;
1606
+ };
1607
+ passwordRatio_multiAuthForm: {
1608
+ name: "passwordRatio,multiAuthForm";
1609
+ parents: import("../..").AbstractFeatures;
1610
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1611
+ private?: true;
1612
+ };
1613
+ passwordRatio_multistepForm: {
1614
+ name: "passwordRatio,multistepForm";
1615
+ parents: import("../..").AbstractFeatures;
1616
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1617
+ private?: true;
1618
+ };
1619
+ requiredRatio_visibleFieldsCount: {
1620
+ name: "requiredRatio,visibleFieldsCountScaled";
1621
+ parents: import("../..").AbstractFeatures;
1622
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1623
+ private?: true;
1624
+ };
1625
+ requiredRatio_visibleIdentifiersCount: {
1626
+ name: "requiredRatio,visibleIdentifiersCountScaled";
1627
+ parents: import("../..").AbstractFeatures;
1628
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1629
+ private?: true;
1630
+ };
1631
+ requiredRatio_visiblePasswordsCount: {
1632
+ name: "requiredRatio,visiblePasswordsCountScaled";
1633
+ parents: import("../..").AbstractFeatures;
1634
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1635
+ private?: true;
1636
+ };
1637
+ requiredRatio_hiddenIdentifiersCount: {
1638
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
1639
+ parents: import("../..").AbstractFeatures;
1640
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1641
+ private?: true;
1642
+ };
1643
+ requiredRatio_hiddenPasswordsCount: {
1644
+ name: "requiredRatio,hiddenPasswordsCountScaled";
1645
+ parents: import("../..").AbstractFeatures;
1646
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1647
+ private?: true;
1648
+ };
1649
+ requiredRatio_multiAuthForm: {
1650
+ name: "requiredRatio,multiAuthForm";
1651
+ parents: import("../..").AbstractFeatures;
1652
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1653
+ private?: true;
1654
+ };
1655
+ requiredRatio_multistepForm: {
1656
+ name: "requiredRatio,multistepForm";
1657
+ parents: import("../..").AbstractFeatures;
1658
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1659
+ private?: true;
1660
+ };
1661
+ }> | undefined;
1662
+ private?: true;
1663
+ };
1664
+ parentFormFnode: {
1665
+ name: "parentFormFnode";
1666
+ parents: import("../..").AbstractFeatures;
1667
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/fathom").Fnode | null;
1668
+ private?: true;
1669
+ };
1670
+ prevField: {
1671
+ name: "prevField";
1672
+ parents: import("../..").AbstractFeatures;
1673
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
1674
+ private?: true;
1675
+ };
1676
+ prevInput: {
1677
+ name: "prevInput";
1678
+ parents: import("../..").AbstractFeatures;
1679
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
1680
+ private?: true;
1681
+ };
1682
+ searchField: {
1683
+ name: "searchField";
1684
+ parents: import("../..").AbstractFeatures;
1685
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1686
+ private?: true;
1687
+ };
1688
+ text: {
1689
+ name: "text";
1690
+ parents: import("../..").AbstractFeatures;
1691
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
1692
+ private?: true;
1693
+ };
1694
+ visible: {
1695
+ name: "visible";
1696
+ parents: import("../..").AbstractFeatures;
1697
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1698
+ private?: true;
1699
+ };
1700
+ }>, {}>;
1701
+ }>;
1702
+ }>;
1703
+ export declare const placeholderEmailValue: import("../..").Feature<"placeholderEmailValue", boolean, {
1704
+ fieldPlaceholder: import("../..").Feature<"placeholder", string, {
1705
+ field: import("../..").Feature<"field", HTMLInputElement, {}>;
1706
+ }>;
1707
+ }>;
1708
+ export declare const placeholderEmail: import("../..").Feature<"placeholderEmail", boolean, {
1709
+ placeholderEmailValue: import("../..").Feature<"placeholderEmailValue", boolean, {
1710
+ fieldPlaceholder: import("../..").Feature<"placeholder", string, {
1711
+ field: import("../..").Feature<"field", HTMLInputElement, {}>;
1712
+ }>;
1713
+ }>;
1714
+ fieldPlaceholder: import("../..").Feature<"placeholder", string, {
1715
+ field: import("../..").Feature<"field", HTMLInputElement, {}>;
1716
+ }>;
1717
+ }>;
1718
+ export declare const mfaOutlier: import("../..").Feature<"mfaOutlier", boolean, {
1719
+ fieldAttrs: import("../..").Feature<"fieldAttrs", string[], {
1720
+ fieldFeats: import("../..").Feature<"fieldFeats", import("../..").ComputedFeatures<{
1721
+ attrs: {
1722
+ name: "attrs";
1723
+ parents: import("../..").AbstractFeatures;
1724
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string[];
1725
+ private?: true;
1726
+ };
1727
+ autocomplete: {
1728
+ name: "autocomplete";
1729
+ parents: import("../..").AbstractFeatures;
1730
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string | undefined;
1731
+ private?: true;
1732
+ };
1733
+ isCC: {
1734
+ name: "isCC";
1735
+ parents: import("../..").AbstractFeatures;
1736
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1737
+ private?: true;
1738
+ };
1739
+ isFormLogin: {
1740
+ name: "isFormLogin";
1741
+ parents: import("../..").AbstractFeatures;
1742
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1743
+ private?: true;
1744
+ };
1745
+ isFormNoop: {
1746
+ name: "isFormNoop";
1747
+ parents: import("../..").AbstractFeatures;
1748
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1749
+ private?: true;
1750
+ };
1751
+ isFormPasswordChange: {
1752
+ name: "isFormPasswordChange";
1753
+ parents: import("../..").AbstractFeatures;
1754
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1755
+ private?: true;
1756
+ };
1757
+ isFormRecovery: {
1758
+ name: "isFormRecovery";
1759
+ parents: import("../..").AbstractFeatures;
1760
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1761
+ private?: true;
1762
+ };
1763
+ isFormRegister: {
1764
+ name: "isFormRegister";
1765
+ parents: import("../..").AbstractFeatures;
1766
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1767
+ private?: true;
1768
+ };
1769
+ isIdentity: {
1770
+ name: "isIdentity";
1771
+ parents: import("../..").AbstractFeatures;
1772
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1773
+ private?: true;
1774
+ };
1775
+ label: {
1776
+ name: "label";
1777
+ parents: import("../..").AbstractFeatures;
1778
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
1779
+ private?: true;
1780
+ };
1781
+ nextField: {
1782
+ name: "nextField";
1783
+ parents: import("../..").AbstractFeatures;
1784
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
1785
+ private?: true;
1786
+ };
1787
+ parentFormFeatures: {
1788
+ name: "parentFormFeatures";
1789
+ parents: import("../..").AbstractFeatures;
1790
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").ComputedFeatures<{
1791
+ formInputMFACandidates: {
1792
+ name: "formInputMFACandidates";
1793
+ parents: import("../..").AbstractFeatures;
1794
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1795
+ private?: true;
1796
+ };
1797
+ formMFA: {
1798
+ name: "formMFA";
1799
+ parents: import("../..").AbstractFeatures;
1800
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1801
+ private?: true;
1802
+ };
1803
+ formOTPOutlier: {
1804
+ name: "formOTPOutlier";
1805
+ parents: import("../..").AbstractFeatures;
1806
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1807
+ private?: true;
1808
+ };
1809
+ formTextAuthenticator: {
1810
+ name: "formTextAuthenticator";
1811
+ parents: import("../..").AbstractFeatures;
1812
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1813
+ private?: true;
1814
+ };
1815
+ headingsOTPOutlier: {
1816
+ name: "headingsOTPOutlier";
1817
+ parents: import("../..").AbstractFeatures;
1818
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1819
+ private?: true;
1820
+ };
1821
+ inputIterator: {
1822
+ name: "inputIterator";
1823
+ parents: import("../..").AbstractFeatures;
1824
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
1825
+ private?: true;
1826
+ };
1827
+ linkOTPOutlier: {
1828
+ name: "linkOTPOutlier";
1829
+ parents: import("../..").AbstractFeatures;
1830
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1831
+ private?: true;
1832
+ };
1833
+ visibleFieldsCount: {
1834
+ name: "visibleFieldsCountScaled";
1835
+ parents: import("../..").AbstractFeatures;
1836
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1837
+ private?: true;
1838
+ };
1839
+ visibleInputsCount: {
1840
+ name: "visibleInputsCountScaled";
1841
+ parents: import("../..").AbstractFeatures;
1842
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1843
+ private?: true;
1844
+ };
1845
+ fieldsetsCount: {
1846
+ name: "fieldsetsCountScaled";
1847
+ parents: import("../..").AbstractFeatures;
1848
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1849
+ private?: true;
1850
+ };
1851
+ textsCount: {
1852
+ name: "textsCountScaled";
1853
+ parents: import("../..").AbstractFeatures;
1854
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1855
+ private?: true;
1856
+ };
1857
+ textareasCount: {
1858
+ name: "textareasCountScaled";
1859
+ parents: import("../..").AbstractFeatures;
1860
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1861
+ private?: true;
1862
+ };
1863
+ selectsCount: {
1864
+ name: "selectsCountScaled";
1865
+ parents: import("../..").AbstractFeatures;
1866
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1867
+ private?: true;
1868
+ };
1869
+ disabledCount: {
1870
+ name: "disabledCountScaled";
1871
+ parents: import("../..").AbstractFeatures;
1872
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1873
+ private?: true;
1874
+ };
1875
+ radiosCount: {
1876
+ name: "radiosCountScaled";
1877
+ parents: import("../..").AbstractFeatures;
1878
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1879
+ private?: true;
1880
+ };
1881
+ readOnlyCount: {
1882
+ name: "readOnlyCountScaled";
1883
+ parents: import("../..").AbstractFeatures;
1884
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1885
+ private?: true;
1886
+ };
1887
+ formComplexity: {
1888
+ name: "formComplexityScaled";
1889
+ parents: import("../..").AbstractFeatures;
1890
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1891
+ private?: true;
1892
+ };
1893
+ visibleIdentifiersCount: {
1894
+ name: "visibleIdentifiersCountScaled";
1895
+ parents: import("../..").AbstractFeatures;
1896
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1897
+ private?: true;
1898
+ };
1899
+ hiddenIdentifiersCount: {
1900
+ name: "hiddenIdentifiersCountScaled";
1901
+ parents: import("../..").AbstractFeatures;
1902
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1903
+ private?: true;
1904
+ };
1905
+ usernamesCount: {
1906
+ name: "usernamesCountScaled";
1907
+ parents: import("../..").AbstractFeatures;
1908
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1909
+ private?: true;
1910
+ };
1911
+ emailsCount: {
1912
+ name: "emailsCountScaled";
1913
+ parents: import("../..").AbstractFeatures;
1914
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1915
+ private?: true;
1916
+ };
1917
+ hiddenCount: {
1918
+ name: "hiddenCountScaled";
1919
+ parents: import("../..").AbstractFeatures;
1920
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1921
+ private?: true;
1922
+ };
1923
+ hiddenPasswordsCount: {
1924
+ name: "hiddenPasswordsCountScaled";
1925
+ parents: import("../..").AbstractFeatures;
1926
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1927
+ private?: true;
1928
+ };
1929
+ submitsCount: {
1930
+ name: "submitsCountScaled";
1931
+ parents: import("../..").AbstractFeatures;
1932
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1933
+ private?: true;
1934
+ };
1935
+ identitiesCount: {
1936
+ name: "identitiesCountScaled";
1937
+ parents: import("../..").AbstractFeatures;
1938
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1939
+ private?: true;
1940
+ };
1941
+ ccsCount: {
1942
+ name: "ccsCountScaled";
1943
+ parents: import("../..").AbstractFeatures;
1944
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1945
+ private?: true;
1946
+ };
1947
+ hasTels: {
1948
+ name: "hasTels";
1949
+ parents: import("../..").AbstractFeatures;
1950
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1951
+ private?: true;
1952
+ };
1953
+ hasOAuth: {
1954
+ name: "hasOAuth";
1955
+ parents: import("../..").AbstractFeatures;
1956
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1957
+ private?: true;
1958
+ };
1959
+ hasCaptchas: {
1960
+ name: "hasCaptchas";
1961
+ parents: import("../..").AbstractFeatures;
1962
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1963
+ private?: true;
1964
+ };
1965
+ hasFiles: {
1966
+ name: "hasFiles";
1967
+ parents: import("../..").AbstractFeatures;
1968
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1969
+ private?: true;
1970
+ };
1971
+ hasDate: {
1972
+ name: "hasDate";
1973
+ parents: import("../..").AbstractFeatures;
1974
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1975
+ private?: true;
1976
+ };
1977
+ hasNumber: {
1978
+ name: "hasNumber";
1979
+ parents: import("../..").AbstractFeatures;
1980
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1981
+ private?: true;
1982
+ };
1983
+ oneVisibleField: {
1984
+ name: "oneVisibleField";
1985
+ parents: import("../..").AbstractFeatures;
1986
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1987
+ private?: true;
1988
+ };
1989
+ twoVisibleFields: {
1990
+ name: "twoVisibleFields";
1991
+ parents: import("../..").AbstractFeatures;
1992
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1993
+ private?: true;
1994
+ };
1995
+ threeOrMoreVisibleFields: {
1996
+ name: "threeOrMoreVisibleFields";
1997
+ parents: import("../..").AbstractFeatures;
1998
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1999
+ private?: true;
2000
+ };
2001
+ noPasswords: {
2002
+ name: "noPasswords";
2003
+ parents: import("../..").AbstractFeatures;
2004
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2005
+ private?: true;
2006
+ };
2007
+ onePassword: {
2008
+ name: "onePassword";
2009
+ parents: import("../..").AbstractFeatures;
2010
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2011
+ private?: true;
2012
+ };
2013
+ twoPasswords: {
2014
+ name: "twoPasswords";
2015
+ parents: import("../..").AbstractFeatures;
2016
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2017
+ private?: true;
2018
+ };
2019
+ threeOrMorePasswords: {
2020
+ name: "threeOrMorePasswords";
2021
+ parents: import("../..").AbstractFeatures;
2022
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2023
+ private?: true;
2024
+ };
2025
+ noIdentifiers: {
2026
+ name: "noIdentifiers";
2027
+ parents: import("../..").AbstractFeatures;
2028
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2029
+ private?: true;
2030
+ };
2031
+ oneIdentifier: {
2032
+ name: "oneIdentifier";
2033
+ parents: import("../..").AbstractFeatures;
2034
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2035
+ private?: true;
2036
+ };
2037
+ twoIdentifiers: {
2038
+ name: "twoIdentifiers";
2039
+ parents: import("../..").AbstractFeatures;
2040
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2041
+ private?: true;
2042
+ };
2043
+ threeOrMoreIdentifiers: {
2044
+ name: "threeOrMoreIdentifiers";
2045
+ parents: import("../..").AbstractFeatures;
2046
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2047
+ private?: true;
2048
+ };
2049
+ autofocusedIsIdentifier: {
2050
+ name: "autofocusedIsIdentifier";
2051
+ parents: import("../..").AbstractFeatures;
2052
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2053
+ private?: true;
2054
+ };
2055
+ autofocusedIsPassword: {
2056
+ name: "autofocusedIsPassword";
2057
+ parents: import("../..").AbstractFeatures;
2058
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2059
+ private?: true;
2060
+ };
2061
+ visibleRatio: {
2062
+ name: "visibleRatio";
2063
+ parents: import("../..").AbstractFeatures;
2064
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2065
+ private?: true;
2066
+ };
2067
+ inputRatio: {
2068
+ name: "inputRatio";
2069
+ parents: import("../..").AbstractFeatures;
2070
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2071
+ private?: true;
2072
+ };
2073
+ hiddenRatio: {
2074
+ name: "hiddenRatio";
2075
+ parents: import("../..").AbstractFeatures;
2076
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2077
+ private?: true;
2078
+ };
2079
+ identifierRatio: {
2080
+ name: "identifierRatio";
2081
+ parents: import("../..").AbstractFeatures;
2082
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2083
+ private?: true;
2084
+ };
2085
+ emailRatio: {
2086
+ name: "emailRatio";
2087
+ parents: import("../..").AbstractFeatures;
2088
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2089
+ private?: true;
2090
+ };
2091
+ usernameRatio: {
2092
+ name: "usernameRatio";
2093
+ parents: import("../..").AbstractFeatures;
2094
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2095
+ private?: true;
2096
+ };
2097
+ passwordRatio: {
2098
+ name: "passwordRatio";
2099
+ parents: import("../..").AbstractFeatures;
2100
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2101
+ private?: true;
2102
+ };
2103
+ disabledRatio: {
2104
+ name: "disabledRatio";
2105
+ parents: import("../..").AbstractFeatures;
2106
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2107
+ private?: true;
2108
+ };
2109
+ requiredRatio: {
2110
+ name: "requiredRatio";
2111
+ parents: import("../..").AbstractFeatures;
2112
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2113
+ private?: true;
2114
+ };
2115
+ checkboxRatio: {
2116
+ name: "checkboxRatio";
2117
+ parents: import("../..").AbstractFeatures;
2118
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2119
+ private?: true;
2120
+ };
2121
+ hiddenIdentifierRatio: {
2122
+ name: "hiddenIdentifierRatio";
2123
+ parents: import("../..").AbstractFeatures;
2124
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2125
+ private?: true;
2126
+ };
2127
+ hiddenPasswordRatio: {
2128
+ name: "hiddenPasswordRatio";
2129
+ parents: import("../..").AbstractFeatures;
2130
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2131
+ private?: true;
2132
+ };
2133
+ pageLogin: {
2134
+ name: "pageLogin";
2135
+ parents: import("../..").AbstractFeatures;
2136
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2137
+ private?: true;
2138
+ };
2139
+ formTextLogin: {
2140
+ name: "formTextLogin";
2141
+ parents: import("../..").AbstractFeatures;
2142
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2143
+ private?: true;
2144
+ };
2145
+ formAttrsLogin: {
2146
+ name: "formAttrsLogin";
2147
+ parents: import("../..").AbstractFeatures;
2148
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2149
+ private?: true;
2150
+ };
2151
+ headingsLogin: {
2152
+ name: "headingsLogin";
2153
+ parents: import("../..").AbstractFeatures;
2154
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2155
+ private?: true;
2156
+ };
2157
+ layoutLogin: {
2158
+ name: "layoutLogin";
2159
+ parents: import("../..").AbstractFeatures;
2160
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2161
+ private?: true;
2162
+ };
2163
+ rememberMeCheckbox: {
2164
+ name: "rememberMeCheckbox";
2165
+ parents: import("../..").AbstractFeatures;
2166
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2167
+ private?: true;
2168
+ };
2169
+ troubleLink: {
2170
+ name: "troubleLink";
2171
+ parents: import("../..").AbstractFeatures;
2172
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2173
+ private?: true;
2174
+ };
2175
+ submitLogin: {
2176
+ name: "submitLogin";
2177
+ parents: import("../..").AbstractFeatures;
2178
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2179
+ private?: true;
2180
+ };
2181
+ pageRegister: {
2182
+ name: "pageRegister";
2183
+ parents: import("../..").AbstractFeatures;
2184
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2185
+ private?: true;
2186
+ };
2187
+ formTextRegister: {
2188
+ name: "formTextRegister";
2189
+ parents: import("../..").AbstractFeatures;
2190
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2191
+ private?: true;
2192
+ };
2193
+ formAttrsRegister: {
2194
+ name: "formAttrsRegister";
2195
+ parents: import("../..").AbstractFeatures;
2196
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2197
+ private?: true;
2198
+ };
2199
+ headingsRegister: {
2200
+ name: "headingsRegister";
2201
+ parents: import("../..").AbstractFeatures;
2202
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2203
+ private?: true;
2204
+ };
2205
+ layoutRegister: {
2206
+ name: "layoutRegister";
2207
+ parents: import("../..").AbstractFeatures;
2208
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2209
+ private?: true;
2210
+ };
2211
+ pwNewRegister: {
2212
+ name: "pwNewRegister";
2213
+ parents: import("../..").AbstractFeatures;
2214
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2215
+ private?: true;
2216
+ };
2217
+ pwConfirmRegister: {
2218
+ name: "pwConfirmRegister";
2219
+ parents: import("../..").AbstractFeatures;
2220
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2221
+ private?: true;
2222
+ };
2223
+ submitRegister: {
2224
+ name: "submitRegister";
2225
+ parents: import("../..").AbstractFeatures;
2226
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2227
+ private?: true;
2228
+ };
2229
+ TOSRef: {
2230
+ name: "TOSRef";
2231
+ parents: import("../..").AbstractFeatures;
2232
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2233
+ private?: true;
2234
+ };
2235
+ pagePwReset: {
2236
+ name: "pagePwReset";
2237
+ parents: import("../..").AbstractFeatures;
2238
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2239
+ private?: true;
2240
+ };
2241
+ formTextPwReset: {
2242
+ name: "formTextPwReset";
2243
+ parents: import("../..").AbstractFeatures;
2244
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2245
+ private?: true;
2246
+ };
2247
+ formAttrsPwReset: {
2248
+ name: "formAttrsPwReset";
2249
+ parents: import("../..").AbstractFeatures;
2250
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2251
+ private?: true;
2252
+ };
2253
+ headingsPwReset: {
2254
+ name: "headingsPwReset";
2255
+ parents: import("../..").AbstractFeatures;
2256
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2257
+ private?: true;
2258
+ };
2259
+ layoutPwReset: {
2260
+ name: "layoutPwReset";
2261
+ parents: import("../..").AbstractFeatures;
2262
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2263
+ private?: true;
2264
+ };
2265
+ pageRecovery: {
2266
+ name: "pageRecovery";
2267
+ parents: import("../..").AbstractFeatures;
2268
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2269
+ private?: true;
2270
+ };
2271
+ formTextRecovery: {
2272
+ name: "formTextRecovery";
2273
+ parents: import("../..").AbstractFeatures;
2274
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2275
+ private?: true;
2276
+ };
2277
+ formAttrsRecovery: {
2278
+ name: "formAttrsRecovery";
2279
+ parents: import("../..").AbstractFeatures;
2280
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2281
+ private?: true;
2282
+ };
2283
+ headingsRecovery: {
2284
+ name: "headingsRecovery";
2285
+ parents: import("../..").AbstractFeatures;
2286
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2287
+ private?: true;
2288
+ };
2289
+ layoutRecovery: {
2290
+ name: "layoutRecovery";
2291
+ parents: import("../..").AbstractFeatures;
2292
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2293
+ private?: true;
2294
+ };
2295
+ identifierRecovery: {
2296
+ name: "identifierRecovery";
2297
+ parents: import("../..").AbstractFeatures;
2298
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2299
+ private?: true;
2300
+ };
2301
+ submitRecovery: {
2302
+ name: "submitRecovery";
2303
+ parents: import("../..").AbstractFeatures;
2304
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2305
+ private?: true;
2306
+ };
2307
+ formTextMFA: {
2308
+ name: "formTextMFA";
2309
+ parents: import("../..").AbstractFeatures;
2310
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2311
+ private?: true;
2312
+ };
2313
+ formAttrsMFA: {
2314
+ name: "formAttrsMFA";
2315
+ parents: import("../..").AbstractFeatures;
2316
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2317
+ private?: true;
2318
+ };
2319
+ inputsMFA: {
2320
+ name: "inputsMFA";
2321
+ parents: import("../..").AbstractFeatures;
2322
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2323
+ private?: true;
2324
+ };
2325
+ newsletterForm: {
2326
+ name: "newsletterForm";
2327
+ parents: import("../..").AbstractFeatures;
2328
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2329
+ private?: true;
2330
+ };
2331
+ searchForm: {
2332
+ name: "searchForm";
2333
+ parents: import("../..").AbstractFeatures;
2334
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2335
+ private?: true;
2336
+ };
2337
+ multistepForm: {
2338
+ name: "multistepForm";
2339
+ parents: import("../..").AbstractFeatures;
2340
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2341
+ private?: true;
2342
+ };
2343
+ multiAuthForm: {
2344
+ name: "multiAuthForm";
2345
+ parents: import("../..").AbstractFeatures;
2346
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2347
+ private?: true;
2348
+ };
2349
+ multistepForm_multiAuthForm: {
2350
+ name: "multistepForm,multiAuthForm";
2351
+ parents: import("../..").AbstractFeatures;
2352
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2353
+ private?: true;
2354
+ };
2355
+ visibleRatio_visibleFieldsCount: {
2356
+ name: "visibleRatio,visibleFieldsCountScaled";
2357
+ parents: import("../..").AbstractFeatures;
2358
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2359
+ private?: true;
2360
+ };
2361
+ visibleRatio_visibleIdentifiersCount: {
2362
+ name: "visibleRatio,visibleIdentifiersCountScaled";
2363
+ parents: import("../..").AbstractFeatures;
2364
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2365
+ private?: true;
2366
+ };
2367
+ visibleRatio_visiblePasswordsCount: {
2368
+ name: "visibleRatio,visiblePasswordsCountScaled";
2369
+ parents: import("../..").AbstractFeatures;
2370
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2371
+ private?: true;
2372
+ };
2373
+ visibleRatio_hiddenIdentifiersCount: {
2374
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
2375
+ parents: import("../..").AbstractFeatures;
2376
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2377
+ private?: true;
2378
+ };
2379
+ visibleRatio_hiddenPasswordsCount: {
2380
+ name: "visibleRatio,hiddenPasswordsCountScaled";
2381
+ parents: import("../..").AbstractFeatures;
2382
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2383
+ private?: true;
2384
+ };
2385
+ visibleRatio_multiAuthForm: {
2386
+ name: "visibleRatio,multiAuthForm";
2387
+ parents: import("../..").AbstractFeatures;
2388
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2389
+ private?: true;
2390
+ };
2391
+ visibleRatio_multistepForm: {
2392
+ name: "visibleRatio,multistepForm";
2393
+ parents: import("../..").AbstractFeatures;
2394
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2395
+ private?: true;
2396
+ };
2397
+ identifierRatio_visibleFieldsCount: {
2398
+ name: "identifierRatio,visibleFieldsCountScaled";
2399
+ parents: import("../..").AbstractFeatures;
2400
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2401
+ private?: true;
2402
+ };
2403
+ identifierRatio_visibleIdentifiersCount: {
2404
+ name: "identifierRatio,visibleIdentifiersCountScaled";
2405
+ parents: import("../..").AbstractFeatures;
2406
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2407
+ private?: true;
2408
+ };
2409
+ identifierRatio_visiblePasswordsCount: {
2410
+ name: "identifierRatio,visiblePasswordsCountScaled";
2411
+ parents: import("../..").AbstractFeatures;
2412
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2413
+ private?: true;
2414
+ };
2415
+ identifierRatio_hiddenIdentifiersCount: {
2416
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
2417
+ parents: import("../..").AbstractFeatures;
2418
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2419
+ private?: true;
2420
+ };
2421
+ identifierRatio_hiddenPasswordsCount: {
2422
+ name: "identifierRatio,hiddenPasswordsCountScaled";
2423
+ parents: import("../..").AbstractFeatures;
2424
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2425
+ private?: true;
2426
+ };
2427
+ identifierRatio_multiAuthForm: {
2428
+ name: "identifierRatio,multiAuthForm";
2429
+ parents: import("../..").AbstractFeatures;
2430
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2431
+ private?: true;
2432
+ };
2433
+ identifierRatio_multistepForm: {
2434
+ name: "identifierRatio,multistepForm";
2435
+ parents: import("../..").AbstractFeatures;
2436
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2437
+ private?: true;
2438
+ };
2439
+ passwordRatio_visibleFieldsCount: {
2440
+ name: "passwordRatio,visibleFieldsCountScaled";
2441
+ parents: import("../..").AbstractFeatures;
2442
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2443
+ private?: true;
2444
+ };
2445
+ passwordRatio_visibleIdentifiersCount: {
2446
+ name: "passwordRatio,visibleIdentifiersCountScaled";
2447
+ parents: import("../..").AbstractFeatures;
2448
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2449
+ private?: true;
2450
+ };
2451
+ passwordRatio_visiblePasswordsCount: {
2452
+ name: "passwordRatio,visiblePasswordsCountScaled";
2453
+ parents: import("../..").AbstractFeatures;
2454
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2455
+ private?: true;
2456
+ };
2457
+ passwordRatio_hiddenIdentifiersCount: {
2458
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
2459
+ parents: import("../..").AbstractFeatures;
2460
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2461
+ private?: true;
2462
+ };
2463
+ passwordRatio_hiddenPasswordsCount: {
2464
+ name: "passwordRatio,hiddenPasswordsCountScaled";
2465
+ parents: import("../..").AbstractFeatures;
2466
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2467
+ private?: true;
2468
+ };
2469
+ passwordRatio_multiAuthForm: {
2470
+ name: "passwordRatio,multiAuthForm";
2471
+ parents: import("../..").AbstractFeatures;
2472
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2473
+ private?: true;
2474
+ };
2475
+ passwordRatio_multistepForm: {
2476
+ name: "passwordRatio,multistepForm";
2477
+ parents: import("../..").AbstractFeatures;
2478
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2479
+ private?: true;
2480
+ };
2481
+ requiredRatio_visibleFieldsCount: {
2482
+ name: "requiredRatio,visibleFieldsCountScaled";
2483
+ parents: import("../..").AbstractFeatures;
2484
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2485
+ private?: true;
2486
+ };
2487
+ requiredRatio_visibleIdentifiersCount: {
2488
+ name: "requiredRatio,visibleIdentifiersCountScaled";
2489
+ parents: import("../..").AbstractFeatures;
2490
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2491
+ private?: true;
2492
+ };
2493
+ requiredRatio_visiblePasswordsCount: {
2494
+ name: "requiredRatio,visiblePasswordsCountScaled";
2495
+ parents: import("../..").AbstractFeatures;
2496
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2497
+ private?: true;
2498
+ };
2499
+ requiredRatio_hiddenIdentifiersCount: {
2500
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
2501
+ parents: import("../..").AbstractFeatures;
2502
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2503
+ private?: true;
2504
+ };
2505
+ requiredRatio_hiddenPasswordsCount: {
2506
+ name: "requiredRatio,hiddenPasswordsCountScaled";
2507
+ parents: import("../..").AbstractFeatures;
2508
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2509
+ private?: true;
2510
+ };
2511
+ requiredRatio_multiAuthForm: {
2512
+ name: "requiredRatio,multiAuthForm";
2513
+ parents: import("../..").AbstractFeatures;
2514
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2515
+ private?: true;
2516
+ };
2517
+ requiredRatio_multistepForm: {
2518
+ name: "requiredRatio,multistepForm";
2519
+ parents: import("../..").AbstractFeatures;
2520
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2521
+ private?: true;
2522
+ };
2523
+ }> | undefined;
2524
+ private?: true;
2525
+ };
2526
+ parentFormFnode: {
2527
+ name: "parentFormFnode";
2528
+ parents: import("../..").AbstractFeatures;
2529
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/fathom").Fnode | null;
2530
+ private?: true;
2531
+ };
2532
+ prevField: {
2533
+ name: "prevField";
2534
+ parents: import("../..").AbstractFeatures;
2535
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
2536
+ private?: true;
2537
+ };
2538
+ prevInput: {
2539
+ name: "prevInput";
2540
+ parents: import("../..").AbstractFeatures;
2541
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
2542
+ private?: true;
2543
+ };
2544
+ searchField: {
2545
+ name: "searchField";
2546
+ parents: import("../..").AbstractFeatures;
2547
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2548
+ private?: true;
2549
+ };
2550
+ text: {
2551
+ name: "text";
2552
+ parents: import("../..").AbstractFeatures;
2553
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
2554
+ private?: true;
2555
+ };
2556
+ visible: {
2557
+ name: "visible";
2558
+ parents: import("../..").AbstractFeatures;
2559
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2560
+ private?: true;
2561
+ };
2562
+ }>, {}>;
2563
+ }>;
2564
+ fieldAutocomplete: import("../..").Feature<"fieldAutocomplete", string | undefined, {
2565
+ fieldFeats: import("../..").Feature<"fieldFeats", import("../..").ComputedFeatures<{
2566
+ attrs: {
2567
+ name: "attrs";
2568
+ parents: import("../..").AbstractFeatures;
2569
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string[];
2570
+ private?: true;
2571
+ };
2572
+ autocomplete: {
2573
+ name: "autocomplete";
2574
+ parents: import("../..").AbstractFeatures;
2575
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string | undefined;
2576
+ private?: true;
2577
+ };
2578
+ isCC: {
2579
+ name: "isCC";
2580
+ parents: import("../..").AbstractFeatures;
2581
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2582
+ private?: true;
2583
+ };
2584
+ isFormLogin: {
2585
+ name: "isFormLogin";
2586
+ parents: import("../..").AbstractFeatures;
2587
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2588
+ private?: true;
2589
+ };
2590
+ isFormNoop: {
2591
+ name: "isFormNoop";
2592
+ parents: import("../..").AbstractFeatures;
2593
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2594
+ private?: true;
2595
+ };
2596
+ isFormPasswordChange: {
2597
+ name: "isFormPasswordChange";
2598
+ parents: import("../..").AbstractFeatures;
2599
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2600
+ private?: true;
2601
+ };
2602
+ isFormRecovery: {
2603
+ name: "isFormRecovery";
2604
+ parents: import("../..").AbstractFeatures;
2605
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2606
+ private?: true;
2607
+ };
2608
+ isFormRegister: {
2609
+ name: "isFormRegister";
2610
+ parents: import("../..").AbstractFeatures;
2611
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2612
+ private?: true;
2613
+ };
2614
+ isIdentity: {
2615
+ name: "isIdentity";
2616
+ parents: import("../..").AbstractFeatures;
2617
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2618
+ private?: true;
2619
+ };
2620
+ label: {
2621
+ name: "label";
2622
+ parents: import("../..").AbstractFeatures;
2623
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
2624
+ private?: true;
2625
+ };
2626
+ nextField: {
2627
+ name: "nextField";
2628
+ parents: import("../..").AbstractFeatures;
2629
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
2630
+ private?: true;
2631
+ };
2632
+ parentFormFeatures: {
2633
+ name: "parentFormFeatures";
2634
+ parents: import("../..").AbstractFeatures;
2635
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").ComputedFeatures<{
2636
+ formInputMFACandidates: {
2637
+ name: "formInputMFACandidates";
2638
+ parents: import("../..").AbstractFeatures;
2639
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2640
+ private?: true;
2641
+ };
2642
+ formMFA: {
2643
+ name: "formMFA";
2644
+ parents: import("../..").AbstractFeatures;
2645
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2646
+ private?: true;
2647
+ };
2648
+ formOTPOutlier: {
2649
+ name: "formOTPOutlier";
2650
+ parents: import("../..").AbstractFeatures;
2651
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2652
+ private?: true;
2653
+ };
2654
+ formTextAuthenticator: {
2655
+ name: "formTextAuthenticator";
2656
+ parents: import("../..").AbstractFeatures;
2657
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2658
+ private?: true;
2659
+ };
2660
+ headingsOTPOutlier: {
2661
+ name: "headingsOTPOutlier";
2662
+ parents: import("../..").AbstractFeatures;
2663
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2664
+ private?: true;
2665
+ };
2666
+ inputIterator: {
2667
+ name: "inputIterator";
2668
+ parents: import("../..").AbstractFeatures;
2669
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
2670
+ private?: true;
2671
+ };
2672
+ linkOTPOutlier: {
2673
+ name: "linkOTPOutlier";
2674
+ parents: import("../..").AbstractFeatures;
2675
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2676
+ private?: true;
2677
+ };
2678
+ visibleFieldsCount: {
2679
+ name: "visibleFieldsCountScaled";
2680
+ parents: import("../..").AbstractFeatures;
2681
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2682
+ private?: true;
2683
+ };
2684
+ visibleInputsCount: {
2685
+ name: "visibleInputsCountScaled";
2686
+ parents: import("../..").AbstractFeatures;
2687
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2688
+ private?: true;
2689
+ };
2690
+ fieldsetsCount: {
2691
+ name: "fieldsetsCountScaled";
2692
+ parents: import("../..").AbstractFeatures;
2693
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2694
+ private?: true;
2695
+ };
2696
+ textsCount: {
2697
+ name: "textsCountScaled";
2698
+ parents: import("../..").AbstractFeatures;
2699
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2700
+ private?: true;
2701
+ };
2702
+ textareasCount: {
2703
+ name: "textareasCountScaled";
2704
+ parents: import("../..").AbstractFeatures;
2705
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2706
+ private?: true;
2707
+ };
2708
+ selectsCount: {
2709
+ name: "selectsCountScaled";
2710
+ parents: import("../..").AbstractFeatures;
2711
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2712
+ private?: true;
2713
+ };
2714
+ disabledCount: {
2715
+ name: "disabledCountScaled";
2716
+ parents: import("../..").AbstractFeatures;
2717
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2718
+ private?: true;
2719
+ };
2720
+ radiosCount: {
2721
+ name: "radiosCountScaled";
2722
+ parents: import("../..").AbstractFeatures;
2723
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2724
+ private?: true;
2725
+ };
2726
+ readOnlyCount: {
2727
+ name: "readOnlyCountScaled";
2728
+ parents: import("../..").AbstractFeatures;
2729
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2730
+ private?: true;
2731
+ };
2732
+ formComplexity: {
2733
+ name: "formComplexityScaled";
2734
+ parents: import("../..").AbstractFeatures;
2735
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2736
+ private?: true;
2737
+ };
2738
+ visibleIdentifiersCount: {
2739
+ name: "visibleIdentifiersCountScaled";
2740
+ parents: import("../..").AbstractFeatures;
2741
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2742
+ private?: true;
2743
+ };
2744
+ hiddenIdentifiersCount: {
2745
+ name: "hiddenIdentifiersCountScaled";
2746
+ parents: import("../..").AbstractFeatures;
2747
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2748
+ private?: true;
2749
+ };
2750
+ usernamesCount: {
2751
+ name: "usernamesCountScaled";
2752
+ parents: import("../..").AbstractFeatures;
2753
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2754
+ private?: true;
2755
+ };
2756
+ emailsCount: {
2757
+ name: "emailsCountScaled";
2758
+ parents: import("../..").AbstractFeatures;
2759
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2760
+ private?: true;
2761
+ };
2762
+ hiddenCount: {
2763
+ name: "hiddenCountScaled";
2764
+ parents: import("../..").AbstractFeatures;
2765
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2766
+ private?: true;
2767
+ };
2768
+ hiddenPasswordsCount: {
2769
+ name: "hiddenPasswordsCountScaled";
2770
+ parents: import("../..").AbstractFeatures;
2771
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2772
+ private?: true;
2773
+ };
2774
+ submitsCount: {
2775
+ name: "submitsCountScaled";
2776
+ parents: import("../..").AbstractFeatures;
2777
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2778
+ private?: true;
2779
+ };
2780
+ identitiesCount: {
2781
+ name: "identitiesCountScaled";
2782
+ parents: import("../..").AbstractFeatures;
2783
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2784
+ private?: true;
2785
+ };
2786
+ ccsCount: {
2787
+ name: "ccsCountScaled";
2788
+ parents: import("../..").AbstractFeatures;
2789
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2790
+ private?: true;
2791
+ };
2792
+ hasTels: {
2793
+ name: "hasTels";
2794
+ parents: import("../..").AbstractFeatures;
2795
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2796
+ private?: true;
2797
+ };
2798
+ hasOAuth: {
2799
+ name: "hasOAuth";
2800
+ parents: import("../..").AbstractFeatures;
2801
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2802
+ private?: true;
2803
+ };
2804
+ hasCaptchas: {
2805
+ name: "hasCaptchas";
2806
+ parents: import("../..").AbstractFeatures;
2807
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2808
+ private?: true;
2809
+ };
2810
+ hasFiles: {
2811
+ name: "hasFiles";
2812
+ parents: import("../..").AbstractFeatures;
2813
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2814
+ private?: true;
2815
+ };
2816
+ hasDate: {
2817
+ name: "hasDate";
2818
+ parents: import("../..").AbstractFeatures;
2819
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2820
+ private?: true;
2821
+ };
2822
+ hasNumber: {
2823
+ name: "hasNumber";
2824
+ parents: import("../..").AbstractFeatures;
2825
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2826
+ private?: true;
2827
+ };
2828
+ oneVisibleField: {
2829
+ name: "oneVisibleField";
2830
+ parents: import("../..").AbstractFeatures;
2831
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2832
+ private?: true;
2833
+ };
2834
+ twoVisibleFields: {
2835
+ name: "twoVisibleFields";
2836
+ parents: import("../..").AbstractFeatures;
2837
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2838
+ private?: true;
2839
+ };
2840
+ threeOrMoreVisibleFields: {
2841
+ name: "threeOrMoreVisibleFields";
2842
+ parents: import("../..").AbstractFeatures;
2843
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2844
+ private?: true;
2845
+ };
2846
+ noPasswords: {
2847
+ name: "noPasswords";
2848
+ parents: import("../..").AbstractFeatures;
2849
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2850
+ private?: true;
2851
+ };
2852
+ onePassword: {
2853
+ name: "onePassword";
2854
+ parents: import("../..").AbstractFeatures;
2855
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2856
+ private?: true;
2857
+ };
2858
+ twoPasswords: {
2859
+ name: "twoPasswords";
2860
+ parents: import("../..").AbstractFeatures;
2861
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2862
+ private?: true;
2863
+ };
2864
+ threeOrMorePasswords: {
2865
+ name: "threeOrMorePasswords";
2866
+ parents: import("../..").AbstractFeatures;
2867
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2868
+ private?: true;
2869
+ };
2870
+ noIdentifiers: {
2871
+ name: "noIdentifiers";
2872
+ parents: import("../..").AbstractFeatures;
2873
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2874
+ private?: true;
2875
+ };
2876
+ oneIdentifier: {
2877
+ name: "oneIdentifier";
2878
+ parents: import("../..").AbstractFeatures;
2879
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2880
+ private?: true;
2881
+ };
2882
+ twoIdentifiers: {
2883
+ name: "twoIdentifiers";
2884
+ parents: import("../..").AbstractFeatures;
2885
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2886
+ private?: true;
2887
+ };
2888
+ threeOrMoreIdentifiers: {
2889
+ name: "threeOrMoreIdentifiers";
2890
+ parents: import("../..").AbstractFeatures;
2891
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2892
+ private?: true;
2893
+ };
2894
+ autofocusedIsIdentifier: {
2895
+ name: "autofocusedIsIdentifier";
2896
+ parents: import("../..").AbstractFeatures;
2897
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2898
+ private?: true;
2899
+ };
2900
+ autofocusedIsPassword: {
2901
+ name: "autofocusedIsPassword";
2902
+ parents: import("../..").AbstractFeatures;
2903
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2904
+ private?: true;
2905
+ };
2906
+ visibleRatio: {
2907
+ name: "visibleRatio";
2908
+ parents: import("../..").AbstractFeatures;
2909
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2910
+ private?: true;
2911
+ };
2912
+ inputRatio: {
2913
+ name: "inputRatio";
2914
+ parents: import("../..").AbstractFeatures;
2915
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2916
+ private?: true;
2917
+ };
2918
+ hiddenRatio: {
2919
+ name: "hiddenRatio";
2920
+ parents: import("../..").AbstractFeatures;
2921
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2922
+ private?: true;
2923
+ };
2924
+ identifierRatio: {
2925
+ name: "identifierRatio";
2926
+ parents: import("../..").AbstractFeatures;
2927
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2928
+ private?: true;
2929
+ };
2930
+ emailRatio: {
2931
+ name: "emailRatio";
2932
+ parents: import("../..").AbstractFeatures;
2933
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2934
+ private?: true;
2935
+ };
2936
+ usernameRatio: {
2937
+ name: "usernameRatio";
2938
+ parents: import("../..").AbstractFeatures;
2939
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2940
+ private?: true;
2941
+ };
2942
+ passwordRatio: {
2943
+ name: "passwordRatio";
2944
+ parents: import("../..").AbstractFeatures;
2945
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2946
+ private?: true;
2947
+ };
2948
+ disabledRatio: {
2949
+ name: "disabledRatio";
2950
+ parents: import("../..").AbstractFeatures;
2951
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2952
+ private?: true;
2953
+ };
2954
+ requiredRatio: {
2955
+ name: "requiredRatio";
2956
+ parents: import("../..").AbstractFeatures;
2957
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2958
+ private?: true;
2959
+ };
2960
+ checkboxRatio: {
2961
+ name: "checkboxRatio";
2962
+ parents: import("../..").AbstractFeatures;
2963
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2964
+ private?: true;
2965
+ };
2966
+ hiddenIdentifierRatio: {
2967
+ name: "hiddenIdentifierRatio";
2968
+ parents: import("../..").AbstractFeatures;
2969
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2970
+ private?: true;
2971
+ };
2972
+ hiddenPasswordRatio: {
2973
+ name: "hiddenPasswordRatio";
2974
+ parents: import("../..").AbstractFeatures;
2975
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2976
+ private?: true;
2977
+ };
2978
+ pageLogin: {
2979
+ name: "pageLogin";
2980
+ parents: import("../..").AbstractFeatures;
2981
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2982
+ private?: true;
2983
+ };
2984
+ formTextLogin: {
2985
+ name: "formTextLogin";
2986
+ parents: import("../..").AbstractFeatures;
2987
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2988
+ private?: true;
2989
+ };
2990
+ formAttrsLogin: {
2991
+ name: "formAttrsLogin";
2992
+ parents: import("../..").AbstractFeatures;
2993
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2994
+ private?: true;
2995
+ };
2996
+ headingsLogin: {
2997
+ name: "headingsLogin";
2998
+ parents: import("../..").AbstractFeatures;
2999
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3000
+ private?: true;
3001
+ };
3002
+ layoutLogin: {
3003
+ name: "layoutLogin";
3004
+ parents: import("../..").AbstractFeatures;
3005
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3006
+ private?: true;
3007
+ };
3008
+ rememberMeCheckbox: {
3009
+ name: "rememberMeCheckbox";
3010
+ parents: import("../..").AbstractFeatures;
3011
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3012
+ private?: true;
3013
+ };
3014
+ troubleLink: {
3015
+ name: "troubleLink";
3016
+ parents: import("../..").AbstractFeatures;
3017
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3018
+ private?: true;
3019
+ };
3020
+ submitLogin: {
3021
+ name: "submitLogin";
3022
+ parents: import("../..").AbstractFeatures;
3023
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3024
+ private?: true;
3025
+ };
3026
+ pageRegister: {
3027
+ name: "pageRegister";
3028
+ parents: import("../..").AbstractFeatures;
3029
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3030
+ private?: true;
3031
+ };
3032
+ formTextRegister: {
3033
+ name: "formTextRegister";
3034
+ parents: import("../..").AbstractFeatures;
3035
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3036
+ private?: true;
3037
+ };
3038
+ formAttrsRegister: {
3039
+ name: "formAttrsRegister";
3040
+ parents: import("../..").AbstractFeatures;
3041
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3042
+ private?: true;
3043
+ };
3044
+ headingsRegister: {
3045
+ name: "headingsRegister";
3046
+ parents: import("../..").AbstractFeatures;
3047
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3048
+ private?: true;
3049
+ };
3050
+ layoutRegister: {
3051
+ name: "layoutRegister";
3052
+ parents: import("../..").AbstractFeatures;
3053
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3054
+ private?: true;
3055
+ };
3056
+ pwNewRegister: {
3057
+ name: "pwNewRegister";
3058
+ parents: import("../..").AbstractFeatures;
3059
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3060
+ private?: true;
3061
+ };
3062
+ pwConfirmRegister: {
3063
+ name: "pwConfirmRegister";
3064
+ parents: import("../..").AbstractFeatures;
3065
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3066
+ private?: true;
3067
+ };
3068
+ submitRegister: {
3069
+ name: "submitRegister";
3070
+ parents: import("../..").AbstractFeatures;
3071
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3072
+ private?: true;
3073
+ };
3074
+ TOSRef: {
3075
+ name: "TOSRef";
3076
+ parents: import("../..").AbstractFeatures;
3077
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3078
+ private?: true;
3079
+ };
3080
+ pagePwReset: {
3081
+ name: "pagePwReset";
3082
+ parents: import("../..").AbstractFeatures;
3083
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3084
+ private?: true;
3085
+ };
3086
+ formTextPwReset: {
3087
+ name: "formTextPwReset";
3088
+ parents: import("../..").AbstractFeatures;
3089
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3090
+ private?: true;
3091
+ };
3092
+ formAttrsPwReset: {
3093
+ name: "formAttrsPwReset";
3094
+ parents: import("../..").AbstractFeatures;
3095
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3096
+ private?: true;
3097
+ };
3098
+ headingsPwReset: {
3099
+ name: "headingsPwReset";
3100
+ parents: import("../..").AbstractFeatures;
3101
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3102
+ private?: true;
3103
+ };
3104
+ layoutPwReset: {
3105
+ name: "layoutPwReset";
3106
+ parents: import("../..").AbstractFeatures;
3107
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3108
+ private?: true;
3109
+ };
3110
+ pageRecovery: {
3111
+ name: "pageRecovery";
3112
+ parents: import("../..").AbstractFeatures;
3113
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3114
+ private?: true;
3115
+ };
3116
+ formTextRecovery: {
3117
+ name: "formTextRecovery";
3118
+ parents: import("../..").AbstractFeatures;
3119
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3120
+ private?: true;
3121
+ };
3122
+ formAttrsRecovery: {
3123
+ name: "formAttrsRecovery";
3124
+ parents: import("../..").AbstractFeatures;
3125
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3126
+ private?: true;
3127
+ };
3128
+ headingsRecovery: {
3129
+ name: "headingsRecovery";
3130
+ parents: import("../..").AbstractFeatures;
3131
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3132
+ private?: true;
3133
+ };
3134
+ layoutRecovery: {
3135
+ name: "layoutRecovery";
3136
+ parents: import("../..").AbstractFeatures;
3137
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3138
+ private?: true;
3139
+ };
3140
+ identifierRecovery: {
3141
+ name: "identifierRecovery";
3142
+ parents: import("../..").AbstractFeatures;
3143
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3144
+ private?: true;
3145
+ };
3146
+ submitRecovery: {
3147
+ name: "submitRecovery";
3148
+ parents: import("../..").AbstractFeatures;
3149
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3150
+ private?: true;
3151
+ };
3152
+ formTextMFA: {
3153
+ name: "formTextMFA";
3154
+ parents: import("../..").AbstractFeatures;
3155
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3156
+ private?: true;
3157
+ };
3158
+ formAttrsMFA: {
3159
+ name: "formAttrsMFA";
3160
+ parents: import("../..").AbstractFeatures;
3161
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3162
+ private?: true;
3163
+ };
3164
+ inputsMFA: {
3165
+ name: "inputsMFA";
3166
+ parents: import("../..").AbstractFeatures;
3167
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3168
+ private?: true;
3169
+ };
3170
+ newsletterForm: {
3171
+ name: "newsletterForm";
3172
+ parents: import("../..").AbstractFeatures;
3173
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3174
+ private?: true;
3175
+ };
3176
+ searchForm: {
3177
+ name: "searchForm";
3178
+ parents: import("../..").AbstractFeatures;
3179
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3180
+ private?: true;
3181
+ };
3182
+ multistepForm: {
3183
+ name: "multistepForm";
3184
+ parents: import("../..").AbstractFeatures;
3185
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3186
+ private?: true;
3187
+ };
3188
+ multiAuthForm: {
3189
+ name: "multiAuthForm";
3190
+ parents: import("../..").AbstractFeatures;
3191
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3192
+ private?: true;
3193
+ };
3194
+ multistepForm_multiAuthForm: {
3195
+ name: "multistepForm,multiAuthForm";
3196
+ parents: import("../..").AbstractFeatures;
3197
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3198
+ private?: true;
3199
+ };
3200
+ visibleRatio_visibleFieldsCount: {
3201
+ name: "visibleRatio,visibleFieldsCountScaled";
3202
+ parents: import("../..").AbstractFeatures;
3203
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3204
+ private?: true;
3205
+ };
3206
+ visibleRatio_visibleIdentifiersCount: {
3207
+ name: "visibleRatio,visibleIdentifiersCountScaled";
3208
+ parents: import("../..").AbstractFeatures;
3209
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3210
+ private?: true;
3211
+ };
3212
+ visibleRatio_visiblePasswordsCount: {
3213
+ name: "visibleRatio,visiblePasswordsCountScaled";
3214
+ parents: import("../..").AbstractFeatures;
3215
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3216
+ private?: true;
3217
+ };
3218
+ visibleRatio_hiddenIdentifiersCount: {
3219
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
3220
+ parents: import("../..").AbstractFeatures;
3221
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3222
+ private?: true;
3223
+ };
3224
+ visibleRatio_hiddenPasswordsCount: {
3225
+ name: "visibleRatio,hiddenPasswordsCountScaled";
3226
+ parents: import("../..").AbstractFeatures;
3227
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3228
+ private?: true;
3229
+ };
3230
+ visibleRatio_multiAuthForm: {
3231
+ name: "visibleRatio,multiAuthForm";
3232
+ parents: import("../..").AbstractFeatures;
3233
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3234
+ private?: true;
3235
+ };
3236
+ visibleRatio_multistepForm: {
3237
+ name: "visibleRatio,multistepForm";
3238
+ parents: import("../..").AbstractFeatures;
3239
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3240
+ private?: true;
3241
+ };
3242
+ identifierRatio_visibleFieldsCount: {
3243
+ name: "identifierRatio,visibleFieldsCountScaled";
3244
+ parents: import("../..").AbstractFeatures;
3245
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3246
+ private?: true;
3247
+ };
3248
+ identifierRatio_visibleIdentifiersCount: {
3249
+ name: "identifierRatio,visibleIdentifiersCountScaled";
3250
+ parents: import("../..").AbstractFeatures;
3251
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3252
+ private?: true;
3253
+ };
3254
+ identifierRatio_visiblePasswordsCount: {
3255
+ name: "identifierRatio,visiblePasswordsCountScaled";
3256
+ parents: import("../..").AbstractFeatures;
3257
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3258
+ private?: true;
3259
+ };
3260
+ identifierRatio_hiddenIdentifiersCount: {
3261
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
3262
+ parents: import("../..").AbstractFeatures;
3263
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3264
+ private?: true;
3265
+ };
3266
+ identifierRatio_hiddenPasswordsCount: {
3267
+ name: "identifierRatio,hiddenPasswordsCountScaled";
3268
+ parents: import("../..").AbstractFeatures;
3269
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3270
+ private?: true;
3271
+ };
3272
+ identifierRatio_multiAuthForm: {
3273
+ name: "identifierRatio,multiAuthForm";
3274
+ parents: import("../..").AbstractFeatures;
3275
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3276
+ private?: true;
3277
+ };
3278
+ identifierRatio_multistepForm: {
3279
+ name: "identifierRatio,multistepForm";
3280
+ parents: import("../..").AbstractFeatures;
3281
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3282
+ private?: true;
3283
+ };
3284
+ passwordRatio_visibleFieldsCount: {
3285
+ name: "passwordRatio,visibleFieldsCountScaled";
3286
+ parents: import("../..").AbstractFeatures;
3287
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3288
+ private?: true;
3289
+ };
3290
+ passwordRatio_visibleIdentifiersCount: {
3291
+ name: "passwordRatio,visibleIdentifiersCountScaled";
3292
+ parents: import("../..").AbstractFeatures;
3293
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3294
+ private?: true;
3295
+ };
3296
+ passwordRatio_visiblePasswordsCount: {
3297
+ name: "passwordRatio,visiblePasswordsCountScaled";
3298
+ parents: import("../..").AbstractFeatures;
3299
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3300
+ private?: true;
3301
+ };
3302
+ passwordRatio_hiddenIdentifiersCount: {
3303
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
3304
+ parents: import("../..").AbstractFeatures;
3305
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3306
+ private?: true;
3307
+ };
3308
+ passwordRatio_hiddenPasswordsCount: {
3309
+ name: "passwordRatio,hiddenPasswordsCountScaled";
3310
+ parents: import("../..").AbstractFeatures;
3311
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3312
+ private?: true;
3313
+ };
3314
+ passwordRatio_multiAuthForm: {
3315
+ name: "passwordRatio,multiAuthForm";
3316
+ parents: import("../..").AbstractFeatures;
3317
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3318
+ private?: true;
3319
+ };
3320
+ passwordRatio_multistepForm: {
3321
+ name: "passwordRatio,multistepForm";
3322
+ parents: import("../..").AbstractFeatures;
3323
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3324
+ private?: true;
3325
+ };
3326
+ requiredRatio_visibleFieldsCount: {
3327
+ name: "requiredRatio,visibleFieldsCountScaled";
3328
+ parents: import("../..").AbstractFeatures;
3329
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3330
+ private?: true;
3331
+ };
3332
+ requiredRatio_visibleIdentifiersCount: {
3333
+ name: "requiredRatio,visibleIdentifiersCountScaled";
3334
+ parents: import("../..").AbstractFeatures;
3335
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3336
+ private?: true;
3337
+ };
3338
+ requiredRatio_visiblePasswordsCount: {
3339
+ name: "requiredRatio,visiblePasswordsCountScaled";
3340
+ parents: import("../..").AbstractFeatures;
3341
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3342
+ private?: true;
3343
+ };
3344
+ requiredRatio_hiddenIdentifiersCount: {
3345
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
3346
+ parents: import("../..").AbstractFeatures;
3347
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3348
+ private?: true;
3349
+ };
3350
+ requiredRatio_hiddenPasswordsCount: {
3351
+ name: "requiredRatio,hiddenPasswordsCountScaled";
3352
+ parents: import("../..").AbstractFeatures;
3353
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3354
+ private?: true;
3355
+ };
3356
+ requiredRatio_multiAuthForm: {
3357
+ name: "requiredRatio,multiAuthForm";
3358
+ parents: import("../..").AbstractFeatures;
3359
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3360
+ private?: true;
3361
+ };
3362
+ requiredRatio_multistepForm: {
3363
+ name: "requiredRatio,multistepForm";
3364
+ parents: import("../..").AbstractFeatures;
3365
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3366
+ private?: true;
3367
+ };
3368
+ }> | undefined;
3369
+ private?: true;
3370
+ };
3371
+ parentFormFnode: {
3372
+ name: "parentFormFnode";
3373
+ parents: import("../..").AbstractFeatures;
3374
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/fathom").Fnode | null;
3375
+ private?: true;
3376
+ };
3377
+ prevField: {
3378
+ name: "prevField";
3379
+ parents: import("../..").AbstractFeatures;
3380
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
3381
+ private?: true;
3382
+ };
3383
+ prevInput: {
3384
+ name: "prevInput";
3385
+ parents: import("../..").AbstractFeatures;
3386
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
3387
+ private?: true;
3388
+ };
3389
+ searchField: {
3390
+ name: "searchField";
3391
+ parents: import("../..").AbstractFeatures;
3392
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3393
+ private?: true;
3394
+ };
3395
+ text: {
3396
+ name: "text";
3397
+ parents: import("../..").AbstractFeatures;
3398
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
3399
+ private?: true;
3400
+ };
3401
+ visible: {
3402
+ name: "visible";
3403
+ parents: import("../..").AbstractFeatures;
3404
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3405
+ private?: true;
3406
+ };
3407
+ }>, {}>;
3408
+ }>;
3409
+ }>;
1
3410
  export declare const emailFeatures: {
2
3411
  exactAttrEmail: {
3
3412
  name: "exactAttrEmail";
4
3413
  parents: import("../..").AbstractFeatures;
5
3414
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3415
+ private?: true;
6
3416
  };
7
3417
  fieldAttrEmail: {
8
3418
  name: "attrEmail";
9
3419
  parents: import("../..").AbstractFeatures;
10
3420
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3421
+ private?: true;
11
3422
  };
12
3423
  fieldAutocompleteEmail: {
13
3424
  name: "autocompleteEmail";
14
3425
  parents: import("../..").AbstractFeatures;
15
3426
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3427
+ private?: true;
16
3428
  };
17
3429
  fieldAutocompleteOff: {
18
3430
  name: "autocompleteOff";
19
3431
  parents: import("../..").AbstractFeatures;
20
3432
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3433
+ private?: true;
21
3434
  };
22
3435
  fieldCC: {
23
3436
  name: "fieldCC";
24
3437
  parents: import("../..").AbstractFeatures;
25
3438
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3439
+ private?: true;
26
3440
  };
27
3441
  fieldIdentity: {
28
3442
  name: "fieldIdentity";
29
3443
  parents: import("../..").AbstractFeatures;
30
3444
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3445
+ private?: true;
31
3446
  };
32
3447
  fieldSearch: {
33
3448
  name: "isSearchField";
34
3449
  parents: import("../..").AbstractFeatures;
35
3450
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3451
+ private?: true;
36
3452
  };
37
3453
  labelEmail: {
38
3454
  name: "labelEmail";
39
3455
  parents: import("../..").AbstractFeatures;
40
3456
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3457
+ private?: true;
41
3458
  };
42
3459
  mfaOutlier: {
43
3460
  name: "mfaOutlier";
44
3461
  parents: import("../..").AbstractFeatures;
45
3462
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3463
+ private?: true;
46
3464
  };
47
3465
  placeholderEmail: {
48
3466
  name: "placeholderEmail";
49
3467
  parents: import("../..").AbstractFeatures;
50
3468
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3469
+ private?: true;
51
3470
  };
52
3471
  textEmail: {
53
3472
  name: "textEmail";
54
3473
  parents: import("../..").AbstractFeatures;
55
3474
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3475
+ private?: true;
56
3476
  };
57
3477
  typeEmail: {
58
3478
  name: "typeEmail";
59
3479
  parents: import("../..").AbstractFeatures;
60
3480
  compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3481
+ private?: true;
61
3482
  };
62
3483
  };