@protontech/autofill 0.0.22991789 → 0.0.33835493

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 (176) 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 +18 -0
  16. package/features/feature.js +79 -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 +4428 -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 +7 -2
  38. package/index.js +11 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +42 -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/random_forest/index.d.ts +2 -0
  52. package/models/random_forest/index.js +42 -0
  53. package/models/random_forest/params/email-model.json +1456 -0
  54. package/models/random_forest/params/login-model.json +4194 -0
  55. package/models/random_forest/params/new-password-model.json +1448 -0
  56. package/models/random_forest/params/otp-model.json +2004 -0
  57. package/models/random_forest/params/password-change-model.json +1422 -0
  58. package/models/random_forest/params/password-model.json +1292 -0
  59. package/models/random_forest/params/recovery-model.json +2754 -0
  60. package/models/random_forest/params/register-model.json +3678 -0
  61. package/models/random_forest/params/username-hidden-model.json +1108 -0
  62. package/models/random_forest/params/username-model.json +1052 -0
  63. package/package.json +17 -15
  64. package/rules/v1/index.d.ts +4 -0
  65. package/rules/v1/index.js +66 -0
  66. package/rulesets.d.ts +9 -2
  67. package/rulesets.js +14 -9
  68. package/types/index.d.ts +70 -17
  69. package/types/index.js +34 -1
  70. package/utils/attributes.js +1 -1
  71. package/utils/clustering.js +18 -5
  72. package/utils/credit-card.d.ts +32 -0
  73. package/utils/credit-card.js +259 -0
  74. package/utils/credit-card.samples.spec.d.ts +1 -0
  75. package/utils/credit-card.samples.spec.js +452 -0
  76. package/utils/credit-card.spec.d.ts +1 -0
  77. package/utils/credit-card.spec.js +296 -0
  78. package/utils/dom.d.ts +3 -2
  79. package/utils/dom.js +12 -7
  80. package/utils/exclusion.d.ts +1 -0
  81. package/utils/exclusion.js +22 -10
  82. package/utils/extract.d.ts +1 -0
  83. package/utils/extract.js +26 -7
  84. package/utils/fathom.d.ts +10 -23
  85. package/utils/fathom.js +7 -12
  86. package/utils/field.d.ts +12 -4
  87. package/utils/field.js +25 -14
  88. package/utils/flags.d.ts +9 -3
  89. package/utils/flags.js +27 -9
  90. package/utils/form.d.ts +16 -5
  91. package/utils/form.js +35 -14
  92. package/utils/identity.d.ts +12 -21
  93. package/utils/identity.js +66 -41
  94. package/utils/identity.samples.spec.d.ts +1 -0
  95. package/utils/identity.samples.spec.js +28 -0
  96. package/utils/iframe.d.ts +2 -0
  97. package/utils/iframe.js +22 -0
  98. package/utils/overrides.d.ts +19 -0
  99. package/utils/overrides.js +40 -0
  100. package/utils/prepass.js +6 -4
  101. package/utils/re.d.ts +19 -4
  102. package/utils/re.js +22 -7
  103. package/utils/re.spec.d.ts +1 -0
  104. package/utils/re.spec.js +62 -0
  105. package/utils/shadow-dom.d.ts +8 -0
  106. package/utils/shadow-dom.js +53 -0
  107. package/utils/shadow-dom.spec.d.ts +1 -0
  108. package/utils/shadow-dom.spec.js +215 -0
  109. package/utils/visible.d.ts +3 -2
  110. package/utils/visible.js +42 -22
  111. package/cli.d.ts +0 -2
  112. package/cli.js +0 -128
  113. package/features/abstract.field.d.ts +0 -123
  114. package/features/abstract.field.js +0 -63
  115. package/features/abstract.form.d.ts +0 -98
  116. package/features/abstract.form.js +0 -281
  117. package/features/field.email.d.ts +0 -18
  118. package/features/field.email.js +0 -43
  119. package/features/field.otp.d.ts +0 -36
  120. package/features/field.otp.js +0 -116
  121. package/features/field.password.d.ts +0 -35
  122. package/features/field.password.js +0 -104
  123. package/features/field.username-hidden.d.ts +0 -15
  124. package/features/field.username-hidden.js +0 -40
  125. package/features/field.username.d.ts +0 -16
  126. package/features/field.username.js +0 -41
  127. package/features/form.combined.d.ts +0 -1
  128. package/features/form.combined.js +0 -6
  129. package/trainees/field.email.d.ts +0 -2
  130. package/trainees/field.email.js +0 -16
  131. package/trainees/field.identity.d.ts +0 -2
  132. package/trainees/field.identity.js +0 -9
  133. package/trainees/field.otp.d.ts +0 -2
  134. package/trainees/field.otp.js +0 -16
  135. package/trainees/field.password.current.d.ts +0 -2
  136. package/trainees/field.password.current.js +0 -16
  137. package/trainees/field.password.new.d.ts +0 -2
  138. package/trainees/field.password.new.js +0 -16
  139. package/trainees/field.username-hidden.d.ts +0 -2
  140. package/trainees/field.username-hidden.js +0 -22
  141. package/trainees/field.username.d.ts +0 -2
  142. package/trainees/field.username.js +0 -16
  143. package/trainees/form.login.d.ts +0 -2
  144. package/trainees/form.login.js +0 -16
  145. package/trainees/form.noop.d.ts +0 -1
  146. package/trainees/form.noop.js +0 -7
  147. package/trainees/form.password-change.d.ts +0 -2
  148. package/trainees/form.password-change.js +0 -16
  149. package/trainees/form.recovery.d.ts +0 -2
  150. package/trainees/form.recovery.js +0 -16
  151. package/trainees/form.register.d.ts +0 -2
  152. package/trainees/form.register.js +0 -16
  153. package/trainees/index.d.ts +0 -9
  154. package/trainees/index.js +0 -72
  155. package/trainees/results/result.email.d.ts +0 -2
  156. package/trainees/results/result.email.js +0 -17
  157. package/trainees/results/result.login.d.ts +0 -2
  158. package/trainees/results/result.login.js +0 -110
  159. package/trainees/results/result.new-password.d.ts +0 -2
  160. package/trainees/results/result.new-password.js +0 -36
  161. package/trainees/results/result.otp.d.ts +0 -2
  162. package/trainees/results/result.otp.js +0 -43
  163. package/trainees/results/result.password-change.d.ts +0 -2
  164. package/trainees/results/result.password-change.js +0 -110
  165. package/trainees/results/result.password.d.ts +0 -2
  166. package/trainees/results/result.password.js +0 -36
  167. package/trainees/results/result.recovery.d.ts +0 -2
  168. package/trainees/results/result.recovery.js +0 -110
  169. package/trainees/results/result.register.d.ts +0 -2
  170. package/trainees/results/result.register.js +0 -110
  171. package/trainees/results/result.username-hidden.d.ts +0 -2
  172. package/trainees/results/result.username-hidden.js +0 -15
  173. package/trainees/results/result.username.d.ts +0 -2
  174. package/trainees/results/result.username.js +0 -16
  175. package/utils/memoize.d.ts +0 -5
  176. package/utils/memoize.js +0 -12
@@ -0,0 +1,133 @@
1
+ {
2
+ "bias": -0.5452852845191956,
3
+ "coeffs": [
4
+ [
5
+ "new-password--attrConfirm",
6
+ 2.14520525932312
7
+ ],
8
+ [
9
+ "new-password--attrCreate",
10
+ 0.5778966546058655
11
+ ],
12
+ [
13
+ "new-password--attrCurrent",
14
+ -1.5488977432250977
15
+ ],
16
+ [
17
+ "new-password--attrReset",
18
+ -0.08878537267446518
19
+ ],
20
+ [
21
+ "new-password--autocompleteCurrent",
22
+ -1.7373244762420654
23
+ ],
24
+ [
25
+ "new-password--autocompleteNew",
26
+ 4.349790096282959
27
+ ],
28
+ [
29
+ "new-password--autocompleteOTP",
30
+ -6.41229248046875
31
+ ],
32
+ [
33
+ "new-password--autocompleteOff",
34
+ -0.1778380423784256
35
+ ],
36
+ [
37
+ "new-password--fieldCC",
38
+ -7.749662399291992
39
+ ],
40
+ [
41
+ "new-password--fieldExotic",
42
+ 3.319335699081421
43
+ ],
44
+ [
45
+ "new-password--fieldIdentity",
46
+ 1.1720734785904023e-35
47
+ ],
48
+ [
49
+ "new-password--fieldLogin",
50
+ -7.551734447479248
51
+ ],
52
+ [
53
+ "new-password--fieldRegister",
54
+ 7.078352451324463
55
+ ],
56
+ [
57
+ "new-password--labelConfirm",
58
+ 1.469581961631775
59
+ ],
60
+ [
61
+ "new-password--labelCreate",
62
+ 4.805655479431152
63
+ ],
64
+ [
65
+ "new-password--labelCurrent",
66
+ -2.71753191947937
67
+ ],
68
+ [
69
+ "new-password--nextPwConfirm",
70
+ 6.150905609130859
71
+ ],
72
+ [
73
+ "new-password--nextPwCurrent",
74
+ 0.015807265415787697
75
+ ],
76
+ [
77
+ "new-password--nextPwField",
78
+ -1.271667242050171
79
+ ],
80
+ [
81
+ "new-password--nextPwNew",
82
+ -2.0590858459472656
83
+ ],
84
+ [
85
+ "new-password--passwordOutlier",
86
+ -14.307414054870605
87
+ ],
88
+ [
89
+ "new-password--prevPwCurrent",
90
+ 1.8218131065368652
91
+ ],
92
+ [
93
+ "new-password--prevPwField",
94
+ 4.477715492248535
95
+ ],
96
+ [
97
+ "new-password--prevPwNew",
98
+ 2.3683602809906006
99
+ ],
100
+ [
101
+ "new-password--textConfirm",
102
+ 0.6882920861244202
103
+ ],
104
+ [
105
+ "new-password--textCreate",
106
+ 5.218682289123535
107
+ ],
108
+ [
109
+ "new-password--textCurrent",
110
+ -0.6788100600242615
111
+ ],
112
+ [
113
+ "new-password--fieldLogin,autocompleteNew",
114
+ -2.155626058578491
115
+ ],
116
+ [
117
+ "new-password--fieldLogin,maybeNew",
118
+ -2.9041569232940674
119
+ ],
120
+ [
121
+ "new-password--fieldRegister,autocompleteCurrent",
122
+ 2.1240367889404297
123
+ ],
124
+ [
125
+ "new-password--fieldRegister,maybeCurrent",
126
+ 0.02828003279864788
127
+ ],
128
+ [
129
+ "new-password--prevPwCurrent,nextPwNew",
130
+ 1.8885732889175415
131
+ ]
132
+ ]
133
+ }
@@ -0,0 +1,117 @@
1
+ {
2
+ "bias": -4.7398457527160645,
3
+ "coeffs": [
4
+ [
5
+ "otp--attrMFA",
6
+ 6.6613945960998535
7
+ ],
8
+ [
9
+ "otp--attrOTP",
10
+ 1.1755399703979492
11
+ ],
12
+ [
13
+ "otp--autocompleteOTC",
14
+ 6.435840129852295
15
+ ],
16
+ [
17
+ "otp--fieldCC",
18
+ -1.972305178642273
19
+ ],
20
+ [
21
+ "otp--fieldIdentity",
22
+ -2.935760259628296
23
+ ],
24
+ [
25
+ "otp--formAuthenticator",
26
+ 9.9347505569458
27
+ ],
28
+ [
29
+ "otp--formComplexity",
30
+ -4.342885971069336
31
+ ],
32
+ [
33
+ "otp--formMFA",
34
+ 0.8631631731987
35
+ ],
36
+ [
37
+ "otp--idMatch",
38
+ 6.620510101318359
39
+ ],
40
+ [
41
+ "otp--labelAuthenticator",
42
+ 3.1492226123809814
43
+ ],
44
+ [
45
+ "otp--labelMFA",
46
+ 9.53038501739502
47
+ ],
48
+ [
49
+ "otp--labelOTP",
50
+ 0.4257602095603943
51
+ ],
52
+ [
53
+ "otp--nameMatch",
54
+ -0.19211307168006897
55
+ ],
56
+ [
57
+ "otp--numericMode",
58
+ -1.7199307680130005
59
+ ],
60
+ [
61
+ "otp--outlierAutocomplete",
62
+ -6.185847282409668
63
+ ],
64
+ [
65
+ "otp--outlierEmailMatchScaled",
66
+ -5.495481967926025
67
+ ],
68
+ [
69
+ "otp--outlierField",
70
+ -7.451329231262207
71
+ ],
72
+ [
73
+ "otp--outlierForm",
74
+ 1.8781681060791016
75
+ ],
76
+ [
77
+ "otp--outlierHeadings",
78
+ -9.15646743774414
79
+ ],
80
+ [
81
+ "otp--outlierInputCount",
82
+ -5.8055267333984375
83
+ ],
84
+ [
85
+ "otp--outlierLink",
86
+ -3.2309868335723877
87
+ ],
88
+ [
89
+ "otp--outlierMaxLength",
90
+ -11.20950984954834
91
+ ],
92
+ [
93
+ "otp--outlierSearch",
94
+ -8.073559761047363
95
+ ],
96
+ [
97
+ "otp--patternOTP",
98
+ -1.613316491431442e-36
99
+ ],
100
+ [
101
+ "otp--siblingOfInterest",
102
+ 2.612291097640991
103
+ ],
104
+ [
105
+ "otp--singleInput",
106
+ 0.5003524422645569
107
+ ],
108
+ [
109
+ "otp--textAuthenticator",
110
+ 0.31326133012771606
111
+ ],
112
+ [
113
+ "otp--textMFA",
114
+ -0.23756152391433716
115
+ ]
116
+ ]
117
+ }
@@ -0,0 +1,465 @@
1
+ {
2
+ "bias": -1.317725658416748,
3
+ "coeffs": [
4
+ [
5
+ "password-change--visibleFieldsCountScaled",
6
+ -0.21080531179904938
7
+ ],
8
+ [
9
+ "password-change--visibleInputsCountScaled",
10
+ -0.3794768452644348
11
+ ],
12
+ [
13
+ "password-change--fieldsetsCountScaled",
14
+ 0.34059518575668335
15
+ ],
16
+ [
17
+ "password-change--textsCountScaled",
18
+ -1.3821336030960083
19
+ ],
20
+ [
21
+ "password-change--textareasCountScaled",
22
+ -0.6031239628791809
23
+ ],
24
+ [
25
+ "password-change--selectsCountScaled",
26
+ -0.41383597254753113
27
+ ],
28
+ [
29
+ "password-change--disabledCountScaled",
30
+ -1.2835944289690815e-05
31
+ ],
32
+ [
33
+ "password-change--radiosCountScaled",
34
+ -2.568479537963867
35
+ ],
36
+ [
37
+ "password-change--readOnlyCountScaled",
38
+ -2.1948537826538086
39
+ ],
40
+ [
41
+ "password-change--formComplexityScaled",
42
+ -0.42950722575187683
43
+ ],
44
+ [
45
+ "password-change--visibleIdentifiersCountScaled",
46
+ -1.1606924533843994
47
+ ],
48
+ [
49
+ "password-change--hiddenIdentifiersCountScaled",
50
+ -1.3011547327041626
51
+ ],
52
+ [
53
+ "password-change--usernamesCountScaled",
54
+ -1.5563488006591797
55
+ ],
56
+ [
57
+ "password-change--emailsCountScaled",
58
+ -1.2611477375030518
59
+ ],
60
+ [
61
+ "password-change--hiddenCountScaled",
62
+ 0.13291537761688232
63
+ ],
64
+ [
65
+ "password-change--hiddenPasswordsCountScaled",
66
+ -0.5678784847259521
67
+ ],
68
+ [
69
+ "password-change--submitsCountScaled",
70
+ 0.2010057121515274
71
+ ],
72
+ [
73
+ "password-change--identitiesCountScaled",
74
+ -0.6344181299209595
75
+ ],
76
+ [
77
+ "password-change--ccsCountScaled",
78
+ -0.5090059041976929
79
+ ],
80
+ [
81
+ "password-change--hasTels",
82
+ -1.1284915208816528
83
+ ],
84
+ [
85
+ "password-change--hasOAuth",
86
+ -1.138687014579773
87
+ ],
88
+ [
89
+ "password-change--hasCaptchas",
90
+ -0.8732293248176575
91
+ ],
92
+ [
93
+ "password-change--hasFiles",
94
+ -0.009154300205409527
95
+ ],
96
+ [
97
+ "password-change--hasDate",
98
+ -4.108321081730537e-05
99
+ ],
100
+ [
101
+ "password-change--hasNumber",
102
+ -0.48628270626068115
103
+ ],
104
+ [
105
+ "password-change--oneVisibleField",
106
+ -1.3703187704086304
107
+ ],
108
+ [
109
+ "password-change--twoVisibleFields",
110
+ -0.5263844728469849
111
+ ],
112
+ [
113
+ "password-change--threeOrMoreVisibleFields",
114
+ -0.0987958237528801
115
+ ],
116
+ [
117
+ "password-change--noPasswords",
118
+ -2.220906972885132
119
+ ],
120
+ [
121
+ "password-change--onePassword",
122
+ -1.0874865055084229
123
+ ],
124
+ [
125
+ "password-change--twoPasswords",
126
+ 0.43684470653533936
127
+ ],
128
+ [
129
+ "password-change--threeOrMorePasswords",
130
+ 3.73868727684021
131
+ ],
132
+ [
133
+ "password-change--noIdentifiers",
134
+ -0.10996023565530777
135
+ ],
136
+ [
137
+ "password-change--oneIdentifier",
138
+ -1.4527708292007446
139
+ ],
140
+ [
141
+ "password-change--twoIdentifiers",
142
+ -1.316493034362793
143
+ ],
144
+ [
145
+ "password-change--threeOrMoreIdentifiers",
146
+ -0.5995724201202393
147
+ ],
148
+ [
149
+ "password-change--autofocusedIsIdentifier",
150
+ -1.2017908096313477
151
+ ],
152
+ [
153
+ "password-change--autofocusedIsPassword",
154
+ -1.5753828287124634
155
+ ],
156
+ [
157
+ "password-change--visibleRatio",
158
+ -1.5839314460754395
159
+ ],
160
+ [
161
+ "password-change--inputRatio",
162
+ -1.354972004890442
163
+ ],
164
+ [
165
+ "password-change--hiddenRatio",
166
+ 1.231801986694336
167
+ ],
168
+ [
169
+ "password-change--identifierRatio",
170
+ -1.2064765691757202
171
+ ],
172
+ [
173
+ "password-change--emailRatio",
174
+ -1.0367224216461182
175
+ ],
176
+ [
177
+ "password-change--usernameRatio",
178
+ -1.1688358783721924
179
+ ],
180
+ [
181
+ "password-change--passwordRatio",
182
+ 2.048884630203247
183
+ ],
184
+ [
185
+ "password-change--disabledRatio",
186
+ -3.544039645930752e-05
187
+ ],
188
+ [
189
+ "password-change--requiredRatio",
190
+ 0.2819277048110962
191
+ ],
192
+ [
193
+ "password-change--checkboxRatio",
194
+ 0.3580682575702667
195
+ ],
196
+ [
197
+ "password-change--hiddenIdentifierRatio",
198
+ -1.4996641874313354
199
+ ],
200
+ [
201
+ "password-change--hiddenPasswordRatio",
202
+ -0.5603635311126709
203
+ ],
204
+ [
205
+ "password-change--pageLogin",
206
+ -2.0787875652313232
207
+ ],
208
+ [
209
+ "password-change--formTextLogin",
210
+ -0.0002807428827509284
211
+ ],
212
+ [
213
+ "password-change--formAttrsLogin",
214
+ -1.0774983167648315
215
+ ],
216
+ [
217
+ "password-change--headingsLogin",
218
+ -1.3089662790298462
219
+ ],
220
+ [
221
+ "password-change--layoutLogin",
222
+ -1.3167537450790405
223
+ ],
224
+ [
225
+ "password-change--rememberMeCheckbox",
226
+ -0.49536681175231934
227
+ ],
228
+ [
229
+ "password-change--troubleLink",
230
+ -0.505922257900238
231
+ ],
232
+ [
233
+ "password-change--submitLogin",
234
+ -1.538442611694336
235
+ ],
236
+ [
237
+ "password-change--pageRegister",
238
+ -0.43224841356277466
239
+ ],
240
+ [
241
+ "password-change--formTextRegister",
242
+ -2.767477838006016e-07
243
+ ],
244
+ [
245
+ "password-change--formAttrsRegister",
246
+ -3.545875072479248
247
+ ],
248
+ [
249
+ "password-change--headingsRegister",
250
+ -4.5509843826293945
251
+ ],
252
+ [
253
+ "password-change--layoutRegister",
254
+ -0.48621928691864014
255
+ ],
256
+ [
257
+ "password-change--pwNewRegister",
258
+ 6.575067520141602
259
+ ],
260
+ [
261
+ "password-change--pwConfirmRegister",
262
+ 0.18275943398475647
263
+ ],
264
+ [
265
+ "password-change--submitRegister",
266
+ -2.4953696727752686
267
+ ],
268
+ [
269
+ "password-change--TOSRef",
270
+ -0.0869380310177803
271
+ ],
272
+ [
273
+ "password-change--pagePwReset",
274
+ 0.8516339063644409
275
+ ],
276
+ [
277
+ "password-change--formTextPwReset",
278
+ 0.11514020711183548
279
+ ],
280
+ [
281
+ "password-change--formAttrsPwReset",
282
+ 3.030082941055298
283
+ ],
284
+ [
285
+ "password-change--headingsPwReset",
286
+ 0.8395712971687317
287
+ ],
288
+ [
289
+ "password-change--layoutPwReset",
290
+ 3.9594016075134277
291
+ ],
292
+ [
293
+ "password-change--pageRecovery",
294
+ -1.040789008140564
295
+ ],
296
+ [
297
+ "password-change--formTextRecovery",
298
+ 1.1768496418554316e-35
299
+ ],
300
+ [
301
+ "password-change--formAttrsRecovery",
302
+ -0.5712954998016357
303
+ ],
304
+ [
305
+ "password-change--headingsRecovery",
306
+ -0.4508117437362671
307
+ ],
308
+ [
309
+ "password-change--layoutRecovery",
310
+ -0.3146156668663025
311
+ ],
312
+ [
313
+ "password-change--identifierRecovery",
314
+ -0.29010623693466187
315
+ ],
316
+ [
317
+ "password-change--submitRecovery",
318
+ 1.8364182710647583
319
+ ],
320
+ [
321
+ "password-change--formTextMFA",
322
+ -0.890845537185669
323
+ ],
324
+ [
325
+ "password-change--formAttrsMFA",
326
+ -0.45810985565185547
327
+ ],
328
+ [
329
+ "password-change--inputsMFA",
330
+ -0.7224538922309875
331
+ ],
332
+ [
333
+ "password-change--newsletterForm",
334
+ -0.025377895683050156
335
+ ],
336
+ [
337
+ "password-change--searchForm",
338
+ -1.184194803237915
339
+ ],
340
+ [
341
+ "password-change--multistepForm",
342
+ -0.8734709024429321
343
+ ],
344
+ [
345
+ "password-change--multiAuthForm",
346
+ -0.564978301525116
347
+ ],
348
+ [
349
+ "password-change--multistepForm,multiAuthForm",
350
+ -0.252063512802124
351
+ ],
352
+ [
353
+ "password-change--visibleRatio,visibleFieldsCountScaled",
354
+ -0.7013124227523804
355
+ ],
356
+ [
357
+ "password-change--visibleRatio,visibleIdentifiersCountScaled",
358
+ -1.2151151895523071
359
+ ],
360
+ [
361
+ "password-change--visibleRatio,visiblePasswordsCountScaled",
362
+ -0.13744992017745972
363
+ ],
364
+ [
365
+ "password-change--visibleRatio,hiddenIdentifiersCountScaled",
366
+ -0.18700893223285675
367
+ ],
368
+ [
369
+ "password-change--visibleRatio,hiddenPasswordsCountScaled",
370
+ -0.31140270829200745
371
+ ],
372
+ [
373
+ "password-change--visibleRatio,multiAuthForm",
374
+ -0.39625948667526245
375
+ ],
376
+ [
377
+ "password-change--visibleRatio,multistepForm",
378
+ -2.331655979156494
379
+ ],
380
+ [
381
+ "password-change--identifierRatio,visibleFieldsCountScaled",
382
+ -1.153236985206604
383
+ ],
384
+ [
385
+ "password-change--identifierRatio,visibleIdentifiersCountScaled",
386
+ -1.0779577493667603
387
+ ],
388
+ [
389
+ "password-change--identifierRatio,visiblePasswordsCountScaled",
390
+ -1.636335015296936
391
+ ],
392
+ [
393
+ "password-change--identifierRatio,hiddenIdentifiersCountScaled",
394
+ -0.34702029824256897
395
+ ],
396
+ [
397
+ "password-change--identifierRatio,hiddenPasswordsCountScaled",
398
+ -0.5297760367393494
399
+ ],
400
+ [
401
+ "password-change--identifierRatio,multiAuthForm",
402
+ -0.4264456629753113
403
+ ],
404
+ [
405
+ "password-change--identifierRatio,multistepForm",
406
+ -0.6745024919509888
407
+ ],
408
+ [
409
+ "password-change--passwordRatio,visibleFieldsCountScaled",
410
+ 1.7638397216796875
411
+ ],
412
+ [
413
+ "password-change--passwordRatio,visibleIdentifiersCountScaled",
414
+ -1.45478093624115
415
+ ],
416
+ [
417
+ "password-change--passwordRatio,visiblePasswordsCountScaled",
418
+ 2.5386955738067627
419
+ ],
420
+ [
421
+ "password-change--passwordRatio,hiddenIdentifiersCountScaled",
422
+ -1.5068111419677734
423
+ ],
424
+ [
425
+ "password-change--passwordRatio,hiddenPasswordsCountScaled",
426
+ -0.1728202849626541
427
+ ],
428
+ [
429
+ "password-change--passwordRatio,multiAuthForm",
430
+ -0.23705655336380005
431
+ ],
432
+ [
433
+ "password-change--passwordRatio,multistepForm",
434
+ -0.6057165861129761
435
+ ],
436
+ [
437
+ "password-change--requiredRatio,visibleFieldsCountScaled",
438
+ -0.6770942211151123
439
+ ],
440
+ [
441
+ "password-change--requiredRatio,visibleIdentifiersCountScaled",
442
+ -1.3246949911117554
443
+ ],
444
+ [
445
+ "password-change--requiredRatio,visiblePasswordsCountScaled",
446
+ 0.9341356754302979
447
+ ],
448
+ [
449
+ "password-change--requiredRatio,hiddenIdentifiersCountScaled",
450
+ -0.9665895700454712
451
+ ],
452
+ [
453
+ "password-change--requiredRatio,hiddenPasswordsCountScaled",
454
+ -0.9109416007995605
455
+ ],
456
+ [
457
+ "password-change--requiredRatio,multiAuthForm",
458
+ -0.2318475842475891
459
+ ],
460
+ [
461
+ "password-change--requiredRatio,multistepForm",
462
+ -0.02457130327820778
463
+ ]
464
+ ]
465
+ }