@genesislcap/foundation-utils 14.82.0 → 14.83.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.
@@ -143,306 +143,6 @@
143
143
  }
144
144
  ]
145
145
  },
146
- {
147
- "kind": "javascript-module",
148
- "path": "src/data/inMemoryDatabase.ts",
149
- "declarations": [
150
- {
151
- "kind": "class",
152
- "description": "An in memory database of specific DatabaseRecord types.",
153
- "name": "InMemoryDatabase",
154
- "members": [
155
- {
156
- "kind": "field",
157
- "name": "isWorking",
158
- "type": {
159
- "text": "boolean"
160
- },
161
- "privacy": "public",
162
- "default": "false"
163
- },
164
- {
165
- "kind": "field",
166
- "name": "records",
167
- "type": {
168
- "text": "Record<string, T>"
169
- },
170
- "privacy": "private",
171
- "default": "{}"
172
- },
173
- {
174
- "kind": "field",
175
- "name": "beforeUpdateListeners",
176
- "privacy": "private"
177
- },
178
- {
179
- "kind": "field",
180
- "name": "afterUpdateListeners",
181
- "privacy": "private"
182
- },
183
- {
184
- "kind": "method",
185
- "name": "create",
186
- "privacy": "public",
187
- "return": {
188
- "type": {
189
- "text": "Promise<DatabaseAccessResult.Create<T>>"
190
- }
191
- },
192
- "parameters": [
193
- {
194
- "name": "newValue",
195
- "type": {
196
- "text": "Omit<T, 'id'>"
197
- }
198
- }
199
- ]
200
- },
201
- {
202
- "kind": "method",
203
- "name": "read",
204
- "privacy": "public",
205
- "return": {
206
- "type": {
207
- "text": "Promise<DatabaseAccessResult.Read<T>>"
208
- }
209
- },
210
- "parameters": [
211
- {
212
- "name": "id",
213
- "type": {
214
- "text": "string"
215
- }
216
- }
217
- ]
218
- },
219
- {
220
- "kind": "method",
221
- "name": "update",
222
- "privacy": "public",
223
- "return": {
224
- "type": {
225
- "text": "Promise<DatabaseAccessResult.Update<T>>"
226
- }
227
- },
228
- "parameters": [
229
- {
230
- "name": "id",
231
- "type": {
232
- "text": "string"
233
- }
234
- },
235
- {
236
- "name": "newValue",
237
- "type": {
238
- "text": "Omit<Partial<T>, 'id'>"
239
- }
240
- }
241
- ]
242
- },
243
- {
244
- "kind": "method",
245
- "name": "delete",
246
- "privacy": "public",
247
- "return": {
248
- "type": {
249
- "text": "Promise<DatabaseAccessResult.Delete>"
250
- }
251
- },
252
- "parameters": [
253
- {
254
- "name": "id",
255
- "type": {
256
- "text": "string"
257
- }
258
- }
259
- ]
260
- },
261
- {
262
- "kind": "method",
263
- "name": "visit",
264
- "privacy": "public",
265
- "return": {
266
- "type": {
267
- "text": "Promise<void>"
268
- }
269
- },
270
- "parameters": [
271
- {
272
- "name": "visitor",
273
- "type": {
274
- "text": "(record: T) => void"
275
- }
276
- }
277
- ]
278
- },
279
- {
280
- "kind": "method",
281
- "name": "onBeforeUpdate",
282
- "privacy": "public",
283
- "return": {
284
- "type": {
285
- "text": "() => void"
286
- }
287
- },
288
- "parameters": [
289
- {
290
- "name": "listener",
291
- "type": {
292
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
293
- }
294
- }
295
- ]
296
- },
297
- {
298
- "kind": "method",
299
- "name": "onAfterUpdate",
300
- "privacy": "public",
301
- "return": {
302
- "type": {
303
- "text": "() => void"
304
- }
305
- },
306
- "parameters": [
307
- {
308
- "name": "listener",
309
- "type": {
310
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
311
- }
312
- }
313
- ]
314
- }
315
- ]
316
- }
317
- ],
318
- "exports": [
319
- {
320
- "kind": "js",
321
- "name": "InMemoryDatabase",
322
- "declaration": {
323
- "name": "InMemoryDatabase",
324
- "module": "src/data/inMemoryDatabase.ts"
325
- }
326
- }
327
- ]
328
- },
329
- {
330
- "kind": "javascript-module",
331
- "path": "src/data/index.ts",
332
- "declarations": [],
333
- "exports": [
334
- {
335
- "kind": "js",
336
- "name": "*",
337
- "declaration": {
338
- "name": "*",
339
- "package": "./inMemoryDatabase"
340
- }
341
- }
342
- ]
343
- },
344
- {
345
- "kind": "javascript-module",
346
- "path": "src/decorators/index.ts",
347
- "declarations": [],
348
- "exports": [
349
- {
350
- "kind": "js",
351
- "name": "*",
352
- "declaration": {
353
- "name": "*",
354
- "package": "./renderOnChange"
355
- }
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": [
387
- {
388
- "kind": "js",
389
- "name": "renderOnChange",
390
- "declaration": {
391
- "name": "renderOnChange",
392
- "module": "src/decorators/renderOnChange.ts"
393
- }
394
- }
395
- ]
396
- },
397
- {
398
- "kind": "javascript-module",
399
- "path": "src/design-system/design-system.ts",
400
- "declarations": [
401
- {
402
- "kind": "function",
403
- "name": "assureDesignSystem",
404
- "return": {
405
- "type": {
406
- "text": "DesignSystemModule"
407
- }
408
- },
409
- "parameters": [
410
- {
411
- "name": "module",
412
- "type": {
413
- "text": "DesignSystemModule"
414
- }
415
- }
416
- ],
417
- "privacy": "public"
418
- }
419
- ],
420
- "exports": [
421
- {
422
- "kind": "js",
423
- "name": "assureDesignSystem",
424
- "declaration": {
425
- "name": "assureDesignSystem",
426
- "module": "src/design-system/design-system.ts"
427
- }
428
- }
429
- ]
430
- },
431
- {
432
- "kind": "javascript-module",
433
- "path": "src/design-system/index.ts",
434
- "declarations": [],
435
- "exports": [
436
- {
437
- "kind": "js",
438
- "name": "*",
439
- "declaration": {
440
- "name": "*",
441
- "package": "./design-system"
442
- }
443
- }
444
- ]
445
- },
446
146
  {
447
147
  "kind": "javascript-module",
448
148
  "path": "src/directives/index.ts",
@@ -681,196 +381,447 @@
681
381
  },
682
382
  {
683
383
  "kind": "js",
684
- "name": "DEFAULT_USER",
384
+ "name": "DEFAULT_USER",
385
+ "declaration": {
386
+ "name": "_DEFAULT_USER",
387
+ "module": "src/env/variables.ts"
388
+ }
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "kind": "javascript-module",
394
+ "path": "src/error/errorMap.ts",
395
+ "declarations": [
396
+ {
397
+ "kind": "class",
398
+ "description": "",
399
+ "name": "DefaultErrorMap",
400
+ "members": [
401
+ {
402
+ "kind": "field",
403
+ "name": "map",
404
+ "privacy": "private",
405
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
406
+ },
407
+ {
408
+ "kind": "field",
409
+ "name": "lastError",
410
+ "type": {
411
+ "text": "Error"
412
+ },
413
+ "description": "{@inheritDoc ErrorMap.lastError}"
414
+ },
415
+ {
416
+ "kind": "method",
417
+ "name": "set",
418
+ "return": {
419
+ "type": {
420
+ "text": "void"
421
+ }
422
+ },
423
+ "parameters": [
424
+ {
425
+ "name": "key",
426
+ "type": {
427
+ "text": "keyof TErrorDetailMap"
428
+ }
429
+ },
430
+ {
431
+ "name": "error",
432
+ "type": {
433
+ "text": "Error"
434
+ }
435
+ }
436
+ ],
437
+ "description": "{@inheritDoc ErrorMap.set}"
438
+ },
439
+ {
440
+ "kind": "method",
441
+ "name": "get",
442
+ "return": {
443
+ "type": {
444
+ "text": ""
445
+ }
446
+ },
447
+ "parameters": [
448
+ {
449
+ "name": "key",
450
+ "type": {
451
+ "text": "keyof TErrorDetailMap"
452
+ },
453
+ "description": "The key."
454
+ }
455
+ ],
456
+ "description": "Get an error by key.",
457
+ "privacy": "public"
458
+ },
459
+ {
460
+ "kind": "method",
461
+ "name": "has",
462
+ "return": {
463
+ "type": {
464
+ "text": ""
465
+ }
466
+ },
467
+ "parameters": [
468
+ {
469
+ "name": "key",
470
+ "type": {
471
+ "text": "keyof TErrorDetailMap"
472
+ },
473
+ "description": "The key."
474
+ }
475
+ ],
476
+ "description": "Has an error for key.",
477
+ "privacy": "public"
478
+ },
479
+ {
480
+ "kind": "method",
481
+ "name": "delete",
482
+ "return": {
483
+ "type": {
484
+ "text": ""
485
+ }
486
+ },
487
+ "parameters": [
488
+ {
489
+ "name": "key",
490
+ "type": {
491
+ "text": "keyof TErrorDetailMap"
492
+ },
493
+ "description": "The key."
494
+ }
495
+ ],
496
+ "description": "Delete an error.",
497
+ "privacy": "public"
498
+ },
499
+ {
500
+ "kind": "method",
501
+ "name": "clear",
502
+ "description": "Clear errors.",
503
+ "privacy": "public"
504
+ },
505
+ {
506
+ "kind": "field",
507
+ "name": "size",
508
+ "type": {
509
+ "text": "number"
510
+ },
511
+ "description": "The size of the error map.",
512
+ "return": {
513
+ "type": {
514
+ "text": ""
515
+ }
516
+ },
517
+ "privacy": "public",
518
+ "readonly": true
519
+ },
520
+ {
521
+ "kind": "field",
522
+ "name": "messages",
523
+ "type": {
524
+ "text": "string"
525
+ },
526
+ "description": "{@inheritDoc ErrorMap.messages}",
527
+ "readonly": true
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "kind": "function",
533
+ "name": "createErrorMap",
534
+ "return": {
535
+ "type": {
536
+ "text": ""
537
+ }
538
+ },
539
+ "parameters": [
540
+ {
541
+ "name": "logger",
542
+ "type": {
543
+ "text": "ErrorMapLogger"
544
+ },
545
+ "description": "A logger error method reference."
546
+ }
547
+ ],
548
+ "description": "A factory to create the error map.",
549
+ "privacy": "public"
550
+ }
551
+ ],
552
+ "exports": [
553
+ {
554
+ "kind": "js",
555
+ "name": "DefaultErrorMap",
556
+ "declaration": {
557
+ "name": "DefaultErrorMap",
558
+ "module": "src/error/errorMap.ts"
559
+ }
560
+ },
561
+ {
562
+ "kind": "js",
563
+ "name": "createErrorMap",
564
+ "declaration": {
565
+ "name": "createErrorMap",
566
+ "module": "src/error/errorMap.ts"
567
+ }
568
+ }
569
+ ]
570
+ },
571
+ {
572
+ "kind": "javascript-module",
573
+ "path": "src/error/index.ts",
574
+ "declarations": [],
575
+ "exports": [
576
+ {
577
+ "kind": "js",
578
+ "name": "*",
579
+ "declaration": {
580
+ "name": "*",
581
+ "package": "./errorMap"
582
+ }
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "kind": "javascript-module",
588
+ "path": "src/decorators/index.ts",
589
+ "declarations": [],
590
+ "exports": [
591
+ {
592
+ "kind": "js",
593
+ "name": "*",
594
+ "declaration": {
595
+ "name": "*",
596
+ "package": "./renderOnChange"
597
+ }
598
+ }
599
+ ]
600
+ },
601
+ {
602
+ "kind": "javascript-module",
603
+ "path": "src/decorators/renderOnChange.ts",
604
+ "declarations": [
605
+ {
606
+ "kind": "function",
607
+ "name": "renderOnChange",
608
+ "parameters": [
609
+ {
610
+ "name": "target",
611
+ "type": {
612
+ "text": "FASTElement & { render(): void }"
613
+ },
614
+ "description": "The target to define the property change handler on."
615
+ },
616
+ {
617
+ "name": "name",
618
+ "type": {
619
+ "text": "string"
620
+ },
621
+ "description": "The property name."
622
+ }
623
+ ],
624
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
625
+ "privacy": "public"
626
+ }
627
+ ],
628
+ "exports": [
629
+ {
630
+ "kind": "js",
631
+ "name": "renderOnChange",
685
632
  "declaration": {
686
- "name": "_DEFAULT_USER",
687
- "module": "src/env/variables.ts"
633
+ "name": "renderOnChange",
634
+ "module": "src/decorators/renderOnChange.ts"
688
635
  }
689
636
  }
690
637
  ]
691
638
  },
692
639
  {
693
640
  "kind": "javascript-module",
694
- "path": "src/error/errorMap.ts",
641
+ "path": "src/data/inMemoryDatabase.ts",
695
642
  "declarations": [
696
643
  {
697
644
  "kind": "class",
698
- "description": "",
699
- "name": "DefaultErrorMap",
645
+ "description": "An in memory database of specific DatabaseRecord types.",
646
+ "name": "InMemoryDatabase",
700
647
  "members": [
701
648
  {
702
649
  "kind": "field",
703
- "name": "map",
704
- "privacy": "private",
705
- "default": "new Map<keyof TErrorDetailMap, Error>()"
650
+ "name": "isWorking",
651
+ "type": {
652
+ "text": "boolean"
653
+ },
654
+ "privacy": "public",
655
+ "default": "false"
706
656
  },
707
657
  {
708
658
  "kind": "field",
709
- "name": "lastError",
659
+ "name": "records",
710
660
  "type": {
711
- "text": "Error"
661
+ "text": "Record<string, T>"
712
662
  },
713
- "description": "{@inheritDoc ErrorMap.lastError}"
663
+ "privacy": "private",
664
+ "default": "{}"
665
+ },
666
+ {
667
+ "kind": "field",
668
+ "name": "beforeUpdateListeners",
669
+ "privacy": "private"
670
+ },
671
+ {
672
+ "kind": "field",
673
+ "name": "afterUpdateListeners",
674
+ "privacy": "private"
714
675
  },
715
676
  {
716
677
  "kind": "method",
717
- "name": "set",
678
+ "name": "create",
679
+ "privacy": "public",
718
680
  "return": {
719
681
  "type": {
720
- "text": "void"
682
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
721
683
  }
722
684
  },
723
685
  "parameters": [
724
686
  {
725
- "name": "key",
726
- "type": {
727
- "text": "keyof TErrorDetailMap"
728
- }
729
- },
730
- {
731
- "name": "error",
687
+ "name": "newValue",
732
688
  "type": {
733
- "text": "Error"
689
+ "text": "Omit<T, 'id'>"
734
690
  }
735
691
  }
736
- ],
737
- "description": "{@inheritDoc ErrorMap.set}"
692
+ ]
738
693
  },
739
694
  {
740
695
  "kind": "method",
741
- "name": "get",
696
+ "name": "read",
697
+ "privacy": "public",
742
698
  "return": {
743
699
  "type": {
744
- "text": ""
700
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
745
701
  }
746
702
  },
747
703
  "parameters": [
748
704
  {
749
- "name": "key",
705
+ "name": "id",
750
706
  "type": {
751
- "text": "keyof TErrorDetailMap"
752
- },
753
- "description": "The key."
707
+ "text": "string"
708
+ }
754
709
  }
755
- ],
756
- "description": "Get an error by key.",
757
- "privacy": "public"
710
+ ]
758
711
  },
759
712
  {
760
713
  "kind": "method",
761
- "name": "has",
714
+ "name": "update",
715
+ "privacy": "public",
762
716
  "return": {
763
717
  "type": {
764
- "text": ""
718
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
765
719
  }
766
720
  },
767
721
  "parameters": [
768
722
  {
769
- "name": "key",
723
+ "name": "id",
770
724
  "type": {
771
- "text": "keyof TErrorDetailMap"
772
- },
773
- "description": "The key."
725
+ "text": "string"
726
+ }
727
+ },
728
+ {
729
+ "name": "newValue",
730
+ "type": {
731
+ "text": "Omit<Partial<T>, 'id'>"
732
+ }
774
733
  }
775
- ],
776
- "description": "Has an error for key.",
777
- "privacy": "public"
734
+ ]
778
735
  },
779
736
  {
780
737
  "kind": "method",
781
738
  "name": "delete",
739
+ "privacy": "public",
782
740
  "return": {
783
741
  "type": {
784
- "text": ""
742
+ "text": "Promise<DatabaseAccessResult.Delete>"
785
743
  }
786
744
  },
787
745
  "parameters": [
788
746
  {
789
- "name": "key",
747
+ "name": "id",
790
748
  "type": {
791
- "text": "keyof TErrorDetailMap"
792
- },
793
- "description": "The key."
749
+ "text": "string"
750
+ }
794
751
  }
795
- ],
796
- "description": "Delete an error.",
797
- "privacy": "public"
752
+ ]
798
753
  },
799
754
  {
800
755
  "kind": "method",
801
- "name": "clear",
802
- "description": "Clear errors.",
803
- "privacy": "public"
756
+ "name": "visit",
757
+ "privacy": "public",
758
+ "return": {
759
+ "type": {
760
+ "text": "Promise<void>"
761
+ }
762
+ },
763
+ "parameters": [
764
+ {
765
+ "name": "visitor",
766
+ "type": {
767
+ "text": "(record: T) => void"
768
+ }
769
+ }
770
+ ]
804
771
  },
805
772
  {
806
- "kind": "field",
807
- "name": "size",
808
- "type": {
809
- "text": "number"
810
- },
811
- "description": "The size of the error map.",
773
+ "kind": "method",
774
+ "name": "onBeforeUpdate",
775
+ "privacy": "public",
812
776
  "return": {
813
777
  "type": {
814
- "text": ""
778
+ "text": "() => void"
815
779
  }
816
780
  },
817
- "privacy": "public",
818
- "readonly": true
781
+ "parameters": [
782
+ {
783
+ "name": "listener",
784
+ "type": {
785
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
786
+ }
787
+ }
788
+ ]
819
789
  },
820
790
  {
821
- "kind": "field",
822
- "name": "messages",
823
- "type": {
824
- "text": "string"
791
+ "kind": "method",
792
+ "name": "onAfterUpdate",
793
+ "privacy": "public",
794
+ "return": {
795
+ "type": {
796
+ "text": "() => void"
797
+ }
825
798
  },
826
- "description": "{@inheritDoc ErrorMap.messages}",
827
- "readonly": true
799
+ "parameters": [
800
+ {
801
+ "name": "listener",
802
+ "type": {
803
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
804
+ }
805
+ }
806
+ ]
828
807
  }
829
808
  ]
830
- },
831
- {
832
- "kind": "function",
833
- "name": "createErrorMap",
834
- "return": {
835
- "type": {
836
- "text": ""
837
- }
838
- },
839
- "parameters": [
840
- {
841
- "name": "logger",
842
- "type": {
843
- "text": "ErrorMapLogger"
844
- },
845
- "description": "A logger error method reference."
846
- }
847
- ],
848
- "description": "A factory to create the error map.",
849
- "privacy": "public"
850
809
  }
851
810
  ],
852
811
  "exports": [
853
812
  {
854
813
  "kind": "js",
855
- "name": "DefaultErrorMap",
856
- "declaration": {
857
- "name": "DefaultErrorMap",
858
- "module": "src/error/errorMap.ts"
859
- }
860
- },
861
- {
862
- "kind": "js",
863
- "name": "createErrorMap",
814
+ "name": "InMemoryDatabase",
864
815
  "declaration": {
865
- "name": "createErrorMap",
866
- "module": "src/error/errorMap.ts"
816
+ "name": "InMemoryDatabase",
817
+ "module": "src/data/inMemoryDatabase.ts"
867
818
  }
868
819
  }
869
820
  ]
870
821
  },
871
822
  {
872
823
  "kind": "javascript-module",
873
- "path": "src/error/index.ts",
824
+ "path": "src/data/index.ts",
874
825
  "declarations": [],
875
826
  "exports": [
876
827
  {
@@ -878,7 +829,7 @@
878
829
  "name": "*",
879
830
  "declaration": {
880
831
  "name": "*",
881
- "package": "./errorMap"
832
+ "package": "./inMemoryDatabase"
882
833
  }
883
834
  }
884
835
  ]
@@ -1095,6 +1046,55 @@
1095
1046
  }
1096
1047
  ]
1097
1048
  },
1049
+ {
1050
+ "kind": "javascript-module",
1051
+ "path": "src/design-system/design-system.ts",
1052
+ "declarations": [
1053
+ {
1054
+ "kind": "function",
1055
+ "name": "assureDesignSystem",
1056
+ "return": {
1057
+ "type": {
1058
+ "text": "DesignSystemModule"
1059
+ }
1060
+ },
1061
+ "parameters": [
1062
+ {
1063
+ "name": "module",
1064
+ "type": {
1065
+ "text": "DesignSystemModule"
1066
+ }
1067
+ }
1068
+ ],
1069
+ "privacy": "public"
1070
+ }
1071
+ ],
1072
+ "exports": [
1073
+ {
1074
+ "kind": "js",
1075
+ "name": "assureDesignSystem",
1076
+ "declaration": {
1077
+ "name": "assureDesignSystem",
1078
+ "module": "src/design-system/design-system.ts"
1079
+ }
1080
+ }
1081
+ ]
1082
+ },
1083
+ {
1084
+ "kind": "javascript-module",
1085
+ "path": "src/design-system/index.ts",
1086
+ "declarations": [],
1087
+ "exports": [
1088
+ {
1089
+ "kind": "js",
1090
+ "name": "*",
1091
+ "declaration": {
1092
+ "name": "*",
1093
+ "package": "./design-system"
1094
+ }
1095
+ }
1096
+ ]
1097
+ },
1098
1098
  {
1099
1099
  "kind": "javascript-module",
1100
1100
  "path": "src/logger/index.ts",
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.82.0",
4
+ "version": "14.83.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
8
8
  "types": "dist/dts/index.d.ts",
9
+ "engines": {
10
+ "node": ">=18.0.0"
11
+ },
9
12
  "config": {
10
13
  "PORT": 3040
11
14
  },
@@ -16,12 +19,12 @@
16
19
  "test": "genx test"
17
20
  },
18
21
  "devDependencies": {
19
- "@genesislcap/foundation-testing": "14.82.0",
20
- "@genesislcap/genx": "14.82.0",
22
+ "@genesislcap/foundation-testing": "14.83.0",
23
+ "@genesislcap/genx": "14.83.0",
21
24
  "rimraf": "^3.0.2"
22
25
  },
23
26
  "dependencies": {
24
- "@genesislcap/foundation-logger": "14.82.0",
27
+ "@genesislcap/foundation-logger": "14.83.0",
25
28
  "@microsoft/fast-components": "^2.21.3",
26
29
  "@microsoft/fast-element": "^1.7.0",
27
30
  "@microsoft/fast-foundation": "^2.33.2",
@@ -39,5 +42,5 @@
39
42
  "access": "public"
40
43
  },
41
44
  "customElements": "dist/custom-elements.json",
42
- "gitHead": "69108b95942ed1e47c3cf1eaf9fd3c3ed9188de0"
45
+ "gitHead": "a1e05428d4da3c1626d96739667e3d8bc0c9e4e2"
43
46
  }