@genesislcap/foundation-utils 14.255.0 → 14.255.2-alpha-e767c4c.0
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.
- package/dist/custom-elements.json +467 -467
- package/package.json +10 -10
|
@@ -171,7 +171,190 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"kind": "javascript-module",
|
|
174
|
-
"path": "src/
|
|
174
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
175
|
+
"declarations": [
|
|
176
|
+
{
|
|
177
|
+
"kind": "class",
|
|
178
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
179
|
+
"name": "InMemoryDatabase",
|
|
180
|
+
"members": [
|
|
181
|
+
{
|
|
182
|
+
"kind": "field",
|
|
183
|
+
"name": "isWorking",
|
|
184
|
+
"type": {
|
|
185
|
+
"text": "boolean"
|
|
186
|
+
},
|
|
187
|
+
"privacy": "public",
|
|
188
|
+
"default": "false"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"kind": "field",
|
|
192
|
+
"name": "records",
|
|
193
|
+
"type": {
|
|
194
|
+
"text": "Record<string, T>"
|
|
195
|
+
},
|
|
196
|
+
"privacy": "private",
|
|
197
|
+
"default": "{}"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"kind": "field",
|
|
201
|
+
"name": "beforeUpdateListeners",
|
|
202
|
+
"privacy": "private"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"kind": "field",
|
|
206
|
+
"name": "afterUpdateListeners",
|
|
207
|
+
"privacy": "private"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"kind": "method",
|
|
211
|
+
"name": "create",
|
|
212
|
+
"privacy": "public",
|
|
213
|
+
"return": {
|
|
214
|
+
"type": {
|
|
215
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"parameters": [
|
|
219
|
+
{
|
|
220
|
+
"name": "newValue",
|
|
221
|
+
"type": {
|
|
222
|
+
"text": "Omit<T, 'id'>"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"kind": "method",
|
|
229
|
+
"name": "read",
|
|
230
|
+
"privacy": "public",
|
|
231
|
+
"return": {
|
|
232
|
+
"type": {
|
|
233
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"parameters": [
|
|
237
|
+
{
|
|
238
|
+
"name": "id",
|
|
239
|
+
"type": {
|
|
240
|
+
"text": "string"
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"kind": "method",
|
|
247
|
+
"name": "update",
|
|
248
|
+
"privacy": "public",
|
|
249
|
+
"return": {
|
|
250
|
+
"type": {
|
|
251
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"parameters": [
|
|
255
|
+
{
|
|
256
|
+
"name": "id",
|
|
257
|
+
"type": {
|
|
258
|
+
"text": "string"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "newValue",
|
|
263
|
+
"type": {
|
|
264
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"kind": "method",
|
|
271
|
+
"name": "delete",
|
|
272
|
+
"privacy": "public",
|
|
273
|
+
"return": {
|
|
274
|
+
"type": {
|
|
275
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"parameters": [
|
|
279
|
+
{
|
|
280
|
+
"name": "id",
|
|
281
|
+
"type": {
|
|
282
|
+
"text": "string"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"kind": "method",
|
|
289
|
+
"name": "visit",
|
|
290
|
+
"privacy": "public",
|
|
291
|
+
"return": {
|
|
292
|
+
"type": {
|
|
293
|
+
"text": "Promise<void>"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"parameters": [
|
|
297
|
+
{
|
|
298
|
+
"name": "visitor",
|
|
299
|
+
"type": {
|
|
300
|
+
"text": "(record: T) => void"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"kind": "method",
|
|
307
|
+
"name": "onBeforeUpdate",
|
|
308
|
+
"privacy": "public",
|
|
309
|
+
"return": {
|
|
310
|
+
"type": {
|
|
311
|
+
"text": "() => void"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"parameters": [
|
|
315
|
+
{
|
|
316
|
+
"name": "listener",
|
|
317
|
+
"type": {
|
|
318
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"kind": "method",
|
|
325
|
+
"name": "onAfterUpdate",
|
|
326
|
+
"privacy": "public",
|
|
327
|
+
"return": {
|
|
328
|
+
"type": {
|
|
329
|
+
"text": "() => void"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"parameters": [
|
|
333
|
+
{
|
|
334
|
+
"name": "listener",
|
|
335
|
+
"type": {
|
|
336
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
]
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"exports": [
|
|
345
|
+
{
|
|
346
|
+
"kind": "js",
|
|
347
|
+
"name": "InMemoryDatabase",
|
|
348
|
+
"declaration": {
|
|
349
|
+
"name": "InMemoryDatabase",
|
|
350
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
]
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"kind": "javascript-module",
|
|
357
|
+
"path": "src/data/index.ts",
|
|
175
358
|
"declarations": [],
|
|
176
359
|
"exports": [
|
|
177
360
|
{
|
|
@@ -179,22 +362,49 @@
|
|
|
179
362
|
"name": "*",
|
|
180
363
|
"declaration": {
|
|
181
364
|
"name": "*",
|
|
182
|
-
"package": "./
|
|
365
|
+
"package": "./inMemoryDatabase"
|
|
183
366
|
}
|
|
184
|
-
}
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"kind": "javascript-module",
|
|
372
|
+
"path": "src/design-system/design-system.ts",
|
|
373
|
+
"declarations": [
|
|
374
|
+
{
|
|
375
|
+
"kind": "function",
|
|
376
|
+
"name": "assureDesignSystem",
|
|
377
|
+
"return": {
|
|
378
|
+
"type": {
|
|
379
|
+
"text": "DesignSystemModule"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"parameters": [
|
|
383
|
+
{
|
|
384
|
+
"name": "module",
|
|
385
|
+
"type": {
|
|
386
|
+
"text": "DesignSystemModule"
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"description": "assureDesignSystem.",
|
|
391
|
+
"privacy": "public"
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
"exports": [
|
|
185
395
|
{
|
|
186
396
|
"kind": "js",
|
|
187
|
-
"name": "
|
|
397
|
+
"name": "assureDesignSystem",
|
|
188
398
|
"declaration": {
|
|
189
|
-
"name": "
|
|
190
|
-
"
|
|
399
|
+
"name": "assureDesignSystem",
|
|
400
|
+
"module": "src/design-system/design-system.ts"
|
|
191
401
|
}
|
|
192
402
|
}
|
|
193
403
|
]
|
|
194
404
|
},
|
|
195
405
|
{
|
|
196
406
|
"kind": "javascript-module",
|
|
197
|
-
"path": "src/
|
|
407
|
+
"path": "src/design-system/index.ts",
|
|
198
408
|
"declarations": [],
|
|
199
409
|
"exports": [
|
|
200
410
|
{
|
|
@@ -202,14 +412,14 @@
|
|
|
202
412
|
"name": "*",
|
|
203
413
|
"declaration": {
|
|
204
414
|
"name": "*",
|
|
205
|
-
"package": "./
|
|
415
|
+
"package": "./design-system"
|
|
206
416
|
}
|
|
207
417
|
}
|
|
208
418
|
]
|
|
209
419
|
},
|
|
210
420
|
{
|
|
211
421
|
"kind": "javascript-module",
|
|
212
|
-
"path": "src/
|
|
422
|
+
"path": "src/directives/index.ts",
|
|
213
423
|
"declarations": [],
|
|
214
424
|
"exports": [
|
|
215
425
|
{
|
|
@@ -217,7 +427,7 @@
|
|
|
217
427
|
"name": "*",
|
|
218
428
|
"declaration": {
|
|
219
429
|
"name": "*",
|
|
220
|
-
"package": "./
|
|
430
|
+
"package": "./sync"
|
|
221
431
|
}
|
|
222
432
|
},
|
|
223
433
|
{
|
|
@@ -225,43 +435,134 @@
|
|
|
225
435
|
"name": "*",
|
|
226
436
|
"declaration": {
|
|
227
437
|
"name": "*",
|
|
228
|
-
"package": "./
|
|
438
|
+
"package": "./when-else"
|
|
229
439
|
}
|
|
230
440
|
}
|
|
231
441
|
]
|
|
232
442
|
},
|
|
233
443
|
{
|
|
234
444
|
"kind": "javascript-module",
|
|
235
|
-
"path": "src/
|
|
236
|
-
"declarations": [
|
|
237
|
-
{
|
|
238
|
-
"kind": "function",
|
|
239
|
-
"name": "isDev",
|
|
240
|
-
"description": "Determines if the current environment is a development environment.",
|
|
241
|
-
"privacy": "public"
|
|
242
|
-
}
|
|
243
|
-
],
|
|
445
|
+
"path": "src/decorators/index.ts",
|
|
446
|
+
"declarations": [],
|
|
244
447
|
"exports": [
|
|
245
448
|
{
|
|
246
449
|
"kind": "js",
|
|
247
|
-
"name": "
|
|
450
|
+
"name": "*",
|
|
248
451
|
"declaration": {
|
|
249
|
-
"name": "
|
|
250
|
-
"
|
|
452
|
+
"name": "*",
|
|
453
|
+
"package": "./renderOnChange"
|
|
251
454
|
}
|
|
252
455
|
}
|
|
253
456
|
]
|
|
254
457
|
},
|
|
255
458
|
{
|
|
256
459
|
"kind": "javascript-module",
|
|
257
|
-
"path": "src/
|
|
460
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
258
461
|
"declarations": [
|
|
259
462
|
{
|
|
260
|
-
"kind": "
|
|
261
|
-
"name": "
|
|
262
|
-
"
|
|
263
|
-
|
|
264
|
-
|
|
463
|
+
"kind": "function",
|
|
464
|
+
"name": "renderOnChange",
|
|
465
|
+
"parameters": [
|
|
466
|
+
{
|
|
467
|
+
"name": "target",
|
|
468
|
+
"type": {
|
|
469
|
+
"text": "FASTElement & { render(): void }"
|
|
470
|
+
},
|
|
471
|
+
"description": "The target to define the property change handler on."
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"name": "name",
|
|
475
|
+
"type": {
|
|
476
|
+
"text": "string"
|
|
477
|
+
},
|
|
478
|
+
"description": "The property name."
|
|
479
|
+
}
|
|
480
|
+
],
|
|
481
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
482
|
+
"privacy": "public"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"exports": [
|
|
486
|
+
{
|
|
487
|
+
"kind": "js",
|
|
488
|
+
"name": "renderOnChange",
|
|
489
|
+
"declaration": {
|
|
490
|
+
"name": "renderOnChange",
|
|
491
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"kind": "javascript-module",
|
|
498
|
+
"path": "src/encoding/index.ts",
|
|
499
|
+
"declarations": [],
|
|
500
|
+
"exports": [
|
|
501
|
+
{
|
|
502
|
+
"kind": "js",
|
|
503
|
+
"name": "*",
|
|
504
|
+
"declaration": {
|
|
505
|
+
"name": "*",
|
|
506
|
+
"package": "./base64"
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"kind": "javascript-module",
|
|
513
|
+
"path": "src/env/index.ts",
|
|
514
|
+
"declarations": [],
|
|
515
|
+
"exports": [
|
|
516
|
+
{
|
|
517
|
+
"kind": "js",
|
|
518
|
+
"name": "*",
|
|
519
|
+
"declaration": {
|
|
520
|
+
"name": "*",
|
|
521
|
+
"package": "./is-dev"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"kind": "js",
|
|
526
|
+
"name": "*",
|
|
527
|
+
"declaration": {
|
|
528
|
+
"name": "*",
|
|
529
|
+
"package": "./variables"
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"kind": "javascript-module",
|
|
536
|
+
"path": "src/env/is-dev.ts",
|
|
537
|
+
"declarations": [
|
|
538
|
+
{
|
|
539
|
+
"kind": "function",
|
|
540
|
+
"name": "isDev",
|
|
541
|
+
"description": "Determines if the current environment is a development environment.",
|
|
542
|
+
"privacy": "public"
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"exports": [
|
|
546
|
+
{
|
|
547
|
+
"kind": "js",
|
|
548
|
+
"name": "isDev",
|
|
549
|
+
"declaration": {
|
|
550
|
+
"name": "isDev",
|
|
551
|
+
"module": "src/env/is-dev.ts"
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"kind": "javascript-module",
|
|
558
|
+
"path": "src/env/variables.ts",
|
|
559
|
+
"declarations": [
|
|
560
|
+
{
|
|
561
|
+
"kind": "variable",
|
|
562
|
+
"name": "BUILDER",
|
|
563
|
+
"type": {
|
|
564
|
+
"text": "string"
|
|
565
|
+
}
|
|
265
566
|
},
|
|
266
567
|
{
|
|
267
568
|
"kind": "variable",
|
|
@@ -621,521 +922,220 @@
|
|
|
621
922
|
"name": "FORGOT_PASSWORD_URL",
|
|
622
923
|
"module": "src/env/variables.ts"
|
|
623
924
|
}
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
"kind": "js",
|
|
627
|
-
"name": "RESET_PASSWORD_URL",
|
|
628
|
-
"declaration": {
|
|
629
|
-
"name": "RESET_PASSWORD_URL",
|
|
630
|
-
"module": "src/env/variables.ts"
|
|
631
|
-
}
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"kind": "js",
|
|
635
|
-
"name": "SSO_LIST_URL",
|
|
636
|
-
"declaration": {
|
|
637
|
-
"name": "SSO_LIST_URL",
|
|
638
|
-
"module": "src/env/variables.ts"
|
|
639
|
-
}
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
"kind": "js",
|
|
643
|
-
"name": "SSO_LOGIN_URL",
|
|
644
|
-
"declaration": {
|
|
645
|
-
"name": "SSO_LOGIN_URL",
|
|
646
|
-
"module": "src/env/variables.ts"
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
]
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"kind": "javascript-module",
|
|
653
|
-
"path": "src/error/errorMap.ts",
|
|
654
|
-
"declarations": [
|
|
655
|
-
{
|
|
656
|
-
"kind": "class",
|
|
657
|
-
"description": "",
|
|
658
|
-
"name": "DefaultErrorMap",
|
|
659
|
-
"members": [
|
|
660
|
-
{
|
|
661
|
-
"kind": "field",
|
|
662
|
-
"name": "map",
|
|
663
|
-
"privacy": "private",
|
|
664
|
-
"default": "new Map<keyof TErrorDetailMap, Error>()"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"kind": "field",
|
|
668
|
-
"name": "lastError",
|
|
669
|
-
"type": {
|
|
670
|
-
"text": "Error"
|
|
671
|
-
},
|
|
672
|
-
"description": "{@inheritDoc ErrorMap.lastError}"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"kind": "method",
|
|
676
|
-
"name": "set",
|
|
677
|
-
"return": {
|
|
678
|
-
"type": {
|
|
679
|
-
"text": "void"
|
|
680
|
-
}
|
|
681
|
-
},
|
|
682
|
-
"parameters": [
|
|
683
|
-
{
|
|
684
|
-
"name": "key",
|
|
685
|
-
"type": {
|
|
686
|
-
"text": "keyof TErrorDetailMap"
|
|
687
|
-
}
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
"name": "error",
|
|
691
|
-
"type": {
|
|
692
|
-
"text": "Error"
|
|
693
|
-
}
|
|
694
|
-
}
|
|
695
|
-
],
|
|
696
|
-
"description": "{@inheritDoc ErrorMap.set}"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"kind": "method",
|
|
700
|
-
"name": "get",
|
|
701
|
-
"return": {
|
|
702
|
-
"type": {
|
|
703
|
-
"text": ""
|
|
704
|
-
}
|
|
705
|
-
},
|
|
706
|
-
"parameters": [
|
|
707
|
-
{
|
|
708
|
-
"name": "key",
|
|
709
|
-
"type": {
|
|
710
|
-
"text": "keyof TErrorDetailMap"
|
|
711
|
-
},
|
|
712
|
-
"description": "The key."
|
|
713
|
-
}
|
|
714
|
-
],
|
|
715
|
-
"description": "Get an error by key.",
|
|
716
|
-
"privacy": "public"
|
|
717
|
-
},
|
|
718
|
-
{
|
|
719
|
-
"kind": "method",
|
|
720
|
-
"name": "has",
|
|
721
|
-
"return": {
|
|
722
|
-
"type": {
|
|
723
|
-
"text": ""
|
|
724
|
-
}
|
|
725
|
-
},
|
|
726
|
-
"parameters": [
|
|
727
|
-
{
|
|
728
|
-
"name": "key",
|
|
729
|
-
"type": {
|
|
730
|
-
"text": "keyof TErrorDetailMap"
|
|
731
|
-
},
|
|
732
|
-
"description": "The key."
|
|
733
|
-
}
|
|
734
|
-
],
|
|
735
|
-
"description": "Has an error for key.",
|
|
736
|
-
"privacy": "public"
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
"kind": "method",
|
|
740
|
-
"name": "delete",
|
|
741
|
-
"return": {
|
|
742
|
-
"type": {
|
|
743
|
-
"text": ""
|
|
744
|
-
}
|
|
745
|
-
},
|
|
746
|
-
"parameters": [
|
|
747
|
-
{
|
|
748
|
-
"name": "key",
|
|
749
|
-
"type": {
|
|
750
|
-
"text": "keyof TErrorDetailMap"
|
|
751
|
-
},
|
|
752
|
-
"description": "The key."
|
|
753
|
-
}
|
|
754
|
-
],
|
|
755
|
-
"description": "Delete an error.",
|
|
756
|
-
"privacy": "public"
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
"kind": "method",
|
|
760
|
-
"name": "clear",
|
|
761
|
-
"description": "Clear errors.",
|
|
762
|
-
"privacy": "public"
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"kind": "field",
|
|
766
|
-
"name": "size",
|
|
767
|
-
"type": {
|
|
768
|
-
"text": "number"
|
|
769
|
-
},
|
|
770
|
-
"description": "The size of the error map.",
|
|
771
|
-
"return": {
|
|
772
|
-
"type": {
|
|
773
|
-
"text": ""
|
|
774
|
-
}
|
|
775
|
-
},
|
|
776
|
-
"privacy": "public",
|
|
777
|
-
"readonly": true
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"kind": "method",
|
|
781
|
-
"name": "values",
|
|
782
|
-
"privacy": "public"
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
"kind": "field",
|
|
786
|
-
"name": "messages",
|
|
787
|
-
"type": {
|
|
788
|
-
"text": "string"
|
|
789
|
-
},
|
|
790
|
-
"description": "{@inheritDoc ErrorMap.messages}",
|
|
791
|
-
"readonly": true
|
|
792
|
-
}
|
|
793
|
-
]
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"kind": "function",
|
|
797
|
-
"name": "createErrorMap",
|
|
798
|
-
"return": {
|
|
799
|
-
"type": {
|
|
800
|
-
"text": ""
|
|
801
|
-
}
|
|
802
|
-
},
|
|
803
|
-
"parameters": [
|
|
804
|
-
{
|
|
805
|
-
"name": "logger",
|
|
806
|
-
"type": {
|
|
807
|
-
"text": "ErrorMapLogger"
|
|
808
|
-
},
|
|
809
|
-
"description": "A logger error method reference."
|
|
810
|
-
}
|
|
811
|
-
],
|
|
812
|
-
"description": "A factory to create the error map.",
|
|
813
|
-
"privacy": "public"
|
|
814
|
-
}
|
|
815
|
-
],
|
|
816
|
-
"exports": [
|
|
817
|
-
{
|
|
818
|
-
"kind": "js",
|
|
819
|
-
"name": "DefaultErrorMap",
|
|
820
|
-
"declaration": {
|
|
821
|
-
"name": "DefaultErrorMap",
|
|
822
|
-
"module": "src/error/errorMap.ts"
|
|
823
|
-
}
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
"kind": "js",
|
|
827
|
-
"name": "createErrorMap",
|
|
828
|
-
"declaration": {
|
|
829
|
-
"name": "createErrorMap",
|
|
830
|
-
"module": "src/error/errorMap.ts"
|
|
831
|
-
}
|
|
832
|
-
}
|
|
833
|
-
]
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"kind": "javascript-module",
|
|
837
|
-
"path": "src/error/index.ts",
|
|
838
|
-
"declarations": [],
|
|
839
|
-
"exports": [
|
|
840
|
-
{
|
|
841
|
-
"kind": "js",
|
|
842
|
-
"name": "*",
|
|
843
|
-
"declaration": {
|
|
844
|
-
"name": "*",
|
|
845
|
-
"package": "./errorMap"
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
]
|
|
849
|
-
},
|
|
850
|
-
{
|
|
851
|
-
"kind": "javascript-module",
|
|
852
|
-
"path": "src/design-system/design-system.ts",
|
|
853
|
-
"declarations": [
|
|
854
|
-
{
|
|
855
|
-
"kind": "function",
|
|
856
|
-
"name": "assureDesignSystem",
|
|
857
|
-
"return": {
|
|
858
|
-
"type": {
|
|
859
|
-
"text": "DesignSystemModule"
|
|
860
|
-
}
|
|
861
|
-
},
|
|
862
|
-
"parameters": [
|
|
863
|
-
{
|
|
864
|
-
"name": "module",
|
|
865
|
-
"type": {
|
|
866
|
-
"text": "DesignSystemModule"
|
|
867
|
-
}
|
|
868
|
-
}
|
|
869
|
-
],
|
|
870
|
-
"description": "assureDesignSystem.",
|
|
871
|
-
"privacy": "public"
|
|
872
|
-
}
|
|
873
|
-
],
|
|
874
|
-
"exports": [
|
|
875
|
-
{
|
|
876
|
-
"kind": "js",
|
|
877
|
-
"name": "assureDesignSystem",
|
|
878
|
-
"declaration": {
|
|
879
|
-
"name": "assureDesignSystem",
|
|
880
|
-
"module": "src/design-system/design-system.ts"
|
|
881
|
-
}
|
|
882
|
-
}
|
|
883
|
-
]
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"kind": "javascript-module",
|
|
887
|
-
"path": "src/design-system/index.ts",
|
|
888
|
-
"declarations": [],
|
|
889
|
-
"exports": [
|
|
890
|
-
{
|
|
891
|
-
"kind": "js",
|
|
892
|
-
"name": "*",
|
|
893
|
-
"declaration": {
|
|
894
|
-
"name": "*",
|
|
895
|
-
"package": "./design-system"
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
]
|
|
899
|
-
},
|
|
900
|
-
{
|
|
901
|
-
"kind": "javascript-module",
|
|
902
|
-
"path": "src/decorators/index.ts",
|
|
903
|
-
"declarations": [],
|
|
904
|
-
"exports": [
|
|
905
|
-
{
|
|
906
|
-
"kind": "js",
|
|
907
|
-
"name": "*",
|
|
908
|
-
"declaration": {
|
|
909
|
-
"name": "*",
|
|
910
|
-
"package": "./renderOnChange"
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
]
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"kind": "javascript-module",
|
|
917
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
918
|
-
"declarations": [
|
|
919
|
-
{
|
|
920
|
-
"kind": "function",
|
|
921
|
-
"name": "renderOnChange",
|
|
922
|
-
"parameters": [
|
|
923
|
-
{
|
|
924
|
-
"name": "target",
|
|
925
|
-
"type": {
|
|
926
|
-
"text": "FASTElement & { render(): void }"
|
|
927
|
-
},
|
|
928
|
-
"description": "The target to define the property change handler on."
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"name": "name",
|
|
932
|
-
"type": {
|
|
933
|
-
"text": "string"
|
|
934
|
-
},
|
|
935
|
-
"description": "The property name."
|
|
936
|
-
}
|
|
937
|
-
],
|
|
938
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
939
|
-
"privacy": "public"
|
|
940
|
-
}
|
|
941
|
-
],
|
|
942
|
-
"exports": [
|
|
925
|
+
},
|
|
943
926
|
{
|
|
944
927
|
"kind": "js",
|
|
945
|
-
"name": "
|
|
928
|
+
"name": "RESET_PASSWORD_URL",
|
|
946
929
|
"declaration": {
|
|
947
|
-
"name": "
|
|
948
|
-
"module": "src/
|
|
930
|
+
"name": "RESET_PASSWORD_URL",
|
|
931
|
+
"module": "src/env/variables.ts"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"kind": "js",
|
|
936
|
+
"name": "SSO_LIST_URL",
|
|
937
|
+
"declaration": {
|
|
938
|
+
"name": "SSO_LIST_URL",
|
|
939
|
+
"module": "src/env/variables.ts"
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"kind": "js",
|
|
944
|
+
"name": "SSO_LOGIN_URL",
|
|
945
|
+
"declaration": {
|
|
946
|
+
"name": "SSO_LOGIN_URL",
|
|
947
|
+
"module": "src/env/variables.ts"
|
|
949
948
|
}
|
|
950
949
|
}
|
|
951
950
|
]
|
|
952
951
|
},
|
|
953
952
|
{
|
|
954
953
|
"kind": "javascript-module",
|
|
955
|
-
"path": "src/
|
|
954
|
+
"path": "src/error/errorMap.ts",
|
|
956
955
|
"declarations": [
|
|
957
956
|
{
|
|
958
957
|
"kind": "class",
|
|
959
|
-
"description": "
|
|
960
|
-
"name": "
|
|
958
|
+
"description": "",
|
|
959
|
+
"name": "DefaultErrorMap",
|
|
961
960
|
"members": [
|
|
962
961
|
{
|
|
963
962
|
"kind": "field",
|
|
964
|
-
"name": "
|
|
965
|
-
"
|
|
966
|
-
|
|
967
|
-
},
|
|
968
|
-
"privacy": "public",
|
|
969
|
-
"default": "false"
|
|
963
|
+
"name": "map",
|
|
964
|
+
"privacy": "private",
|
|
965
|
+
"default": "new Map<keyof TErrorDetailMap, Error>()"
|
|
970
966
|
},
|
|
971
967
|
{
|
|
972
968
|
"kind": "field",
|
|
973
|
-
"name": "
|
|
969
|
+
"name": "lastError",
|
|
974
970
|
"type": {
|
|
975
|
-
"text": "
|
|
971
|
+
"text": "Error"
|
|
976
972
|
},
|
|
977
|
-
"
|
|
978
|
-
"default": "{}"
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"kind": "field",
|
|
982
|
-
"name": "beforeUpdateListeners",
|
|
983
|
-
"privacy": "private"
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
"kind": "field",
|
|
987
|
-
"name": "afterUpdateListeners",
|
|
988
|
-
"privacy": "private"
|
|
973
|
+
"description": "{@inheritDoc ErrorMap.lastError}"
|
|
989
974
|
},
|
|
990
975
|
{
|
|
991
976
|
"kind": "method",
|
|
992
|
-
"name": "
|
|
993
|
-
"privacy": "public",
|
|
977
|
+
"name": "set",
|
|
994
978
|
"return": {
|
|
995
979
|
"type": {
|
|
996
|
-
"text": "
|
|
980
|
+
"text": "void"
|
|
997
981
|
}
|
|
998
982
|
},
|
|
999
983
|
"parameters": [
|
|
1000
984
|
{
|
|
1001
|
-
"name": "
|
|
985
|
+
"name": "key",
|
|
1002
986
|
"type": {
|
|
1003
|
-
"text": "
|
|
987
|
+
"text": "keyof TErrorDetailMap"
|
|
1004
988
|
}
|
|
1005
|
-
}
|
|
1006
|
-
]
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"kind": "method",
|
|
1010
|
-
"name": "read",
|
|
1011
|
-
"privacy": "public",
|
|
1012
|
-
"return": {
|
|
1013
|
-
"type": {
|
|
1014
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
1015
|
-
}
|
|
1016
|
-
},
|
|
1017
|
-
"parameters": [
|
|
989
|
+
},
|
|
1018
990
|
{
|
|
1019
|
-
"name": "
|
|
991
|
+
"name": "error",
|
|
1020
992
|
"type": {
|
|
1021
|
-
"text": "
|
|
993
|
+
"text": "Error"
|
|
1022
994
|
}
|
|
1023
995
|
}
|
|
1024
|
-
]
|
|
996
|
+
],
|
|
997
|
+
"description": "{@inheritDoc ErrorMap.set}"
|
|
1025
998
|
},
|
|
1026
999
|
{
|
|
1027
1000
|
"kind": "method",
|
|
1028
|
-
"name": "
|
|
1029
|
-
"privacy": "public",
|
|
1001
|
+
"name": "get",
|
|
1030
1002
|
"return": {
|
|
1031
1003
|
"type": {
|
|
1032
|
-
"text": "
|
|
1004
|
+
"text": ""
|
|
1033
1005
|
}
|
|
1034
1006
|
},
|
|
1035
1007
|
"parameters": [
|
|
1036
1008
|
{
|
|
1037
|
-
"name": "
|
|
1038
|
-
"type": {
|
|
1039
|
-
"text": "string"
|
|
1040
|
-
}
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"name": "newValue",
|
|
1009
|
+
"name": "key",
|
|
1044
1010
|
"type": {
|
|
1045
|
-
"text": "
|
|
1046
|
-
}
|
|
1011
|
+
"text": "keyof TErrorDetailMap"
|
|
1012
|
+
},
|
|
1013
|
+
"description": "The key."
|
|
1047
1014
|
}
|
|
1048
|
-
]
|
|
1015
|
+
],
|
|
1016
|
+
"description": "Get an error by key.",
|
|
1017
|
+
"privacy": "public"
|
|
1049
1018
|
},
|
|
1050
1019
|
{
|
|
1051
1020
|
"kind": "method",
|
|
1052
|
-
"name": "
|
|
1053
|
-
"privacy": "public",
|
|
1021
|
+
"name": "has",
|
|
1054
1022
|
"return": {
|
|
1055
1023
|
"type": {
|
|
1056
|
-
"text": "
|
|
1024
|
+
"text": ""
|
|
1057
1025
|
}
|
|
1058
1026
|
},
|
|
1059
1027
|
"parameters": [
|
|
1060
1028
|
{
|
|
1061
|
-
"name": "
|
|
1029
|
+
"name": "key",
|
|
1062
1030
|
"type": {
|
|
1063
|
-
"text": "
|
|
1064
|
-
}
|
|
1031
|
+
"text": "keyof TErrorDetailMap"
|
|
1032
|
+
},
|
|
1033
|
+
"description": "The key."
|
|
1065
1034
|
}
|
|
1066
|
-
]
|
|
1035
|
+
],
|
|
1036
|
+
"description": "Has an error for key.",
|
|
1037
|
+
"privacy": "public"
|
|
1067
1038
|
},
|
|
1068
1039
|
{
|
|
1069
1040
|
"kind": "method",
|
|
1070
|
-
"name": "
|
|
1071
|
-
"privacy": "public",
|
|
1041
|
+
"name": "delete",
|
|
1072
1042
|
"return": {
|
|
1073
1043
|
"type": {
|
|
1074
|
-
"text": "
|
|
1044
|
+
"text": ""
|
|
1075
1045
|
}
|
|
1076
1046
|
},
|
|
1077
1047
|
"parameters": [
|
|
1078
1048
|
{
|
|
1079
|
-
"name": "
|
|
1049
|
+
"name": "key",
|
|
1080
1050
|
"type": {
|
|
1081
|
-
"text": "
|
|
1082
|
-
}
|
|
1051
|
+
"text": "keyof TErrorDetailMap"
|
|
1052
|
+
},
|
|
1053
|
+
"description": "The key."
|
|
1083
1054
|
}
|
|
1084
|
-
]
|
|
1055
|
+
],
|
|
1056
|
+
"description": "Delete an error.",
|
|
1057
|
+
"privacy": "public"
|
|
1085
1058
|
},
|
|
1086
1059
|
{
|
|
1087
1060
|
"kind": "method",
|
|
1088
|
-
"name": "
|
|
1089
|
-
"
|
|
1061
|
+
"name": "clear",
|
|
1062
|
+
"description": "Clear errors.",
|
|
1063
|
+
"privacy": "public"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"kind": "field",
|
|
1067
|
+
"name": "size",
|
|
1068
|
+
"type": {
|
|
1069
|
+
"text": "number"
|
|
1070
|
+
},
|
|
1071
|
+
"description": "The size of the error map.",
|
|
1090
1072
|
"return": {
|
|
1091
1073
|
"type": {
|
|
1092
|
-
"text": "
|
|
1074
|
+
"text": ""
|
|
1093
1075
|
}
|
|
1094
1076
|
},
|
|
1095
|
-
"
|
|
1096
|
-
|
|
1097
|
-
"name": "listener",
|
|
1098
|
-
"type": {
|
|
1099
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
]
|
|
1077
|
+
"privacy": "public",
|
|
1078
|
+
"readonly": true
|
|
1103
1079
|
},
|
|
1104
1080
|
{
|
|
1105
1081
|
"kind": "method",
|
|
1106
|
-
"name": "
|
|
1107
|
-
"privacy": "public"
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1082
|
+
"name": "values",
|
|
1083
|
+
"privacy": "public"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "field",
|
|
1087
|
+
"name": "messages",
|
|
1088
|
+
"type": {
|
|
1089
|
+
"text": "string"
|
|
1112
1090
|
},
|
|
1113
|
-
"
|
|
1114
|
-
|
|
1115
|
-
"name": "listener",
|
|
1116
|
-
"type": {
|
|
1117
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
]
|
|
1091
|
+
"description": "{@inheritDoc ErrorMap.messages}",
|
|
1092
|
+
"readonly": true
|
|
1121
1093
|
}
|
|
1122
1094
|
]
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"kind": "function",
|
|
1098
|
+
"name": "createErrorMap",
|
|
1099
|
+
"return": {
|
|
1100
|
+
"type": {
|
|
1101
|
+
"text": ""
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
"parameters": [
|
|
1105
|
+
{
|
|
1106
|
+
"name": "logger",
|
|
1107
|
+
"type": {
|
|
1108
|
+
"text": "ErrorMapLogger"
|
|
1109
|
+
},
|
|
1110
|
+
"description": "A logger error method reference."
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"description": "A factory to create the error map.",
|
|
1114
|
+
"privacy": "public"
|
|
1123
1115
|
}
|
|
1124
1116
|
],
|
|
1125
1117
|
"exports": [
|
|
1126
1118
|
{
|
|
1127
1119
|
"kind": "js",
|
|
1128
|
-
"name": "
|
|
1120
|
+
"name": "DefaultErrorMap",
|
|
1129
1121
|
"declaration": {
|
|
1130
|
-
"name": "
|
|
1131
|
-
"module": "src/
|
|
1122
|
+
"name": "DefaultErrorMap",
|
|
1123
|
+
"module": "src/error/errorMap.ts"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"kind": "js",
|
|
1128
|
+
"name": "createErrorMap",
|
|
1129
|
+
"declaration": {
|
|
1130
|
+
"name": "createErrorMap",
|
|
1131
|
+
"module": "src/error/errorMap.ts"
|
|
1132
1132
|
}
|
|
1133
1133
|
}
|
|
1134
1134
|
]
|
|
1135
1135
|
},
|
|
1136
1136
|
{
|
|
1137
1137
|
"kind": "javascript-module",
|
|
1138
|
-
"path": "src/
|
|
1138
|
+
"path": "src/error/index.ts",
|
|
1139
1139
|
"declarations": [],
|
|
1140
1140
|
"exports": [
|
|
1141
1141
|
{
|
|
@@ -1143,7 +1143,7 @@
|
|
|
1143
1143
|
"name": "*",
|
|
1144
1144
|
"declaration": {
|
|
1145
1145
|
"name": "*",
|
|
1146
|
-
"package": "./
|
|
1146
|
+
"package": "./errorMap"
|
|
1147
1147
|
}
|
|
1148
1148
|
}
|
|
1149
1149
|
]
|
|
@@ -1685,21 +1685,6 @@
|
|
|
1685
1685
|
}
|
|
1686
1686
|
]
|
|
1687
1687
|
},
|
|
1688
|
-
{
|
|
1689
|
-
"kind": "javascript-module",
|
|
1690
|
-
"path": "src/serializers/index.ts",
|
|
1691
|
-
"declarations": [],
|
|
1692
|
-
"exports": [
|
|
1693
|
-
{
|
|
1694
|
-
"kind": "js",
|
|
1695
|
-
"name": "*",
|
|
1696
|
-
"declaration": {
|
|
1697
|
-
"name": "*",
|
|
1698
|
-
"package": "./json"
|
|
1699
|
-
}
|
|
1700
|
-
}
|
|
1701
|
-
]
|
|
1702
|
-
},
|
|
1703
1688
|
{
|
|
1704
1689
|
"kind": "javascript-module",
|
|
1705
1690
|
"path": "src/resource/index.ts",
|
|
@@ -1741,6 +1726,21 @@
|
|
|
1741
1726
|
}
|
|
1742
1727
|
]
|
|
1743
1728
|
},
|
|
1729
|
+
{
|
|
1730
|
+
"kind": "javascript-module",
|
|
1731
|
+
"path": "src/serializers/index.ts",
|
|
1732
|
+
"declarations": [],
|
|
1733
|
+
"exports": [
|
|
1734
|
+
{
|
|
1735
|
+
"kind": "js",
|
|
1736
|
+
"name": "*",
|
|
1737
|
+
"declaration": {
|
|
1738
|
+
"name": "*",
|
|
1739
|
+
"package": "./json"
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
]
|
|
1743
|
+
},
|
|
1744
1744
|
{
|
|
1745
1745
|
"kind": "javascript-module",
|
|
1746
1746
|
"path": "src/state/index.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.255.0",
|
|
4
|
+
"version": "14.255.2-alpha-e767c4c.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@genesislcap/foundation-testing": "14.255.0",
|
|
31
|
-
"@genesislcap/genx": "14.255.0",
|
|
32
|
-
"@genesislcap/rollup-builder": "14.255.0",
|
|
33
|
-
"@genesislcap/ts-builder": "14.255.0",
|
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.255.0",
|
|
35
|
-
"@genesislcap/vite-builder": "14.255.0",
|
|
36
|
-
"@genesislcap/webpack-builder": "14.255.0",
|
|
30
|
+
"@genesislcap/foundation-testing": "14.255.2-alpha-e767c4c.0",
|
|
31
|
+
"@genesislcap/genx": "14.255.2-alpha-e767c4c.0",
|
|
32
|
+
"@genesislcap/rollup-builder": "14.255.2-alpha-e767c4c.0",
|
|
33
|
+
"@genesislcap/ts-builder": "14.255.2-alpha-e767c4c.0",
|
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.255.2-alpha-e767c4c.0",
|
|
35
|
+
"@genesislcap/vite-builder": "14.255.2-alpha-e767c4c.0",
|
|
36
|
+
"@genesislcap/webpack-builder": "14.255.2-alpha-e767c4c.0",
|
|
37
37
|
"rimraf": "^5.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@genesislcap/foundation-logger": "14.255.0",
|
|
40
|
+
"@genesislcap/foundation-logger": "14.255.2-alpha-e767c4c.0",
|
|
41
41
|
"@microsoft/fast-components": "2.30.6",
|
|
42
42
|
"@microsoft/fast-element": "1.14.0",
|
|
43
43
|
"@microsoft/fast-foundation": "2.49.6",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"customElements": "dist/custom-elements.json",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "cc44073260f0f5ea366d4e8f09ceffce637f3b19"
|
|
59
59
|
}
|