@genesislcap/foundation-utils 14.83.0 → 14.83.2

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,6 +143,306 @@
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
+ },
146
446
  {
147
447
  "kind": "javascript-module",
148
448
  "path": "src/directives/index.ts",
@@ -378,450 +678,199 @@
378
678
  "name": "_DEFAULT_PASSWORD",
379
679
  "module": "src/env/variables.ts"
380
680
  }
381
- },
382
- {
383
- "kind": "js",
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": [
681
+ },
629
682
  {
630
683
  "kind": "js",
631
- "name": "renderOnChange",
684
+ "name": "DEFAULT_USER",
632
685
  "declaration": {
633
- "name": "renderOnChange",
634
- "module": "src/decorators/renderOnChange.ts"
686
+ "name": "_DEFAULT_USER",
687
+ "module": "src/env/variables.ts"
635
688
  }
636
689
  }
637
690
  ]
638
691
  },
639
692
  {
640
693
  "kind": "javascript-module",
641
- "path": "src/data/inMemoryDatabase.ts",
694
+ "path": "src/error/errorMap.ts",
642
695
  "declarations": [
643
696
  {
644
697
  "kind": "class",
645
- "description": "An in memory database of specific DatabaseRecord types.",
646
- "name": "InMemoryDatabase",
698
+ "description": "",
699
+ "name": "DefaultErrorMap",
647
700
  "members": [
648
701
  {
649
702
  "kind": "field",
650
- "name": "isWorking",
651
- "type": {
652
- "text": "boolean"
653
- },
654
- "privacy": "public",
655
- "default": "false"
703
+ "name": "map",
704
+ "privacy": "private",
705
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
656
706
  },
657
707
  {
658
708
  "kind": "field",
659
- "name": "records",
709
+ "name": "lastError",
660
710
  "type": {
661
- "text": "Record<string, T>"
711
+ "text": "Error"
662
712
  },
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"
713
+ "description": "{@inheritDoc ErrorMap.lastError}"
675
714
  },
676
715
  {
677
716
  "kind": "method",
678
- "name": "create",
679
- "privacy": "public",
717
+ "name": "set",
680
718
  "return": {
681
719
  "type": {
682
- "text": "Promise<DatabaseAccessResult.Create<T>>"
720
+ "text": "void"
683
721
  }
684
722
  },
685
723
  "parameters": [
686
724
  {
687
- "name": "newValue",
725
+ "name": "key",
688
726
  "type": {
689
- "text": "Omit<T, 'id'>"
727
+ "text": "keyof TErrorDetailMap"
690
728
  }
691
- }
692
- ]
693
- },
694
- {
695
- "kind": "method",
696
- "name": "read",
697
- "privacy": "public",
698
- "return": {
699
- "type": {
700
- "text": "Promise<DatabaseAccessResult.Read<T>>"
701
- }
702
- },
703
- "parameters": [
729
+ },
704
730
  {
705
- "name": "id",
731
+ "name": "error",
706
732
  "type": {
707
- "text": "string"
733
+ "text": "Error"
708
734
  }
709
735
  }
710
- ]
736
+ ],
737
+ "description": "{@inheritDoc ErrorMap.set}"
711
738
  },
712
739
  {
713
740
  "kind": "method",
714
- "name": "update",
715
- "privacy": "public",
741
+ "name": "get",
716
742
  "return": {
717
743
  "type": {
718
- "text": "Promise<DatabaseAccessResult.Update<T>>"
744
+ "text": ""
719
745
  }
720
746
  },
721
747
  "parameters": [
722
748
  {
723
- "name": "id",
724
- "type": {
725
- "text": "string"
726
- }
727
- },
728
- {
729
- "name": "newValue",
749
+ "name": "key",
730
750
  "type": {
731
- "text": "Omit<Partial<T>, 'id'>"
732
- }
751
+ "text": "keyof TErrorDetailMap"
752
+ },
753
+ "description": "The key."
733
754
  }
734
- ]
755
+ ],
756
+ "description": "Get an error by key.",
757
+ "privacy": "public"
735
758
  },
736
759
  {
737
760
  "kind": "method",
738
- "name": "delete",
739
- "privacy": "public",
761
+ "name": "has",
740
762
  "return": {
741
763
  "type": {
742
- "text": "Promise<DatabaseAccessResult.Delete>"
764
+ "text": ""
743
765
  }
744
766
  },
745
767
  "parameters": [
746
768
  {
747
- "name": "id",
769
+ "name": "key",
748
770
  "type": {
749
- "text": "string"
750
- }
771
+ "text": "keyof TErrorDetailMap"
772
+ },
773
+ "description": "The key."
751
774
  }
752
- ]
775
+ ],
776
+ "description": "Has an error for key.",
777
+ "privacy": "public"
753
778
  },
754
779
  {
755
780
  "kind": "method",
756
- "name": "visit",
757
- "privacy": "public",
781
+ "name": "delete",
758
782
  "return": {
759
783
  "type": {
760
- "text": "Promise<void>"
784
+ "text": ""
761
785
  }
762
786
  },
763
787
  "parameters": [
764
788
  {
765
- "name": "visitor",
789
+ "name": "key",
766
790
  "type": {
767
- "text": "(record: T) => void"
768
- }
791
+ "text": "keyof TErrorDetailMap"
792
+ },
793
+ "description": "The key."
769
794
  }
770
- ]
795
+ ],
796
+ "description": "Delete an error.",
797
+ "privacy": "public"
771
798
  },
772
799
  {
773
800
  "kind": "method",
774
- "name": "onBeforeUpdate",
775
- "privacy": "public",
801
+ "name": "clear",
802
+ "description": "Clear errors.",
803
+ "privacy": "public"
804
+ },
805
+ {
806
+ "kind": "field",
807
+ "name": "size",
808
+ "type": {
809
+ "text": "number"
810
+ },
811
+ "description": "The size of the error map.",
776
812
  "return": {
777
813
  "type": {
778
- "text": "() => void"
814
+ "text": ""
779
815
  }
780
816
  },
781
- "parameters": [
782
- {
783
- "name": "listener",
784
- "type": {
785
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
786
- }
787
- }
788
- ]
817
+ "privacy": "public",
818
+ "readonly": true
789
819
  },
790
820
  {
791
- "kind": "method",
792
- "name": "onAfterUpdate",
793
- "privacy": "public",
794
- "return": {
795
- "type": {
796
- "text": "() => void"
797
- }
821
+ "kind": "field",
822
+ "name": "messages",
823
+ "type": {
824
+ "text": "string"
798
825
  },
799
- "parameters": [
800
- {
801
- "name": "listener",
802
- "type": {
803
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
804
- }
805
- }
806
- ]
826
+ "description": "{@inheritDoc ErrorMap.messages}",
827
+ "readonly": true
807
828
  }
808
829
  ]
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"
809
850
  }
810
851
  ],
811
852
  "exports": [
812
853
  {
813
854
  "kind": "js",
814
- "name": "InMemoryDatabase",
855
+ "name": "DefaultErrorMap",
815
856
  "declaration": {
816
- "name": "InMemoryDatabase",
817
- "module": "src/data/inMemoryDatabase.ts"
857
+ "name": "DefaultErrorMap",
858
+ "module": "src/error/errorMap.ts"
859
+ }
860
+ },
861
+ {
862
+ "kind": "js",
863
+ "name": "createErrorMap",
864
+ "declaration": {
865
+ "name": "createErrorMap",
866
+ "module": "src/error/errorMap.ts"
818
867
  }
819
868
  }
820
869
  ]
821
870
  },
822
871
  {
823
872
  "kind": "javascript-module",
824
- "path": "src/data/index.ts",
873
+ "path": "src/error/index.ts",
825
874
  "declarations": [],
826
875
  "exports": [
827
876
  {
@@ -829,7 +878,7 @@
829
878
  "name": "*",
830
879
  "declaration": {
831
880
  "name": "*",
832
- "package": "./inMemoryDatabase"
881
+ "package": "./errorMap"
833
882
  }
834
883
  }
835
884
  ]
@@ -1046,55 +1095,6 @@
1046
1095
  }
1047
1096
  ]
1048
1097
  },
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.83.0",
4
+ "version": "14.83.2",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,12 +19,12 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.83.0",
23
- "@genesislcap/genx": "14.83.0",
22
+ "@genesislcap/foundation-testing": "14.83.2",
23
+ "@genesislcap/genx": "14.83.2",
24
24
  "rimraf": "^3.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@genesislcap/foundation-logger": "14.83.0",
27
+ "@genesislcap/foundation-logger": "14.83.2",
28
28
  "@microsoft/fast-components": "^2.21.3",
29
29
  "@microsoft/fast-element": "^1.7.0",
30
30
  "@microsoft/fast-foundation": "^2.33.2",
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "customElements": "dist/custom-elements.json",
45
- "gitHead": "a1e05428d4da3c1626d96739667e3d8bc0c9e4e2"
45
+ "gitHead": "869a0411f7e3d62ed5c40d592a3dc226e782200e"
46
46
  }