@protontech/autofill 0.0.22991789 → 0.0.33690782

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 (190) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +17 -0
  16. package/features/feature.js +72 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4427 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +5 -2
  38. package/index.js +10 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +27 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/prod_20240829/index.d.ts +2 -0
  52. package/models/prod_20240829/index.js +27 -0
  53. package/models/prod_20240829/params/email-model.json +45 -0
  54. package/models/prod_20240829/params/login-model.json +421 -0
  55. package/models/prod_20240829/params/new-password-model.json +125 -0
  56. package/models/prod_20240829/params/otp-model.json +153 -0
  57. package/models/prod_20240829/params/password-change-model.json +421 -0
  58. package/models/prod_20240829/params/password-model.json +125 -0
  59. package/models/prod_20240829/params/recovery-model.json +421 -0
  60. package/models/prod_20240829/params/register-model.json +421 -0
  61. package/models/prod_20240829/params/username-hidden-model.json +41 -0
  62. package/models/prod_20240829/params/username-model.json +45 -0
  63. package/models/random_forest/index.d.ts +2 -0
  64. package/models/random_forest/index.js +27 -0
  65. package/models/random_forest/params/email-model.json +1456 -0
  66. package/models/random_forest/params/login-model.json +4194 -0
  67. package/models/random_forest/params/new-password-model.json +1448 -0
  68. package/models/random_forest/params/otp-model.json +2004 -0
  69. package/models/random_forest/params/password-change-model.json +1422 -0
  70. package/models/random_forest/params/password-model.json +1292 -0
  71. package/models/random_forest/params/recovery-model.json +2754 -0
  72. package/models/random_forest/params/register-model.json +3678 -0
  73. package/models/random_forest/params/username-hidden-model.json +1108 -0
  74. package/models/random_forest/params/username-model.json +1052 -0
  75. package/models/v1/index.d.ts +2 -0
  76. package/models/v1/index.js +35 -0
  77. package/package.json +14 -15
  78. package/rules/v1/index.d.ts +3 -0
  79. package/rules/v1/index.js +69 -0
  80. package/rulesets.d.ts +2 -2
  81. package/rulesets.js +11 -10
  82. package/types/index.d.ts +72 -17
  83. package/types/index.js +35 -2
  84. package/utils/attributes.js +1 -1
  85. package/utils/clustering.js +18 -5
  86. package/utils/credit-card.d.ts +32 -0
  87. package/utils/credit-card.js +259 -0
  88. package/utils/credit-card.samples.spec.d.ts +1 -0
  89. package/utils/credit-card.samples.spec.js +452 -0
  90. package/utils/credit-card.spec.d.ts +1 -0
  91. package/utils/credit-card.spec.js +296 -0
  92. package/utils/dom.d.ts +3 -2
  93. package/utils/dom.js +12 -7
  94. package/utils/exclusion.d.ts +1 -0
  95. package/utils/exclusion.js +22 -10
  96. package/utils/extract.d.ts +1 -0
  97. package/utils/extract.js +26 -7
  98. package/utils/fathom.d.ts +10 -23
  99. package/utils/fathom.js +7 -12
  100. package/utils/field.d.ts +12 -4
  101. package/utils/field.js +25 -14
  102. package/utils/flags.d.ts +9 -3
  103. package/utils/flags.js +27 -9
  104. package/utils/form.d.ts +16 -5
  105. package/utils/form.js +35 -14
  106. package/utils/identity.d.ts +12 -21
  107. package/utils/identity.js +66 -41
  108. package/utils/identity.samples.spec.d.ts +1 -0
  109. package/utils/identity.samples.spec.js +28 -0
  110. package/utils/iframe.d.ts +2 -0
  111. package/utils/iframe.js +22 -0
  112. package/utils/overrides.d.ts +19 -0
  113. package/utils/overrides.js +40 -0
  114. package/utils/prepass.js +6 -4
  115. package/utils/re.d.ts +19 -4
  116. package/utils/re.js +22 -7
  117. package/utils/re.spec.d.ts +1 -0
  118. package/utils/re.spec.js +62 -0
  119. package/utils/shadow-dom.d.ts +8 -0
  120. package/utils/shadow-dom.js +53 -0
  121. package/utils/shadow-dom.spec.d.ts +1 -0
  122. package/utils/shadow-dom.spec.js +215 -0
  123. package/utils/visible.d.ts +3 -2
  124. package/utils/visible.js +42 -22
  125. package/cli.d.ts +0 -2
  126. package/cli.js +0 -128
  127. package/features/abstract.field.d.ts +0 -123
  128. package/features/abstract.field.js +0 -63
  129. package/features/abstract.form.d.ts +0 -98
  130. package/features/abstract.form.js +0 -281
  131. package/features/field.email.d.ts +0 -18
  132. package/features/field.email.js +0 -43
  133. package/features/field.otp.d.ts +0 -36
  134. package/features/field.otp.js +0 -116
  135. package/features/field.password.d.ts +0 -35
  136. package/features/field.password.js +0 -104
  137. package/features/field.username-hidden.d.ts +0 -15
  138. package/features/field.username-hidden.js +0 -40
  139. package/features/field.username.d.ts +0 -16
  140. package/features/field.username.js +0 -41
  141. package/features/form.combined.d.ts +0 -1
  142. package/features/form.combined.js +0 -6
  143. package/trainees/field.email.d.ts +0 -2
  144. package/trainees/field.email.js +0 -16
  145. package/trainees/field.identity.d.ts +0 -2
  146. package/trainees/field.identity.js +0 -9
  147. package/trainees/field.otp.d.ts +0 -2
  148. package/trainees/field.otp.js +0 -16
  149. package/trainees/field.password.current.d.ts +0 -2
  150. package/trainees/field.password.current.js +0 -16
  151. package/trainees/field.password.new.d.ts +0 -2
  152. package/trainees/field.password.new.js +0 -16
  153. package/trainees/field.username-hidden.d.ts +0 -2
  154. package/trainees/field.username-hidden.js +0 -22
  155. package/trainees/field.username.d.ts +0 -2
  156. package/trainees/field.username.js +0 -16
  157. package/trainees/form.login.d.ts +0 -2
  158. package/trainees/form.login.js +0 -16
  159. package/trainees/form.noop.d.ts +0 -1
  160. package/trainees/form.noop.js +0 -7
  161. package/trainees/form.password-change.d.ts +0 -2
  162. package/trainees/form.password-change.js +0 -16
  163. package/trainees/form.recovery.d.ts +0 -2
  164. package/trainees/form.recovery.js +0 -16
  165. package/trainees/form.register.d.ts +0 -2
  166. package/trainees/form.register.js +0 -16
  167. package/trainees/index.d.ts +0 -9
  168. package/trainees/index.js +0 -72
  169. package/trainees/results/result.email.d.ts +0 -2
  170. package/trainees/results/result.email.js +0 -17
  171. package/trainees/results/result.login.d.ts +0 -2
  172. package/trainees/results/result.login.js +0 -110
  173. package/trainees/results/result.new-password.d.ts +0 -2
  174. package/trainees/results/result.new-password.js +0 -36
  175. package/trainees/results/result.otp.d.ts +0 -2
  176. package/trainees/results/result.otp.js +0 -43
  177. package/trainees/results/result.password-change.d.ts +0 -2
  178. package/trainees/results/result.password-change.js +0 -110
  179. package/trainees/results/result.password.d.ts +0 -2
  180. package/trainees/results/result.password.js +0 -36
  181. package/trainees/results/result.recovery.d.ts +0 -2
  182. package/trainees/results/result.recovery.js +0 -110
  183. package/trainees/results/result.register.d.ts +0 -2
  184. package/trainees/results/result.register.js +0 -110
  185. package/trainees/results/result.username-hidden.d.ts +0 -2
  186. package/trainees/results/result.username-hidden.js +0 -15
  187. package/trainees/results/result.username.d.ts +0 -2
  188. package/trainees/results/result.username.js +0 -16
  189. package/utils/memoize.d.ts +0 -5
  190. package/utils/memoize.js +0 -12
@@ -0,0 +1,4427 @@
1
+ export declare const featureProvider: {
2
+ field: import("../..").FeatureComputer<{
3
+ attrs: {
4
+ name: "attrs";
5
+ parents: import("../..").AbstractFeatures;
6
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string[];
7
+ };
8
+ autocomplete: {
9
+ name: "autocomplete";
10
+ parents: import("../..").AbstractFeatures;
11
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string | undefined;
12
+ };
13
+ isCC: {
14
+ name: "isCC";
15
+ parents: import("../..").AbstractFeatures;
16
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
17
+ };
18
+ isFormLogin: {
19
+ name: "isFormLogin";
20
+ parents: import("../..").AbstractFeatures;
21
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
22
+ };
23
+ isFormNoop: {
24
+ name: "isFormNoop";
25
+ parents: import("../..").AbstractFeatures;
26
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
27
+ };
28
+ isFormPasswordChange: {
29
+ name: "isFormPasswordChange";
30
+ parents: import("../..").AbstractFeatures;
31
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
32
+ };
33
+ isFormRecovery: {
34
+ name: "isFormRecovery";
35
+ parents: import("../..").AbstractFeatures;
36
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
37
+ };
38
+ isFormRegister: {
39
+ name: "isFormRegister";
40
+ parents: import("../..").AbstractFeatures;
41
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
42
+ };
43
+ isIdentity: {
44
+ name: "isIdentity";
45
+ parents: import("../..").AbstractFeatures;
46
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
47
+ };
48
+ label: {
49
+ name: "label";
50
+ parents: import("../..").AbstractFeatures;
51
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
52
+ };
53
+ nextField: {
54
+ name: "nextField";
55
+ parents: import("../..").AbstractFeatures;
56
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
57
+ };
58
+ parentFormFeatures: {
59
+ name: "parentFormFeatures";
60
+ parents: import("../..").AbstractFeatures;
61
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").ComputedFeatures<{
62
+ __formInputMFACandidates: {
63
+ name: "__formInputMFACandidates";
64
+ parents: import("../..").AbstractFeatures;
65
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
66
+ };
67
+ __formMFA: {
68
+ name: "__formMFA";
69
+ parents: import("../..").AbstractFeatures;
70
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
71
+ };
72
+ __formOTPOutlier: {
73
+ name: "__formOTPOutlier";
74
+ parents: import("../..").AbstractFeatures;
75
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
76
+ };
77
+ __formTextAuthenticator: {
78
+ name: "__formTextAuthenticator";
79
+ parents: import("../..").AbstractFeatures;
80
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
81
+ };
82
+ __headingsOTPOutlier: {
83
+ name: "__headingsOTPOutlier";
84
+ parents: import("../..").AbstractFeatures;
85
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
86
+ };
87
+ __inputIterator: {
88
+ name: "__inputIterator";
89
+ parents: import("../..").AbstractFeatures;
90
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
91
+ };
92
+ __linkOTPOutlier: {
93
+ name: "__linkOTPOutlier";
94
+ parents: import("../..").AbstractFeatures;
95
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
96
+ };
97
+ visibleFieldsCount: {
98
+ name: "visibleFieldsCountScaled";
99
+ parents: import("../..").AbstractFeatures;
100
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
101
+ };
102
+ visibleInputsCount: {
103
+ name: "visibleInputsCountScaled";
104
+ parents: import("../..").AbstractFeatures;
105
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
106
+ };
107
+ fieldsetsCount: {
108
+ name: "fieldsetsCountScaled";
109
+ parents: import("../..").AbstractFeatures;
110
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
111
+ };
112
+ textsCount: {
113
+ name: "textsCountScaled";
114
+ parents: import("../..").AbstractFeatures;
115
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
116
+ };
117
+ textareasCount: {
118
+ name: "textareasCountScaled";
119
+ parents: import("../..").AbstractFeatures;
120
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
121
+ };
122
+ selectsCount: {
123
+ name: "selectsCountScaled";
124
+ parents: import("../..").AbstractFeatures;
125
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
126
+ };
127
+ disabledCount: {
128
+ name: "disabledCountScaled";
129
+ parents: import("../..").AbstractFeatures;
130
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
131
+ };
132
+ radiosCount: {
133
+ name: "radiosCountScaled";
134
+ parents: import("../..").AbstractFeatures;
135
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
136
+ };
137
+ readOnlyCount: {
138
+ name: "readOnlyCountScaled";
139
+ parents: import("../..").AbstractFeatures;
140
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
141
+ };
142
+ formComplexity: {
143
+ name: "formComplexityScaled";
144
+ parents: import("../..").AbstractFeatures;
145
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
146
+ };
147
+ visibleIdentifiersCount: {
148
+ name: "visibleIdentifiersCountScaled";
149
+ parents: import("../..").AbstractFeatures;
150
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
151
+ };
152
+ hiddenIdentifiersCount: {
153
+ name: "hiddenIdentifiersCountScaled";
154
+ parents: import("../..").AbstractFeatures;
155
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
156
+ };
157
+ usernamesCount: {
158
+ name: "usernamesCountScaled";
159
+ parents: import("../..").AbstractFeatures;
160
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
161
+ };
162
+ emailsCount: {
163
+ name: "emailsCountScaled";
164
+ parents: import("../..").AbstractFeatures;
165
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
166
+ };
167
+ hiddenCount: {
168
+ name: "hiddenCountScaled";
169
+ parents: import("../..").AbstractFeatures;
170
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
171
+ };
172
+ hiddenPasswordsCount: {
173
+ name: "hiddenPasswordsCountScaled";
174
+ parents: import("../..").AbstractFeatures;
175
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
176
+ };
177
+ submitsCount: {
178
+ name: "submitsCountScaled";
179
+ parents: import("../..").AbstractFeatures;
180
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
181
+ };
182
+ identitiesCount: {
183
+ name: "identitiesCountScaled";
184
+ parents: import("../..").AbstractFeatures;
185
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
186
+ };
187
+ ccsCount: {
188
+ name: "ccsCountScaled";
189
+ parents: import("../..").AbstractFeatures;
190
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
191
+ };
192
+ hasTels: {
193
+ name: "hasTels";
194
+ parents: import("../..").AbstractFeatures;
195
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
196
+ };
197
+ hasOAuth: {
198
+ name: "hasOAuth";
199
+ parents: import("../..").AbstractFeatures;
200
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
201
+ };
202
+ hasCaptchas: {
203
+ name: "hasCaptchas";
204
+ parents: import("../..").AbstractFeatures;
205
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
206
+ };
207
+ hasFiles: {
208
+ name: "hasFiles";
209
+ parents: import("../..").AbstractFeatures;
210
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
211
+ };
212
+ hasDate: {
213
+ name: "hasDate";
214
+ parents: import("../..").AbstractFeatures;
215
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
216
+ };
217
+ hasNumber: {
218
+ name: "hasNumber";
219
+ parents: import("../..").AbstractFeatures;
220
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
221
+ };
222
+ oneVisibleField: {
223
+ name: "oneVisibleField";
224
+ parents: import("../..").AbstractFeatures;
225
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
226
+ };
227
+ twoVisibleFields: {
228
+ name: "twoVisibleFields";
229
+ parents: import("../..").AbstractFeatures;
230
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
231
+ };
232
+ threeOrMoreVisibleFields: {
233
+ name: "threeOrMoreVisibleFields";
234
+ parents: import("../..").AbstractFeatures;
235
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
236
+ };
237
+ noPasswords: {
238
+ name: "noPasswords";
239
+ parents: import("../..").AbstractFeatures;
240
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
241
+ };
242
+ onePassword: {
243
+ name: "onePassword";
244
+ parents: import("../..").AbstractFeatures;
245
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
246
+ };
247
+ twoPasswords: {
248
+ name: "twoPasswords";
249
+ parents: import("../..").AbstractFeatures;
250
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
251
+ };
252
+ threeOrMorePasswords: {
253
+ name: "threeOrMorePasswords";
254
+ parents: import("../..").AbstractFeatures;
255
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
256
+ };
257
+ noIdentifiers: {
258
+ name: "noIdentifiers";
259
+ parents: import("../..").AbstractFeatures;
260
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
261
+ };
262
+ oneIdentifier: {
263
+ name: "oneIdentifier";
264
+ parents: import("../..").AbstractFeatures;
265
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
266
+ };
267
+ twoIdentifiers: {
268
+ name: "twoIdentifiers";
269
+ parents: import("../..").AbstractFeatures;
270
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
271
+ };
272
+ threeOrMoreIdentifiers: {
273
+ name: "threeOrMoreIdentifiers";
274
+ parents: import("../..").AbstractFeatures;
275
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
276
+ };
277
+ autofocusedIsIdentifier: {
278
+ name: "autofocusedIsIdentifier";
279
+ parents: import("../..").AbstractFeatures;
280
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
281
+ };
282
+ autofocusedIsPassword: {
283
+ name: "autofocusedIsPassword";
284
+ parents: import("../..").AbstractFeatures;
285
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
286
+ };
287
+ visibleRatio: {
288
+ name: "visibleRatio";
289
+ parents: import("../..").AbstractFeatures;
290
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
291
+ };
292
+ inputRatio: {
293
+ name: "inputRatio";
294
+ parents: import("../..").AbstractFeatures;
295
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
296
+ };
297
+ hiddenRatio: {
298
+ name: "hiddenRatio";
299
+ parents: import("../..").AbstractFeatures;
300
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
301
+ };
302
+ identifierRatio: {
303
+ name: "identifierRatio";
304
+ parents: import("../..").AbstractFeatures;
305
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
306
+ };
307
+ emailRatio: {
308
+ name: "emailRatio";
309
+ parents: import("../..").AbstractFeatures;
310
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
311
+ };
312
+ usernameRatio: {
313
+ name: "usernameRatio";
314
+ parents: import("../..").AbstractFeatures;
315
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
316
+ };
317
+ passwordRatio: {
318
+ name: "passwordRatio";
319
+ parents: import("../..").AbstractFeatures;
320
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
321
+ };
322
+ disabledRatio: {
323
+ name: "disabledRatio";
324
+ parents: import("../..").AbstractFeatures;
325
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
326
+ };
327
+ requiredRatio: {
328
+ name: "requiredRatio";
329
+ parents: import("../..").AbstractFeatures;
330
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
331
+ };
332
+ checkboxRatio: {
333
+ name: "checkboxRatio";
334
+ parents: import("../..").AbstractFeatures;
335
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
336
+ };
337
+ hiddenIdentifierRatio: {
338
+ name: "hiddenIdentifierRatio";
339
+ parents: import("../..").AbstractFeatures;
340
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
341
+ };
342
+ hiddenPasswordRatio: {
343
+ name: "hiddenPasswordRatio";
344
+ parents: import("../..").AbstractFeatures;
345
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
346
+ };
347
+ pageLogin: {
348
+ name: "pageLogin";
349
+ parents: import("../..").AbstractFeatures;
350
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
351
+ };
352
+ formTextLogin: {
353
+ name: "formTextLogin";
354
+ parents: import("../..").AbstractFeatures;
355
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
356
+ };
357
+ formAttrsLogin: {
358
+ name: "formAttrsLogin";
359
+ parents: import("../..").AbstractFeatures;
360
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
361
+ };
362
+ headingsLogin: {
363
+ name: "headingsLogin";
364
+ parents: import("../..").AbstractFeatures;
365
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
366
+ };
367
+ layoutLogin: {
368
+ name: "layoutLogin";
369
+ parents: import("../..").AbstractFeatures;
370
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
371
+ };
372
+ rememberMeCheckbox: {
373
+ name: "rememberMeCheckbox";
374
+ parents: import("../..").AbstractFeatures;
375
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
376
+ };
377
+ troubleLink: {
378
+ name: "troubleLink";
379
+ parents: import("../..").AbstractFeatures;
380
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
381
+ };
382
+ submitLogin: {
383
+ name: "submitLogin";
384
+ parents: import("../..").AbstractFeatures;
385
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
386
+ };
387
+ pageRegister: {
388
+ name: "pageRegister";
389
+ parents: import("../..").AbstractFeatures;
390
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
391
+ };
392
+ formTextRegister: {
393
+ name: "formTextRegister";
394
+ parents: import("../..").AbstractFeatures;
395
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
396
+ };
397
+ formAttrsRegister: {
398
+ name: "formAttrsRegister";
399
+ parents: import("../..").AbstractFeatures;
400
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
401
+ };
402
+ headingsRegister: {
403
+ name: "headingsRegister";
404
+ parents: import("../..").AbstractFeatures;
405
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
406
+ };
407
+ layoutRegister: {
408
+ name: "layoutRegister";
409
+ parents: import("../..").AbstractFeatures;
410
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
411
+ };
412
+ pwNewRegister: {
413
+ name: "pwNewRegister";
414
+ parents: import("../..").AbstractFeatures;
415
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
416
+ };
417
+ pwConfirmRegister: {
418
+ name: "pwConfirmRegister";
419
+ parents: import("../..").AbstractFeatures;
420
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
421
+ };
422
+ submitRegister: {
423
+ name: "submitRegister";
424
+ parents: import("../..").AbstractFeatures;
425
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
426
+ };
427
+ TOSRef: {
428
+ name: "TOSRef";
429
+ parents: import("../..").AbstractFeatures;
430
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
431
+ };
432
+ pagePwReset: {
433
+ name: "pagePwReset";
434
+ parents: import("../..").AbstractFeatures;
435
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
436
+ };
437
+ formTextPwReset: {
438
+ name: "formTextPwReset";
439
+ parents: import("../..").AbstractFeatures;
440
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
441
+ };
442
+ formAttrsPwReset: {
443
+ name: "formAttrsPwReset";
444
+ parents: import("../..").AbstractFeatures;
445
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
446
+ };
447
+ headingsPwReset: {
448
+ name: "headingsPwReset";
449
+ parents: import("../..").AbstractFeatures;
450
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
451
+ };
452
+ layoutPwReset: {
453
+ name: "layoutPwReset";
454
+ parents: import("../..").AbstractFeatures;
455
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
456
+ };
457
+ pageRecovery: {
458
+ name: "pageRecovery";
459
+ parents: import("../..").AbstractFeatures;
460
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
461
+ };
462
+ formTextRecovery: {
463
+ name: "formTextRecovery";
464
+ parents: import("../..").AbstractFeatures;
465
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
466
+ };
467
+ formAttrsRecovery: {
468
+ name: "formAttrsRecovery";
469
+ parents: import("../..").AbstractFeatures;
470
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
471
+ };
472
+ headingsRecovery: {
473
+ name: "headingsRecovery";
474
+ parents: import("../..").AbstractFeatures;
475
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
476
+ };
477
+ layoutRecovery: {
478
+ name: "layoutRecovery";
479
+ parents: import("../..").AbstractFeatures;
480
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
481
+ };
482
+ identifierRecovery: {
483
+ name: "identifierRecovery";
484
+ parents: import("../..").AbstractFeatures;
485
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
486
+ };
487
+ submitRecovery: {
488
+ name: "submitRecovery";
489
+ parents: import("../..").AbstractFeatures;
490
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
491
+ };
492
+ formTextMFA: {
493
+ name: "formTextMFA";
494
+ parents: import("../..").AbstractFeatures;
495
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
496
+ };
497
+ formAttrsMFA: {
498
+ name: "formAttrsMFA";
499
+ parents: import("../..").AbstractFeatures;
500
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
501
+ };
502
+ inputsMFA: {
503
+ name: "inputsMFA";
504
+ parents: import("../..").AbstractFeatures;
505
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
506
+ };
507
+ newsletterForm: {
508
+ name: "newsletterForm";
509
+ parents: import("../..").AbstractFeatures;
510
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
511
+ };
512
+ searchForm: {
513
+ name: "searchForm";
514
+ parents: import("../..").AbstractFeatures;
515
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
516
+ };
517
+ multistepForm: {
518
+ name: "multistepForm";
519
+ parents: import("../..").AbstractFeatures;
520
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
521
+ };
522
+ multiAuthForm: {
523
+ name: "multiAuthForm";
524
+ parents: import("../..").AbstractFeatures;
525
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
526
+ };
527
+ multistepForm_multiAuthForm: {
528
+ name: "multistepForm,multiAuthForm";
529
+ parents: import("../..").AbstractFeatures;
530
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
531
+ };
532
+ visibleRatio_visibleFieldsCount: {
533
+ name: "visibleRatio,visibleFieldsCountScaled";
534
+ parents: import("../..").AbstractFeatures;
535
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
536
+ };
537
+ visibleRatio_visibleIdentifiersCount: {
538
+ name: "visibleRatio,visibleIdentifiersCountScaled";
539
+ parents: import("../..").AbstractFeatures;
540
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
541
+ };
542
+ visibleRatio_visiblePasswordsCount: {
543
+ name: "visibleRatio,visiblePasswordsCountScaled";
544
+ parents: import("../..").AbstractFeatures;
545
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
546
+ };
547
+ visibleRatio_hiddenIdentifiersCount: {
548
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
549
+ parents: import("../..").AbstractFeatures;
550
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
551
+ };
552
+ visibleRatio_hiddenPasswordsCount: {
553
+ name: "visibleRatio,hiddenPasswordsCountScaled";
554
+ parents: import("../..").AbstractFeatures;
555
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
556
+ };
557
+ visibleRatio_multiAuthForm: {
558
+ name: "visibleRatio,multiAuthForm";
559
+ parents: import("../..").AbstractFeatures;
560
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
561
+ };
562
+ visibleRatio_multistepForm: {
563
+ name: "visibleRatio,multistepForm";
564
+ parents: import("../..").AbstractFeatures;
565
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
566
+ };
567
+ identifierRatio_visibleFieldsCount: {
568
+ name: "identifierRatio,visibleFieldsCountScaled";
569
+ parents: import("../..").AbstractFeatures;
570
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
571
+ };
572
+ identifierRatio_visibleIdentifiersCount: {
573
+ name: "identifierRatio,visibleIdentifiersCountScaled";
574
+ parents: import("../..").AbstractFeatures;
575
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
576
+ };
577
+ identifierRatio_visiblePasswordsCount: {
578
+ name: "identifierRatio,visiblePasswordsCountScaled";
579
+ parents: import("../..").AbstractFeatures;
580
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
581
+ };
582
+ identifierRatio_hiddenIdentifiersCount: {
583
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
584
+ parents: import("../..").AbstractFeatures;
585
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
586
+ };
587
+ identifierRatio_hiddenPasswordsCount: {
588
+ name: "identifierRatio,hiddenPasswordsCountScaled";
589
+ parents: import("../..").AbstractFeatures;
590
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
591
+ };
592
+ identifierRatio_multiAuthForm: {
593
+ name: "identifierRatio,multiAuthForm";
594
+ parents: import("../..").AbstractFeatures;
595
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
596
+ };
597
+ identifierRatio_multistepForm: {
598
+ name: "identifierRatio,multistepForm";
599
+ parents: import("../..").AbstractFeatures;
600
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
601
+ };
602
+ passwordRatio_visibleFieldsCount: {
603
+ name: "passwordRatio,visibleFieldsCountScaled";
604
+ parents: import("../..").AbstractFeatures;
605
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
606
+ };
607
+ passwordRatio_visibleIdentifiersCount: {
608
+ name: "passwordRatio,visibleIdentifiersCountScaled";
609
+ parents: import("../..").AbstractFeatures;
610
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
611
+ };
612
+ passwordRatio_visiblePasswordsCount: {
613
+ name: "passwordRatio,visiblePasswordsCountScaled";
614
+ parents: import("../..").AbstractFeatures;
615
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
616
+ };
617
+ passwordRatio_hiddenIdentifiersCount: {
618
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
619
+ parents: import("../..").AbstractFeatures;
620
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
621
+ };
622
+ passwordRatio_hiddenPasswordsCount: {
623
+ name: "passwordRatio,hiddenPasswordsCountScaled";
624
+ parents: import("../..").AbstractFeatures;
625
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
626
+ };
627
+ passwordRatio_multiAuthForm: {
628
+ name: "passwordRatio,multiAuthForm";
629
+ parents: import("../..").AbstractFeatures;
630
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
631
+ };
632
+ passwordRatio_multistepForm: {
633
+ name: "passwordRatio,multistepForm";
634
+ parents: import("../..").AbstractFeatures;
635
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
636
+ };
637
+ requiredRatio_visibleFieldsCount: {
638
+ name: "requiredRatio,visibleFieldsCountScaled";
639
+ parents: import("../..").AbstractFeatures;
640
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
641
+ };
642
+ requiredRatio_visibleIdentifiersCount: {
643
+ name: "requiredRatio,visibleIdentifiersCountScaled";
644
+ parents: import("../..").AbstractFeatures;
645
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
646
+ };
647
+ requiredRatio_visiblePasswordsCount: {
648
+ name: "requiredRatio,visiblePasswordsCountScaled";
649
+ parents: import("../..").AbstractFeatures;
650
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
651
+ };
652
+ requiredRatio_hiddenIdentifiersCount: {
653
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
654
+ parents: import("../..").AbstractFeatures;
655
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
656
+ };
657
+ requiredRatio_hiddenPasswordsCount: {
658
+ name: "requiredRatio,hiddenPasswordsCountScaled";
659
+ parents: import("../..").AbstractFeatures;
660
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
661
+ };
662
+ requiredRatio_multiAuthForm: {
663
+ name: "requiredRatio,multiAuthForm";
664
+ parents: import("../..").AbstractFeatures;
665
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
666
+ };
667
+ requiredRatio_multistepForm: {
668
+ name: "requiredRatio,multistepForm";
669
+ parents: import("../..").AbstractFeatures;
670
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
671
+ };
672
+ }> | undefined;
673
+ };
674
+ parentFormFnode: {
675
+ name: "parentFormFnode";
676
+ parents: import("../..").AbstractFeatures;
677
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/fathom").Fnode | null;
678
+ };
679
+ prevField: {
680
+ name: "prevField";
681
+ parents: import("../..").AbstractFeatures;
682
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
683
+ };
684
+ prevInput: {
685
+ name: "prevInput";
686
+ parents: import("../..").AbstractFeatures;
687
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): HTMLElement | null;
688
+ };
689
+ searchField: {
690
+ name: "searchField";
691
+ parents: import("../..").AbstractFeatures;
692
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
693
+ };
694
+ text: {
695
+ name: "text";
696
+ parents: import("../..").AbstractFeatures;
697
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): string;
698
+ };
699
+ visible: {
700
+ name: "visible";
701
+ parents: import("../..").AbstractFeatures;
702
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
703
+ };
704
+ }>;
705
+ form: import("../..").FeatureComputer<{
706
+ __formInputMFACandidates: {
707
+ name: "__formInputMFACandidates";
708
+ parents: import("../..").AbstractFeatures;
709
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
710
+ };
711
+ __formMFA: {
712
+ name: "__formMFA";
713
+ parents: import("../..").AbstractFeatures;
714
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
715
+ };
716
+ __formOTPOutlier: {
717
+ name: "__formOTPOutlier";
718
+ parents: import("../..").AbstractFeatures;
719
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
720
+ };
721
+ __formTextAuthenticator: {
722
+ name: "__formTextAuthenticator";
723
+ parents: import("../..").AbstractFeatures;
724
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
725
+ };
726
+ __headingsOTPOutlier: {
727
+ name: "__headingsOTPOutlier";
728
+ parents: import("../..").AbstractFeatures;
729
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
730
+ };
731
+ __inputIterator: {
732
+ name: "__inputIterator";
733
+ parents: import("../..").AbstractFeatures;
734
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
735
+ };
736
+ __linkOTPOutlier: {
737
+ name: "__linkOTPOutlier";
738
+ parents: import("../..").AbstractFeatures;
739
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
740
+ };
741
+ visibleFieldsCount: {
742
+ name: "visibleFieldsCountScaled";
743
+ parents: import("../..").AbstractFeatures;
744
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
745
+ };
746
+ visibleInputsCount: {
747
+ name: "visibleInputsCountScaled";
748
+ parents: import("../..").AbstractFeatures;
749
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
750
+ };
751
+ fieldsetsCount: {
752
+ name: "fieldsetsCountScaled";
753
+ parents: import("../..").AbstractFeatures;
754
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
755
+ };
756
+ textsCount: {
757
+ name: "textsCountScaled";
758
+ parents: import("../..").AbstractFeatures;
759
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
760
+ };
761
+ textareasCount: {
762
+ name: "textareasCountScaled";
763
+ parents: import("../..").AbstractFeatures;
764
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
765
+ };
766
+ selectsCount: {
767
+ name: "selectsCountScaled";
768
+ parents: import("../..").AbstractFeatures;
769
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
770
+ };
771
+ disabledCount: {
772
+ name: "disabledCountScaled";
773
+ parents: import("../..").AbstractFeatures;
774
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
775
+ };
776
+ radiosCount: {
777
+ name: "radiosCountScaled";
778
+ parents: import("../..").AbstractFeatures;
779
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
780
+ };
781
+ readOnlyCount: {
782
+ name: "readOnlyCountScaled";
783
+ parents: import("../..").AbstractFeatures;
784
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
785
+ };
786
+ formComplexity: {
787
+ name: "formComplexityScaled";
788
+ parents: import("../..").AbstractFeatures;
789
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
790
+ };
791
+ visibleIdentifiersCount: {
792
+ name: "visibleIdentifiersCountScaled";
793
+ parents: import("../..").AbstractFeatures;
794
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
795
+ };
796
+ hiddenIdentifiersCount: {
797
+ name: "hiddenIdentifiersCountScaled";
798
+ parents: import("../..").AbstractFeatures;
799
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
800
+ };
801
+ usernamesCount: {
802
+ name: "usernamesCountScaled";
803
+ parents: import("../..").AbstractFeatures;
804
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
805
+ };
806
+ emailsCount: {
807
+ name: "emailsCountScaled";
808
+ parents: import("../..").AbstractFeatures;
809
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
810
+ };
811
+ hiddenCount: {
812
+ name: "hiddenCountScaled";
813
+ parents: import("../..").AbstractFeatures;
814
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
815
+ };
816
+ hiddenPasswordsCount: {
817
+ name: "hiddenPasswordsCountScaled";
818
+ parents: import("../..").AbstractFeatures;
819
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
820
+ };
821
+ submitsCount: {
822
+ name: "submitsCountScaled";
823
+ parents: import("../..").AbstractFeatures;
824
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
825
+ };
826
+ identitiesCount: {
827
+ name: "identitiesCountScaled";
828
+ parents: import("../..").AbstractFeatures;
829
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
830
+ };
831
+ ccsCount: {
832
+ name: "ccsCountScaled";
833
+ parents: import("../..").AbstractFeatures;
834
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
835
+ };
836
+ hasTels: {
837
+ name: "hasTels";
838
+ parents: import("../..").AbstractFeatures;
839
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
840
+ };
841
+ hasOAuth: {
842
+ name: "hasOAuth";
843
+ parents: import("../..").AbstractFeatures;
844
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
845
+ };
846
+ hasCaptchas: {
847
+ name: "hasCaptchas";
848
+ parents: import("../..").AbstractFeatures;
849
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
850
+ };
851
+ hasFiles: {
852
+ name: "hasFiles";
853
+ parents: import("../..").AbstractFeatures;
854
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
855
+ };
856
+ hasDate: {
857
+ name: "hasDate";
858
+ parents: import("../..").AbstractFeatures;
859
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
860
+ };
861
+ hasNumber: {
862
+ name: "hasNumber";
863
+ parents: import("../..").AbstractFeatures;
864
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
865
+ };
866
+ oneVisibleField: {
867
+ name: "oneVisibleField";
868
+ parents: import("../..").AbstractFeatures;
869
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
870
+ };
871
+ twoVisibleFields: {
872
+ name: "twoVisibleFields";
873
+ parents: import("../..").AbstractFeatures;
874
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
875
+ };
876
+ threeOrMoreVisibleFields: {
877
+ name: "threeOrMoreVisibleFields";
878
+ parents: import("../..").AbstractFeatures;
879
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
880
+ };
881
+ noPasswords: {
882
+ name: "noPasswords";
883
+ parents: import("../..").AbstractFeatures;
884
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
885
+ };
886
+ onePassword: {
887
+ name: "onePassword";
888
+ parents: import("../..").AbstractFeatures;
889
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
890
+ };
891
+ twoPasswords: {
892
+ name: "twoPasswords";
893
+ parents: import("../..").AbstractFeatures;
894
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
895
+ };
896
+ threeOrMorePasswords: {
897
+ name: "threeOrMorePasswords";
898
+ parents: import("../..").AbstractFeatures;
899
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
900
+ };
901
+ noIdentifiers: {
902
+ name: "noIdentifiers";
903
+ parents: import("../..").AbstractFeatures;
904
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
905
+ };
906
+ oneIdentifier: {
907
+ name: "oneIdentifier";
908
+ parents: import("../..").AbstractFeatures;
909
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
910
+ };
911
+ twoIdentifiers: {
912
+ name: "twoIdentifiers";
913
+ parents: import("../..").AbstractFeatures;
914
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
915
+ };
916
+ threeOrMoreIdentifiers: {
917
+ name: "threeOrMoreIdentifiers";
918
+ parents: import("../..").AbstractFeatures;
919
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
920
+ };
921
+ autofocusedIsIdentifier: {
922
+ name: "autofocusedIsIdentifier";
923
+ parents: import("../..").AbstractFeatures;
924
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
925
+ };
926
+ autofocusedIsPassword: {
927
+ name: "autofocusedIsPassword";
928
+ parents: import("../..").AbstractFeatures;
929
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
930
+ };
931
+ visibleRatio: {
932
+ name: "visibleRatio";
933
+ parents: import("../..").AbstractFeatures;
934
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
935
+ };
936
+ inputRatio: {
937
+ name: "inputRatio";
938
+ parents: import("../..").AbstractFeatures;
939
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
940
+ };
941
+ hiddenRatio: {
942
+ name: "hiddenRatio";
943
+ parents: import("../..").AbstractFeatures;
944
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
945
+ };
946
+ identifierRatio: {
947
+ name: "identifierRatio";
948
+ parents: import("../..").AbstractFeatures;
949
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
950
+ };
951
+ emailRatio: {
952
+ name: "emailRatio";
953
+ parents: import("../..").AbstractFeatures;
954
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
955
+ };
956
+ usernameRatio: {
957
+ name: "usernameRatio";
958
+ parents: import("../..").AbstractFeatures;
959
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
960
+ };
961
+ passwordRatio: {
962
+ name: "passwordRatio";
963
+ parents: import("../..").AbstractFeatures;
964
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
965
+ };
966
+ disabledRatio: {
967
+ name: "disabledRatio";
968
+ parents: import("../..").AbstractFeatures;
969
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
970
+ };
971
+ requiredRatio: {
972
+ name: "requiredRatio";
973
+ parents: import("../..").AbstractFeatures;
974
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
975
+ };
976
+ checkboxRatio: {
977
+ name: "checkboxRatio";
978
+ parents: import("../..").AbstractFeatures;
979
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
980
+ };
981
+ hiddenIdentifierRatio: {
982
+ name: "hiddenIdentifierRatio";
983
+ parents: import("../..").AbstractFeatures;
984
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
985
+ };
986
+ hiddenPasswordRatio: {
987
+ name: "hiddenPasswordRatio";
988
+ parents: import("../..").AbstractFeatures;
989
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
990
+ };
991
+ pageLogin: {
992
+ name: "pageLogin";
993
+ parents: import("../..").AbstractFeatures;
994
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
995
+ };
996
+ formTextLogin: {
997
+ name: "formTextLogin";
998
+ parents: import("../..").AbstractFeatures;
999
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1000
+ };
1001
+ formAttrsLogin: {
1002
+ name: "formAttrsLogin";
1003
+ parents: import("../..").AbstractFeatures;
1004
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1005
+ };
1006
+ headingsLogin: {
1007
+ name: "headingsLogin";
1008
+ parents: import("../..").AbstractFeatures;
1009
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1010
+ };
1011
+ layoutLogin: {
1012
+ name: "layoutLogin";
1013
+ parents: import("../..").AbstractFeatures;
1014
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1015
+ };
1016
+ rememberMeCheckbox: {
1017
+ name: "rememberMeCheckbox";
1018
+ parents: import("../..").AbstractFeatures;
1019
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1020
+ };
1021
+ troubleLink: {
1022
+ name: "troubleLink";
1023
+ parents: import("../..").AbstractFeatures;
1024
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1025
+ };
1026
+ submitLogin: {
1027
+ name: "submitLogin";
1028
+ parents: import("../..").AbstractFeatures;
1029
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1030
+ };
1031
+ pageRegister: {
1032
+ name: "pageRegister";
1033
+ parents: import("../..").AbstractFeatures;
1034
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1035
+ };
1036
+ formTextRegister: {
1037
+ name: "formTextRegister";
1038
+ parents: import("../..").AbstractFeatures;
1039
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1040
+ };
1041
+ formAttrsRegister: {
1042
+ name: "formAttrsRegister";
1043
+ parents: import("../..").AbstractFeatures;
1044
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1045
+ };
1046
+ headingsRegister: {
1047
+ name: "headingsRegister";
1048
+ parents: import("../..").AbstractFeatures;
1049
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1050
+ };
1051
+ layoutRegister: {
1052
+ name: "layoutRegister";
1053
+ parents: import("../..").AbstractFeatures;
1054
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1055
+ };
1056
+ pwNewRegister: {
1057
+ name: "pwNewRegister";
1058
+ parents: import("../..").AbstractFeatures;
1059
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1060
+ };
1061
+ pwConfirmRegister: {
1062
+ name: "pwConfirmRegister";
1063
+ parents: import("../..").AbstractFeatures;
1064
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1065
+ };
1066
+ submitRegister: {
1067
+ name: "submitRegister";
1068
+ parents: import("../..").AbstractFeatures;
1069
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1070
+ };
1071
+ TOSRef: {
1072
+ name: "TOSRef";
1073
+ parents: import("../..").AbstractFeatures;
1074
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1075
+ };
1076
+ pagePwReset: {
1077
+ name: "pagePwReset";
1078
+ parents: import("../..").AbstractFeatures;
1079
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1080
+ };
1081
+ formTextPwReset: {
1082
+ name: "formTextPwReset";
1083
+ parents: import("../..").AbstractFeatures;
1084
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1085
+ };
1086
+ formAttrsPwReset: {
1087
+ name: "formAttrsPwReset";
1088
+ parents: import("../..").AbstractFeatures;
1089
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1090
+ };
1091
+ headingsPwReset: {
1092
+ name: "headingsPwReset";
1093
+ parents: import("../..").AbstractFeatures;
1094
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1095
+ };
1096
+ layoutPwReset: {
1097
+ name: "layoutPwReset";
1098
+ parents: import("../..").AbstractFeatures;
1099
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1100
+ };
1101
+ pageRecovery: {
1102
+ name: "pageRecovery";
1103
+ parents: import("../..").AbstractFeatures;
1104
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1105
+ };
1106
+ formTextRecovery: {
1107
+ name: "formTextRecovery";
1108
+ parents: import("../..").AbstractFeatures;
1109
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1110
+ };
1111
+ formAttrsRecovery: {
1112
+ name: "formAttrsRecovery";
1113
+ parents: import("../..").AbstractFeatures;
1114
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1115
+ };
1116
+ headingsRecovery: {
1117
+ name: "headingsRecovery";
1118
+ parents: import("../..").AbstractFeatures;
1119
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1120
+ };
1121
+ layoutRecovery: {
1122
+ name: "layoutRecovery";
1123
+ parents: import("../..").AbstractFeatures;
1124
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1125
+ };
1126
+ identifierRecovery: {
1127
+ name: "identifierRecovery";
1128
+ parents: import("../..").AbstractFeatures;
1129
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1130
+ };
1131
+ submitRecovery: {
1132
+ name: "submitRecovery";
1133
+ parents: import("../..").AbstractFeatures;
1134
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1135
+ };
1136
+ formTextMFA: {
1137
+ name: "formTextMFA";
1138
+ parents: import("../..").AbstractFeatures;
1139
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1140
+ };
1141
+ formAttrsMFA: {
1142
+ name: "formAttrsMFA";
1143
+ parents: import("../..").AbstractFeatures;
1144
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1145
+ };
1146
+ inputsMFA: {
1147
+ name: "inputsMFA";
1148
+ parents: import("../..").AbstractFeatures;
1149
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1150
+ };
1151
+ newsletterForm: {
1152
+ name: "newsletterForm";
1153
+ parents: import("../..").AbstractFeatures;
1154
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1155
+ };
1156
+ searchForm: {
1157
+ name: "searchForm";
1158
+ parents: import("../..").AbstractFeatures;
1159
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1160
+ };
1161
+ multistepForm: {
1162
+ name: "multistepForm";
1163
+ parents: import("../..").AbstractFeatures;
1164
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1165
+ };
1166
+ multiAuthForm: {
1167
+ name: "multiAuthForm";
1168
+ parents: import("../..").AbstractFeatures;
1169
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1170
+ };
1171
+ multistepForm_multiAuthForm: {
1172
+ name: "multistepForm,multiAuthForm";
1173
+ parents: import("../..").AbstractFeatures;
1174
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1175
+ };
1176
+ visibleRatio_visibleFieldsCount: {
1177
+ name: "visibleRatio,visibleFieldsCountScaled";
1178
+ parents: import("../..").AbstractFeatures;
1179
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1180
+ };
1181
+ visibleRatio_visibleIdentifiersCount: {
1182
+ name: "visibleRatio,visibleIdentifiersCountScaled";
1183
+ parents: import("../..").AbstractFeatures;
1184
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1185
+ };
1186
+ visibleRatio_visiblePasswordsCount: {
1187
+ name: "visibleRatio,visiblePasswordsCountScaled";
1188
+ parents: import("../..").AbstractFeatures;
1189
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1190
+ };
1191
+ visibleRatio_hiddenIdentifiersCount: {
1192
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
1193
+ parents: import("../..").AbstractFeatures;
1194
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1195
+ };
1196
+ visibleRatio_hiddenPasswordsCount: {
1197
+ name: "visibleRatio,hiddenPasswordsCountScaled";
1198
+ parents: import("../..").AbstractFeatures;
1199
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1200
+ };
1201
+ visibleRatio_multiAuthForm: {
1202
+ name: "visibleRatio,multiAuthForm";
1203
+ parents: import("../..").AbstractFeatures;
1204
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1205
+ };
1206
+ visibleRatio_multistepForm: {
1207
+ name: "visibleRatio,multistepForm";
1208
+ parents: import("../..").AbstractFeatures;
1209
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1210
+ };
1211
+ identifierRatio_visibleFieldsCount: {
1212
+ name: "identifierRatio,visibleFieldsCountScaled";
1213
+ parents: import("../..").AbstractFeatures;
1214
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1215
+ };
1216
+ identifierRatio_visibleIdentifiersCount: {
1217
+ name: "identifierRatio,visibleIdentifiersCountScaled";
1218
+ parents: import("../..").AbstractFeatures;
1219
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1220
+ };
1221
+ identifierRatio_visiblePasswordsCount: {
1222
+ name: "identifierRatio,visiblePasswordsCountScaled";
1223
+ parents: import("../..").AbstractFeatures;
1224
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1225
+ };
1226
+ identifierRatio_hiddenIdentifiersCount: {
1227
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
1228
+ parents: import("../..").AbstractFeatures;
1229
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1230
+ };
1231
+ identifierRatio_hiddenPasswordsCount: {
1232
+ name: "identifierRatio,hiddenPasswordsCountScaled";
1233
+ parents: import("../..").AbstractFeatures;
1234
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1235
+ };
1236
+ identifierRatio_multiAuthForm: {
1237
+ name: "identifierRatio,multiAuthForm";
1238
+ parents: import("../..").AbstractFeatures;
1239
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1240
+ };
1241
+ identifierRatio_multistepForm: {
1242
+ name: "identifierRatio,multistepForm";
1243
+ parents: import("../..").AbstractFeatures;
1244
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1245
+ };
1246
+ passwordRatio_visibleFieldsCount: {
1247
+ name: "passwordRatio,visibleFieldsCountScaled";
1248
+ parents: import("../..").AbstractFeatures;
1249
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1250
+ };
1251
+ passwordRatio_visibleIdentifiersCount: {
1252
+ name: "passwordRatio,visibleIdentifiersCountScaled";
1253
+ parents: import("../..").AbstractFeatures;
1254
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1255
+ };
1256
+ passwordRatio_visiblePasswordsCount: {
1257
+ name: "passwordRatio,visiblePasswordsCountScaled";
1258
+ parents: import("../..").AbstractFeatures;
1259
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1260
+ };
1261
+ passwordRatio_hiddenIdentifiersCount: {
1262
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
1263
+ parents: import("../..").AbstractFeatures;
1264
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1265
+ };
1266
+ passwordRatio_hiddenPasswordsCount: {
1267
+ name: "passwordRatio,hiddenPasswordsCountScaled";
1268
+ parents: import("../..").AbstractFeatures;
1269
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1270
+ };
1271
+ passwordRatio_multiAuthForm: {
1272
+ name: "passwordRatio,multiAuthForm";
1273
+ parents: import("../..").AbstractFeatures;
1274
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1275
+ };
1276
+ passwordRatio_multistepForm: {
1277
+ name: "passwordRatio,multistepForm";
1278
+ parents: import("../..").AbstractFeatures;
1279
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1280
+ };
1281
+ requiredRatio_visibleFieldsCount: {
1282
+ name: "requiredRatio,visibleFieldsCountScaled";
1283
+ parents: import("../..").AbstractFeatures;
1284
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1285
+ };
1286
+ requiredRatio_visibleIdentifiersCount: {
1287
+ name: "requiredRatio,visibleIdentifiersCountScaled";
1288
+ parents: import("../..").AbstractFeatures;
1289
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1290
+ };
1291
+ requiredRatio_visiblePasswordsCount: {
1292
+ name: "requiredRatio,visiblePasswordsCountScaled";
1293
+ parents: import("../..").AbstractFeatures;
1294
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1295
+ };
1296
+ requiredRatio_hiddenIdentifiersCount: {
1297
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
1298
+ parents: import("../..").AbstractFeatures;
1299
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1300
+ };
1301
+ requiredRatio_hiddenPasswordsCount: {
1302
+ name: "requiredRatio,hiddenPasswordsCountScaled";
1303
+ parents: import("../..").AbstractFeatures;
1304
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1305
+ };
1306
+ requiredRatio_multiAuthForm: {
1307
+ name: "requiredRatio,multiAuthForm";
1308
+ parents: import("../..").AbstractFeatures;
1309
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1310
+ };
1311
+ requiredRatio_multistepForm: {
1312
+ name: "requiredRatio,multistepForm";
1313
+ parents: import("../..").AbstractFeatures;
1314
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1315
+ };
1316
+ }>;
1317
+ email: import("../..").FeatureComputer<{
1318
+ exactAttrEmail: {
1319
+ name: "exactAttrEmail";
1320
+ parents: import("../..").AbstractFeatures;
1321
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1322
+ };
1323
+ fieldAttrEmail: {
1324
+ name: "attrEmail";
1325
+ parents: import("../..").AbstractFeatures;
1326
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1327
+ };
1328
+ fieldAutocompleteEmail: {
1329
+ name: "autocompleteEmail";
1330
+ parents: import("../..").AbstractFeatures;
1331
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1332
+ };
1333
+ fieldAutocompleteOff: {
1334
+ name: "autocompleteOff";
1335
+ parents: import("../..").AbstractFeatures;
1336
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1337
+ };
1338
+ fieldCC: {
1339
+ name: "fieldCC";
1340
+ parents: import("../..").AbstractFeatures;
1341
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1342
+ };
1343
+ fieldIdentity: {
1344
+ name: "fieldIdentity";
1345
+ parents: import("../..").AbstractFeatures;
1346
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1347
+ };
1348
+ fieldSearch: {
1349
+ name: "isSearchField";
1350
+ parents: import("../..").AbstractFeatures;
1351
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1352
+ };
1353
+ labelEmail: {
1354
+ name: "labelEmail";
1355
+ parents: import("../..").AbstractFeatures;
1356
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1357
+ };
1358
+ mfaOutlier: {
1359
+ name: "mfaOutlier";
1360
+ parents: import("../..").AbstractFeatures;
1361
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1362
+ };
1363
+ placeholderEmail: {
1364
+ name: "placeholderEmail";
1365
+ parents: import("../..").AbstractFeatures;
1366
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1367
+ };
1368
+ textEmail: {
1369
+ name: "textEmail";
1370
+ parents: import("../..").AbstractFeatures;
1371
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1372
+ };
1373
+ typeEmail: {
1374
+ name: "typeEmail";
1375
+ parents: import("../..").AbstractFeatures;
1376
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1377
+ };
1378
+ }>;
1379
+ "new-password": import("../..").FeatureComputer<{
1380
+ attrConfirm: {
1381
+ name: "attrConfirm";
1382
+ parents: import("../..").AbstractFeatures;
1383
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1384
+ };
1385
+ attrCreate: {
1386
+ name: "attrCreate";
1387
+ parents: import("../..").AbstractFeatures;
1388
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1389
+ };
1390
+ attrCurrent: {
1391
+ name: "attrCurrent";
1392
+ parents: import("../..").AbstractFeatures;
1393
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1394
+ };
1395
+ attrReset: {
1396
+ name: "attrReset";
1397
+ parents: import("../..").AbstractFeatures;
1398
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1399
+ };
1400
+ autocompleteCurrent: {
1401
+ name: "autocompleteCurrent";
1402
+ parents: import("../..").AbstractFeatures;
1403
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1404
+ };
1405
+ autocompleteNew: {
1406
+ name: "autocompleteNew";
1407
+ parents: import("../..").AbstractFeatures;
1408
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1409
+ };
1410
+ autocompleteOTP: {
1411
+ name: "autocompleteOTP";
1412
+ parents: import("../..").AbstractFeatures;
1413
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1414
+ };
1415
+ fieldAutocompleteOff: {
1416
+ name: "autocompleteOff";
1417
+ parents: import("../..").AbstractFeatures;
1418
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1419
+ };
1420
+ fieldCC: {
1421
+ name: "fieldCC";
1422
+ parents: import("../..").AbstractFeatures;
1423
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1424
+ };
1425
+ fieldExotic: {
1426
+ name: "fieldExotic";
1427
+ parents: import("../..").AbstractFeatures;
1428
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1429
+ };
1430
+ fieldIdentity: {
1431
+ name: "fieldIdentity";
1432
+ parents: import("../..").AbstractFeatures;
1433
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1434
+ };
1435
+ fieldLogin: {
1436
+ name: "fieldLogin";
1437
+ parents: import("../..").AbstractFeatures;
1438
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1439
+ };
1440
+ fieldRegister: {
1441
+ name: "fieldRegister";
1442
+ parents: import("../..").AbstractFeatures;
1443
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1444
+ };
1445
+ labelConfirm: {
1446
+ name: "labelConfirm";
1447
+ parents: import("../..").AbstractFeatures;
1448
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1449
+ };
1450
+ labelCreate: {
1451
+ name: "labelCreate";
1452
+ parents: import("../..").AbstractFeatures;
1453
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1454
+ };
1455
+ labelCurrent: {
1456
+ name: "labelCurrent";
1457
+ parents: import("../..").AbstractFeatures;
1458
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1459
+ };
1460
+ nextPwConfirm: {
1461
+ name: "nextPwConfirm";
1462
+ parents: import("../..").AbstractFeatures;
1463
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1464
+ };
1465
+ nextPwCurrent: {
1466
+ name: "nextPwCurrent";
1467
+ parents: import("../..").AbstractFeatures;
1468
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1469
+ };
1470
+ nextPwField: {
1471
+ name: "nextPwField";
1472
+ parents: import("../..").AbstractFeatures;
1473
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1474
+ };
1475
+ nextPwNew: {
1476
+ name: "nextPwNew";
1477
+ parents: import("../..").AbstractFeatures;
1478
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1479
+ };
1480
+ passwordOutlier: {
1481
+ name: "passwordOutlier";
1482
+ parents: import("../..").AbstractFeatures;
1483
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1484
+ };
1485
+ prevPwCurrent: {
1486
+ name: "prevPwCurrent";
1487
+ parents: import("../..").AbstractFeatures;
1488
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1489
+ };
1490
+ prevPwField: {
1491
+ name: "prevPwField";
1492
+ parents: import("../..").AbstractFeatures;
1493
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1494
+ };
1495
+ prevPwNew: {
1496
+ name: "prevPwNew";
1497
+ parents: import("../..").AbstractFeatures;
1498
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1499
+ };
1500
+ textConfirm: {
1501
+ name: "textConfirm";
1502
+ parents: import("../..").AbstractFeatures;
1503
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1504
+ };
1505
+ textCreate: {
1506
+ name: "textCreate";
1507
+ parents: import("../..").AbstractFeatures;
1508
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1509
+ };
1510
+ textCurrent: {
1511
+ name: "textCurrent";
1512
+ parents: import("../..").AbstractFeatures;
1513
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1514
+ };
1515
+ fieldLogin_autocompleteNew: {
1516
+ name: "fieldLogin,autocompleteNew";
1517
+ parents: import("../..").AbstractFeatures;
1518
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1519
+ };
1520
+ fieldLogin_maybeNew: {
1521
+ name: "fieldLogin,maybeNew";
1522
+ parents: import("../..").AbstractFeatures;
1523
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1524
+ };
1525
+ fieldRegister_autocompleteCurrent: {
1526
+ name: "fieldRegister,autocompleteCurrent";
1527
+ parents: import("../..").AbstractFeatures;
1528
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1529
+ };
1530
+ fieldRegister_maybeCurrent: {
1531
+ name: "fieldRegister,maybeCurrent";
1532
+ parents: import("../..").AbstractFeatures;
1533
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1534
+ };
1535
+ prevPwCurrent_nextPwNew: {
1536
+ name: "prevPwCurrent,nextPwNew";
1537
+ parents: import("../..").AbstractFeatures;
1538
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1539
+ };
1540
+ }>;
1541
+ otp: import("../..").FeatureComputer<{
1542
+ attrMFA: {
1543
+ name: "attrMFA";
1544
+ parents: import("../..").AbstractFeatures;
1545
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1546
+ };
1547
+ attrOTP: {
1548
+ name: "attrOTP";
1549
+ parents: import("../..").AbstractFeatures;
1550
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1551
+ };
1552
+ autocompleteOTC: {
1553
+ name: "autocompleteOTC";
1554
+ parents: import("../..").AbstractFeatures;
1555
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1556
+ };
1557
+ fieldCC: {
1558
+ name: "fieldCC";
1559
+ parents: import("../..").AbstractFeatures;
1560
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1561
+ };
1562
+ fieldIdentity: {
1563
+ name: "fieldIdentity";
1564
+ parents: import("../..").AbstractFeatures;
1565
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1566
+ };
1567
+ formAuthenticator: {
1568
+ name: "formAuthenticator";
1569
+ parents: import("../..").AbstractFeatures;
1570
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1571
+ };
1572
+ formComplexity: {
1573
+ name: "formComplexity";
1574
+ parents: import("../..").AbstractFeatures;
1575
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1576
+ };
1577
+ formMFA: {
1578
+ name: "formMFA";
1579
+ parents: import("../..").AbstractFeatures;
1580
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1581
+ };
1582
+ idMatch: {
1583
+ name: "idMatch";
1584
+ parents: import("../..").AbstractFeatures;
1585
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1586
+ };
1587
+ labelAuthenticator: {
1588
+ name: "labelAuthenticator";
1589
+ parents: import("../..").AbstractFeatures;
1590
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1591
+ };
1592
+ labelMFA: {
1593
+ name: "labelMFA";
1594
+ parents: import("../..").AbstractFeatures;
1595
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1596
+ };
1597
+ labelOTP: {
1598
+ name: "labelOTP";
1599
+ parents: import("../..").AbstractFeatures;
1600
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1601
+ };
1602
+ nameMatch: {
1603
+ name: "nameMatch";
1604
+ parents: import("../..").AbstractFeatures;
1605
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1606
+ };
1607
+ numericMode: {
1608
+ name: "numericMode";
1609
+ parents: import("../..").AbstractFeatures;
1610
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1611
+ };
1612
+ outlierAutocomplete: {
1613
+ name: "outlierAutocomplete";
1614
+ parents: import("../..").AbstractFeatures;
1615
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1616
+ };
1617
+ outlierEmailMatchScaled: {
1618
+ name: "outlierEmailMatchScaled";
1619
+ parents: import("../..").AbstractFeatures;
1620
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1621
+ };
1622
+ outlierField: {
1623
+ name: "outlierField";
1624
+ parents: import("../..").AbstractFeatures;
1625
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1626
+ };
1627
+ outlierForm: {
1628
+ name: "outlierForm";
1629
+ parents: import("../..").AbstractFeatures;
1630
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1631
+ };
1632
+ outlierHeadings: {
1633
+ name: "outlierHeadings";
1634
+ parents: import("../..").AbstractFeatures;
1635
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1636
+ };
1637
+ outlierInputCount: {
1638
+ name: "outlierInputCount";
1639
+ parents: import("../..").AbstractFeatures;
1640
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1641
+ };
1642
+ outlierLink: {
1643
+ name: "outlierLink";
1644
+ parents: import("../..").AbstractFeatures;
1645
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1646
+ };
1647
+ outlierMaxLength: {
1648
+ name: "outlierMaxLength";
1649
+ parents: import("../..").AbstractFeatures;
1650
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1651
+ };
1652
+ outlierSearch: {
1653
+ name: "outlierSearch";
1654
+ parents: import("../..").AbstractFeatures;
1655
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1656
+ };
1657
+ patternOTP: {
1658
+ name: "patternOTP";
1659
+ parents: import("../..").AbstractFeatures;
1660
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1661
+ };
1662
+ siblingOfInterest: {
1663
+ name: "siblingOfInterest";
1664
+ parents: import("../..").AbstractFeatures;
1665
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1666
+ };
1667
+ singleInput: {
1668
+ name: "singleInput";
1669
+ parents: import("../..").AbstractFeatures;
1670
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1671
+ };
1672
+ textAuthenticator: {
1673
+ name: "textAuthenticator";
1674
+ parents: import("../..").AbstractFeatures;
1675
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1676
+ };
1677
+ textMFA: {
1678
+ name: "textMFA";
1679
+ parents: import("../..").AbstractFeatures;
1680
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1681
+ };
1682
+ }>;
1683
+ password: import("../..").FeatureComputer<{
1684
+ attrConfirm: {
1685
+ name: "attrConfirm";
1686
+ parents: import("../..").AbstractFeatures;
1687
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1688
+ };
1689
+ attrCreate: {
1690
+ name: "attrCreate";
1691
+ parents: import("../..").AbstractFeatures;
1692
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1693
+ };
1694
+ attrCurrent: {
1695
+ name: "attrCurrent";
1696
+ parents: import("../..").AbstractFeatures;
1697
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1698
+ };
1699
+ attrReset: {
1700
+ name: "attrReset";
1701
+ parents: import("../..").AbstractFeatures;
1702
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1703
+ };
1704
+ autocompleteCurrent: {
1705
+ name: "autocompleteCurrent";
1706
+ parents: import("../..").AbstractFeatures;
1707
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1708
+ };
1709
+ autocompleteNew: {
1710
+ name: "autocompleteNew";
1711
+ parents: import("../..").AbstractFeatures;
1712
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1713
+ };
1714
+ autocompleteOTP: {
1715
+ name: "autocompleteOTP";
1716
+ parents: import("../..").AbstractFeatures;
1717
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1718
+ };
1719
+ fieldAutocompleteOff: {
1720
+ name: "autocompleteOff";
1721
+ parents: import("../..").AbstractFeatures;
1722
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1723
+ };
1724
+ fieldCC: {
1725
+ name: "fieldCC";
1726
+ parents: import("../..").AbstractFeatures;
1727
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1728
+ };
1729
+ fieldExotic: {
1730
+ name: "fieldExotic";
1731
+ parents: import("../..").AbstractFeatures;
1732
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1733
+ };
1734
+ fieldIdentity: {
1735
+ name: "fieldIdentity";
1736
+ parents: import("../..").AbstractFeatures;
1737
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1738
+ };
1739
+ fieldLogin: {
1740
+ name: "fieldLogin";
1741
+ parents: import("../..").AbstractFeatures;
1742
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1743
+ };
1744
+ fieldRegister: {
1745
+ name: "fieldRegister";
1746
+ parents: import("../..").AbstractFeatures;
1747
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1748
+ };
1749
+ labelConfirm: {
1750
+ name: "labelConfirm";
1751
+ parents: import("../..").AbstractFeatures;
1752
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1753
+ };
1754
+ labelCreate: {
1755
+ name: "labelCreate";
1756
+ parents: import("../..").AbstractFeatures;
1757
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1758
+ };
1759
+ labelCurrent: {
1760
+ name: "labelCurrent";
1761
+ parents: import("../..").AbstractFeatures;
1762
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1763
+ };
1764
+ nextPwConfirm: {
1765
+ name: "nextPwConfirm";
1766
+ parents: import("../..").AbstractFeatures;
1767
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1768
+ };
1769
+ nextPwCurrent: {
1770
+ name: "nextPwCurrent";
1771
+ parents: import("../..").AbstractFeatures;
1772
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1773
+ };
1774
+ nextPwField: {
1775
+ name: "nextPwField";
1776
+ parents: import("../..").AbstractFeatures;
1777
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1778
+ };
1779
+ nextPwNew: {
1780
+ name: "nextPwNew";
1781
+ parents: import("../..").AbstractFeatures;
1782
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1783
+ };
1784
+ passwordOutlier: {
1785
+ name: "passwordOutlier";
1786
+ parents: import("../..").AbstractFeatures;
1787
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1788
+ };
1789
+ prevPwCurrent: {
1790
+ name: "prevPwCurrent";
1791
+ parents: import("../..").AbstractFeatures;
1792
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1793
+ };
1794
+ prevPwField: {
1795
+ name: "prevPwField";
1796
+ parents: import("../..").AbstractFeatures;
1797
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1798
+ };
1799
+ prevPwNew: {
1800
+ name: "prevPwNew";
1801
+ parents: import("../..").AbstractFeatures;
1802
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1803
+ };
1804
+ textConfirm: {
1805
+ name: "textConfirm";
1806
+ parents: import("../..").AbstractFeatures;
1807
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1808
+ };
1809
+ textCreate: {
1810
+ name: "textCreate";
1811
+ parents: import("../..").AbstractFeatures;
1812
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1813
+ };
1814
+ textCurrent: {
1815
+ name: "textCurrent";
1816
+ parents: import("../..").AbstractFeatures;
1817
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1818
+ };
1819
+ fieldLogin_autocompleteNew: {
1820
+ name: "fieldLogin,autocompleteNew";
1821
+ parents: import("../..").AbstractFeatures;
1822
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1823
+ };
1824
+ fieldLogin_maybeNew: {
1825
+ name: "fieldLogin,maybeNew";
1826
+ parents: import("../..").AbstractFeatures;
1827
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1828
+ };
1829
+ fieldRegister_autocompleteCurrent: {
1830
+ name: "fieldRegister,autocompleteCurrent";
1831
+ parents: import("../..").AbstractFeatures;
1832
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1833
+ };
1834
+ fieldRegister_maybeCurrent: {
1835
+ name: "fieldRegister,maybeCurrent";
1836
+ parents: import("../..").AbstractFeatures;
1837
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1838
+ };
1839
+ prevPwCurrent_nextPwNew: {
1840
+ name: "prevPwCurrent,nextPwNew";
1841
+ parents: import("../..").AbstractFeatures;
1842
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1843
+ };
1844
+ }>;
1845
+ username: import("../..").FeatureComputer<{
1846
+ fieldAttrUsername: {
1847
+ name: "attrUsername";
1848
+ parents: import("../..").AbstractFeatures;
1849
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1850
+ };
1851
+ fieldAutocompleteEmail: {
1852
+ name: "autocompleteEmail";
1853
+ parents: import("../..").AbstractFeatures;
1854
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1855
+ };
1856
+ fieldAutocompleteOff: {
1857
+ name: "autocompleteOff";
1858
+ parents: import("../..").AbstractFeatures;
1859
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1860
+ };
1861
+ fieldAutocompleteUsername: {
1862
+ name: "autocompleteUsername";
1863
+ parents: import("../..").AbstractFeatures;
1864
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1865
+ };
1866
+ fieldCC: {
1867
+ name: "fieldCC";
1868
+ parents: import("../..").AbstractFeatures;
1869
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1870
+ };
1871
+ fieldIdentity: {
1872
+ name: "fieldIdentity";
1873
+ parents: import("../..").AbstractFeatures;
1874
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1875
+ };
1876
+ fieldSearch: {
1877
+ name: "isSearchField";
1878
+ parents: import("../..").AbstractFeatures;
1879
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1880
+ };
1881
+ firstLoginFormField: {
1882
+ name: "firstLoginFormField";
1883
+ parents: import("../..").AbstractFeatures;
1884
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1885
+ };
1886
+ labelUsername: {
1887
+ name: "labelUsername";
1888
+ parents: import("../..").AbstractFeatures;
1889
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1890
+ };
1891
+ outlierAttrs: {
1892
+ name: "outlierAttrs";
1893
+ parents: import("../..").AbstractFeatures;
1894
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1895
+ };
1896
+ outlierEmail: {
1897
+ name: "outlierEmail";
1898
+ parents: import("../..").AbstractFeatures;
1899
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1900
+ };
1901
+ outlierLabel: {
1902
+ name: "outlierLabel";
1903
+ parents: import("../..").AbstractFeatures;
1904
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1905
+ };
1906
+ outlierText: {
1907
+ name: "outlierText";
1908
+ parents: import("../..").AbstractFeatures;
1909
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1910
+ };
1911
+ textUsername: {
1912
+ name: "textUsername";
1913
+ parents: import("../..").AbstractFeatures;
1914
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1915
+ };
1916
+ }>;
1917
+ "username-hidden": import("../..").FeatureComputer<{
1918
+ attrMatch: {
1919
+ name: "attrMatch";
1920
+ parents: import("../..").AbstractFeatures;
1921
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1922
+ };
1923
+ autocompleteUsername: {
1924
+ name: "autocompleteUsername";
1925
+ parents: import("../..").AbstractFeatures;
1926
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1927
+ };
1928
+ fieldAttrEmail: {
1929
+ name: "attrEmail";
1930
+ parents: import("../..").AbstractFeatures;
1931
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1932
+ };
1933
+ fieldAttrUsername: {
1934
+ name: "attrUsername";
1935
+ parents: import("../..").AbstractFeatures;
1936
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1937
+ };
1938
+ fieldAutocompleteEmail: {
1939
+ name: "autocompleteEmail";
1940
+ parents: import("../..").AbstractFeatures;
1941
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1942
+ };
1943
+ fieldCC: {
1944
+ name: "fieldCC";
1945
+ parents: import("../..").AbstractFeatures;
1946
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1947
+ };
1948
+ fieldExotic: {
1949
+ name: "fieldExotic";
1950
+ parents: import("../..").AbstractFeatures;
1951
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1952
+ };
1953
+ fieldIdentity: {
1954
+ name: "fieldIdentity";
1955
+ parents: import("../..").AbstractFeatures;
1956
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1957
+ };
1958
+ valueEmail: {
1959
+ name: "valueEmail";
1960
+ parents: import("../..").AbstractFeatures;
1961
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1962
+ };
1963
+ valueTel: {
1964
+ name: "valueTel";
1965
+ parents: import("../..").AbstractFeatures;
1966
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1967
+ };
1968
+ valueUsername: {
1969
+ name: "valueUsername";
1970
+ parents: import("../..").AbstractFeatures;
1971
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1972
+ };
1973
+ visibleReadonly: {
1974
+ name: "visibleReadonly";
1975
+ parents: import("../..").AbstractFeatures;
1976
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1977
+ };
1978
+ }>;
1979
+ login: import("../..").FeatureComputer<{
1980
+ __formInputMFACandidates: {
1981
+ name: "__formInputMFACandidates";
1982
+ parents: import("../..").AbstractFeatures;
1983
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1984
+ };
1985
+ __formMFA: {
1986
+ name: "__formMFA";
1987
+ parents: import("../..").AbstractFeatures;
1988
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1989
+ };
1990
+ __formOTPOutlier: {
1991
+ name: "__formOTPOutlier";
1992
+ parents: import("../..").AbstractFeatures;
1993
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1994
+ };
1995
+ __formTextAuthenticator: {
1996
+ name: "__formTextAuthenticator";
1997
+ parents: import("../..").AbstractFeatures;
1998
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1999
+ };
2000
+ __headingsOTPOutlier: {
2001
+ name: "__headingsOTPOutlier";
2002
+ parents: import("../..").AbstractFeatures;
2003
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2004
+ };
2005
+ __inputIterator: {
2006
+ name: "__inputIterator";
2007
+ parents: import("../..").AbstractFeatures;
2008
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
2009
+ };
2010
+ __linkOTPOutlier: {
2011
+ name: "__linkOTPOutlier";
2012
+ parents: import("../..").AbstractFeatures;
2013
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2014
+ };
2015
+ visibleFieldsCount: {
2016
+ name: "visibleFieldsCountScaled";
2017
+ parents: import("../..").AbstractFeatures;
2018
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2019
+ };
2020
+ visibleInputsCount: {
2021
+ name: "visibleInputsCountScaled";
2022
+ parents: import("../..").AbstractFeatures;
2023
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2024
+ };
2025
+ fieldsetsCount: {
2026
+ name: "fieldsetsCountScaled";
2027
+ parents: import("../..").AbstractFeatures;
2028
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2029
+ };
2030
+ textsCount: {
2031
+ name: "textsCountScaled";
2032
+ parents: import("../..").AbstractFeatures;
2033
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2034
+ };
2035
+ textareasCount: {
2036
+ name: "textareasCountScaled";
2037
+ parents: import("../..").AbstractFeatures;
2038
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2039
+ };
2040
+ selectsCount: {
2041
+ name: "selectsCountScaled";
2042
+ parents: import("../..").AbstractFeatures;
2043
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2044
+ };
2045
+ disabledCount: {
2046
+ name: "disabledCountScaled";
2047
+ parents: import("../..").AbstractFeatures;
2048
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2049
+ };
2050
+ radiosCount: {
2051
+ name: "radiosCountScaled";
2052
+ parents: import("../..").AbstractFeatures;
2053
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2054
+ };
2055
+ readOnlyCount: {
2056
+ name: "readOnlyCountScaled";
2057
+ parents: import("../..").AbstractFeatures;
2058
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2059
+ };
2060
+ formComplexity: {
2061
+ name: "formComplexityScaled";
2062
+ parents: import("../..").AbstractFeatures;
2063
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2064
+ };
2065
+ visibleIdentifiersCount: {
2066
+ name: "visibleIdentifiersCountScaled";
2067
+ parents: import("../..").AbstractFeatures;
2068
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2069
+ };
2070
+ hiddenIdentifiersCount: {
2071
+ name: "hiddenIdentifiersCountScaled";
2072
+ parents: import("../..").AbstractFeatures;
2073
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2074
+ };
2075
+ usernamesCount: {
2076
+ name: "usernamesCountScaled";
2077
+ parents: import("../..").AbstractFeatures;
2078
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2079
+ };
2080
+ emailsCount: {
2081
+ name: "emailsCountScaled";
2082
+ parents: import("../..").AbstractFeatures;
2083
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2084
+ };
2085
+ hiddenCount: {
2086
+ name: "hiddenCountScaled";
2087
+ parents: import("../..").AbstractFeatures;
2088
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2089
+ };
2090
+ hiddenPasswordsCount: {
2091
+ name: "hiddenPasswordsCountScaled";
2092
+ parents: import("../..").AbstractFeatures;
2093
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2094
+ };
2095
+ submitsCount: {
2096
+ name: "submitsCountScaled";
2097
+ parents: import("../..").AbstractFeatures;
2098
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2099
+ };
2100
+ identitiesCount: {
2101
+ name: "identitiesCountScaled";
2102
+ parents: import("../..").AbstractFeatures;
2103
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2104
+ };
2105
+ ccsCount: {
2106
+ name: "ccsCountScaled";
2107
+ parents: import("../..").AbstractFeatures;
2108
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2109
+ };
2110
+ hasTels: {
2111
+ name: "hasTels";
2112
+ parents: import("../..").AbstractFeatures;
2113
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2114
+ };
2115
+ hasOAuth: {
2116
+ name: "hasOAuth";
2117
+ parents: import("../..").AbstractFeatures;
2118
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2119
+ };
2120
+ hasCaptchas: {
2121
+ name: "hasCaptchas";
2122
+ parents: import("../..").AbstractFeatures;
2123
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2124
+ };
2125
+ hasFiles: {
2126
+ name: "hasFiles";
2127
+ parents: import("../..").AbstractFeatures;
2128
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2129
+ };
2130
+ hasDate: {
2131
+ name: "hasDate";
2132
+ parents: import("../..").AbstractFeatures;
2133
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2134
+ };
2135
+ hasNumber: {
2136
+ name: "hasNumber";
2137
+ parents: import("../..").AbstractFeatures;
2138
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2139
+ };
2140
+ oneVisibleField: {
2141
+ name: "oneVisibleField";
2142
+ parents: import("../..").AbstractFeatures;
2143
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2144
+ };
2145
+ twoVisibleFields: {
2146
+ name: "twoVisibleFields";
2147
+ parents: import("../..").AbstractFeatures;
2148
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2149
+ };
2150
+ threeOrMoreVisibleFields: {
2151
+ name: "threeOrMoreVisibleFields";
2152
+ parents: import("../..").AbstractFeatures;
2153
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2154
+ };
2155
+ noPasswords: {
2156
+ name: "noPasswords";
2157
+ parents: import("../..").AbstractFeatures;
2158
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2159
+ };
2160
+ onePassword: {
2161
+ name: "onePassword";
2162
+ parents: import("../..").AbstractFeatures;
2163
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2164
+ };
2165
+ twoPasswords: {
2166
+ name: "twoPasswords";
2167
+ parents: import("../..").AbstractFeatures;
2168
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2169
+ };
2170
+ threeOrMorePasswords: {
2171
+ name: "threeOrMorePasswords";
2172
+ parents: import("../..").AbstractFeatures;
2173
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2174
+ };
2175
+ noIdentifiers: {
2176
+ name: "noIdentifiers";
2177
+ parents: import("../..").AbstractFeatures;
2178
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2179
+ };
2180
+ oneIdentifier: {
2181
+ name: "oneIdentifier";
2182
+ parents: import("../..").AbstractFeatures;
2183
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2184
+ };
2185
+ twoIdentifiers: {
2186
+ name: "twoIdentifiers";
2187
+ parents: import("../..").AbstractFeatures;
2188
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2189
+ };
2190
+ threeOrMoreIdentifiers: {
2191
+ name: "threeOrMoreIdentifiers";
2192
+ parents: import("../..").AbstractFeatures;
2193
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2194
+ };
2195
+ autofocusedIsIdentifier: {
2196
+ name: "autofocusedIsIdentifier";
2197
+ parents: import("../..").AbstractFeatures;
2198
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2199
+ };
2200
+ autofocusedIsPassword: {
2201
+ name: "autofocusedIsPassword";
2202
+ parents: import("../..").AbstractFeatures;
2203
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2204
+ };
2205
+ visibleRatio: {
2206
+ name: "visibleRatio";
2207
+ parents: import("../..").AbstractFeatures;
2208
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2209
+ };
2210
+ inputRatio: {
2211
+ name: "inputRatio";
2212
+ parents: import("../..").AbstractFeatures;
2213
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2214
+ };
2215
+ hiddenRatio: {
2216
+ name: "hiddenRatio";
2217
+ parents: import("../..").AbstractFeatures;
2218
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2219
+ };
2220
+ identifierRatio: {
2221
+ name: "identifierRatio";
2222
+ parents: import("../..").AbstractFeatures;
2223
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2224
+ };
2225
+ emailRatio: {
2226
+ name: "emailRatio";
2227
+ parents: import("../..").AbstractFeatures;
2228
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2229
+ };
2230
+ usernameRatio: {
2231
+ name: "usernameRatio";
2232
+ parents: import("../..").AbstractFeatures;
2233
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2234
+ };
2235
+ passwordRatio: {
2236
+ name: "passwordRatio";
2237
+ parents: import("../..").AbstractFeatures;
2238
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2239
+ };
2240
+ disabledRatio: {
2241
+ name: "disabledRatio";
2242
+ parents: import("../..").AbstractFeatures;
2243
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2244
+ };
2245
+ requiredRatio: {
2246
+ name: "requiredRatio";
2247
+ parents: import("../..").AbstractFeatures;
2248
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2249
+ };
2250
+ checkboxRatio: {
2251
+ name: "checkboxRatio";
2252
+ parents: import("../..").AbstractFeatures;
2253
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2254
+ };
2255
+ hiddenIdentifierRatio: {
2256
+ name: "hiddenIdentifierRatio";
2257
+ parents: import("../..").AbstractFeatures;
2258
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2259
+ };
2260
+ hiddenPasswordRatio: {
2261
+ name: "hiddenPasswordRatio";
2262
+ parents: import("../..").AbstractFeatures;
2263
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2264
+ };
2265
+ pageLogin: {
2266
+ name: "pageLogin";
2267
+ parents: import("../..").AbstractFeatures;
2268
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2269
+ };
2270
+ formTextLogin: {
2271
+ name: "formTextLogin";
2272
+ parents: import("../..").AbstractFeatures;
2273
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2274
+ };
2275
+ formAttrsLogin: {
2276
+ name: "formAttrsLogin";
2277
+ parents: import("../..").AbstractFeatures;
2278
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2279
+ };
2280
+ headingsLogin: {
2281
+ name: "headingsLogin";
2282
+ parents: import("../..").AbstractFeatures;
2283
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2284
+ };
2285
+ layoutLogin: {
2286
+ name: "layoutLogin";
2287
+ parents: import("../..").AbstractFeatures;
2288
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2289
+ };
2290
+ rememberMeCheckbox: {
2291
+ name: "rememberMeCheckbox";
2292
+ parents: import("../..").AbstractFeatures;
2293
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2294
+ };
2295
+ troubleLink: {
2296
+ name: "troubleLink";
2297
+ parents: import("../..").AbstractFeatures;
2298
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2299
+ };
2300
+ submitLogin: {
2301
+ name: "submitLogin";
2302
+ parents: import("../..").AbstractFeatures;
2303
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2304
+ };
2305
+ pageRegister: {
2306
+ name: "pageRegister";
2307
+ parents: import("../..").AbstractFeatures;
2308
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2309
+ };
2310
+ formTextRegister: {
2311
+ name: "formTextRegister";
2312
+ parents: import("../..").AbstractFeatures;
2313
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2314
+ };
2315
+ formAttrsRegister: {
2316
+ name: "formAttrsRegister";
2317
+ parents: import("../..").AbstractFeatures;
2318
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2319
+ };
2320
+ headingsRegister: {
2321
+ name: "headingsRegister";
2322
+ parents: import("../..").AbstractFeatures;
2323
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2324
+ };
2325
+ layoutRegister: {
2326
+ name: "layoutRegister";
2327
+ parents: import("../..").AbstractFeatures;
2328
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2329
+ };
2330
+ pwNewRegister: {
2331
+ name: "pwNewRegister";
2332
+ parents: import("../..").AbstractFeatures;
2333
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2334
+ };
2335
+ pwConfirmRegister: {
2336
+ name: "pwConfirmRegister";
2337
+ parents: import("../..").AbstractFeatures;
2338
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2339
+ };
2340
+ submitRegister: {
2341
+ name: "submitRegister";
2342
+ parents: import("../..").AbstractFeatures;
2343
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2344
+ };
2345
+ TOSRef: {
2346
+ name: "TOSRef";
2347
+ parents: import("../..").AbstractFeatures;
2348
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2349
+ };
2350
+ pagePwReset: {
2351
+ name: "pagePwReset";
2352
+ parents: import("../..").AbstractFeatures;
2353
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2354
+ };
2355
+ formTextPwReset: {
2356
+ name: "formTextPwReset";
2357
+ parents: import("../..").AbstractFeatures;
2358
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2359
+ };
2360
+ formAttrsPwReset: {
2361
+ name: "formAttrsPwReset";
2362
+ parents: import("../..").AbstractFeatures;
2363
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2364
+ };
2365
+ headingsPwReset: {
2366
+ name: "headingsPwReset";
2367
+ parents: import("../..").AbstractFeatures;
2368
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2369
+ };
2370
+ layoutPwReset: {
2371
+ name: "layoutPwReset";
2372
+ parents: import("../..").AbstractFeatures;
2373
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2374
+ };
2375
+ pageRecovery: {
2376
+ name: "pageRecovery";
2377
+ parents: import("../..").AbstractFeatures;
2378
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2379
+ };
2380
+ formTextRecovery: {
2381
+ name: "formTextRecovery";
2382
+ parents: import("../..").AbstractFeatures;
2383
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2384
+ };
2385
+ formAttrsRecovery: {
2386
+ name: "formAttrsRecovery";
2387
+ parents: import("../..").AbstractFeatures;
2388
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2389
+ };
2390
+ headingsRecovery: {
2391
+ name: "headingsRecovery";
2392
+ parents: import("../..").AbstractFeatures;
2393
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2394
+ };
2395
+ layoutRecovery: {
2396
+ name: "layoutRecovery";
2397
+ parents: import("../..").AbstractFeatures;
2398
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2399
+ };
2400
+ identifierRecovery: {
2401
+ name: "identifierRecovery";
2402
+ parents: import("../..").AbstractFeatures;
2403
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2404
+ };
2405
+ submitRecovery: {
2406
+ name: "submitRecovery";
2407
+ parents: import("../..").AbstractFeatures;
2408
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2409
+ };
2410
+ formTextMFA: {
2411
+ name: "formTextMFA";
2412
+ parents: import("../..").AbstractFeatures;
2413
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2414
+ };
2415
+ formAttrsMFA: {
2416
+ name: "formAttrsMFA";
2417
+ parents: import("../..").AbstractFeatures;
2418
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2419
+ };
2420
+ inputsMFA: {
2421
+ name: "inputsMFA";
2422
+ parents: import("../..").AbstractFeatures;
2423
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2424
+ };
2425
+ newsletterForm: {
2426
+ name: "newsletterForm";
2427
+ parents: import("../..").AbstractFeatures;
2428
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2429
+ };
2430
+ searchForm: {
2431
+ name: "searchForm";
2432
+ parents: import("../..").AbstractFeatures;
2433
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2434
+ };
2435
+ multistepForm: {
2436
+ name: "multistepForm";
2437
+ parents: import("../..").AbstractFeatures;
2438
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2439
+ };
2440
+ multiAuthForm: {
2441
+ name: "multiAuthForm";
2442
+ parents: import("../..").AbstractFeatures;
2443
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2444
+ };
2445
+ multistepForm_multiAuthForm: {
2446
+ name: "multistepForm,multiAuthForm";
2447
+ parents: import("../..").AbstractFeatures;
2448
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2449
+ };
2450
+ visibleRatio_visibleFieldsCount: {
2451
+ name: "visibleRatio,visibleFieldsCountScaled";
2452
+ parents: import("../..").AbstractFeatures;
2453
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2454
+ };
2455
+ visibleRatio_visibleIdentifiersCount: {
2456
+ name: "visibleRatio,visibleIdentifiersCountScaled";
2457
+ parents: import("../..").AbstractFeatures;
2458
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2459
+ };
2460
+ visibleRatio_visiblePasswordsCount: {
2461
+ name: "visibleRatio,visiblePasswordsCountScaled";
2462
+ parents: import("../..").AbstractFeatures;
2463
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2464
+ };
2465
+ visibleRatio_hiddenIdentifiersCount: {
2466
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
2467
+ parents: import("../..").AbstractFeatures;
2468
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2469
+ };
2470
+ visibleRatio_hiddenPasswordsCount: {
2471
+ name: "visibleRatio,hiddenPasswordsCountScaled";
2472
+ parents: import("../..").AbstractFeatures;
2473
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2474
+ };
2475
+ visibleRatio_multiAuthForm: {
2476
+ name: "visibleRatio,multiAuthForm";
2477
+ parents: import("../..").AbstractFeatures;
2478
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2479
+ };
2480
+ visibleRatio_multistepForm: {
2481
+ name: "visibleRatio,multistepForm";
2482
+ parents: import("../..").AbstractFeatures;
2483
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2484
+ };
2485
+ identifierRatio_visibleFieldsCount: {
2486
+ name: "identifierRatio,visibleFieldsCountScaled";
2487
+ parents: import("../..").AbstractFeatures;
2488
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2489
+ };
2490
+ identifierRatio_visibleIdentifiersCount: {
2491
+ name: "identifierRatio,visibleIdentifiersCountScaled";
2492
+ parents: import("../..").AbstractFeatures;
2493
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2494
+ };
2495
+ identifierRatio_visiblePasswordsCount: {
2496
+ name: "identifierRatio,visiblePasswordsCountScaled";
2497
+ parents: import("../..").AbstractFeatures;
2498
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2499
+ };
2500
+ identifierRatio_hiddenIdentifiersCount: {
2501
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
2502
+ parents: import("../..").AbstractFeatures;
2503
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2504
+ };
2505
+ identifierRatio_hiddenPasswordsCount: {
2506
+ name: "identifierRatio,hiddenPasswordsCountScaled";
2507
+ parents: import("../..").AbstractFeatures;
2508
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2509
+ };
2510
+ identifierRatio_multiAuthForm: {
2511
+ name: "identifierRatio,multiAuthForm";
2512
+ parents: import("../..").AbstractFeatures;
2513
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2514
+ };
2515
+ identifierRatio_multistepForm: {
2516
+ name: "identifierRatio,multistepForm";
2517
+ parents: import("../..").AbstractFeatures;
2518
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2519
+ };
2520
+ passwordRatio_visibleFieldsCount: {
2521
+ name: "passwordRatio,visibleFieldsCountScaled";
2522
+ parents: import("../..").AbstractFeatures;
2523
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2524
+ };
2525
+ passwordRatio_visibleIdentifiersCount: {
2526
+ name: "passwordRatio,visibleIdentifiersCountScaled";
2527
+ parents: import("../..").AbstractFeatures;
2528
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2529
+ };
2530
+ passwordRatio_visiblePasswordsCount: {
2531
+ name: "passwordRatio,visiblePasswordsCountScaled";
2532
+ parents: import("../..").AbstractFeatures;
2533
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2534
+ };
2535
+ passwordRatio_hiddenIdentifiersCount: {
2536
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
2537
+ parents: import("../..").AbstractFeatures;
2538
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2539
+ };
2540
+ passwordRatio_hiddenPasswordsCount: {
2541
+ name: "passwordRatio,hiddenPasswordsCountScaled";
2542
+ parents: import("../..").AbstractFeatures;
2543
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2544
+ };
2545
+ passwordRatio_multiAuthForm: {
2546
+ name: "passwordRatio,multiAuthForm";
2547
+ parents: import("../..").AbstractFeatures;
2548
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2549
+ };
2550
+ passwordRatio_multistepForm: {
2551
+ name: "passwordRatio,multistepForm";
2552
+ parents: import("../..").AbstractFeatures;
2553
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2554
+ };
2555
+ requiredRatio_visibleFieldsCount: {
2556
+ name: "requiredRatio,visibleFieldsCountScaled";
2557
+ parents: import("../..").AbstractFeatures;
2558
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2559
+ };
2560
+ requiredRatio_visibleIdentifiersCount: {
2561
+ name: "requiredRatio,visibleIdentifiersCountScaled";
2562
+ parents: import("../..").AbstractFeatures;
2563
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2564
+ };
2565
+ requiredRatio_visiblePasswordsCount: {
2566
+ name: "requiredRatio,visiblePasswordsCountScaled";
2567
+ parents: import("../..").AbstractFeatures;
2568
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2569
+ };
2570
+ requiredRatio_hiddenIdentifiersCount: {
2571
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
2572
+ parents: import("../..").AbstractFeatures;
2573
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2574
+ };
2575
+ requiredRatio_hiddenPasswordsCount: {
2576
+ name: "requiredRatio,hiddenPasswordsCountScaled";
2577
+ parents: import("../..").AbstractFeatures;
2578
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2579
+ };
2580
+ requiredRatio_multiAuthForm: {
2581
+ name: "requiredRatio,multiAuthForm";
2582
+ parents: import("../..").AbstractFeatures;
2583
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2584
+ };
2585
+ requiredRatio_multistepForm: {
2586
+ name: "requiredRatio,multistepForm";
2587
+ parents: import("../..").AbstractFeatures;
2588
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2589
+ };
2590
+ }>;
2591
+ recovery: import("../..").FeatureComputer<{
2592
+ __formInputMFACandidates: {
2593
+ name: "__formInputMFACandidates";
2594
+ parents: import("../..").AbstractFeatures;
2595
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2596
+ };
2597
+ __formMFA: {
2598
+ name: "__formMFA";
2599
+ parents: import("../..").AbstractFeatures;
2600
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2601
+ };
2602
+ __formOTPOutlier: {
2603
+ name: "__formOTPOutlier";
2604
+ parents: import("../..").AbstractFeatures;
2605
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2606
+ };
2607
+ __formTextAuthenticator: {
2608
+ name: "__formTextAuthenticator";
2609
+ parents: import("../..").AbstractFeatures;
2610
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2611
+ };
2612
+ __headingsOTPOutlier: {
2613
+ name: "__headingsOTPOutlier";
2614
+ parents: import("../..").AbstractFeatures;
2615
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2616
+ };
2617
+ __inputIterator: {
2618
+ name: "__inputIterator";
2619
+ parents: import("../..").AbstractFeatures;
2620
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
2621
+ };
2622
+ __linkOTPOutlier: {
2623
+ name: "__linkOTPOutlier";
2624
+ parents: import("../..").AbstractFeatures;
2625
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2626
+ };
2627
+ visibleFieldsCount: {
2628
+ name: "visibleFieldsCountScaled";
2629
+ parents: import("../..").AbstractFeatures;
2630
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2631
+ };
2632
+ visibleInputsCount: {
2633
+ name: "visibleInputsCountScaled";
2634
+ parents: import("../..").AbstractFeatures;
2635
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2636
+ };
2637
+ fieldsetsCount: {
2638
+ name: "fieldsetsCountScaled";
2639
+ parents: import("../..").AbstractFeatures;
2640
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2641
+ };
2642
+ textsCount: {
2643
+ name: "textsCountScaled";
2644
+ parents: import("../..").AbstractFeatures;
2645
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2646
+ };
2647
+ textareasCount: {
2648
+ name: "textareasCountScaled";
2649
+ parents: import("../..").AbstractFeatures;
2650
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2651
+ };
2652
+ selectsCount: {
2653
+ name: "selectsCountScaled";
2654
+ parents: import("../..").AbstractFeatures;
2655
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2656
+ };
2657
+ disabledCount: {
2658
+ name: "disabledCountScaled";
2659
+ parents: import("../..").AbstractFeatures;
2660
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2661
+ };
2662
+ radiosCount: {
2663
+ name: "radiosCountScaled";
2664
+ parents: import("../..").AbstractFeatures;
2665
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2666
+ };
2667
+ readOnlyCount: {
2668
+ name: "readOnlyCountScaled";
2669
+ parents: import("../..").AbstractFeatures;
2670
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2671
+ };
2672
+ formComplexity: {
2673
+ name: "formComplexityScaled";
2674
+ parents: import("../..").AbstractFeatures;
2675
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2676
+ };
2677
+ visibleIdentifiersCount: {
2678
+ name: "visibleIdentifiersCountScaled";
2679
+ parents: import("../..").AbstractFeatures;
2680
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2681
+ };
2682
+ hiddenIdentifiersCount: {
2683
+ name: "hiddenIdentifiersCountScaled";
2684
+ parents: import("../..").AbstractFeatures;
2685
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2686
+ };
2687
+ usernamesCount: {
2688
+ name: "usernamesCountScaled";
2689
+ parents: import("../..").AbstractFeatures;
2690
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2691
+ };
2692
+ emailsCount: {
2693
+ name: "emailsCountScaled";
2694
+ parents: import("../..").AbstractFeatures;
2695
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2696
+ };
2697
+ hiddenCount: {
2698
+ name: "hiddenCountScaled";
2699
+ parents: import("../..").AbstractFeatures;
2700
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2701
+ };
2702
+ hiddenPasswordsCount: {
2703
+ name: "hiddenPasswordsCountScaled";
2704
+ parents: import("../..").AbstractFeatures;
2705
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2706
+ };
2707
+ submitsCount: {
2708
+ name: "submitsCountScaled";
2709
+ parents: import("../..").AbstractFeatures;
2710
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2711
+ };
2712
+ identitiesCount: {
2713
+ name: "identitiesCountScaled";
2714
+ parents: import("../..").AbstractFeatures;
2715
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2716
+ };
2717
+ ccsCount: {
2718
+ name: "ccsCountScaled";
2719
+ parents: import("../..").AbstractFeatures;
2720
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2721
+ };
2722
+ hasTels: {
2723
+ name: "hasTels";
2724
+ parents: import("../..").AbstractFeatures;
2725
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2726
+ };
2727
+ hasOAuth: {
2728
+ name: "hasOAuth";
2729
+ parents: import("../..").AbstractFeatures;
2730
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2731
+ };
2732
+ hasCaptchas: {
2733
+ name: "hasCaptchas";
2734
+ parents: import("../..").AbstractFeatures;
2735
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2736
+ };
2737
+ hasFiles: {
2738
+ name: "hasFiles";
2739
+ parents: import("../..").AbstractFeatures;
2740
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2741
+ };
2742
+ hasDate: {
2743
+ name: "hasDate";
2744
+ parents: import("../..").AbstractFeatures;
2745
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2746
+ };
2747
+ hasNumber: {
2748
+ name: "hasNumber";
2749
+ parents: import("../..").AbstractFeatures;
2750
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2751
+ };
2752
+ oneVisibleField: {
2753
+ name: "oneVisibleField";
2754
+ parents: import("../..").AbstractFeatures;
2755
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2756
+ };
2757
+ twoVisibleFields: {
2758
+ name: "twoVisibleFields";
2759
+ parents: import("../..").AbstractFeatures;
2760
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2761
+ };
2762
+ threeOrMoreVisibleFields: {
2763
+ name: "threeOrMoreVisibleFields";
2764
+ parents: import("../..").AbstractFeatures;
2765
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2766
+ };
2767
+ noPasswords: {
2768
+ name: "noPasswords";
2769
+ parents: import("../..").AbstractFeatures;
2770
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2771
+ };
2772
+ onePassword: {
2773
+ name: "onePassword";
2774
+ parents: import("../..").AbstractFeatures;
2775
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2776
+ };
2777
+ twoPasswords: {
2778
+ name: "twoPasswords";
2779
+ parents: import("../..").AbstractFeatures;
2780
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2781
+ };
2782
+ threeOrMorePasswords: {
2783
+ name: "threeOrMorePasswords";
2784
+ parents: import("../..").AbstractFeatures;
2785
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2786
+ };
2787
+ noIdentifiers: {
2788
+ name: "noIdentifiers";
2789
+ parents: import("../..").AbstractFeatures;
2790
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2791
+ };
2792
+ oneIdentifier: {
2793
+ name: "oneIdentifier";
2794
+ parents: import("../..").AbstractFeatures;
2795
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2796
+ };
2797
+ twoIdentifiers: {
2798
+ name: "twoIdentifiers";
2799
+ parents: import("../..").AbstractFeatures;
2800
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2801
+ };
2802
+ threeOrMoreIdentifiers: {
2803
+ name: "threeOrMoreIdentifiers";
2804
+ parents: import("../..").AbstractFeatures;
2805
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2806
+ };
2807
+ autofocusedIsIdentifier: {
2808
+ name: "autofocusedIsIdentifier";
2809
+ parents: import("../..").AbstractFeatures;
2810
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2811
+ };
2812
+ autofocusedIsPassword: {
2813
+ name: "autofocusedIsPassword";
2814
+ parents: import("../..").AbstractFeatures;
2815
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2816
+ };
2817
+ visibleRatio: {
2818
+ name: "visibleRatio";
2819
+ parents: import("../..").AbstractFeatures;
2820
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2821
+ };
2822
+ inputRatio: {
2823
+ name: "inputRatio";
2824
+ parents: import("../..").AbstractFeatures;
2825
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2826
+ };
2827
+ hiddenRatio: {
2828
+ name: "hiddenRatio";
2829
+ parents: import("../..").AbstractFeatures;
2830
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2831
+ };
2832
+ identifierRatio: {
2833
+ name: "identifierRatio";
2834
+ parents: import("../..").AbstractFeatures;
2835
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2836
+ };
2837
+ emailRatio: {
2838
+ name: "emailRatio";
2839
+ parents: import("../..").AbstractFeatures;
2840
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2841
+ };
2842
+ usernameRatio: {
2843
+ name: "usernameRatio";
2844
+ parents: import("../..").AbstractFeatures;
2845
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2846
+ };
2847
+ passwordRatio: {
2848
+ name: "passwordRatio";
2849
+ parents: import("../..").AbstractFeatures;
2850
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2851
+ };
2852
+ disabledRatio: {
2853
+ name: "disabledRatio";
2854
+ parents: import("../..").AbstractFeatures;
2855
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2856
+ };
2857
+ requiredRatio: {
2858
+ name: "requiredRatio";
2859
+ parents: import("../..").AbstractFeatures;
2860
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2861
+ };
2862
+ checkboxRatio: {
2863
+ name: "checkboxRatio";
2864
+ parents: import("../..").AbstractFeatures;
2865
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2866
+ };
2867
+ hiddenIdentifierRatio: {
2868
+ name: "hiddenIdentifierRatio";
2869
+ parents: import("../..").AbstractFeatures;
2870
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2871
+ };
2872
+ hiddenPasswordRatio: {
2873
+ name: "hiddenPasswordRatio";
2874
+ parents: import("../..").AbstractFeatures;
2875
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
2876
+ };
2877
+ pageLogin: {
2878
+ name: "pageLogin";
2879
+ parents: import("../..").AbstractFeatures;
2880
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2881
+ };
2882
+ formTextLogin: {
2883
+ name: "formTextLogin";
2884
+ parents: import("../..").AbstractFeatures;
2885
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2886
+ };
2887
+ formAttrsLogin: {
2888
+ name: "formAttrsLogin";
2889
+ parents: import("../..").AbstractFeatures;
2890
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2891
+ };
2892
+ headingsLogin: {
2893
+ name: "headingsLogin";
2894
+ parents: import("../..").AbstractFeatures;
2895
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2896
+ };
2897
+ layoutLogin: {
2898
+ name: "layoutLogin";
2899
+ parents: import("../..").AbstractFeatures;
2900
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2901
+ };
2902
+ rememberMeCheckbox: {
2903
+ name: "rememberMeCheckbox";
2904
+ parents: import("../..").AbstractFeatures;
2905
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2906
+ };
2907
+ troubleLink: {
2908
+ name: "troubleLink";
2909
+ parents: import("../..").AbstractFeatures;
2910
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2911
+ };
2912
+ submitLogin: {
2913
+ name: "submitLogin";
2914
+ parents: import("../..").AbstractFeatures;
2915
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2916
+ };
2917
+ pageRegister: {
2918
+ name: "pageRegister";
2919
+ parents: import("../..").AbstractFeatures;
2920
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2921
+ };
2922
+ formTextRegister: {
2923
+ name: "formTextRegister";
2924
+ parents: import("../..").AbstractFeatures;
2925
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2926
+ };
2927
+ formAttrsRegister: {
2928
+ name: "formAttrsRegister";
2929
+ parents: import("../..").AbstractFeatures;
2930
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2931
+ };
2932
+ headingsRegister: {
2933
+ name: "headingsRegister";
2934
+ parents: import("../..").AbstractFeatures;
2935
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2936
+ };
2937
+ layoutRegister: {
2938
+ name: "layoutRegister";
2939
+ parents: import("../..").AbstractFeatures;
2940
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2941
+ };
2942
+ pwNewRegister: {
2943
+ name: "pwNewRegister";
2944
+ parents: import("../..").AbstractFeatures;
2945
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2946
+ };
2947
+ pwConfirmRegister: {
2948
+ name: "pwConfirmRegister";
2949
+ parents: import("../..").AbstractFeatures;
2950
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2951
+ };
2952
+ submitRegister: {
2953
+ name: "submitRegister";
2954
+ parents: import("../..").AbstractFeatures;
2955
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2956
+ };
2957
+ TOSRef: {
2958
+ name: "TOSRef";
2959
+ parents: import("../..").AbstractFeatures;
2960
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2961
+ };
2962
+ pagePwReset: {
2963
+ name: "pagePwReset";
2964
+ parents: import("../..").AbstractFeatures;
2965
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2966
+ };
2967
+ formTextPwReset: {
2968
+ name: "formTextPwReset";
2969
+ parents: import("../..").AbstractFeatures;
2970
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2971
+ };
2972
+ formAttrsPwReset: {
2973
+ name: "formAttrsPwReset";
2974
+ parents: import("../..").AbstractFeatures;
2975
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2976
+ };
2977
+ headingsPwReset: {
2978
+ name: "headingsPwReset";
2979
+ parents: import("../..").AbstractFeatures;
2980
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2981
+ };
2982
+ layoutPwReset: {
2983
+ name: "layoutPwReset";
2984
+ parents: import("../..").AbstractFeatures;
2985
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2986
+ };
2987
+ pageRecovery: {
2988
+ name: "pageRecovery";
2989
+ parents: import("../..").AbstractFeatures;
2990
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2991
+ };
2992
+ formTextRecovery: {
2993
+ name: "formTextRecovery";
2994
+ parents: import("../..").AbstractFeatures;
2995
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
2996
+ };
2997
+ formAttrsRecovery: {
2998
+ name: "formAttrsRecovery";
2999
+ parents: import("../..").AbstractFeatures;
3000
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3001
+ };
3002
+ headingsRecovery: {
3003
+ name: "headingsRecovery";
3004
+ parents: import("../..").AbstractFeatures;
3005
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3006
+ };
3007
+ layoutRecovery: {
3008
+ name: "layoutRecovery";
3009
+ parents: import("../..").AbstractFeatures;
3010
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3011
+ };
3012
+ identifierRecovery: {
3013
+ name: "identifierRecovery";
3014
+ parents: import("../..").AbstractFeatures;
3015
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3016
+ };
3017
+ submitRecovery: {
3018
+ name: "submitRecovery";
3019
+ parents: import("../..").AbstractFeatures;
3020
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3021
+ };
3022
+ formTextMFA: {
3023
+ name: "formTextMFA";
3024
+ parents: import("../..").AbstractFeatures;
3025
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3026
+ };
3027
+ formAttrsMFA: {
3028
+ name: "formAttrsMFA";
3029
+ parents: import("../..").AbstractFeatures;
3030
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3031
+ };
3032
+ inputsMFA: {
3033
+ name: "inputsMFA";
3034
+ parents: import("../..").AbstractFeatures;
3035
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3036
+ };
3037
+ newsletterForm: {
3038
+ name: "newsletterForm";
3039
+ parents: import("../..").AbstractFeatures;
3040
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3041
+ };
3042
+ searchForm: {
3043
+ name: "searchForm";
3044
+ parents: import("../..").AbstractFeatures;
3045
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3046
+ };
3047
+ multistepForm: {
3048
+ name: "multistepForm";
3049
+ parents: import("../..").AbstractFeatures;
3050
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3051
+ };
3052
+ multiAuthForm: {
3053
+ name: "multiAuthForm";
3054
+ parents: import("../..").AbstractFeatures;
3055
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3056
+ };
3057
+ multistepForm_multiAuthForm: {
3058
+ name: "multistepForm,multiAuthForm";
3059
+ parents: import("../..").AbstractFeatures;
3060
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3061
+ };
3062
+ visibleRatio_visibleFieldsCount: {
3063
+ name: "visibleRatio,visibleFieldsCountScaled";
3064
+ parents: import("../..").AbstractFeatures;
3065
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3066
+ };
3067
+ visibleRatio_visibleIdentifiersCount: {
3068
+ name: "visibleRatio,visibleIdentifiersCountScaled";
3069
+ parents: import("../..").AbstractFeatures;
3070
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3071
+ };
3072
+ visibleRatio_visiblePasswordsCount: {
3073
+ name: "visibleRatio,visiblePasswordsCountScaled";
3074
+ parents: import("../..").AbstractFeatures;
3075
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3076
+ };
3077
+ visibleRatio_hiddenIdentifiersCount: {
3078
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
3079
+ parents: import("../..").AbstractFeatures;
3080
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3081
+ };
3082
+ visibleRatio_hiddenPasswordsCount: {
3083
+ name: "visibleRatio,hiddenPasswordsCountScaled";
3084
+ parents: import("../..").AbstractFeatures;
3085
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3086
+ };
3087
+ visibleRatio_multiAuthForm: {
3088
+ name: "visibleRatio,multiAuthForm";
3089
+ parents: import("../..").AbstractFeatures;
3090
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3091
+ };
3092
+ visibleRatio_multistepForm: {
3093
+ name: "visibleRatio,multistepForm";
3094
+ parents: import("../..").AbstractFeatures;
3095
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3096
+ };
3097
+ identifierRatio_visibleFieldsCount: {
3098
+ name: "identifierRatio,visibleFieldsCountScaled";
3099
+ parents: import("../..").AbstractFeatures;
3100
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3101
+ };
3102
+ identifierRatio_visibleIdentifiersCount: {
3103
+ name: "identifierRatio,visibleIdentifiersCountScaled";
3104
+ parents: import("../..").AbstractFeatures;
3105
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3106
+ };
3107
+ identifierRatio_visiblePasswordsCount: {
3108
+ name: "identifierRatio,visiblePasswordsCountScaled";
3109
+ parents: import("../..").AbstractFeatures;
3110
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3111
+ };
3112
+ identifierRatio_hiddenIdentifiersCount: {
3113
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
3114
+ parents: import("../..").AbstractFeatures;
3115
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3116
+ };
3117
+ identifierRatio_hiddenPasswordsCount: {
3118
+ name: "identifierRatio,hiddenPasswordsCountScaled";
3119
+ parents: import("../..").AbstractFeatures;
3120
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3121
+ };
3122
+ identifierRatio_multiAuthForm: {
3123
+ name: "identifierRatio,multiAuthForm";
3124
+ parents: import("../..").AbstractFeatures;
3125
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3126
+ };
3127
+ identifierRatio_multistepForm: {
3128
+ name: "identifierRatio,multistepForm";
3129
+ parents: import("../..").AbstractFeatures;
3130
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3131
+ };
3132
+ passwordRatio_visibleFieldsCount: {
3133
+ name: "passwordRatio,visibleFieldsCountScaled";
3134
+ parents: import("../..").AbstractFeatures;
3135
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3136
+ };
3137
+ passwordRatio_visibleIdentifiersCount: {
3138
+ name: "passwordRatio,visibleIdentifiersCountScaled";
3139
+ parents: import("../..").AbstractFeatures;
3140
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3141
+ };
3142
+ passwordRatio_visiblePasswordsCount: {
3143
+ name: "passwordRatio,visiblePasswordsCountScaled";
3144
+ parents: import("../..").AbstractFeatures;
3145
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3146
+ };
3147
+ passwordRatio_hiddenIdentifiersCount: {
3148
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
3149
+ parents: import("../..").AbstractFeatures;
3150
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3151
+ };
3152
+ passwordRatio_hiddenPasswordsCount: {
3153
+ name: "passwordRatio,hiddenPasswordsCountScaled";
3154
+ parents: import("../..").AbstractFeatures;
3155
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3156
+ };
3157
+ passwordRatio_multiAuthForm: {
3158
+ name: "passwordRatio,multiAuthForm";
3159
+ parents: import("../..").AbstractFeatures;
3160
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3161
+ };
3162
+ passwordRatio_multistepForm: {
3163
+ name: "passwordRatio,multistepForm";
3164
+ parents: import("../..").AbstractFeatures;
3165
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3166
+ };
3167
+ requiredRatio_visibleFieldsCount: {
3168
+ name: "requiredRatio,visibleFieldsCountScaled";
3169
+ parents: import("../..").AbstractFeatures;
3170
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3171
+ };
3172
+ requiredRatio_visibleIdentifiersCount: {
3173
+ name: "requiredRatio,visibleIdentifiersCountScaled";
3174
+ parents: import("../..").AbstractFeatures;
3175
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3176
+ };
3177
+ requiredRatio_visiblePasswordsCount: {
3178
+ name: "requiredRatio,visiblePasswordsCountScaled";
3179
+ parents: import("../..").AbstractFeatures;
3180
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3181
+ };
3182
+ requiredRatio_hiddenIdentifiersCount: {
3183
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
3184
+ parents: import("../..").AbstractFeatures;
3185
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3186
+ };
3187
+ requiredRatio_hiddenPasswordsCount: {
3188
+ name: "requiredRatio,hiddenPasswordsCountScaled";
3189
+ parents: import("../..").AbstractFeatures;
3190
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3191
+ };
3192
+ requiredRatio_multiAuthForm: {
3193
+ name: "requiredRatio,multiAuthForm";
3194
+ parents: import("../..").AbstractFeatures;
3195
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3196
+ };
3197
+ requiredRatio_multistepForm: {
3198
+ name: "requiredRatio,multistepForm";
3199
+ parents: import("../..").AbstractFeatures;
3200
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3201
+ };
3202
+ }>;
3203
+ register: import("../..").FeatureComputer<{
3204
+ __formInputMFACandidates: {
3205
+ name: "__formInputMFACandidates";
3206
+ parents: import("../..").AbstractFeatures;
3207
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3208
+ };
3209
+ __formMFA: {
3210
+ name: "__formMFA";
3211
+ parents: import("../..").AbstractFeatures;
3212
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3213
+ };
3214
+ __formOTPOutlier: {
3215
+ name: "__formOTPOutlier";
3216
+ parents: import("../..").AbstractFeatures;
3217
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3218
+ };
3219
+ __formTextAuthenticator: {
3220
+ name: "__formTextAuthenticator";
3221
+ parents: import("../..").AbstractFeatures;
3222
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3223
+ };
3224
+ __headingsOTPOutlier: {
3225
+ name: "__headingsOTPOutlier";
3226
+ parents: import("../..").AbstractFeatures;
3227
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3228
+ };
3229
+ __inputIterator: {
3230
+ name: "__inputIterator";
3231
+ parents: import("../..").AbstractFeatures;
3232
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
3233
+ };
3234
+ __linkOTPOutlier: {
3235
+ name: "__linkOTPOutlier";
3236
+ parents: import("../..").AbstractFeatures;
3237
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3238
+ };
3239
+ visibleFieldsCount: {
3240
+ name: "visibleFieldsCountScaled";
3241
+ parents: import("../..").AbstractFeatures;
3242
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3243
+ };
3244
+ visibleInputsCount: {
3245
+ name: "visibleInputsCountScaled";
3246
+ parents: import("../..").AbstractFeatures;
3247
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3248
+ };
3249
+ fieldsetsCount: {
3250
+ name: "fieldsetsCountScaled";
3251
+ parents: import("../..").AbstractFeatures;
3252
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3253
+ };
3254
+ textsCount: {
3255
+ name: "textsCountScaled";
3256
+ parents: import("../..").AbstractFeatures;
3257
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3258
+ };
3259
+ textareasCount: {
3260
+ name: "textareasCountScaled";
3261
+ parents: import("../..").AbstractFeatures;
3262
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3263
+ };
3264
+ selectsCount: {
3265
+ name: "selectsCountScaled";
3266
+ parents: import("../..").AbstractFeatures;
3267
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3268
+ };
3269
+ disabledCount: {
3270
+ name: "disabledCountScaled";
3271
+ parents: import("../..").AbstractFeatures;
3272
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3273
+ };
3274
+ radiosCount: {
3275
+ name: "radiosCountScaled";
3276
+ parents: import("../..").AbstractFeatures;
3277
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3278
+ };
3279
+ readOnlyCount: {
3280
+ name: "readOnlyCountScaled";
3281
+ parents: import("../..").AbstractFeatures;
3282
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3283
+ };
3284
+ formComplexity: {
3285
+ name: "formComplexityScaled";
3286
+ parents: import("../..").AbstractFeatures;
3287
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3288
+ };
3289
+ visibleIdentifiersCount: {
3290
+ name: "visibleIdentifiersCountScaled";
3291
+ parents: import("../..").AbstractFeatures;
3292
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3293
+ };
3294
+ hiddenIdentifiersCount: {
3295
+ name: "hiddenIdentifiersCountScaled";
3296
+ parents: import("../..").AbstractFeatures;
3297
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3298
+ };
3299
+ usernamesCount: {
3300
+ name: "usernamesCountScaled";
3301
+ parents: import("../..").AbstractFeatures;
3302
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3303
+ };
3304
+ emailsCount: {
3305
+ name: "emailsCountScaled";
3306
+ parents: import("../..").AbstractFeatures;
3307
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3308
+ };
3309
+ hiddenCount: {
3310
+ name: "hiddenCountScaled";
3311
+ parents: import("../..").AbstractFeatures;
3312
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3313
+ };
3314
+ hiddenPasswordsCount: {
3315
+ name: "hiddenPasswordsCountScaled";
3316
+ parents: import("../..").AbstractFeatures;
3317
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3318
+ };
3319
+ submitsCount: {
3320
+ name: "submitsCountScaled";
3321
+ parents: import("../..").AbstractFeatures;
3322
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3323
+ };
3324
+ identitiesCount: {
3325
+ name: "identitiesCountScaled";
3326
+ parents: import("../..").AbstractFeatures;
3327
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3328
+ };
3329
+ ccsCount: {
3330
+ name: "ccsCountScaled";
3331
+ parents: import("../..").AbstractFeatures;
3332
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3333
+ };
3334
+ hasTels: {
3335
+ name: "hasTels";
3336
+ parents: import("../..").AbstractFeatures;
3337
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3338
+ };
3339
+ hasOAuth: {
3340
+ name: "hasOAuth";
3341
+ parents: import("../..").AbstractFeatures;
3342
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3343
+ };
3344
+ hasCaptchas: {
3345
+ name: "hasCaptchas";
3346
+ parents: import("../..").AbstractFeatures;
3347
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3348
+ };
3349
+ hasFiles: {
3350
+ name: "hasFiles";
3351
+ parents: import("../..").AbstractFeatures;
3352
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3353
+ };
3354
+ hasDate: {
3355
+ name: "hasDate";
3356
+ parents: import("../..").AbstractFeatures;
3357
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3358
+ };
3359
+ hasNumber: {
3360
+ name: "hasNumber";
3361
+ parents: import("../..").AbstractFeatures;
3362
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3363
+ };
3364
+ oneVisibleField: {
3365
+ name: "oneVisibleField";
3366
+ parents: import("../..").AbstractFeatures;
3367
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3368
+ };
3369
+ twoVisibleFields: {
3370
+ name: "twoVisibleFields";
3371
+ parents: import("../..").AbstractFeatures;
3372
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3373
+ };
3374
+ threeOrMoreVisibleFields: {
3375
+ name: "threeOrMoreVisibleFields";
3376
+ parents: import("../..").AbstractFeatures;
3377
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3378
+ };
3379
+ noPasswords: {
3380
+ name: "noPasswords";
3381
+ parents: import("../..").AbstractFeatures;
3382
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3383
+ };
3384
+ onePassword: {
3385
+ name: "onePassword";
3386
+ parents: import("../..").AbstractFeatures;
3387
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3388
+ };
3389
+ twoPasswords: {
3390
+ name: "twoPasswords";
3391
+ parents: import("../..").AbstractFeatures;
3392
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3393
+ };
3394
+ threeOrMorePasswords: {
3395
+ name: "threeOrMorePasswords";
3396
+ parents: import("../..").AbstractFeatures;
3397
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3398
+ };
3399
+ noIdentifiers: {
3400
+ name: "noIdentifiers";
3401
+ parents: import("../..").AbstractFeatures;
3402
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3403
+ };
3404
+ oneIdentifier: {
3405
+ name: "oneIdentifier";
3406
+ parents: import("../..").AbstractFeatures;
3407
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3408
+ };
3409
+ twoIdentifiers: {
3410
+ name: "twoIdentifiers";
3411
+ parents: import("../..").AbstractFeatures;
3412
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3413
+ };
3414
+ threeOrMoreIdentifiers: {
3415
+ name: "threeOrMoreIdentifiers";
3416
+ parents: import("../..").AbstractFeatures;
3417
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3418
+ };
3419
+ autofocusedIsIdentifier: {
3420
+ name: "autofocusedIsIdentifier";
3421
+ parents: import("../..").AbstractFeatures;
3422
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3423
+ };
3424
+ autofocusedIsPassword: {
3425
+ name: "autofocusedIsPassword";
3426
+ parents: import("../..").AbstractFeatures;
3427
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3428
+ };
3429
+ visibleRatio: {
3430
+ name: "visibleRatio";
3431
+ parents: import("../..").AbstractFeatures;
3432
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3433
+ };
3434
+ inputRatio: {
3435
+ name: "inputRatio";
3436
+ parents: import("../..").AbstractFeatures;
3437
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3438
+ };
3439
+ hiddenRatio: {
3440
+ name: "hiddenRatio";
3441
+ parents: import("../..").AbstractFeatures;
3442
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3443
+ };
3444
+ identifierRatio: {
3445
+ name: "identifierRatio";
3446
+ parents: import("../..").AbstractFeatures;
3447
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3448
+ };
3449
+ emailRatio: {
3450
+ name: "emailRatio";
3451
+ parents: import("../..").AbstractFeatures;
3452
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3453
+ };
3454
+ usernameRatio: {
3455
+ name: "usernameRatio";
3456
+ parents: import("../..").AbstractFeatures;
3457
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3458
+ };
3459
+ passwordRatio: {
3460
+ name: "passwordRatio";
3461
+ parents: import("../..").AbstractFeatures;
3462
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3463
+ };
3464
+ disabledRatio: {
3465
+ name: "disabledRatio";
3466
+ parents: import("../..").AbstractFeatures;
3467
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3468
+ };
3469
+ requiredRatio: {
3470
+ name: "requiredRatio";
3471
+ parents: import("../..").AbstractFeatures;
3472
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3473
+ };
3474
+ checkboxRatio: {
3475
+ name: "checkboxRatio";
3476
+ parents: import("../..").AbstractFeatures;
3477
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3478
+ };
3479
+ hiddenIdentifierRatio: {
3480
+ name: "hiddenIdentifierRatio";
3481
+ parents: import("../..").AbstractFeatures;
3482
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3483
+ };
3484
+ hiddenPasswordRatio: {
3485
+ name: "hiddenPasswordRatio";
3486
+ parents: import("../..").AbstractFeatures;
3487
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3488
+ };
3489
+ pageLogin: {
3490
+ name: "pageLogin";
3491
+ parents: import("../..").AbstractFeatures;
3492
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3493
+ };
3494
+ formTextLogin: {
3495
+ name: "formTextLogin";
3496
+ parents: import("../..").AbstractFeatures;
3497
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3498
+ };
3499
+ formAttrsLogin: {
3500
+ name: "formAttrsLogin";
3501
+ parents: import("../..").AbstractFeatures;
3502
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3503
+ };
3504
+ headingsLogin: {
3505
+ name: "headingsLogin";
3506
+ parents: import("../..").AbstractFeatures;
3507
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3508
+ };
3509
+ layoutLogin: {
3510
+ name: "layoutLogin";
3511
+ parents: import("../..").AbstractFeatures;
3512
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3513
+ };
3514
+ rememberMeCheckbox: {
3515
+ name: "rememberMeCheckbox";
3516
+ parents: import("../..").AbstractFeatures;
3517
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3518
+ };
3519
+ troubleLink: {
3520
+ name: "troubleLink";
3521
+ parents: import("../..").AbstractFeatures;
3522
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3523
+ };
3524
+ submitLogin: {
3525
+ name: "submitLogin";
3526
+ parents: import("../..").AbstractFeatures;
3527
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3528
+ };
3529
+ pageRegister: {
3530
+ name: "pageRegister";
3531
+ parents: import("../..").AbstractFeatures;
3532
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3533
+ };
3534
+ formTextRegister: {
3535
+ name: "formTextRegister";
3536
+ parents: import("../..").AbstractFeatures;
3537
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3538
+ };
3539
+ formAttrsRegister: {
3540
+ name: "formAttrsRegister";
3541
+ parents: import("../..").AbstractFeatures;
3542
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3543
+ };
3544
+ headingsRegister: {
3545
+ name: "headingsRegister";
3546
+ parents: import("../..").AbstractFeatures;
3547
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3548
+ };
3549
+ layoutRegister: {
3550
+ name: "layoutRegister";
3551
+ parents: import("../..").AbstractFeatures;
3552
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3553
+ };
3554
+ pwNewRegister: {
3555
+ name: "pwNewRegister";
3556
+ parents: import("../..").AbstractFeatures;
3557
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3558
+ };
3559
+ pwConfirmRegister: {
3560
+ name: "pwConfirmRegister";
3561
+ parents: import("../..").AbstractFeatures;
3562
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3563
+ };
3564
+ submitRegister: {
3565
+ name: "submitRegister";
3566
+ parents: import("../..").AbstractFeatures;
3567
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3568
+ };
3569
+ TOSRef: {
3570
+ name: "TOSRef";
3571
+ parents: import("../..").AbstractFeatures;
3572
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3573
+ };
3574
+ pagePwReset: {
3575
+ name: "pagePwReset";
3576
+ parents: import("../..").AbstractFeatures;
3577
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3578
+ };
3579
+ formTextPwReset: {
3580
+ name: "formTextPwReset";
3581
+ parents: import("../..").AbstractFeatures;
3582
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3583
+ };
3584
+ formAttrsPwReset: {
3585
+ name: "formAttrsPwReset";
3586
+ parents: import("../..").AbstractFeatures;
3587
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3588
+ };
3589
+ headingsPwReset: {
3590
+ name: "headingsPwReset";
3591
+ parents: import("../..").AbstractFeatures;
3592
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3593
+ };
3594
+ layoutPwReset: {
3595
+ name: "layoutPwReset";
3596
+ parents: import("../..").AbstractFeatures;
3597
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3598
+ };
3599
+ pageRecovery: {
3600
+ name: "pageRecovery";
3601
+ parents: import("../..").AbstractFeatures;
3602
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3603
+ };
3604
+ formTextRecovery: {
3605
+ name: "formTextRecovery";
3606
+ parents: import("../..").AbstractFeatures;
3607
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3608
+ };
3609
+ formAttrsRecovery: {
3610
+ name: "formAttrsRecovery";
3611
+ parents: import("../..").AbstractFeatures;
3612
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3613
+ };
3614
+ headingsRecovery: {
3615
+ name: "headingsRecovery";
3616
+ parents: import("../..").AbstractFeatures;
3617
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3618
+ };
3619
+ layoutRecovery: {
3620
+ name: "layoutRecovery";
3621
+ parents: import("../..").AbstractFeatures;
3622
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3623
+ };
3624
+ identifierRecovery: {
3625
+ name: "identifierRecovery";
3626
+ parents: import("../..").AbstractFeatures;
3627
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3628
+ };
3629
+ submitRecovery: {
3630
+ name: "submitRecovery";
3631
+ parents: import("../..").AbstractFeatures;
3632
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3633
+ };
3634
+ formTextMFA: {
3635
+ name: "formTextMFA";
3636
+ parents: import("../..").AbstractFeatures;
3637
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3638
+ };
3639
+ formAttrsMFA: {
3640
+ name: "formAttrsMFA";
3641
+ parents: import("../..").AbstractFeatures;
3642
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3643
+ };
3644
+ inputsMFA: {
3645
+ name: "inputsMFA";
3646
+ parents: import("../..").AbstractFeatures;
3647
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3648
+ };
3649
+ newsletterForm: {
3650
+ name: "newsletterForm";
3651
+ parents: import("../..").AbstractFeatures;
3652
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3653
+ };
3654
+ searchForm: {
3655
+ name: "searchForm";
3656
+ parents: import("../..").AbstractFeatures;
3657
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3658
+ };
3659
+ multistepForm: {
3660
+ name: "multistepForm";
3661
+ parents: import("../..").AbstractFeatures;
3662
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3663
+ };
3664
+ multiAuthForm: {
3665
+ name: "multiAuthForm";
3666
+ parents: import("../..").AbstractFeatures;
3667
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3668
+ };
3669
+ multistepForm_multiAuthForm: {
3670
+ name: "multistepForm,multiAuthForm";
3671
+ parents: import("../..").AbstractFeatures;
3672
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3673
+ };
3674
+ visibleRatio_visibleFieldsCount: {
3675
+ name: "visibleRatio,visibleFieldsCountScaled";
3676
+ parents: import("../..").AbstractFeatures;
3677
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3678
+ };
3679
+ visibleRatio_visibleIdentifiersCount: {
3680
+ name: "visibleRatio,visibleIdentifiersCountScaled";
3681
+ parents: import("../..").AbstractFeatures;
3682
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3683
+ };
3684
+ visibleRatio_visiblePasswordsCount: {
3685
+ name: "visibleRatio,visiblePasswordsCountScaled";
3686
+ parents: import("../..").AbstractFeatures;
3687
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3688
+ };
3689
+ visibleRatio_hiddenIdentifiersCount: {
3690
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
3691
+ parents: import("../..").AbstractFeatures;
3692
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3693
+ };
3694
+ visibleRatio_hiddenPasswordsCount: {
3695
+ name: "visibleRatio,hiddenPasswordsCountScaled";
3696
+ parents: import("../..").AbstractFeatures;
3697
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3698
+ };
3699
+ visibleRatio_multiAuthForm: {
3700
+ name: "visibleRatio,multiAuthForm";
3701
+ parents: import("../..").AbstractFeatures;
3702
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3703
+ };
3704
+ visibleRatio_multistepForm: {
3705
+ name: "visibleRatio,multistepForm";
3706
+ parents: import("../..").AbstractFeatures;
3707
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3708
+ };
3709
+ identifierRatio_visibleFieldsCount: {
3710
+ name: "identifierRatio,visibleFieldsCountScaled";
3711
+ parents: import("../..").AbstractFeatures;
3712
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3713
+ };
3714
+ identifierRatio_visibleIdentifiersCount: {
3715
+ name: "identifierRatio,visibleIdentifiersCountScaled";
3716
+ parents: import("../..").AbstractFeatures;
3717
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3718
+ };
3719
+ identifierRatio_visiblePasswordsCount: {
3720
+ name: "identifierRatio,visiblePasswordsCountScaled";
3721
+ parents: import("../..").AbstractFeatures;
3722
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3723
+ };
3724
+ identifierRatio_hiddenIdentifiersCount: {
3725
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
3726
+ parents: import("../..").AbstractFeatures;
3727
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3728
+ };
3729
+ identifierRatio_hiddenPasswordsCount: {
3730
+ name: "identifierRatio,hiddenPasswordsCountScaled";
3731
+ parents: import("../..").AbstractFeatures;
3732
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3733
+ };
3734
+ identifierRatio_multiAuthForm: {
3735
+ name: "identifierRatio,multiAuthForm";
3736
+ parents: import("../..").AbstractFeatures;
3737
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3738
+ };
3739
+ identifierRatio_multistepForm: {
3740
+ name: "identifierRatio,multistepForm";
3741
+ parents: import("../..").AbstractFeatures;
3742
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3743
+ };
3744
+ passwordRatio_visibleFieldsCount: {
3745
+ name: "passwordRatio,visibleFieldsCountScaled";
3746
+ parents: import("../..").AbstractFeatures;
3747
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3748
+ };
3749
+ passwordRatio_visibleIdentifiersCount: {
3750
+ name: "passwordRatio,visibleIdentifiersCountScaled";
3751
+ parents: import("../..").AbstractFeatures;
3752
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3753
+ };
3754
+ passwordRatio_visiblePasswordsCount: {
3755
+ name: "passwordRatio,visiblePasswordsCountScaled";
3756
+ parents: import("../..").AbstractFeatures;
3757
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3758
+ };
3759
+ passwordRatio_hiddenIdentifiersCount: {
3760
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
3761
+ parents: import("../..").AbstractFeatures;
3762
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3763
+ };
3764
+ passwordRatio_hiddenPasswordsCount: {
3765
+ name: "passwordRatio,hiddenPasswordsCountScaled";
3766
+ parents: import("../..").AbstractFeatures;
3767
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3768
+ };
3769
+ passwordRatio_multiAuthForm: {
3770
+ name: "passwordRatio,multiAuthForm";
3771
+ parents: import("../..").AbstractFeatures;
3772
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3773
+ };
3774
+ passwordRatio_multistepForm: {
3775
+ name: "passwordRatio,multistepForm";
3776
+ parents: import("../..").AbstractFeatures;
3777
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3778
+ };
3779
+ requiredRatio_visibleFieldsCount: {
3780
+ name: "requiredRatio,visibleFieldsCountScaled";
3781
+ parents: import("../..").AbstractFeatures;
3782
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3783
+ };
3784
+ requiredRatio_visibleIdentifiersCount: {
3785
+ name: "requiredRatio,visibleIdentifiersCountScaled";
3786
+ parents: import("../..").AbstractFeatures;
3787
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3788
+ };
3789
+ requiredRatio_visiblePasswordsCount: {
3790
+ name: "requiredRatio,visiblePasswordsCountScaled";
3791
+ parents: import("../..").AbstractFeatures;
3792
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3793
+ };
3794
+ requiredRatio_hiddenIdentifiersCount: {
3795
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
3796
+ parents: import("../..").AbstractFeatures;
3797
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3798
+ };
3799
+ requiredRatio_hiddenPasswordsCount: {
3800
+ name: "requiredRatio,hiddenPasswordsCountScaled";
3801
+ parents: import("../..").AbstractFeatures;
3802
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3803
+ };
3804
+ requiredRatio_multiAuthForm: {
3805
+ name: "requiredRatio,multiAuthForm";
3806
+ parents: import("../..").AbstractFeatures;
3807
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3808
+ };
3809
+ requiredRatio_multistepForm: {
3810
+ name: "requiredRatio,multistepForm";
3811
+ parents: import("../..").AbstractFeatures;
3812
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3813
+ };
3814
+ }>;
3815
+ "password-change": import("../..").FeatureComputer<{
3816
+ __formInputMFACandidates: {
3817
+ name: "__formInputMFACandidates";
3818
+ parents: import("../..").AbstractFeatures;
3819
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3820
+ };
3821
+ __formMFA: {
3822
+ name: "__formMFA";
3823
+ parents: import("../..").AbstractFeatures;
3824
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3825
+ };
3826
+ __formOTPOutlier: {
3827
+ name: "__formOTPOutlier";
3828
+ parents: import("../..").AbstractFeatures;
3829
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3830
+ };
3831
+ __formTextAuthenticator: {
3832
+ name: "__formTextAuthenticator";
3833
+ parents: import("../..").AbstractFeatures;
3834
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3835
+ };
3836
+ __headingsOTPOutlier: {
3837
+ name: "__headingsOTPOutlier";
3838
+ parents: import("../..").AbstractFeatures;
3839
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3840
+ };
3841
+ __inputIterator: {
3842
+ name: "__inputIterator";
3843
+ parents: import("../..").AbstractFeatures;
3844
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("../..").FormInputIterator;
3845
+ };
3846
+ __linkOTPOutlier: {
3847
+ name: "__linkOTPOutlier";
3848
+ parents: import("../..").AbstractFeatures;
3849
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3850
+ };
3851
+ visibleFieldsCount: {
3852
+ name: "visibleFieldsCountScaled";
3853
+ parents: import("../..").AbstractFeatures;
3854
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3855
+ };
3856
+ visibleInputsCount: {
3857
+ name: "visibleInputsCountScaled";
3858
+ parents: import("../..").AbstractFeatures;
3859
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3860
+ };
3861
+ fieldsetsCount: {
3862
+ name: "fieldsetsCountScaled";
3863
+ parents: import("../..").AbstractFeatures;
3864
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3865
+ };
3866
+ textsCount: {
3867
+ name: "textsCountScaled";
3868
+ parents: import("../..").AbstractFeatures;
3869
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3870
+ };
3871
+ textareasCount: {
3872
+ name: "textareasCountScaled";
3873
+ parents: import("../..").AbstractFeatures;
3874
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3875
+ };
3876
+ selectsCount: {
3877
+ name: "selectsCountScaled";
3878
+ parents: import("../..").AbstractFeatures;
3879
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3880
+ };
3881
+ disabledCount: {
3882
+ name: "disabledCountScaled";
3883
+ parents: import("../..").AbstractFeatures;
3884
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3885
+ };
3886
+ radiosCount: {
3887
+ name: "radiosCountScaled";
3888
+ parents: import("../..").AbstractFeatures;
3889
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3890
+ };
3891
+ readOnlyCount: {
3892
+ name: "readOnlyCountScaled";
3893
+ parents: import("../..").AbstractFeatures;
3894
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3895
+ };
3896
+ formComplexity: {
3897
+ name: "formComplexityScaled";
3898
+ parents: import("../..").AbstractFeatures;
3899
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3900
+ };
3901
+ visibleIdentifiersCount: {
3902
+ name: "visibleIdentifiersCountScaled";
3903
+ parents: import("../..").AbstractFeatures;
3904
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3905
+ };
3906
+ hiddenIdentifiersCount: {
3907
+ name: "hiddenIdentifiersCountScaled";
3908
+ parents: import("../..").AbstractFeatures;
3909
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3910
+ };
3911
+ usernamesCount: {
3912
+ name: "usernamesCountScaled";
3913
+ parents: import("../..").AbstractFeatures;
3914
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3915
+ };
3916
+ emailsCount: {
3917
+ name: "emailsCountScaled";
3918
+ parents: import("../..").AbstractFeatures;
3919
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3920
+ };
3921
+ hiddenCount: {
3922
+ name: "hiddenCountScaled";
3923
+ parents: import("../..").AbstractFeatures;
3924
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3925
+ };
3926
+ hiddenPasswordsCount: {
3927
+ name: "hiddenPasswordsCountScaled";
3928
+ parents: import("../..").AbstractFeatures;
3929
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3930
+ };
3931
+ submitsCount: {
3932
+ name: "submitsCountScaled";
3933
+ parents: import("../..").AbstractFeatures;
3934
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3935
+ };
3936
+ identitiesCount: {
3937
+ name: "identitiesCountScaled";
3938
+ parents: import("../..").AbstractFeatures;
3939
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3940
+ };
3941
+ ccsCount: {
3942
+ name: "ccsCountScaled";
3943
+ parents: import("../..").AbstractFeatures;
3944
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3945
+ };
3946
+ hasTels: {
3947
+ name: "hasTels";
3948
+ parents: import("../..").AbstractFeatures;
3949
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3950
+ };
3951
+ hasOAuth: {
3952
+ name: "hasOAuth";
3953
+ parents: import("../..").AbstractFeatures;
3954
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3955
+ };
3956
+ hasCaptchas: {
3957
+ name: "hasCaptchas";
3958
+ parents: import("../..").AbstractFeatures;
3959
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3960
+ };
3961
+ hasFiles: {
3962
+ name: "hasFiles";
3963
+ parents: import("../..").AbstractFeatures;
3964
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3965
+ };
3966
+ hasDate: {
3967
+ name: "hasDate";
3968
+ parents: import("../..").AbstractFeatures;
3969
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3970
+ };
3971
+ hasNumber: {
3972
+ name: "hasNumber";
3973
+ parents: import("../..").AbstractFeatures;
3974
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3975
+ };
3976
+ oneVisibleField: {
3977
+ name: "oneVisibleField";
3978
+ parents: import("../..").AbstractFeatures;
3979
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3980
+ };
3981
+ twoVisibleFields: {
3982
+ name: "twoVisibleFields";
3983
+ parents: import("../..").AbstractFeatures;
3984
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3985
+ };
3986
+ threeOrMoreVisibleFields: {
3987
+ name: "threeOrMoreVisibleFields";
3988
+ parents: import("../..").AbstractFeatures;
3989
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3990
+ };
3991
+ noPasswords: {
3992
+ name: "noPasswords";
3993
+ parents: import("../..").AbstractFeatures;
3994
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3995
+ };
3996
+ onePassword: {
3997
+ name: "onePassword";
3998
+ parents: import("../..").AbstractFeatures;
3999
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4000
+ };
4001
+ twoPasswords: {
4002
+ name: "twoPasswords";
4003
+ parents: import("../..").AbstractFeatures;
4004
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4005
+ };
4006
+ threeOrMorePasswords: {
4007
+ name: "threeOrMorePasswords";
4008
+ parents: import("../..").AbstractFeatures;
4009
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4010
+ };
4011
+ noIdentifiers: {
4012
+ name: "noIdentifiers";
4013
+ parents: import("../..").AbstractFeatures;
4014
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4015
+ };
4016
+ oneIdentifier: {
4017
+ name: "oneIdentifier";
4018
+ parents: import("../..").AbstractFeatures;
4019
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4020
+ };
4021
+ twoIdentifiers: {
4022
+ name: "twoIdentifiers";
4023
+ parents: import("../..").AbstractFeatures;
4024
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4025
+ };
4026
+ threeOrMoreIdentifiers: {
4027
+ name: "threeOrMoreIdentifiers";
4028
+ parents: import("../..").AbstractFeatures;
4029
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4030
+ };
4031
+ autofocusedIsIdentifier: {
4032
+ name: "autofocusedIsIdentifier";
4033
+ parents: import("../..").AbstractFeatures;
4034
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4035
+ };
4036
+ autofocusedIsPassword: {
4037
+ name: "autofocusedIsPassword";
4038
+ parents: import("../..").AbstractFeatures;
4039
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4040
+ };
4041
+ visibleRatio: {
4042
+ name: "visibleRatio";
4043
+ parents: import("../..").AbstractFeatures;
4044
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4045
+ };
4046
+ inputRatio: {
4047
+ name: "inputRatio";
4048
+ parents: import("../..").AbstractFeatures;
4049
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4050
+ };
4051
+ hiddenRatio: {
4052
+ name: "hiddenRatio";
4053
+ parents: import("../..").AbstractFeatures;
4054
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4055
+ };
4056
+ identifierRatio: {
4057
+ name: "identifierRatio";
4058
+ parents: import("../..").AbstractFeatures;
4059
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4060
+ };
4061
+ emailRatio: {
4062
+ name: "emailRatio";
4063
+ parents: import("../..").AbstractFeatures;
4064
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4065
+ };
4066
+ usernameRatio: {
4067
+ name: "usernameRatio";
4068
+ parents: import("../..").AbstractFeatures;
4069
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4070
+ };
4071
+ passwordRatio: {
4072
+ name: "passwordRatio";
4073
+ parents: import("../..").AbstractFeatures;
4074
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4075
+ };
4076
+ disabledRatio: {
4077
+ name: "disabledRatio";
4078
+ parents: import("../..").AbstractFeatures;
4079
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4080
+ };
4081
+ requiredRatio: {
4082
+ name: "requiredRatio";
4083
+ parents: import("../..").AbstractFeatures;
4084
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4085
+ };
4086
+ checkboxRatio: {
4087
+ name: "checkboxRatio";
4088
+ parents: import("../..").AbstractFeatures;
4089
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4090
+ };
4091
+ hiddenIdentifierRatio: {
4092
+ name: "hiddenIdentifierRatio";
4093
+ parents: import("../..").AbstractFeatures;
4094
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4095
+ };
4096
+ hiddenPasswordRatio: {
4097
+ name: "hiddenPasswordRatio";
4098
+ parents: import("../..").AbstractFeatures;
4099
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4100
+ };
4101
+ pageLogin: {
4102
+ name: "pageLogin";
4103
+ parents: import("../..").AbstractFeatures;
4104
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4105
+ };
4106
+ formTextLogin: {
4107
+ name: "formTextLogin";
4108
+ parents: import("../..").AbstractFeatures;
4109
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4110
+ };
4111
+ formAttrsLogin: {
4112
+ name: "formAttrsLogin";
4113
+ parents: import("../..").AbstractFeatures;
4114
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4115
+ };
4116
+ headingsLogin: {
4117
+ name: "headingsLogin";
4118
+ parents: import("../..").AbstractFeatures;
4119
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4120
+ };
4121
+ layoutLogin: {
4122
+ name: "layoutLogin";
4123
+ parents: import("../..").AbstractFeatures;
4124
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4125
+ };
4126
+ rememberMeCheckbox: {
4127
+ name: "rememberMeCheckbox";
4128
+ parents: import("../..").AbstractFeatures;
4129
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4130
+ };
4131
+ troubleLink: {
4132
+ name: "troubleLink";
4133
+ parents: import("../..").AbstractFeatures;
4134
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4135
+ };
4136
+ submitLogin: {
4137
+ name: "submitLogin";
4138
+ parents: import("../..").AbstractFeatures;
4139
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4140
+ };
4141
+ pageRegister: {
4142
+ name: "pageRegister";
4143
+ parents: import("../..").AbstractFeatures;
4144
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4145
+ };
4146
+ formTextRegister: {
4147
+ name: "formTextRegister";
4148
+ parents: import("../..").AbstractFeatures;
4149
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4150
+ };
4151
+ formAttrsRegister: {
4152
+ name: "formAttrsRegister";
4153
+ parents: import("../..").AbstractFeatures;
4154
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4155
+ };
4156
+ headingsRegister: {
4157
+ name: "headingsRegister";
4158
+ parents: import("../..").AbstractFeatures;
4159
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4160
+ };
4161
+ layoutRegister: {
4162
+ name: "layoutRegister";
4163
+ parents: import("../..").AbstractFeatures;
4164
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4165
+ };
4166
+ pwNewRegister: {
4167
+ name: "pwNewRegister";
4168
+ parents: import("../..").AbstractFeatures;
4169
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4170
+ };
4171
+ pwConfirmRegister: {
4172
+ name: "pwConfirmRegister";
4173
+ parents: import("../..").AbstractFeatures;
4174
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4175
+ };
4176
+ submitRegister: {
4177
+ name: "submitRegister";
4178
+ parents: import("../..").AbstractFeatures;
4179
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4180
+ };
4181
+ TOSRef: {
4182
+ name: "TOSRef";
4183
+ parents: import("../..").AbstractFeatures;
4184
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4185
+ };
4186
+ pagePwReset: {
4187
+ name: "pagePwReset";
4188
+ parents: import("../..").AbstractFeatures;
4189
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4190
+ };
4191
+ formTextPwReset: {
4192
+ name: "formTextPwReset";
4193
+ parents: import("../..").AbstractFeatures;
4194
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4195
+ };
4196
+ formAttrsPwReset: {
4197
+ name: "formAttrsPwReset";
4198
+ parents: import("../..").AbstractFeatures;
4199
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4200
+ };
4201
+ headingsPwReset: {
4202
+ name: "headingsPwReset";
4203
+ parents: import("../..").AbstractFeatures;
4204
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4205
+ };
4206
+ layoutPwReset: {
4207
+ name: "layoutPwReset";
4208
+ parents: import("../..").AbstractFeatures;
4209
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4210
+ };
4211
+ pageRecovery: {
4212
+ name: "pageRecovery";
4213
+ parents: import("../..").AbstractFeatures;
4214
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4215
+ };
4216
+ formTextRecovery: {
4217
+ name: "formTextRecovery";
4218
+ parents: import("../..").AbstractFeatures;
4219
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4220
+ };
4221
+ formAttrsRecovery: {
4222
+ name: "formAttrsRecovery";
4223
+ parents: import("../..").AbstractFeatures;
4224
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4225
+ };
4226
+ headingsRecovery: {
4227
+ name: "headingsRecovery";
4228
+ parents: import("../..").AbstractFeatures;
4229
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4230
+ };
4231
+ layoutRecovery: {
4232
+ name: "layoutRecovery";
4233
+ parents: import("../..").AbstractFeatures;
4234
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4235
+ };
4236
+ identifierRecovery: {
4237
+ name: "identifierRecovery";
4238
+ parents: import("../..").AbstractFeatures;
4239
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4240
+ };
4241
+ submitRecovery: {
4242
+ name: "submitRecovery";
4243
+ parents: import("../..").AbstractFeatures;
4244
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4245
+ };
4246
+ formTextMFA: {
4247
+ name: "formTextMFA";
4248
+ parents: import("../..").AbstractFeatures;
4249
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4250
+ };
4251
+ formAttrsMFA: {
4252
+ name: "formAttrsMFA";
4253
+ parents: import("../..").AbstractFeatures;
4254
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4255
+ };
4256
+ inputsMFA: {
4257
+ name: "inputsMFA";
4258
+ parents: import("../..").AbstractFeatures;
4259
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4260
+ };
4261
+ newsletterForm: {
4262
+ name: "newsletterForm";
4263
+ parents: import("../..").AbstractFeatures;
4264
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4265
+ };
4266
+ searchForm: {
4267
+ name: "searchForm";
4268
+ parents: import("../..").AbstractFeatures;
4269
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4270
+ };
4271
+ multistepForm: {
4272
+ name: "multistepForm";
4273
+ parents: import("../..").AbstractFeatures;
4274
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4275
+ };
4276
+ multiAuthForm: {
4277
+ name: "multiAuthForm";
4278
+ parents: import("../..").AbstractFeatures;
4279
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
4280
+ };
4281
+ multistepForm_multiAuthForm: {
4282
+ name: "multistepForm,multiAuthForm";
4283
+ parents: import("../..").AbstractFeatures;
4284
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4285
+ };
4286
+ visibleRatio_visibleFieldsCount: {
4287
+ name: "visibleRatio,visibleFieldsCountScaled";
4288
+ parents: import("../..").AbstractFeatures;
4289
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4290
+ };
4291
+ visibleRatio_visibleIdentifiersCount: {
4292
+ name: "visibleRatio,visibleIdentifiersCountScaled";
4293
+ parents: import("../..").AbstractFeatures;
4294
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4295
+ };
4296
+ visibleRatio_visiblePasswordsCount: {
4297
+ name: "visibleRatio,visiblePasswordsCountScaled";
4298
+ parents: import("../..").AbstractFeatures;
4299
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4300
+ };
4301
+ visibleRatio_hiddenIdentifiersCount: {
4302
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
4303
+ parents: import("../..").AbstractFeatures;
4304
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4305
+ };
4306
+ visibleRatio_hiddenPasswordsCount: {
4307
+ name: "visibleRatio,hiddenPasswordsCountScaled";
4308
+ parents: import("../..").AbstractFeatures;
4309
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4310
+ };
4311
+ visibleRatio_multiAuthForm: {
4312
+ name: "visibleRatio,multiAuthForm";
4313
+ parents: import("../..").AbstractFeatures;
4314
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4315
+ };
4316
+ visibleRatio_multistepForm: {
4317
+ name: "visibleRatio,multistepForm";
4318
+ parents: import("../..").AbstractFeatures;
4319
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4320
+ };
4321
+ identifierRatio_visibleFieldsCount: {
4322
+ name: "identifierRatio,visibleFieldsCountScaled";
4323
+ parents: import("../..").AbstractFeatures;
4324
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4325
+ };
4326
+ identifierRatio_visibleIdentifiersCount: {
4327
+ name: "identifierRatio,visibleIdentifiersCountScaled";
4328
+ parents: import("../..").AbstractFeatures;
4329
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4330
+ };
4331
+ identifierRatio_visiblePasswordsCount: {
4332
+ name: "identifierRatio,visiblePasswordsCountScaled";
4333
+ parents: import("../..").AbstractFeatures;
4334
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4335
+ };
4336
+ identifierRatio_hiddenIdentifiersCount: {
4337
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
4338
+ parents: import("../..").AbstractFeatures;
4339
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4340
+ };
4341
+ identifierRatio_hiddenPasswordsCount: {
4342
+ name: "identifierRatio,hiddenPasswordsCountScaled";
4343
+ parents: import("../..").AbstractFeatures;
4344
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4345
+ };
4346
+ identifierRatio_multiAuthForm: {
4347
+ name: "identifierRatio,multiAuthForm";
4348
+ parents: import("../..").AbstractFeatures;
4349
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4350
+ };
4351
+ identifierRatio_multistepForm: {
4352
+ name: "identifierRatio,multistepForm";
4353
+ parents: import("../..").AbstractFeatures;
4354
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4355
+ };
4356
+ passwordRatio_visibleFieldsCount: {
4357
+ name: "passwordRatio,visibleFieldsCountScaled";
4358
+ parents: import("../..").AbstractFeatures;
4359
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4360
+ };
4361
+ passwordRatio_visibleIdentifiersCount: {
4362
+ name: "passwordRatio,visibleIdentifiersCountScaled";
4363
+ parents: import("../..").AbstractFeatures;
4364
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4365
+ };
4366
+ passwordRatio_visiblePasswordsCount: {
4367
+ name: "passwordRatio,visiblePasswordsCountScaled";
4368
+ parents: import("../..").AbstractFeatures;
4369
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4370
+ };
4371
+ passwordRatio_hiddenIdentifiersCount: {
4372
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
4373
+ parents: import("../..").AbstractFeatures;
4374
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4375
+ };
4376
+ passwordRatio_hiddenPasswordsCount: {
4377
+ name: "passwordRatio,hiddenPasswordsCountScaled";
4378
+ parents: import("../..").AbstractFeatures;
4379
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4380
+ };
4381
+ passwordRatio_multiAuthForm: {
4382
+ name: "passwordRatio,multiAuthForm";
4383
+ parents: import("../..").AbstractFeatures;
4384
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4385
+ };
4386
+ passwordRatio_multistepForm: {
4387
+ name: "passwordRatio,multistepForm";
4388
+ parents: import("../..").AbstractFeatures;
4389
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4390
+ };
4391
+ requiredRatio_visibleFieldsCount: {
4392
+ name: "requiredRatio,visibleFieldsCountScaled";
4393
+ parents: import("../..").AbstractFeatures;
4394
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4395
+ };
4396
+ requiredRatio_visibleIdentifiersCount: {
4397
+ name: "requiredRatio,visibleIdentifiersCountScaled";
4398
+ parents: import("../..").AbstractFeatures;
4399
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4400
+ };
4401
+ requiredRatio_visiblePasswordsCount: {
4402
+ name: "requiredRatio,visiblePasswordsCountScaled";
4403
+ parents: import("../..").AbstractFeatures;
4404
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4405
+ };
4406
+ requiredRatio_hiddenIdentifiersCount: {
4407
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
4408
+ parents: import("../..").AbstractFeatures;
4409
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4410
+ };
4411
+ requiredRatio_hiddenPasswordsCount: {
4412
+ name: "requiredRatio,hiddenPasswordsCountScaled";
4413
+ parents: import("../..").AbstractFeatures;
4414
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4415
+ };
4416
+ requiredRatio_multiAuthForm: {
4417
+ name: "requiredRatio,multiAuthForm";
4418
+ parents: import("../..").AbstractFeatures;
4419
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4420
+ };
4421
+ requiredRatio_multistepForm: {
4422
+ name: "requiredRatio,multistepForm";
4423
+ parents: import("../..").AbstractFeatures;
4424
+ compute(parents: import("../..").InferParentComputeType<import("../..").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4425
+ };
4426
+ }>;
4427
+ };