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