@genesislcap/foundation-utils 14.214.1-alpha-aba6589.0 → 14.214.1-openfin-notifications.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +216 -216
  2. package/package.json +10 -10
@@ -365,6 +365,56 @@
365
365
  }
366
366
  ]
367
367
  },
368
+ {
369
+ "kind": "javascript-module",
370
+ "path": "src/design-system/design-system.ts",
371
+ "declarations": [
372
+ {
373
+ "kind": "function",
374
+ "name": "assureDesignSystem",
375
+ "return": {
376
+ "type": {
377
+ "text": "DesignSystemModule"
378
+ }
379
+ },
380
+ "parameters": [
381
+ {
382
+ "name": "module",
383
+ "type": {
384
+ "text": "DesignSystemModule"
385
+ }
386
+ }
387
+ ],
388
+ "description": "assureDesignSystem.",
389
+ "privacy": "public"
390
+ }
391
+ ],
392
+ "exports": [
393
+ {
394
+ "kind": "js",
395
+ "name": "assureDesignSystem",
396
+ "declaration": {
397
+ "name": "assureDesignSystem",
398
+ "module": "src/design-system/design-system.ts"
399
+ }
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "kind": "javascript-module",
405
+ "path": "src/design-system/index.ts",
406
+ "declarations": [],
407
+ "exports": [
408
+ {
409
+ "kind": "js",
410
+ "name": "*",
411
+ "declaration": {
412
+ "name": "*",
413
+ "package": "./design-system"
414
+ }
415
+ }
416
+ ]
417
+ },
368
418
  {
369
419
  "kind": "javascript-module",
370
420
  "path": "src/decorators/index.ts",
@@ -420,65 +470,191 @@
420
470
  },
421
471
  {
422
472
  "kind": "javascript-module",
423
- "path": "src/directives/index.ts",
424
- "declarations": [],
425
- "exports": [
473
+ "path": "src/error/errorMap.ts",
474
+ "declarations": [
426
475
  {
427
- "kind": "js",
428
- "name": "*",
429
- "declaration": {
430
- "name": "*",
431
- "package": "./sync"
432
- }
476
+ "kind": "class",
477
+ "description": "",
478
+ "name": "DefaultErrorMap",
479
+ "members": [
480
+ {
481
+ "kind": "field",
482
+ "name": "map",
483
+ "privacy": "private",
484
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
485
+ },
486
+ {
487
+ "kind": "field",
488
+ "name": "lastError",
489
+ "type": {
490
+ "text": "Error"
491
+ },
492
+ "description": "{@inheritDoc ErrorMap.lastError}"
493
+ },
494
+ {
495
+ "kind": "method",
496
+ "name": "set",
497
+ "return": {
498
+ "type": {
499
+ "text": "void"
500
+ }
501
+ },
502
+ "parameters": [
503
+ {
504
+ "name": "key",
505
+ "type": {
506
+ "text": "keyof TErrorDetailMap"
507
+ }
508
+ },
509
+ {
510
+ "name": "error",
511
+ "type": {
512
+ "text": "Error"
513
+ }
514
+ }
515
+ ],
516
+ "description": "{@inheritDoc ErrorMap.set}"
517
+ },
518
+ {
519
+ "kind": "method",
520
+ "name": "get",
521
+ "return": {
522
+ "type": {
523
+ "text": ""
524
+ }
525
+ },
526
+ "parameters": [
527
+ {
528
+ "name": "key",
529
+ "type": {
530
+ "text": "keyof TErrorDetailMap"
531
+ },
532
+ "description": "The key."
533
+ }
534
+ ],
535
+ "description": "Get an error by key.",
536
+ "privacy": "public"
537
+ },
538
+ {
539
+ "kind": "method",
540
+ "name": "has",
541
+ "return": {
542
+ "type": {
543
+ "text": ""
544
+ }
545
+ },
546
+ "parameters": [
547
+ {
548
+ "name": "key",
549
+ "type": {
550
+ "text": "keyof TErrorDetailMap"
551
+ },
552
+ "description": "The key."
553
+ }
554
+ ],
555
+ "description": "Has an error for key.",
556
+ "privacy": "public"
557
+ },
558
+ {
559
+ "kind": "method",
560
+ "name": "delete",
561
+ "return": {
562
+ "type": {
563
+ "text": ""
564
+ }
565
+ },
566
+ "parameters": [
567
+ {
568
+ "name": "key",
569
+ "type": {
570
+ "text": "keyof TErrorDetailMap"
571
+ },
572
+ "description": "The key."
573
+ }
574
+ ],
575
+ "description": "Delete an error.",
576
+ "privacy": "public"
577
+ },
578
+ {
579
+ "kind": "method",
580
+ "name": "clear",
581
+ "description": "Clear errors.",
582
+ "privacy": "public"
583
+ },
584
+ {
585
+ "kind": "field",
586
+ "name": "size",
587
+ "type": {
588
+ "text": "number"
589
+ },
590
+ "description": "The size of the error map.",
591
+ "return": {
592
+ "type": {
593
+ "text": ""
594
+ }
595
+ },
596
+ "privacy": "public",
597
+ "readonly": true
598
+ },
599
+ {
600
+ "kind": "method",
601
+ "name": "values",
602
+ "privacy": "public"
603
+ },
604
+ {
605
+ "kind": "field",
606
+ "name": "messages",
607
+ "type": {
608
+ "text": "string"
609
+ },
610
+ "description": "{@inheritDoc ErrorMap.messages}",
611
+ "readonly": true
612
+ }
613
+ ]
433
614
  },
434
- {
435
- "kind": "js",
436
- "name": "*",
437
- "declaration": {
438
- "name": "*",
439
- "package": "./when-else"
440
- }
441
- }
442
- ]
443
- },
444
- {
445
- "kind": "javascript-module",
446
- "path": "src/design-system/design-system.ts",
447
- "declarations": [
448
615
  {
449
616
  "kind": "function",
450
- "name": "assureDesignSystem",
617
+ "name": "createErrorMap",
451
618
  "return": {
452
619
  "type": {
453
- "text": "DesignSystemModule"
620
+ "text": ""
454
621
  }
455
622
  },
456
623
  "parameters": [
457
624
  {
458
- "name": "module",
625
+ "name": "logger",
459
626
  "type": {
460
- "text": "DesignSystemModule"
461
- }
627
+ "text": "ErrorMapLogger"
628
+ },
629
+ "description": "A logger error method reference."
462
630
  }
463
631
  ],
464
- "description": "assureDesignSystem.",
632
+ "description": "A factory to create the error map.",
465
633
  "privacy": "public"
466
634
  }
467
635
  ],
468
636
  "exports": [
469
637
  {
470
638
  "kind": "js",
471
- "name": "assureDesignSystem",
639
+ "name": "DefaultErrorMap",
472
640
  "declaration": {
473
- "name": "assureDesignSystem",
474
- "module": "src/design-system/design-system.ts"
641
+ "name": "DefaultErrorMap",
642
+ "module": "src/error/errorMap.ts"
643
+ }
644
+ },
645
+ {
646
+ "kind": "js",
647
+ "name": "createErrorMap",
648
+ "declaration": {
649
+ "name": "createErrorMap",
650
+ "module": "src/error/errorMap.ts"
475
651
  }
476
652
  }
477
653
  ]
478
654
  },
479
655
  {
480
656
  "kind": "javascript-module",
481
- "path": "src/design-system/index.ts",
657
+ "path": "src/error/index.ts",
482
658
  "declarations": [],
483
659
  "exports": [
484
660
  {
@@ -486,7 +662,7 @@
486
662
  "name": "*",
487
663
  "declaration": {
488
664
  "name": "*",
489
- "package": "./design-system"
665
+ "package": "./errorMap"
490
666
  }
491
667
  }
492
668
  ]
@@ -731,199 +907,23 @@
731
907
  },
732
908
  {
733
909
  "kind": "javascript-module",
734
- "path": "src/error/errorMap.ts",
735
- "declarations": [
736
- {
737
- "kind": "class",
738
- "description": "",
739
- "name": "DefaultErrorMap",
740
- "members": [
741
- {
742
- "kind": "field",
743
- "name": "map",
744
- "privacy": "private",
745
- "default": "new Map<keyof TErrorDetailMap, Error>()"
746
- },
747
- {
748
- "kind": "field",
749
- "name": "lastError",
750
- "type": {
751
- "text": "Error"
752
- },
753
- "description": "{@inheritDoc ErrorMap.lastError}"
754
- },
755
- {
756
- "kind": "method",
757
- "name": "set",
758
- "return": {
759
- "type": {
760
- "text": "void"
761
- }
762
- },
763
- "parameters": [
764
- {
765
- "name": "key",
766
- "type": {
767
- "text": "keyof TErrorDetailMap"
768
- }
769
- },
770
- {
771
- "name": "error",
772
- "type": {
773
- "text": "Error"
774
- }
775
- }
776
- ],
777
- "description": "{@inheritDoc ErrorMap.set}"
778
- },
779
- {
780
- "kind": "method",
781
- "name": "get",
782
- "return": {
783
- "type": {
784
- "text": ""
785
- }
786
- },
787
- "parameters": [
788
- {
789
- "name": "key",
790
- "type": {
791
- "text": "keyof TErrorDetailMap"
792
- },
793
- "description": "The key."
794
- }
795
- ],
796
- "description": "Get an error by key.",
797
- "privacy": "public"
798
- },
799
- {
800
- "kind": "method",
801
- "name": "has",
802
- "return": {
803
- "type": {
804
- "text": ""
805
- }
806
- },
807
- "parameters": [
808
- {
809
- "name": "key",
810
- "type": {
811
- "text": "keyof TErrorDetailMap"
812
- },
813
- "description": "The key."
814
- }
815
- ],
816
- "description": "Has an error for key.",
817
- "privacy": "public"
818
- },
819
- {
820
- "kind": "method",
821
- "name": "delete",
822
- "return": {
823
- "type": {
824
- "text": ""
825
- }
826
- },
827
- "parameters": [
828
- {
829
- "name": "key",
830
- "type": {
831
- "text": "keyof TErrorDetailMap"
832
- },
833
- "description": "The key."
834
- }
835
- ],
836
- "description": "Delete an error.",
837
- "privacy": "public"
838
- },
839
- {
840
- "kind": "method",
841
- "name": "clear",
842
- "description": "Clear errors.",
843
- "privacy": "public"
844
- },
845
- {
846
- "kind": "field",
847
- "name": "size",
848
- "type": {
849
- "text": "number"
850
- },
851
- "description": "The size of the error map.",
852
- "return": {
853
- "type": {
854
- "text": ""
855
- }
856
- },
857
- "privacy": "public",
858
- "readonly": true
859
- },
860
- {
861
- "kind": "method",
862
- "name": "values",
863
- "privacy": "public"
864
- },
865
- {
866
- "kind": "field",
867
- "name": "messages",
868
- "type": {
869
- "text": "string"
870
- },
871
- "description": "{@inheritDoc ErrorMap.messages}",
872
- "readonly": true
873
- }
874
- ]
875
- },
876
- {
877
- "kind": "function",
878
- "name": "createErrorMap",
879
- "return": {
880
- "type": {
881
- "text": ""
882
- }
883
- },
884
- "parameters": [
885
- {
886
- "name": "logger",
887
- "type": {
888
- "text": "ErrorMapLogger"
889
- },
890
- "description": "A logger error method reference."
891
- }
892
- ],
893
- "description": "A factory to create the error map.",
894
- "privacy": "public"
895
- }
896
- ],
910
+ "path": "src/directives/index.ts",
911
+ "declarations": [],
897
912
  "exports": [
898
913
  {
899
914
  "kind": "js",
900
- "name": "DefaultErrorMap",
915
+ "name": "*",
901
916
  "declaration": {
902
- "name": "DefaultErrorMap",
903
- "module": "src/error/errorMap.ts"
917
+ "name": "*",
918
+ "package": "./sync"
904
919
  }
905
920
  },
906
- {
907
- "kind": "js",
908
- "name": "createErrorMap",
909
- "declaration": {
910
- "name": "createErrorMap",
911
- "module": "src/error/errorMap.ts"
912
- }
913
- }
914
- ]
915
- },
916
- {
917
- "kind": "javascript-module",
918
- "path": "src/error/index.ts",
919
- "declarations": [],
920
- "exports": [
921
921
  {
922
922
  "kind": "js",
923
923
  "name": "*",
924
924
  "declaration": {
925
925
  "name": "*",
926
- "package": "./errorMap"
926
+ "package": "./when-else"
927
927
  }
928
928
  }
929
929
  ]
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.214.1-alpha-aba6589.0",
4
+ "version": "14.214.1-openfin-notifications.1",
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.214.1-alpha-aba6589.0",
31
- "@genesislcap/genx": "14.214.1-alpha-aba6589.0",
32
- "@genesislcap/rollup-builder": "14.214.1-alpha-aba6589.0",
33
- "@genesislcap/ts-builder": "14.214.1-alpha-aba6589.0",
34
- "@genesislcap/uvu-playwright-builder": "14.214.1-alpha-aba6589.0",
35
- "@genesislcap/vite-builder": "14.214.1-alpha-aba6589.0",
36
- "@genesislcap/webpack-builder": "14.214.1-alpha-aba6589.0",
30
+ "@genesislcap/foundation-testing": "14.214.1-openfin-notifications.1",
31
+ "@genesislcap/genx": "14.214.1-openfin-notifications.1",
32
+ "@genesislcap/rollup-builder": "14.214.1-openfin-notifications.1",
33
+ "@genesislcap/ts-builder": "14.214.1-openfin-notifications.1",
34
+ "@genesislcap/uvu-playwright-builder": "14.214.1-openfin-notifications.1",
35
+ "@genesislcap/vite-builder": "14.214.1-openfin-notifications.1",
36
+ "@genesislcap/webpack-builder": "14.214.1-openfin-notifications.1",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.214.1-alpha-aba6589.0",
40
+ "@genesislcap/foundation-logger": "14.214.1-openfin-notifications.1",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "55dc6c2f9dfa16bb8086601e31fd79a8d7f2cc13"
58
+ "gitHead": "d9d249f0436f4cc3d1491fe19b52caa78152982f"
59
59
  }