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