@genesislcap/foundation-utils 14.396.0 → 14.396.1

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 (2) hide show
  1. package/dist/custom-elements.json +205 -205
  2. package/package.json +11 -11
@@ -511,6 +511,29 @@
511
511
  }
512
512
  ]
513
513
  },
514
+ {
515
+ "kind": "javascript-module",
516
+ "path": "src/directives/index.ts",
517
+ "declarations": [],
518
+ "exports": [
519
+ {
520
+ "kind": "js",
521
+ "name": "*",
522
+ "declaration": {
523
+ "name": "*",
524
+ "package": "./sync"
525
+ }
526
+ },
527
+ {
528
+ "kind": "js",
529
+ "name": "*",
530
+ "declaration": {
531
+ "name": "*",
532
+ "package": "./when-else"
533
+ }
534
+ }
535
+ ]
536
+ },
514
537
  {
515
538
  "kind": "javascript-module",
516
539
  "path": "src/decorators/index.ts",
@@ -566,23 +589,199 @@
566
589
  },
567
590
  {
568
591
  "kind": "javascript-module",
569
- "path": "src/directives/index.ts",
570
- "declarations": [],
592
+ "path": "src/error/errorMap.ts",
593
+ "declarations": [
594
+ {
595
+ "kind": "class",
596
+ "description": "",
597
+ "name": "DefaultErrorMap",
598
+ "members": [
599
+ {
600
+ "kind": "field",
601
+ "name": "map",
602
+ "privacy": "private",
603
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
604
+ },
605
+ {
606
+ "kind": "field",
607
+ "name": "lastError",
608
+ "type": {
609
+ "text": "Error"
610
+ },
611
+ "description": "{@inheritDoc ErrorMap.lastError}"
612
+ },
613
+ {
614
+ "kind": "method",
615
+ "name": "set",
616
+ "return": {
617
+ "type": {
618
+ "text": "void"
619
+ }
620
+ },
621
+ "parameters": [
622
+ {
623
+ "name": "key",
624
+ "type": {
625
+ "text": "keyof TErrorDetailMap"
626
+ }
627
+ },
628
+ {
629
+ "name": "error",
630
+ "type": {
631
+ "text": "Error"
632
+ }
633
+ }
634
+ ],
635
+ "description": "{@inheritDoc ErrorMap.set}"
636
+ },
637
+ {
638
+ "kind": "method",
639
+ "name": "get",
640
+ "return": {
641
+ "type": {
642
+ "text": ""
643
+ }
644
+ },
645
+ "parameters": [
646
+ {
647
+ "name": "key",
648
+ "type": {
649
+ "text": "keyof TErrorDetailMap"
650
+ },
651
+ "description": "The key."
652
+ }
653
+ ],
654
+ "description": "Get an error by key.",
655
+ "privacy": "public"
656
+ },
657
+ {
658
+ "kind": "method",
659
+ "name": "has",
660
+ "return": {
661
+ "type": {
662
+ "text": ""
663
+ }
664
+ },
665
+ "parameters": [
666
+ {
667
+ "name": "key",
668
+ "type": {
669
+ "text": "keyof TErrorDetailMap"
670
+ },
671
+ "description": "The key."
672
+ }
673
+ ],
674
+ "description": "Has an error for key.",
675
+ "privacy": "public"
676
+ },
677
+ {
678
+ "kind": "method",
679
+ "name": "delete",
680
+ "return": {
681
+ "type": {
682
+ "text": ""
683
+ }
684
+ },
685
+ "parameters": [
686
+ {
687
+ "name": "key",
688
+ "type": {
689
+ "text": "keyof TErrorDetailMap"
690
+ },
691
+ "description": "The key."
692
+ }
693
+ ],
694
+ "description": "Delete an error.",
695
+ "privacy": "public"
696
+ },
697
+ {
698
+ "kind": "method",
699
+ "name": "clear",
700
+ "description": "Clear errors.",
701
+ "privacy": "public"
702
+ },
703
+ {
704
+ "kind": "field",
705
+ "name": "size",
706
+ "type": {
707
+ "text": "number"
708
+ },
709
+ "description": "The size of the error map.",
710
+ "return": {
711
+ "type": {
712
+ "text": ""
713
+ }
714
+ },
715
+ "privacy": "public",
716
+ "readonly": true
717
+ },
718
+ {
719
+ "kind": "method",
720
+ "name": "values",
721
+ "privacy": "public"
722
+ },
723
+ {
724
+ "kind": "field",
725
+ "name": "messages",
726
+ "type": {
727
+ "text": "string"
728
+ },
729
+ "description": "{@inheritDoc ErrorMap.messages}",
730
+ "readonly": true
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "kind": "function",
736
+ "name": "createErrorMap",
737
+ "return": {
738
+ "type": {
739
+ "text": ""
740
+ }
741
+ },
742
+ "parameters": [
743
+ {
744
+ "name": "logger",
745
+ "type": {
746
+ "text": "ErrorMapLogger"
747
+ },
748
+ "description": "A logger error method reference."
749
+ }
750
+ ],
751
+ "description": "A factory to create the error map.",
752
+ "privacy": "public"
753
+ }
754
+ ],
571
755
  "exports": [
572
756
  {
573
757
  "kind": "js",
574
- "name": "*",
758
+ "name": "DefaultErrorMap",
575
759
  "declaration": {
576
- "name": "*",
577
- "package": "./sync"
760
+ "name": "DefaultErrorMap",
761
+ "module": "src/error/errorMap.ts"
578
762
  }
579
763
  },
764
+ {
765
+ "kind": "js",
766
+ "name": "createErrorMap",
767
+ "declaration": {
768
+ "name": "createErrorMap",
769
+ "module": "src/error/errorMap.ts"
770
+ }
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "kind": "javascript-module",
776
+ "path": "src/error/index.ts",
777
+ "declarations": [],
778
+ "exports": [
580
779
  {
581
780
  "kind": "js",
582
781
  "name": "*",
583
782
  "declaration": {
584
783
  "name": "*",
585
- "package": "./when-else"
784
+ "package": "./errorMap"
586
785
  }
587
786
  }
588
787
  ]
@@ -1062,205 +1261,6 @@
1062
1261
  }
1063
1262
  ]
1064
1263
  },
1065
- {
1066
- "kind": "javascript-module",
1067
- "path": "src/error/errorMap.ts",
1068
- "declarations": [
1069
- {
1070
- "kind": "class",
1071
- "description": "",
1072
- "name": "DefaultErrorMap",
1073
- "members": [
1074
- {
1075
- "kind": "field",
1076
- "name": "map",
1077
- "privacy": "private",
1078
- "default": "new Map<keyof TErrorDetailMap, Error>()"
1079
- },
1080
- {
1081
- "kind": "field",
1082
- "name": "lastError",
1083
- "type": {
1084
- "text": "Error"
1085
- },
1086
- "description": "{@inheritDoc ErrorMap.lastError}"
1087
- },
1088
- {
1089
- "kind": "method",
1090
- "name": "set",
1091
- "return": {
1092
- "type": {
1093
- "text": "void"
1094
- }
1095
- },
1096
- "parameters": [
1097
- {
1098
- "name": "key",
1099
- "type": {
1100
- "text": "keyof TErrorDetailMap"
1101
- }
1102
- },
1103
- {
1104
- "name": "error",
1105
- "type": {
1106
- "text": "Error"
1107
- }
1108
- }
1109
- ],
1110
- "description": "{@inheritDoc ErrorMap.set}"
1111
- },
1112
- {
1113
- "kind": "method",
1114
- "name": "get",
1115
- "return": {
1116
- "type": {
1117
- "text": ""
1118
- }
1119
- },
1120
- "parameters": [
1121
- {
1122
- "name": "key",
1123
- "type": {
1124
- "text": "keyof TErrorDetailMap"
1125
- },
1126
- "description": "The key."
1127
- }
1128
- ],
1129
- "description": "Get an error by key.",
1130
- "privacy": "public"
1131
- },
1132
- {
1133
- "kind": "method",
1134
- "name": "has",
1135
- "return": {
1136
- "type": {
1137
- "text": ""
1138
- }
1139
- },
1140
- "parameters": [
1141
- {
1142
- "name": "key",
1143
- "type": {
1144
- "text": "keyof TErrorDetailMap"
1145
- },
1146
- "description": "The key."
1147
- }
1148
- ],
1149
- "description": "Has an error for key.",
1150
- "privacy": "public"
1151
- },
1152
- {
1153
- "kind": "method",
1154
- "name": "delete",
1155
- "return": {
1156
- "type": {
1157
- "text": ""
1158
- }
1159
- },
1160
- "parameters": [
1161
- {
1162
- "name": "key",
1163
- "type": {
1164
- "text": "keyof TErrorDetailMap"
1165
- },
1166
- "description": "The key."
1167
- }
1168
- ],
1169
- "description": "Delete an error.",
1170
- "privacy": "public"
1171
- },
1172
- {
1173
- "kind": "method",
1174
- "name": "clear",
1175
- "description": "Clear errors.",
1176
- "privacy": "public"
1177
- },
1178
- {
1179
- "kind": "field",
1180
- "name": "size",
1181
- "type": {
1182
- "text": "number"
1183
- },
1184
- "description": "The size of the error map.",
1185
- "return": {
1186
- "type": {
1187
- "text": ""
1188
- }
1189
- },
1190
- "privacy": "public",
1191
- "readonly": true
1192
- },
1193
- {
1194
- "kind": "method",
1195
- "name": "values",
1196
- "privacy": "public"
1197
- },
1198
- {
1199
- "kind": "field",
1200
- "name": "messages",
1201
- "type": {
1202
- "text": "string"
1203
- },
1204
- "description": "{@inheritDoc ErrorMap.messages}",
1205
- "readonly": true
1206
- }
1207
- ]
1208
- },
1209
- {
1210
- "kind": "function",
1211
- "name": "createErrorMap",
1212
- "return": {
1213
- "type": {
1214
- "text": ""
1215
- }
1216
- },
1217
- "parameters": [
1218
- {
1219
- "name": "logger",
1220
- "type": {
1221
- "text": "ErrorMapLogger"
1222
- },
1223
- "description": "A logger error method reference."
1224
- }
1225
- ],
1226
- "description": "A factory to create the error map.",
1227
- "privacy": "public"
1228
- }
1229
- ],
1230
- "exports": [
1231
- {
1232
- "kind": "js",
1233
- "name": "DefaultErrorMap",
1234
- "declaration": {
1235
- "name": "DefaultErrorMap",
1236
- "module": "src/error/errorMap.ts"
1237
- }
1238
- },
1239
- {
1240
- "kind": "js",
1241
- "name": "createErrorMap",
1242
- "declaration": {
1243
- "name": "createErrorMap",
1244
- "module": "src/error/errorMap.ts"
1245
- }
1246
- }
1247
- ]
1248
- },
1249
- {
1250
- "kind": "javascript-module",
1251
- "path": "src/error/index.ts",
1252
- "declarations": [],
1253
- "exports": [
1254
- {
1255
- "kind": "js",
1256
- "name": "*",
1257
- "declaration": {
1258
- "name": "*",
1259
- "package": "./errorMap"
1260
- }
1261
- }
1262
- ]
1263
- },
1264
1264
  {
1265
1265
  "kind": "javascript-module",
1266
1266
  "path": "src/encoding/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.396.0",
4
+ "version": "14.396.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -29,18 +29,18 @@
29
29
  }
30
30
  },
31
31
  "devDependencies": {
32
- "@genesislcap/foundation-testing": "14.396.0",
33
- "@genesislcap/genx": "14.396.0",
34
- "@genesislcap/rollup-builder": "14.396.0",
35
- "@genesislcap/ts-builder": "14.396.0",
36
- "@genesislcap/uvu-playwright-builder": "14.396.0",
37
- "@genesislcap/vite-builder": "14.396.0",
38
- "@genesislcap/webpack-builder": "14.396.0",
32
+ "@genesislcap/foundation-testing": "14.396.1",
33
+ "@genesislcap/genx": "14.396.1",
34
+ "@genesislcap/rollup-builder": "14.396.1",
35
+ "@genesislcap/ts-builder": "14.396.1",
36
+ "@genesislcap/uvu-playwright-builder": "14.396.1",
37
+ "@genesislcap/vite-builder": "14.396.1",
38
+ "@genesislcap/webpack-builder": "14.396.1",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.396.0",
43
- "@genesislcap/foundation-logger": "14.396.0",
42
+ "@genesislcap/expression-builder": "14.396.1",
43
+ "@genesislcap/foundation-logger": "14.396.1",
44
44
  "@microsoft/fast-components": "2.30.6",
45
45
  "@microsoft/fast-element": "1.14.0",
46
46
  "@microsoft/fast-foundation": "2.50.0",
@@ -58,5 +58,5 @@
58
58
  "access": "public"
59
59
  },
60
60
  "customElements": "dist/custom-elements.json",
61
- "gitHead": "43e0fd00aa30590bdcad05ddb3d8aca0d493d020"
61
+ "gitHead": "4a6225102f4b6566bff9ec8a91848d661b528588"
62
62
  }