@genesislcap/foundation-utils 14.328.0 → 14.329.0-notifications-icon.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 +252 -252
  2. package/package.json +11 -11
@@ -383,6 +383,97 @@
383
383
  }
384
384
  ]
385
385
  },
386
+ {
387
+ "kind": "javascript-module",
388
+ "path": "src/decorators/index.ts",
389
+ "declarations": [],
390
+ "exports": [
391
+ {
392
+ "kind": "js",
393
+ "name": "*",
394
+ "declaration": {
395
+ "name": "*",
396
+ "package": "./renderOnChange"
397
+ }
398
+ }
399
+ ]
400
+ },
401
+ {
402
+ "kind": "javascript-module",
403
+ "path": "src/decorators/renderOnChange.ts",
404
+ "declarations": [
405
+ {
406
+ "kind": "function",
407
+ "name": "renderOnChange",
408
+ "parameters": [
409
+ {
410
+ "name": "target",
411
+ "type": {
412
+ "text": "FASTElement & { render(): void }"
413
+ },
414
+ "description": "The target to define the property change handler on."
415
+ },
416
+ {
417
+ "name": "name",
418
+ "type": {
419
+ "text": "string"
420
+ },
421
+ "description": "The property name."
422
+ }
423
+ ],
424
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
425
+ "privacy": "public"
426
+ }
427
+ ],
428
+ "exports": [
429
+ {
430
+ "kind": "js",
431
+ "name": "renderOnChange",
432
+ "declaration": {
433
+ "name": "renderOnChange",
434
+ "module": "src/decorators/renderOnChange.ts"
435
+ }
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "kind": "javascript-module",
441
+ "path": "src/directives/index.ts",
442
+ "declarations": [],
443
+ "exports": [
444
+ {
445
+ "kind": "js",
446
+ "name": "*",
447
+ "declaration": {
448
+ "name": "*",
449
+ "package": "./sync"
450
+ }
451
+ },
452
+ {
453
+ "kind": "js",
454
+ "name": "*",
455
+ "declaration": {
456
+ "name": "*",
457
+ "package": "./when-else"
458
+ }
459
+ }
460
+ ]
461
+ },
462
+ {
463
+ "kind": "javascript-module",
464
+ "path": "src/encoding/index.ts",
465
+ "declarations": [],
466
+ "exports": [
467
+ {
468
+ "kind": "js",
469
+ "name": "*",
470
+ "declaration": {
471
+ "name": "*",
472
+ "package": "./base64"
473
+ }
474
+ }
475
+ ]
476
+ },
386
477
  {
387
478
  "kind": "javascript-module",
388
479
  "path": "src/design-system/design-system.ts",
@@ -505,83 +596,191 @@
505
596
  },
506
597
  {
507
598
  "kind": "javascript-module",
508
- "path": "src/directives/index.ts",
509
- "declarations": [],
510
- "exports": [
511
- {
512
- "kind": "js",
513
- "name": "*",
514
- "declaration": {
515
- "name": "*",
516
- "package": "./sync"
517
- }
518
- },
519
- {
520
- "kind": "js",
521
- "name": "*",
522
- "declaration": {
523
- "name": "*",
524
- "package": "./when-else"
525
- }
526
- }
527
- ]
528
- },
529
- {
530
- "kind": "javascript-module",
531
- "path": "src/decorators/index.ts",
532
- "declarations": [],
533
- "exports": [
534
- {
535
- "kind": "js",
536
- "name": "*",
537
- "declaration": {
538
- "name": "*",
539
- "package": "./renderOnChange"
540
- }
541
- }
542
- ]
543
- },
544
- {
545
- "kind": "javascript-module",
546
- "path": "src/decorators/renderOnChange.ts",
599
+ "path": "src/error/errorMap.ts",
547
600
  "declarations": [
548
601
  {
549
- "kind": "function",
550
- "name": "renderOnChange",
551
- "parameters": [
602
+ "kind": "class",
603
+ "description": "",
604
+ "name": "DefaultErrorMap",
605
+ "members": [
552
606
  {
553
- "name": "target",
607
+ "kind": "field",
608
+ "name": "map",
609
+ "privacy": "private",
610
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
611
+ },
612
+ {
613
+ "kind": "field",
614
+ "name": "lastError",
554
615
  "type": {
555
- "text": "FASTElement & { render(): void }"
616
+ "text": "Error"
556
617
  },
557
- "description": "The target to define the property change handler on."
618
+ "description": "{@inheritDoc ErrorMap.lastError}"
558
619
  },
559
620
  {
560
- "name": "name",
621
+ "kind": "method",
622
+ "name": "set",
623
+ "return": {
624
+ "type": {
625
+ "text": "void"
626
+ }
627
+ },
628
+ "parameters": [
629
+ {
630
+ "name": "key",
631
+ "type": {
632
+ "text": "keyof TErrorDetailMap"
633
+ }
634
+ },
635
+ {
636
+ "name": "error",
637
+ "type": {
638
+ "text": "Error"
639
+ }
640
+ }
641
+ ],
642
+ "description": "{@inheritDoc ErrorMap.set}"
643
+ },
644
+ {
645
+ "kind": "method",
646
+ "name": "get",
647
+ "return": {
648
+ "type": {
649
+ "text": ""
650
+ }
651
+ },
652
+ "parameters": [
653
+ {
654
+ "name": "key",
655
+ "type": {
656
+ "text": "keyof TErrorDetailMap"
657
+ },
658
+ "description": "The key."
659
+ }
660
+ ],
661
+ "description": "Get an error by key.",
662
+ "privacy": "public"
663
+ },
664
+ {
665
+ "kind": "method",
666
+ "name": "has",
667
+ "return": {
668
+ "type": {
669
+ "text": ""
670
+ }
671
+ },
672
+ "parameters": [
673
+ {
674
+ "name": "key",
675
+ "type": {
676
+ "text": "keyof TErrorDetailMap"
677
+ },
678
+ "description": "The key."
679
+ }
680
+ ],
681
+ "description": "Has an error for key.",
682
+ "privacy": "public"
683
+ },
684
+ {
685
+ "kind": "method",
686
+ "name": "delete",
687
+ "return": {
688
+ "type": {
689
+ "text": ""
690
+ }
691
+ },
692
+ "parameters": [
693
+ {
694
+ "name": "key",
695
+ "type": {
696
+ "text": "keyof TErrorDetailMap"
697
+ },
698
+ "description": "The key."
699
+ }
700
+ ],
701
+ "description": "Delete an error.",
702
+ "privacy": "public"
703
+ },
704
+ {
705
+ "kind": "method",
706
+ "name": "clear",
707
+ "description": "Clear errors.",
708
+ "privacy": "public"
709
+ },
710
+ {
711
+ "kind": "field",
712
+ "name": "size",
713
+ "type": {
714
+ "text": "number"
715
+ },
716
+ "description": "The size of the error map.",
717
+ "return": {
718
+ "type": {
719
+ "text": ""
720
+ }
721
+ },
722
+ "privacy": "public",
723
+ "readonly": true
724
+ },
725
+ {
726
+ "kind": "method",
727
+ "name": "values",
728
+ "privacy": "public"
729
+ },
730
+ {
731
+ "kind": "field",
732
+ "name": "messages",
561
733
  "type": {
562
734
  "text": "string"
563
735
  },
564
- "description": "The property name."
736
+ "description": "{@inheritDoc ErrorMap.messages}",
737
+ "readonly": true
738
+ }
739
+ ]
740
+ },
741
+ {
742
+ "kind": "function",
743
+ "name": "createErrorMap",
744
+ "return": {
745
+ "type": {
746
+ "text": ""
747
+ }
748
+ },
749
+ "parameters": [
750
+ {
751
+ "name": "logger",
752
+ "type": {
753
+ "text": "ErrorMapLogger"
754
+ },
755
+ "description": "A logger error method reference."
565
756
  }
566
757
  ],
567
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
758
+ "description": "A factory to create the error map.",
568
759
  "privacy": "public"
569
760
  }
570
761
  ],
571
762
  "exports": [
572
763
  {
573
764
  "kind": "js",
574
- "name": "renderOnChange",
765
+ "name": "DefaultErrorMap",
575
766
  "declaration": {
576
- "name": "renderOnChange",
577
- "module": "src/decorators/renderOnChange.ts"
767
+ "name": "DefaultErrorMap",
768
+ "module": "src/error/errorMap.ts"
769
+ }
770
+ },
771
+ {
772
+ "kind": "js",
773
+ "name": "createErrorMap",
774
+ "declaration": {
775
+ "name": "createErrorMap",
776
+ "module": "src/error/errorMap.ts"
578
777
  }
579
778
  }
580
779
  ]
581
780
  },
582
781
  {
583
782
  "kind": "javascript-module",
584
- "path": "src/encoding/index.ts",
783
+ "path": "src/error/index.ts",
585
784
  "declarations": [],
586
785
  "exports": [
587
786
  {
@@ -589,7 +788,7 @@
589
788
  "name": "*",
590
789
  "declaration": {
591
790
  "name": "*",
592
- "package": "./base64"
791
+ "package": "./errorMap"
593
792
  }
594
793
  }
595
794
  ]
@@ -1069,205 +1268,6 @@
1069
1268
  }
1070
1269
  ]
1071
1270
  },
1072
- {
1073
- "kind": "javascript-module",
1074
- "path": "src/error/errorMap.ts",
1075
- "declarations": [
1076
- {
1077
- "kind": "class",
1078
- "description": "",
1079
- "name": "DefaultErrorMap",
1080
- "members": [
1081
- {
1082
- "kind": "field",
1083
- "name": "map",
1084
- "privacy": "private",
1085
- "default": "new Map<keyof TErrorDetailMap, Error>()"
1086
- },
1087
- {
1088
- "kind": "field",
1089
- "name": "lastError",
1090
- "type": {
1091
- "text": "Error"
1092
- },
1093
- "description": "{@inheritDoc ErrorMap.lastError}"
1094
- },
1095
- {
1096
- "kind": "method",
1097
- "name": "set",
1098
- "return": {
1099
- "type": {
1100
- "text": "void"
1101
- }
1102
- },
1103
- "parameters": [
1104
- {
1105
- "name": "key",
1106
- "type": {
1107
- "text": "keyof TErrorDetailMap"
1108
- }
1109
- },
1110
- {
1111
- "name": "error",
1112
- "type": {
1113
- "text": "Error"
1114
- }
1115
- }
1116
- ],
1117
- "description": "{@inheritDoc ErrorMap.set}"
1118
- },
1119
- {
1120
- "kind": "method",
1121
- "name": "get",
1122
- "return": {
1123
- "type": {
1124
- "text": ""
1125
- }
1126
- },
1127
- "parameters": [
1128
- {
1129
- "name": "key",
1130
- "type": {
1131
- "text": "keyof TErrorDetailMap"
1132
- },
1133
- "description": "The key."
1134
- }
1135
- ],
1136
- "description": "Get an error by key.",
1137
- "privacy": "public"
1138
- },
1139
- {
1140
- "kind": "method",
1141
- "name": "has",
1142
- "return": {
1143
- "type": {
1144
- "text": ""
1145
- }
1146
- },
1147
- "parameters": [
1148
- {
1149
- "name": "key",
1150
- "type": {
1151
- "text": "keyof TErrorDetailMap"
1152
- },
1153
- "description": "The key."
1154
- }
1155
- ],
1156
- "description": "Has an error for key.",
1157
- "privacy": "public"
1158
- },
1159
- {
1160
- "kind": "method",
1161
- "name": "delete",
1162
- "return": {
1163
- "type": {
1164
- "text": ""
1165
- }
1166
- },
1167
- "parameters": [
1168
- {
1169
- "name": "key",
1170
- "type": {
1171
- "text": "keyof TErrorDetailMap"
1172
- },
1173
- "description": "The key."
1174
- }
1175
- ],
1176
- "description": "Delete an error.",
1177
- "privacy": "public"
1178
- },
1179
- {
1180
- "kind": "method",
1181
- "name": "clear",
1182
- "description": "Clear errors.",
1183
- "privacy": "public"
1184
- },
1185
- {
1186
- "kind": "field",
1187
- "name": "size",
1188
- "type": {
1189
- "text": "number"
1190
- },
1191
- "description": "The size of the error map.",
1192
- "return": {
1193
- "type": {
1194
- "text": ""
1195
- }
1196
- },
1197
- "privacy": "public",
1198
- "readonly": true
1199
- },
1200
- {
1201
- "kind": "method",
1202
- "name": "values",
1203
- "privacy": "public"
1204
- },
1205
- {
1206
- "kind": "field",
1207
- "name": "messages",
1208
- "type": {
1209
- "text": "string"
1210
- },
1211
- "description": "{@inheritDoc ErrorMap.messages}",
1212
- "readonly": true
1213
- }
1214
- ]
1215
- },
1216
- {
1217
- "kind": "function",
1218
- "name": "createErrorMap",
1219
- "return": {
1220
- "type": {
1221
- "text": ""
1222
- }
1223
- },
1224
- "parameters": [
1225
- {
1226
- "name": "logger",
1227
- "type": {
1228
- "text": "ErrorMapLogger"
1229
- },
1230
- "description": "A logger error method reference."
1231
- }
1232
- ],
1233
- "description": "A factory to create the error map.",
1234
- "privacy": "public"
1235
- }
1236
- ],
1237
- "exports": [
1238
- {
1239
- "kind": "js",
1240
- "name": "DefaultErrorMap",
1241
- "declaration": {
1242
- "name": "DefaultErrorMap",
1243
- "module": "src/error/errorMap.ts"
1244
- }
1245
- },
1246
- {
1247
- "kind": "js",
1248
- "name": "createErrorMap",
1249
- "declaration": {
1250
- "name": "createErrorMap",
1251
- "module": "src/error/errorMap.ts"
1252
- }
1253
- }
1254
- ]
1255
- },
1256
- {
1257
- "kind": "javascript-module",
1258
- "path": "src/error/index.ts",
1259
- "declarations": [],
1260
- "exports": [
1261
- {
1262
- "kind": "js",
1263
- "name": "*",
1264
- "declaration": {
1265
- "name": "*",
1266
- "package": "./errorMap"
1267
- }
1268
- }
1269
- ]
1270
- },
1271
1271
  {
1272
1272
  "kind": "javascript-module",
1273
1273
  "path": "src/formatters/datetime.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.328.0",
4
+ "version": "14.329.0-notifications-icon.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,18 +27,18 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.328.0",
31
- "@genesislcap/genx": "14.328.0",
32
- "@genesislcap/rollup-builder": "14.328.0",
33
- "@genesislcap/ts-builder": "14.328.0",
34
- "@genesislcap/uvu-playwright-builder": "14.328.0",
35
- "@genesislcap/vite-builder": "14.328.0",
36
- "@genesislcap/webpack-builder": "14.328.0",
30
+ "@genesislcap/foundation-testing": "14.329.0-notifications-icon.1",
31
+ "@genesislcap/genx": "14.329.0-notifications-icon.1",
32
+ "@genesislcap/rollup-builder": "14.329.0-notifications-icon.1",
33
+ "@genesislcap/ts-builder": "14.329.0-notifications-icon.1",
34
+ "@genesislcap/uvu-playwright-builder": "14.329.0-notifications-icon.1",
35
+ "@genesislcap/vite-builder": "14.329.0-notifications-icon.1",
36
+ "@genesislcap/webpack-builder": "14.329.0-notifications-icon.1",
37
37
  "@types/json-schema": "^7.0.11"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/expression-builder": "14.328.0",
41
- "@genesislcap/foundation-logger": "14.328.0",
40
+ "@genesislcap/expression-builder": "14.329.0-notifications-icon.1",
41
+ "@genesislcap/foundation-logger": "14.329.0-notifications-icon.1",
42
42
  "@microsoft/fast-components": "2.30.6",
43
43
  "@microsoft/fast-element": "1.14.0",
44
44
  "@microsoft/fast-foundation": "2.49.6",
@@ -56,5 +56,5 @@
56
56
  "access": "public"
57
57
  },
58
58
  "customElements": "dist/custom-elements.json",
59
- "gitHead": "8ce4a320a655929a678956607e4daeec57d17e89"
59
+ "gitHead": "9c4a4949deb9245a8fbc9946bae852e4a8034d82"
60
60
  }