@protontech/autofill 0.0.35059265 → 0.0.36026908

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 (68) hide show
  1. package/features/feature.d.ts +13 -2
  2. package/features/feature.js +37 -15
  3. package/features/v1/abstract.field.d.ts +8406 -435
  4. package/features/v1/abstract.field.js +24 -24
  5. package/features/v1/abstract.form.d.ts +3428 -14
  6. package/features/v1/abstract.form.js +197 -197
  7. package/features/v1/field-predicates.d.ts +8 -0
  8. package/features/v1/field-predicates.js +42 -0
  9. package/features/v1/field.email.d.ts +3445 -24
  10. package/features/v1/field.email.js +7 -7
  11. package/features/v1/field.otp.d.ts +71234 -56
  12. package/features/v1/field.otp.js +42 -42
  13. package/features/v1/field.password.d.ts +99230 -64
  14. package/features/v1/field.password.js +42 -42
  15. package/features/v1/field.username-hidden.d.ts +932 -24
  16. package/features/v1/field.username-hidden.js +7 -7
  17. package/features/v1/field.username.d.ts +42410 -28
  18. package/features/v1/field.username.js +11 -11
  19. package/features/v1/fields.sorted.gen.d.ts +1441 -0
  20. package/features/v1/fields.sorted.gen.js +344 -0
  21. package/features/v1/forms.sorted.gen.d.ts +734 -0
  22. package/features/v1/forms.sorted.gen.js +334 -0
  23. package/features/v1/index.d.ts +5305 -12
  24. package/features/v1/index.js +7 -11
  25. package/models/perceptron/params/email-model.json +4 -4
  26. package/models/perceptron/params/login-model.json +97 -97
  27. package/models/perceptron/params/new-password-model.json +16 -16
  28. package/models/perceptron/params/otp-model.json +29 -29
  29. package/models/perceptron/params/password-change-model.json +69 -69
  30. package/models/perceptron/params/password-model.json +18 -18
  31. package/models/perceptron/params/recovery-model.json +92 -92
  32. package/models/perceptron/params/register-model.json +90 -90
  33. package/models/perceptron/params/username-hidden-model.json +7 -7
  34. package/models/perceptron/params/username-model.json +3 -3
  35. package/models/random_forest/params/otp-model.json +306 -366
  36. package/package.json +3 -3
  37. package/rules/v1/index.js +5 -5
  38. package/types/index.d.ts +2 -1
  39. package/utils/credit-card.d.ts +0 -1
  40. package/utils/credit-card.js +2 -9
  41. package/utils/fathom.d.ts +1 -2
  42. package/utils/fathom.js +2 -2
  43. package/utils/field.d.ts +4 -5
  44. package/utils/field.js +6 -17
  45. package/utils/identity.d.ts +0 -2
  46. package/utils/identity.js +2 -23
  47. package/dictionary/generate.d.ts +0 -1
  48. package/dictionary/generate.js +0 -51
  49. package/features/feature.spec.d.ts +0 -1
  50. package/features/feature.spec.js +0 -59
  51. package/features/registry.d.ts +0 -3
  52. package/features/registry.js +0 -9
  53. package/features/sorted.gen.d.ts +0 -14
  54. package/features/sorted.gen.js +0 -22
  55. package/features/v1/index.spec.d.ts +0 -1
  56. package/features/v1/index.spec.js +0 -30
  57. package/scripts/gen-sorted-features.d.ts +0 -1
  58. package/scripts/gen-sorted-features.js +0 -32
  59. package/utils/credit-card.samples.spec.d.ts +0 -1
  60. package/utils/credit-card.samples.spec.js +0 -452
  61. package/utils/credit-card.spec.d.ts +0 -1
  62. package/utils/credit-card.spec.js +0 -296
  63. package/utils/identity.samples.spec.d.ts +0 -1
  64. package/utils/identity.samples.spec.js +0 -28
  65. package/utils/re.spec.d.ts +0 -1
  66. package/utils/re.spec.js +0 -62
  67. package/utils/shadow-dom.spec.d.ts +0 -1
  68. package/utils/shadow-dom.spec.js +0 -215
@@ -1,18 +1,14 @@
1
- import { getComputerForFeatures } from "@protontech/autofill/features/feature";
2
- import { setFormFeaturesComputer } from "@protontech/autofill/features/registry";
3
- import { emailFeatureNames, fieldFeatureNames, formFeatureNames, otpFeatureNames, passwordFeatureNames, sortedEmailFeatures, sortedFieldFeatures, sortedFormFeatures, sortedOtpFeatures, sortedPasswordFeatures, sortedUsernameFeatures, sortedUsernameHiddenFeatures, usernameFeatureNames, usernameHiddenFeatureNames, } from "@protontech/autofill/features/sorted.gen";
4
- const formFeaturesComputer = getComputerForFeatures(sortedFormFeatures, formFeatureNames);
5
- setFormFeaturesComputer(formFeaturesComputer);
6
- const passwordFeaturesComputer = getComputerForFeatures(sortedPasswordFeatures, passwordFeatureNames);
1
+ import { emailFeaturesComputer, fieldFeaturesComputer, otpFeaturesComputer, passwordFeaturesComputer, usernameFeaturesComputer, usernameHiddenFeaturesComputer } from "@protontech/autofill/features/v1/fields.sorted.gen";
2
+ import { formFeaturesComputer } from "@protontech/autofill/features/v1/forms.sorted.gen";
7
3
  export const featureProvider = {
8
- field: getComputerForFeatures(sortedFieldFeatures, fieldFeatureNames),
4
+ field: fieldFeaturesComputer,
9
5
  form: formFeaturesComputer,
10
- email: getComputerForFeatures(sortedEmailFeatures, emailFeatureNames),
6
+ email: emailFeaturesComputer,
11
7
  "new-password": passwordFeaturesComputer,
12
- otp: getComputerForFeatures(sortedOtpFeatures, otpFeatureNames),
8
+ otp: otpFeaturesComputer,
13
9
  password: passwordFeaturesComputer,
14
- username: getComputerForFeatures(sortedUsernameFeatures, usernameFeatureNames),
15
- "username-hidden": getComputerForFeatures(sortedUsernameHiddenFeatures, usernameHiddenFeatureNames),
10
+ username: usernameFeaturesComputer,
11
+ "username-hidden": usernameHiddenFeaturesComputer,
16
12
  login: formFeaturesComputer,
17
13
  recovery: formFeaturesComputer,
18
14
  register: formFeaturesComputer,
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  [
9
9
  "email--attrEmail",
10
- 1.7379103899002075
10
+ 1.7379101514816284
11
11
  ],
12
12
  [
13
13
  "email--autocompleteEmail",
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  [
17
17
  "email--autocompleteOff",
18
- -1.1758869886398315
18
+ -1.175886869430542
19
19
  ],
20
20
  [
21
21
  "email--fieldCC",
@@ -39,11 +39,11 @@
39
39
  ],
40
40
  [
41
41
  "email--placeholderEmail",
42
- 7.317560195922852
42
+ 7.317559719085693
43
43
  ],
44
44
  [
45
45
  "email--textEmail",
46
- 4.9640421867370605
46
+ 4.964042663574219
47
47
  ],
48
48
  [
49
49
  "email--typeEmail",
@@ -1,9 +1,9 @@
1
1
  {
2
- "bias": -0.9151386618614197,
2
+ "bias": -0.9151380062103271,
3
3
  "coeffs": [
4
4
  [
5
5
  "login--visibleFieldsCountScaled",
6
- 1.486899733543396
6
+ 1.4869002103805542
7
7
  ],
8
8
  [
9
9
  "login--visibleInputsCountScaled",
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  [
17
17
  "login--textsCountScaled",
18
- -2.2409515380859375
18
+ -2.2409520149230957
19
19
  ],
20
20
  [
21
21
  "login--textareasCountScaled",
@@ -23,15 +23,15 @@
23
23
  ],
24
24
  [
25
25
  "login--selectsCountScaled",
26
- -6.675673484802246
26
+ -6.6756744384765625
27
27
  ],
28
28
  [
29
29
  "login--disabledCountScaled",
30
- -0.04939925670623779
30
+ -0.0493992380797863
31
31
  ],
32
32
  [
33
33
  "login--radiosCountScaled",
34
- -4.642114639282227
34
+ -4.642113208770752
35
35
  ],
36
36
  [
37
37
  "login--readOnlyCountScaled",
@@ -39,55 +39,55 @@
39
39
  ],
40
40
  [
41
41
  "login--formComplexityScaled",
42
- -2.950302839279175
42
+ -2.950303077697754
43
43
  ],
44
44
  [
45
45
  "login--visibleIdentifiersCountScaled",
46
- -1.8698210716247559
46
+ -1.8698221445083618
47
47
  ],
48
48
  [
49
49
  "login--hiddenIdentifiersCountScaled",
50
- 1.9122282266616821
50
+ 1.912227988243103
51
51
  ],
52
52
  [
53
53
  "login--usernamesCountScaled",
54
- 0.16324283182621002
54
+ 0.16324324905872345
55
55
  ],
56
56
  [
57
57
  "login--emailsCountScaled",
58
- -3.5715503692626953
58
+ -3.5715513229370117
59
59
  ],
60
60
  [
61
61
  "login--hiddenCountScaled",
62
- 2.2564446926116943
62
+ 2.2564449310302734
63
63
  ],
64
64
  [
65
65
  "login--hiddenPasswordsCountScaled",
66
- 6.7593560218811035
66
+ 6.759355545043945
67
67
  ],
68
68
  [
69
69
  "login--submitsCountScaled",
70
- -4.409569263458252
70
+ -4.409568786621094
71
71
  ],
72
72
  [
73
73
  "login--identitiesCountScaled",
74
- -1.8813520669937134
74
+ -1.8813523054122925
75
75
  ],
76
76
  [
77
77
  "login--ccsCountScaled",
78
- -4.634806156158447
78
+ -4.634805679321289
79
79
  ],
80
80
  [
81
81
  "login--hasTels",
82
- -3.3048744201660156
82
+ -3.3048741817474365
83
83
  ],
84
84
  [
85
85
  "login--hasOAuth",
86
- 0.9214448928833008
86
+ 0.9214450120925903
87
87
  ],
88
88
  [
89
89
  "login--hasCaptchas",
90
- 2.71230411529541
90
+ 2.7123045921325684
91
91
  ],
92
92
  [
93
93
  "login--hasFiles",
@@ -95,83 +95,83 @@
95
95
  ],
96
96
  [
97
97
  "login--hasDate",
98
- -0.3914891481399536
98
+ -0.3914889395236969
99
99
  ],
100
100
  [
101
101
  "login--hasNumber",
102
- -5.054873466491699
102
+ -5.054871082305908
103
103
  ],
104
104
  [
105
105
  "login--oneVisibleField",
106
- 2.9466559886932373
106
+ 2.9466564655303955
107
107
  ],
108
108
  [
109
109
  "login--twoVisibleFields",
110
- 0.22733581066131592
110
+ 0.22733604907989502
111
111
  ],
112
112
  [
113
113
  "login--threeOrMoreVisibleFields",
114
- -2.0192761421203613
114
+ -2.0192763805389404
115
115
  ],
116
116
  [
117
117
  "login--noPasswords",
118
- -6.263664722442627
118
+ -6.2636637687683105
119
119
  ],
120
120
  [
121
121
  "login--onePassword",
122
- 6.739871978759766
122
+ 6.739871501922607
123
123
  ],
124
124
  [
125
125
  "login--twoPasswords",
126
- 1.235830307006836
126
+ 1.2358291149139404
127
127
  ],
128
128
  [
129
129
  "login--threeOrMorePasswords",
130
- -3.5065689086914062
130
+ -3.5065696239471436
131
131
  ],
132
132
  [
133
133
  "login--noIdentifiers",
134
- -1.713320016860962
134
+ -1.7133208513259888
135
135
  ],
136
136
  [
137
137
  "login--oneIdentifier",
138
- 1.0281378030776978
138
+ 1.0281368494033813
139
139
  ],
140
140
  [
141
141
  "login--twoIdentifiers",
142
- 2.534081220626831
142
+ 2.5340805053710938
143
143
  ],
144
144
  [
145
145
  "login--threeOrMoreIdentifiers",
146
- -4.254447937011719
146
+ -4.254448413848877
147
147
  ],
148
148
  [
149
149
  "login--autofocusedIsIdentifier",
150
- 2.8286819458007812
150
+ 2.8286824226379395
151
151
  ],
152
152
  [
153
153
  "login--autofocusedIsPassword",
154
- 4.382067680358887
154
+ 4.382068157196045
155
155
  ],
156
156
  [
157
157
  "login--visibleRatio",
158
- 0.7667929530143738
158
+ 0.7667930722236633
159
159
  ],
160
160
  [
161
161
  "login--inputRatio",
162
- -4.025935649871826
162
+ -4.025937557220459
163
163
  ],
164
164
  [
165
165
  "login--hiddenRatio",
166
- -1.1496537923812866
166
+ -1.1496526002883911
167
167
  ],
168
168
  [
169
169
  "login--identifierRatio",
170
- -1.8468908071517944
170
+ -1.8468902111053467
171
171
  ],
172
172
  [
173
173
  "login--emailRatio",
174
- 11.31178092956543
174
+ 11.311781883239746
175
175
  ],
176
176
  [
177
177
  "login--usernameRatio",
@@ -179,39 +179,39 @@
179
179
  ],
180
180
  [
181
181
  "login--passwordRatio",
182
- 2.039027452468872
182
+ 2.0390279293060303
183
183
  ],
184
184
  [
185
185
  "login--disabledRatio",
186
- -0.04974718019366264
186
+ -0.049747176468372345
187
187
  ],
188
188
  [
189
189
  "login--requiredRatio",
190
- 0.6291854977607727
190
+ 0.6291856169700623
191
191
  ],
192
192
  [
193
193
  "login--checkboxRatio",
194
- -10.240707397460938
194
+ -10.240706443786621
195
195
  ],
196
196
  [
197
197
  "login--hiddenIdentifierRatio",
198
- 1.3944566249847412
198
+ 1.3944568634033203
199
199
  ],
200
200
  [
201
201
  "login--hiddenPasswordRatio",
202
- 7.059210777282715
202
+ 7.059211730957031
203
203
  ],
204
204
  [
205
205
  "login--pageLogin",
206
- 3.7198832035064697
206
+ 3.7198829650878906
207
207
  ],
208
208
  [
209
209
  "login--formTextLogin",
210
- 0.001237060409039259
210
+ 0.0012370593613013625
211
211
  ],
212
212
  [
213
213
  "login--formAttrsLogin",
214
- 4.150831699371338
214
+ 4.15083122253418
215
215
  ],
216
216
  [
217
217
  "login--headingsLogin",
@@ -219,7 +219,7 @@
219
219
  ],
220
220
  [
221
221
  "login--layoutLogin",
222
- -0.0794287770986557
222
+ -0.07942863553762436
223
223
  ],
224
224
  [
225
225
  "login--rememberMeCheckbox",
@@ -227,7 +227,7 @@
227
227
  ],
228
228
  [
229
229
  "login--troubleLink",
230
- 4.67028284072876
230
+ 4.670282363891602
231
231
  ],
232
232
  [
233
233
  "login--submitLogin",
@@ -235,11 +235,11 @@
235
235
  ],
236
236
  [
237
237
  "login--pageRegister",
238
- -9.373846054077148
238
+ -9.373845100402832
239
239
  ],
240
240
  [
241
241
  "login--formTextRegister",
242
- -6.417885780334473
242
+ -6.4178853034973145
243
243
  ],
244
244
  [
245
245
  "login--formAttrsRegister",
@@ -251,15 +251,15 @@
251
251
  ],
252
252
  [
253
253
  "login--layoutRegister",
254
- -0.601273775100708
254
+ -0.6012738347053528
255
255
  ],
256
256
  [
257
257
  "login--pwNewRegister",
258
- -12.92492961883545
258
+ -12.924928665161133
259
259
  ],
260
260
  [
261
261
  "login--pwConfirmRegister",
262
- -1.271654725074768
262
+ -1.2716552019119263
263
263
  ],
264
264
  [
265
265
  "login--submitRegister",
@@ -267,15 +267,15 @@
267
267
  ],
268
268
  [
269
269
  "login--TOSRef",
270
- -2.4069557189941406
270
+ -2.4069552421569824
271
271
  ],
272
272
  [
273
273
  "login--pagePwReset",
274
- -0.8316850066184998
274
+ -0.831684947013855
275
275
  ],
276
276
  [
277
277
  "login--formTextPwReset",
278
- -0.02110225521028042
278
+ -0.021102260798215866
279
279
  ],
280
280
  [
281
281
  "login--formAttrsPwReset",
@@ -283,15 +283,15 @@
283
283
  ],
284
284
  [
285
285
  "login--headingsPwReset",
286
- -2.0459933280944824
286
+ -2.0459935665130615
287
287
  ],
288
288
  [
289
289
  "login--layoutPwReset",
290
- -1.5053772926330566
290
+ -1.5053774118423462
291
291
  ],
292
292
  [
293
293
  "login--pageRecovery",
294
- -1.6404569149017334
294
+ -1.6404573917388916
295
295
  ],
296
296
  [
297
297
  "login--formTextRecovery",
@@ -303,23 +303,23 @@
303
303
  ],
304
304
  [
305
305
  "login--headingsRecovery",
306
- -3.0005393028259277
306
+ -3.0005390644073486
307
307
  ],
308
308
  [
309
309
  "login--layoutRecovery",
310
- 1.0471283197402954
310
+ 1.047128438949585
311
311
  ],
312
312
  [
313
313
  "login--identifierRecovery",
314
- 0.12867282330989838
314
+ 0.12867240607738495
315
315
  ],
316
316
  [
317
317
  "login--submitRecovery",
318
- -4.689121723175049
318
+ -4.689121246337891
319
319
  ],
320
320
  [
321
321
  "login--formTextMFA",
322
- -3.27414870262146
322
+ -3.2741496562957764
323
323
  ],
324
324
  [
325
325
  "login--formAttrsMFA",
@@ -327,7 +327,7 @@
327
327
  ],
328
328
  [
329
329
  "login--inputsMFA",
330
- -10.566764831542969
330
+ -10.566763877868652
331
331
  ],
332
332
  [
333
333
  "login--newsletterForm",
@@ -339,123 +339,123 @@
339
339
  ],
340
340
  [
341
341
  "login--multistepForm",
342
- 2.7234747409820557
342
+ 2.7234742641448975
343
343
  ],
344
344
  [
345
345
  "login--multiAuthForm",
346
- 2.367074489593506
346
+ 2.3670737743377686
347
347
  ],
348
348
  [
349
349
  "login--multistepForm,multiAuthForm",
350
- 5.559227466583252
350
+ 5.559226989746094
351
351
  ],
352
352
  [
353
353
  "login--visibleRatio,visibleFieldsCountScaled",
354
- -0.5109789967536926
354
+ -0.5109789371490479
355
355
  ],
356
356
  [
357
357
  "login--visibleRatio,visibleIdentifiersCountScaled",
358
- -3.2128372192382812
358
+ -3.212836742401123
359
359
  ],
360
360
  [
361
361
  "login--visibleRatio,visiblePasswordsCountScaled",
362
- 4.3463850021362305
362
+ 4.3463873863220215
363
363
  ],
364
364
  [
365
365
  "login--visibleRatio,hiddenIdentifiersCountScaled",
366
- -1.2100872993469238
366
+ -1.2100861072540283
367
367
  ],
368
368
  [
369
369
  "login--visibleRatio,hiddenPasswordsCountScaled",
370
- -1.9768978357315063
370
+ -1.976897120475769
371
371
  ],
372
372
  [
373
373
  "login--visibleRatio,multiAuthForm",
374
- -3.3510806560516357
374
+ -3.351080894470215
375
375
  ],
376
376
  [
377
377
  "login--visibleRatio,multistepForm",
378
- 7.166625499725342
378
+ 7.166626453399658
379
379
  ],
380
380
  [
381
381
  "login--identifierRatio,visibleFieldsCountScaled",
382
- -3.057596206665039
382
+ -3.0575945377349854
383
383
  ],
384
384
  [
385
385
  "login--identifierRatio,visibleIdentifiersCountScaled",
386
- -3.552677631378174
386
+ -3.552677869796753
387
387
  ],
388
388
  [
389
389
  "login--identifierRatio,visiblePasswordsCountScaled",
390
- 2.49371337890625
390
+ 2.493713140487671
391
391
  ],
392
392
  [
393
393
  "login--identifierRatio,hiddenIdentifiersCountScaled",
394
- 0.6841031312942505
394
+ 0.6841034293174744
395
395
  ],
396
396
  [
397
397
  "login--identifierRatio,hiddenPasswordsCountScaled",
398
- 6.573177814483643
398
+ 6.573176860809326
399
399
  ],
400
400
  [
401
401
  "login--identifierRatio,multiAuthForm",
402
- 8.29233169555664
402
+ 8.292332649230957
403
403
  ],
404
404
  [
405
405
  "login--identifierRatio,multistepForm",
406
- -6.264770984649658
406
+ -6.264771461486816
407
407
  ],
408
408
  [
409
409
  "login--passwordRatio,visibleFieldsCountScaled",
410
- 5.550400733947754
410
+ 5.55040168762207
411
411
  ],
412
412
  [
413
413
  "login--passwordRatio,visibleIdentifiersCountScaled",
414
- 2.661841869354248
414
+ 2.661842107772827
415
415
  ],
416
416
  [
417
417
  "login--passwordRatio,visiblePasswordsCountScaled",
418
- -0.8242419362068176
418
+ -0.8242421746253967
419
419
  ],
420
420
  [
421
421
  "login--passwordRatio,hiddenIdentifiersCountScaled",
422
- 2.0986239910125732
422
+ 2.0986247062683105
423
423
  ],
424
424
  [
425
425
  "login--passwordRatio,hiddenPasswordsCountScaled",
426
- 3.0585145950317383
426
+ 3.0585131645202637
427
427
  ],
428
428
  [
429
429
  "login--passwordRatio,multiAuthForm",
430
- -6.020143032073975
430
+ -6.020141124725342
431
431
  ],
432
432
  [
433
433
  "login--passwordRatio,multistepForm",
434
- -14.701336860656738
434
+ -14.701335906982422
435
435
  ],
436
436
  [
437
437
  "login--requiredRatio,visibleFieldsCountScaled",
438
- 0.287549763917923
438
+ 0.2875498831272125
439
439
  ],
440
440
  [
441
441
  "login--requiredRatio,visibleIdentifiersCountScaled",
442
- -2.505615472793579
442
+ -2.5056159496307373
443
443
  ],
444
444
  [
445
445
  "login--requiredRatio,visiblePasswordsCountScaled",
446
- 1.038008213043213
446
+ 1.0380079746246338
447
447
  ],
448
448
  [
449
449
  "login--requiredRatio,hiddenIdentifiersCountScaled",
450
- 10.058676719665527
450
+ 10.058675765991211
451
451
  ],
452
452
  [
453
453
  "login--requiredRatio,hiddenPasswordsCountScaled",
454
- 1.3033015727996826
454
+ 1.3033013343811035
455
455
  ],
456
456
  [
457
457
  "login--requiredRatio,multiAuthForm",
458
- 2.7696313858032227
458
+ 2.7696309089660645
459
459
  ],
460
460
  [
461
461
  "login--requiredRatio,multistepForm",
@@ -1,5 +1,5 @@
1
1
  {
2
- "bias": -0.5452852845191956,
2
+ "bias": -0.545285165309906,
3
3
  "coeffs": [
4
4
  [
5
5
  "new-password--attrConfirm",
@@ -7,19 +7,19 @@
7
7
  ],
8
8
  [
9
9
  "new-password--attrCreate",
10
- 0.5778966546058655
10
+ 0.5778963565826416
11
11
  ],
12
12
  [
13
13
  "new-password--attrCurrent",
14
- -1.5488977432250977
14
+ -1.5488978624343872
15
15
  ],
16
16
  [
17
17
  "new-password--attrReset",
18
- -0.08878537267446518
18
+ -0.08878536522388458
19
19
  ],
20
20
  [
21
21
  "new-password--autocompleteCurrent",
22
- -1.7373244762420654
22
+ -1.7373242378234863
23
23
  ],
24
24
  [
25
25
  "new-password--autocompleteNew",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  [
29
29
  "new-password--autocompleteOTP",
30
- -6.41229248046875
30
+ -6.412293434143066
31
31
  ],
32
32
  [
33
33
  "new-password--autocompleteOff",
@@ -63,7 +63,7 @@
63
63
  ],
64
64
  [
65
65
  "new-password--labelCurrent",
66
- -2.71753191947937
66
+ -2.717532157897949
67
67
  ],
68
68
  [
69
69
  "new-password--nextPwConfirm",
@@ -75,15 +75,15 @@
75
75
  ],
76
76
  [
77
77
  "new-password--nextPwField",
78
- -1.271667242050171
78
+ -1.2716673612594604
79
79
  ],
80
80
  [
81
81
  "new-password--nextPwNew",
82
- -2.0590858459472656
82
+ -2.0590856075286865
83
83
  ],
84
84
  [
85
85
  "new-password--passwordOutlier",
86
- -14.307414054870605
86
+ -14.307415008544922
87
87
  ],
88
88
  [
89
89
  "new-password--prevPwCurrent",
@@ -103,7 +103,7 @@
103
103
  ],
104
104
  [
105
105
  "new-password--textCreate",
106
- 5.218682289123535
106
+ 5.218682765960693
107
107
  ],
108
108
  [
109
109
  "new-password--textCurrent",
@@ -111,23 +111,23 @@
111
111
  ],
112
112
  [
113
113
  "new-password--fieldLogin,autocompleteNew",
114
- -2.155626058578491
114
+ -2.1556262969970703
115
115
  ],
116
116
  [
117
117
  "new-password--fieldLogin,maybeNew",
118
- -2.9041569232940674
118
+ -2.9041571617126465
119
119
  ],
120
120
  [
121
121
  "new-password--fieldRegister,autocompleteCurrent",
122
- 2.1240367889404297
122
+ 2.1240365505218506
123
123
  ],
124
124
  [
125
125
  "new-password--fieldRegister,maybeCurrent",
126
- 0.02828003279864788
126
+ 0.028280029073357582
127
127
  ],
128
128
  [
129
129
  "new-password--prevPwCurrent,nextPwNew",
130
- 1.8885732889175415
130
+ 1.888573408126831
131
131
  ]
132
132
  ]
133
133
  }