@genesislcap/foundation-utils 14.71.1-auth-mf.3 → 14.71.1-auth-mf.4

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.
@@ -343,7 +343,7 @@
343
343
  },
344
344
  {
345
345
  "kind": "javascript-module",
346
- "path": "src/directives/index.ts",
346
+ "path": "src/decorators/index.ts",
347
347
  "declarations": [],
348
348
  "exports": [
349
349
  {
@@ -351,15 +351,45 @@
351
351
  "name": "*",
352
352
  "declaration": {
353
353
  "name": "*",
354
- "package": "./sync"
354
+ "package": "./renderOnChange"
355
355
  }
356
- },
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ "kind": "javascript-module",
361
+ "path": "src/decorators/renderOnChange.ts",
362
+ "declarations": [
363
+ {
364
+ "kind": "function",
365
+ "name": "renderOnChange",
366
+ "parameters": [
367
+ {
368
+ "name": "target",
369
+ "type": {
370
+ "text": "FASTElement & { render(): void }"
371
+ },
372
+ "description": "The target to define the property change handler on."
373
+ },
374
+ {
375
+ "name": "name",
376
+ "type": {
377
+ "text": "string"
378
+ },
379
+ "description": "The property name."
380
+ }
381
+ ],
382
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
383
+ "privacy": "public"
384
+ }
385
+ ],
386
+ "exports": [
357
387
  {
358
388
  "kind": "js",
359
- "name": "*",
389
+ "name": "renderOnChange",
360
390
  "declaration": {
361
- "name": "*",
362
- "package": "./when-else"
391
+ "name": "renderOnChange",
392
+ "module": "src/decorators/renderOnChange.ts"
363
393
  }
364
394
  }
365
395
  ]
@@ -413,6 +443,29 @@
413
443
  }
414
444
  ]
415
445
  },
446
+ {
447
+ "kind": "javascript-module",
448
+ "path": "src/directives/index.ts",
449
+ "declarations": [],
450
+ "exports": [
451
+ {
452
+ "kind": "js",
453
+ "name": "*",
454
+ "declaration": {
455
+ "name": "*",
456
+ "package": "./sync"
457
+ }
458
+ },
459
+ {
460
+ "kind": "js",
461
+ "name": "*",
462
+ "declaration": {
463
+ "name": "*",
464
+ "package": "./when-else"
465
+ }
466
+ }
467
+ ]
468
+ },
416
469
  {
417
470
  "kind": "javascript-module",
418
471
  "path": "src/env/index.ts",
@@ -636,253 +689,6 @@
636
689
  }
637
690
  ]
638
691
  },
639
- {
640
- "kind": "javascript-module",
641
- "path": "src/error/errorMap.ts",
642
- "declarations": [
643
- {
644
- "kind": "class",
645
- "description": "",
646
- "name": "DefaultErrorMap",
647
- "members": [
648
- {
649
- "kind": "field",
650
- "name": "map",
651
- "privacy": "private",
652
- "default": "new Map<keyof TErrorDetailMap, Error>()"
653
- },
654
- {
655
- "kind": "field",
656
- "name": "lastError",
657
- "type": {
658
- "text": "Error"
659
- },
660
- "description": "{@inheritDoc ErrorMap.lastError}"
661
- },
662
- {
663
- "kind": "method",
664
- "name": "set",
665
- "return": {
666
- "type": {
667
- "text": "void"
668
- }
669
- },
670
- "parameters": [
671
- {
672
- "name": "key",
673
- "type": {
674
- "text": "keyof TErrorDetailMap"
675
- }
676
- },
677
- {
678
- "name": "error",
679
- "type": {
680
- "text": "Error"
681
- }
682
- }
683
- ],
684
- "description": "{@inheritDoc ErrorMap.set}"
685
- },
686
- {
687
- "kind": "method",
688
- "name": "get",
689
- "return": {
690
- "type": {
691
- "text": ""
692
- }
693
- },
694
- "parameters": [
695
- {
696
- "name": "key",
697
- "type": {
698
- "text": "keyof TErrorDetailMap"
699
- },
700
- "description": "The key."
701
- }
702
- ],
703
- "description": "Get an error by key.",
704
- "privacy": "public"
705
- },
706
- {
707
- "kind": "method",
708
- "name": "has",
709
- "return": {
710
- "type": {
711
- "text": ""
712
- }
713
- },
714
- "parameters": [
715
- {
716
- "name": "key",
717
- "type": {
718
- "text": "keyof TErrorDetailMap"
719
- },
720
- "description": "The key."
721
- }
722
- ],
723
- "description": "Has an error for key.",
724
- "privacy": "public"
725
- },
726
- {
727
- "kind": "method",
728
- "name": "delete",
729
- "return": {
730
- "type": {
731
- "text": ""
732
- }
733
- },
734
- "parameters": [
735
- {
736
- "name": "key",
737
- "type": {
738
- "text": "keyof TErrorDetailMap"
739
- },
740
- "description": "The key."
741
- }
742
- ],
743
- "description": "Delete an error.",
744
- "privacy": "public"
745
- },
746
- {
747
- "kind": "method",
748
- "name": "clear",
749
- "description": "Clear errors.",
750
- "privacy": "public"
751
- },
752
- {
753
- "kind": "field",
754
- "name": "size",
755
- "type": {
756
- "text": "number"
757
- },
758
- "description": "The size of the error map.",
759
- "return": {
760
- "type": {
761
- "text": ""
762
- }
763
- },
764
- "privacy": "public",
765
- "readonly": true
766
- },
767
- {
768
- "kind": "field",
769
- "name": "messages",
770
- "type": {
771
- "text": "string"
772
- },
773
- "description": "{@inheritDoc ErrorMap.messages}",
774
- "readonly": true
775
- }
776
- ]
777
- },
778
- {
779
- "kind": "function",
780
- "name": "createErrorMap",
781
- "return": {
782
- "type": {
783
- "text": ""
784
- }
785
- },
786
- "parameters": [
787
- {
788
- "name": "logger",
789
- "type": {
790
- "text": "ErrorMapLogger"
791
- },
792
- "description": "A logger error method reference."
793
- }
794
- ],
795
- "description": "A factory to create the error map.",
796
- "privacy": "public"
797
- }
798
- ],
799
- "exports": [
800
- {
801
- "kind": "js",
802
- "name": "DefaultErrorMap",
803
- "declaration": {
804
- "name": "DefaultErrorMap",
805
- "module": "src/error/errorMap.ts"
806
- }
807
- },
808
- {
809
- "kind": "js",
810
- "name": "createErrorMap",
811
- "declaration": {
812
- "name": "createErrorMap",
813
- "module": "src/error/errorMap.ts"
814
- }
815
- }
816
- ]
817
- },
818
- {
819
- "kind": "javascript-module",
820
- "path": "src/error/index.ts",
821
- "declarations": [],
822
- "exports": [
823
- {
824
- "kind": "js",
825
- "name": "*",
826
- "declaration": {
827
- "name": "*",
828
- "package": "./errorMap"
829
- }
830
- }
831
- ]
832
- },
833
- {
834
- "kind": "javascript-module",
835
- "path": "src/decorators/index.ts",
836
- "declarations": [],
837
- "exports": [
838
- {
839
- "kind": "js",
840
- "name": "*",
841
- "declaration": {
842
- "name": "*",
843
- "package": "./renderOnChange"
844
- }
845
- }
846
- ]
847
- },
848
- {
849
- "kind": "javascript-module",
850
- "path": "src/decorators/renderOnChange.ts",
851
- "declarations": [
852
- {
853
- "kind": "function",
854
- "name": "renderOnChange",
855
- "parameters": [
856
- {
857
- "name": "target",
858
- "type": {
859
- "text": "FASTElement & { render(): void }"
860
- },
861
- "description": "The target to define the property change handler on."
862
- },
863
- {
864
- "name": "name",
865
- "type": {
866
- "text": "string"
867
- },
868
- "description": "The property name."
869
- }
870
- ],
871
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
872
- "privacy": "public"
873
- }
874
- ],
875
- "exports": [
876
- {
877
- "kind": "js",
878
- "name": "renderOnChange",
879
- "declaration": {
880
- "name": "renderOnChange",
881
- "module": "src/decorators/renderOnChange.ts"
882
- }
883
- }
884
- ]
885
- },
886
692
  {
887
693
  "kind": "javascript-module",
888
694
  "path": "src/formatters/datetime.ts",
@@ -1095,6 +901,200 @@
1095
901
  }
1096
902
  ]
1097
903
  },
904
+ {
905
+ "kind": "javascript-module",
906
+ "path": "src/error/errorMap.ts",
907
+ "declarations": [
908
+ {
909
+ "kind": "class",
910
+ "description": "",
911
+ "name": "DefaultErrorMap",
912
+ "members": [
913
+ {
914
+ "kind": "field",
915
+ "name": "map",
916
+ "privacy": "private",
917
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
918
+ },
919
+ {
920
+ "kind": "field",
921
+ "name": "lastError",
922
+ "type": {
923
+ "text": "Error"
924
+ },
925
+ "description": "{@inheritDoc ErrorMap.lastError}"
926
+ },
927
+ {
928
+ "kind": "method",
929
+ "name": "set",
930
+ "return": {
931
+ "type": {
932
+ "text": "void"
933
+ }
934
+ },
935
+ "parameters": [
936
+ {
937
+ "name": "key",
938
+ "type": {
939
+ "text": "keyof TErrorDetailMap"
940
+ }
941
+ },
942
+ {
943
+ "name": "error",
944
+ "type": {
945
+ "text": "Error"
946
+ }
947
+ }
948
+ ],
949
+ "description": "{@inheritDoc ErrorMap.set}"
950
+ },
951
+ {
952
+ "kind": "method",
953
+ "name": "get",
954
+ "return": {
955
+ "type": {
956
+ "text": ""
957
+ }
958
+ },
959
+ "parameters": [
960
+ {
961
+ "name": "key",
962
+ "type": {
963
+ "text": "keyof TErrorDetailMap"
964
+ },
965
+ "description": "The key."
966
+ }
967
+ ],
968
+ "description": "Get an error by key.",
969
+ "privacy": "public"
970
+ },
971
+ {
972
+ "kind": "method",
973
+ "name": "has",
974
+ "return": {
975
+ "type": {
976
+ "text": ""
977
+ }
978
+ },
979
+ "parameters": [
980
+ {
981
+ "name": "key",
982
+ "type": {
983
+ "text": "keyof TErrorDetailMap"
984
+ },
985
+ "description": "The key."
986
+ }
987
+ ],
988
+ "description": "Has an error for key.",
989
+ "privacy": "public"
990
+ },
991
+ {
992
+ "kind": "method",
993
+ "name": "delete",
994
+ "return": {
995
+ "type": {
996
+ "text": ""
997
+ }
998
+ },
999
+ "parameters": [
1000
+ {
1001
+ "name": "key",
1002
+ "type": {
1003
+ "text": "keyof TErrorDetailMap"
1004
+ },
1005
+ "description": "The key."
1006
+ }
1007
+ ],
1008
+ "description": "Delete an error.",
1009
+ "privacy": "public"
1010
+ },
1011
+ {
1012
+ "kind": "method",
1013
+ "name": "clear",
1014
+ "description": "Clear errors.",
1015
+ "privacy": "public"
1016
+ },
1017
+ {
1018
+ "kind": "field",
1019
+ "name": "size",
1020
+ "type": {
1021
+ "text": "number"
1022
+ },
1023
+ "description": "The size of the error map.",
1024
+ "return": {
1025
+ "type": {
1026
+ "text": ""
1027
+ }
1028
+ },
1029
+ "privacy": "public",
1030
+ "readonly": true
1031
+ },
1032
+ {
1033
+ "kind": "field",
1034
+ "name": "messages",
1035
+ "type": {
1036
+ "text": "string"
1037
+ },
1038
+ "description": "{@inheritDoc ErrorMap.messages}",
1039
+ "readonly": true
1040
+ }
1041
+ ]
1042
+ },
1043
+ {
1044
+ "kind": "function",
1045
+ "name": "createErrorMap",
1046
+ "return": {
1047
+ "type": {
1048
+ "text": ""
1049
+ }
1050
+ },
1051
+ "parameters": [
1052
+ {
1053
+ "name": "logger",
1054
+ "type": {
1055
+ "text": "ErrorMapLogger"
1056
+ },
1057
+ "description": "A logger error method reference."
1058
+ }
1059
+ ],
1060
+ "description": "A factory to create the error map.",
1061
+ "privacy": "public"
1062
+ }
1063
+ ],
1064
+ "exports": [
1065
+ {
1066
+ "kind": "js",
1067
+ "name": "DefaultErrorMap",
1068
+ "declaration": {
1069
+ "name": "DefaultErrorMap",
1070
+ "module": "src/error/errorMap.ts"
1071
+ }
1072
+ },
1073
+ {
1074
+ "kind": "js",
1075
+ "name": "createErrorMap",
1076
+ "declaration": {
1077
+ "name": "createErrorMap",
1078
+ "module": "src/error/errorMap.ts"
1079
+ }
1080
+ }
1081
+ ]
1082
+ },
1083
+ {
1084
+ "kind": "javascript-module",
1085
+ "path": "src/error/index.ts",
1086
+ "declarations": [],
1087
+ "exports": [
1088
+ {
1089
+ "kind": "js",
1090
+ "name": "*",
1091
+ "declaration": {
1092
+ "name": "*",
1093
+ "package": "./errorMap"
1094
+ }
1095
+ }
1096
+ ]
1097
+ },
1098
1098
  {
1099
1099
  "kind": "javascript-module",
1100
1100
  "path": "src/logger/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.71.1-auth-mf.3",
4
+ "version": "14.71.1-auth-mf.4",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "customElements": "dist/custom-elements.json",
44
- "gitHead": "296c1f938cde171316a18ef026c24143ef1bf2d4"
44
+ "gitHead": "349e46c5dc26cf11b292dc5cc9c24e88908f3333"
45
45
  }