@genesislcap/foundation-utils 14.217.4 → 14.217.6-alpha-f6d0d1c0fdc7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +396 -396
  2. package/package.json +10 -10
@@ -167,257 +167,6 @@
167
167
  }
168
168
  ]
169
169
  },
170
- {
171
- "kind": "javascript-module",
172
- "path": "src/decorators/index.ts",
173
- "declarations": [],
174
- "exports": [
175
- {
176
- "kind": "js",
177
- "name": "*",
178
- "declaration": {
179
- "name": "*",
180
- "package": "./renderOnChange"
181
- }
182
- }
183
- ]
184
- },
185
- {
186
- "kind": "javascript-module",
187
- "path": "src/decorators/renderOnChange.ts",
188
- "declarations": [
189
- {
190
- "kind": "function",
191
- "name": "renderOnChange",
192
- "parameters": [
193
- {
194
- "name": "target",
195
- "type": {
196
- "text": "FASTElement & { render(): void }"
197
- },
198
- "description": "The target to define the property change handler on."
199
- },
200
- {
201
- "name": "name",
202
- "type": {
203
- "text": "string"
204
- },
205
- "description": "The property name."
206
- }
207
- ],
208
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
209
- "privacy": "public"
210
- }
211
- ],
212
- "exports": [
213
- {
214
- "kind": "js",
215
- "name": "renderOnChange",
216
- "declaration": {
217
- "name": "renderOnChange",
218
- "module": "src/decorators/renderOnChange.ts"
219
- }
220
- }
221
- ]
222
- },
223
- {
224
- "kind": "javascript-module",
225
- "path": "src/data/inMemoryDatabase.ts",
226
- "declarations": [
227
- {
228
- "kind": "class",
229
- "description": "An in memory database of specific DatabaseRecord types.",
230
- "name": "InMemoryDatabase",
231
- "members": [
232
- {
233
- "kind": "field",
234
- "name": "isWorking",
235
- "type": {
236
- "text": "boolean"
237
- },
238
- "privacy": "public",
239
- "default": "false"
240
- },
241
- {
242
- "kind": "field",
243
- "name": "records",
244
- "type": {
245
- "text": "Record<string, T>"
246
- },
247
- "privacy": "private",
248
- "default": "{}"
249
- },
250
- {
251
- "kind": "field",
252
- "name": "beforeUpdateListeners",
253
- "privacy": "private"
254
- },
255
- {
256
- "kind": "field",
257
- "name": "afterUpdateListeners",
258
- "privacy": "private"
259
- },
260
- {
261
- "kind": "method",
262
- "name": "create",
263
- "privacy": "public",
264
- "return": {
265
- "type": {
266
- "text": "Promise<DatabaseAccessResult.Create<T>>"
267
- }
268
- },
269
- "parameters": [
270
- {
271
- "name": "newValue",
272
- "type": {
273
- "text": "Omit<T, 'id'>"
274
- }
275
- }
276
- ]
277
- },
278
- {
279
- "kind": "method",
280
- "name": "read",
281
- "privacy": "public",
282
- "return": {
283
- "type": {
284
- "text": "Promise<DatabaseAccessResult.Read<T>>"
285
- }
286
- },
287
- "parameters": [
288
- {
289
- "name": "id",
290
- "type": {
291
- "text": "string"
292
- }
293
- }
294
- ]
295
- },
296
- {
297
- "kind": "method",
298
- "name": "update",
299
- "privacy": "public",
300
- "return": {
301
- "type": {
302
- "text": "Promise<DatabaseAccessResult.Update<T>>"
303
- }
304
- },
305
- "parameters": [
306
- {
307
- "name": "id",
308
- "type": {
309
- "text": "string"
310
- }
311
- },
312
- {
313
- "name": "newValue",
314
- "type": {
315
- "text": "Omit<Partial<T>, 'id'>"
316
- }
317
- }
318
- ]
319
- },
320
- {
321
- "kind": "method",
322
- "name": "delete",
323
- "privacy": "public",
324
- "return": {
325
- "type": {
326
- "text": "Promise<DatabaseAccessResult.Delete>"
327
- }
328
- },
329
- "parameters": [
330
- {
331
- "name": "id",
332
- "type": {
333
- "text": "string"
334
- }
335
- }
336
- ]
337
- },
338
- {
339
- "kind": "method",
340
- "name": "visit",
341
- "privacy": "public",
342
- "return": {
343
- "type": {
344
- "text": "Promise<void>"
345
- }
346
- },
347
- "parameters": [
348
- {
349
- "name": "visitor",
350
- "type": {
351
- "text": "(record: T) => void"
352
- }
353
- }
354
- ]
355
- },
356
- {
357
- "kind": "method",
358
- "name": "onBeforeUpdate",
359
- "privacy": "public",
360
- "return": {
361
- "type": {
362
- "text": "() => void"
363
- }
364
- },
365
- "parameters": [
366
- {
367
- "name": "listener",
368
- "type": {
369
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
370
- }
371
- }
372
- ]
373
- },
374
- {
375
- "kind": "method",
376
- "name": "onAfterUpdate",
377
- "privacy": "public",
378
- "return": {
379
- "type": {
380
- "text": "() => void"
381
- }
382
- },
383
- "parameters": [
384
- {
385
- "name": "listener",
386
- "type": {
387
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
388
- }
389
- }
390
- ]
391
- }
392
- ]
393
- }
394
- ],
395
- "exports": [
396
- {
397
- "kind": "js",
398
- "name": "InMemoryDatabase",
399
- "declaration": {
400
- "name": "InMemoryDatabase",
401
- "module": "src/data/inMemoryDatabase.ts"
402
- }
403
- }
404
- ]
405
- },
406
- {
407
- "kind": "javascript-module",
408
- "path": "src/data/index.ts",
409
- "declarations": [],
410
- "exports": [
411
- {
412
- "kind": "js",
413
- "name": "*",
414
- "declaration": {
415
- "name": "*",
416
- "package": "./inMemoryDatabase"
417
- }
418
- }
419
- ]
420
- },
421
170
  {
422
171
  "kind": "javascript-module",
423
172
  "path": "src/design-system/design-system.ts",
@@ -452,41 +201,18 @@
452
201
  }
453
202
  }
454
203
  ]
455
- },
456
- {
457
- "kind": "javascript-module",
458
- "path": "src/design-system/index.ts",
459
- "declarations": [],
460
- "exports": [
461
- {
462
- "kind": "js",
463
- "name": "*",
464
- "declaration": {
465
- "name": "*",
466
- "package": "./design-system"
467
- }
468
- }
469
- ]
470
- },
471
- {
472
- "kind": "javascript-module",
473
- "path": "src/directives/index.ts",
474
- "declarations": [],
475
- "exports": [
476
- {
477
- "kind": "js",
478
- "name": "*",
479
- "declaration": {
480
- "name": "*",
481
- "package": "./sync"
482
- }
483
- },
204
+ },
205
+ {
206
+ "kind": "javascript-module",
207
+ "path": "src/design-system/index.ts",
208
+ "declarations": [],
209
+ "exports": [
484
210
  {
485
211
  "kind": "js",
486
212
  "name": "*",
487
213
  "declaration": {
488
214
  "name": "*",
489
- "package": "./when-else"
215
+ "package": "./design-system"
490
216
  }
491
217
  }
492
218
  ]
@@ -801,121 +527,319 @@
801
527
  "name": "has",
802
528
  "return": {
803
529
  "type": {
804
- "text": ""
530
+ "text": ""
531
+ }
532
+ },
533
+ "parameters": [
534
+ {
535
+ "name": "key",
536
+ "type": {
537
+ "text": "keyof TErrorDetailMap"
538
+ },
539
+ "description": "The key."
540
+ }
541
+ ],
542
+ "description": "Has an error for key.",
543
+ "privacy": "public"
544
+ },
545
+ {
546
+ "kind": "method",
547
+ "name": "delete",
548
+ "return": {
549
+ "type": {
550
+ "text": ""
551
+ }
552
+ },
553
+ "parameters": [
554
+ {
555
+ "name": "key",
556
+ "type": {
557
+ "text": "keyof TErrorDetailMap"
558
+ },
559
+ "description": "The key."
560
+ }
561
+ ],
562
+ "description": "Delete an error.",
563
+ "privacy": "public"
564
+ },
565
+ {
566
+ "kind": "method",
567
+ "name": "clear",
568
+ "description": "Clear errors.",
569
+ "privacy": "public"
570
+ },
571
+ {
572
+ "kind": "field",
573
+ "name": "size",
574
+ "type": {
575
+ "text": "number"
576
+ },
577
+ "description": "The size of the error map.",
578
+ "return": {
579
+ "type": {
580
+ "text": ""
581
+ }
582
+ },
583
+ "privacy": "public",
584
+ "readonly": true
585
+ },
586
+ {
587
+ "kind": "method",
588
+ "name": "values",
589
+ "privacy": "public"
590
+ },
591
+ {
592
+ "kind": "field",
593
+ "name": "messages",
594
+ "type": {
595
+ "text": "string"
596
+ },
597
+ "description": "{@inheritDoc ErrorMap.messages}",
598
+ "readonly": true
599
+ }
600
+ ]
601
+ },
602
+ {
603
+ "kind": "function",
604
+ "name": "createErrorMap",
605
+ "return": {
606
+ "type": {
607
+ "text": ""
608
+ }
609
+ },
610
+ "parameters": [
611
+ {
612
+ "name": "logger",
613
+ "type": {
614
+ "text": "ErrorMapLogger"
615
+ },
616
+ "description": "A logger error method reference."
617
+ }
618
+ ],
619
+ "description": "A factory to create the error map.",
620
+ "privacy": "public"
621
+ }
622
+ ],
623
+ "exports": [
624
+ {
625
+ "kind": "js",
626
+ "name": "DefaultErrorMap",
627
+ "declaration": {
628
+ "name": "DefaultErrorMap",
629
+ "module": "src/error/errorMap.ts"
630
+ }
631
+ },
632
+ {
633
+ "kind": "js",
634
+ "name": "createErrorMap",
635
+ "declaration": {
636
+ "name": "createErrorMap",
637
+ "module": "src/error/errorMap.ts"
638
+ }
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "kind": "javascript-module",
644
+ "path": "src/error/index.ts",
645
+ "declarations": [],
646
+ "exports": [
647
+ {
648
+ "kind": "js",
649
+ "name": "*",
650
+ "declaration": {
651
+ "name": "*",
652
+ "package": "./errorMap"
653
+ }
654
+ }
655
+ ]
656
+ },
657
+ {
658
+ "kind": "javascript-module",
659
+ "path": "src/data/inMemoryDatabase.ts",
660
+ "declarations": [
661
+ {
662
+ "kind": "class",
663
+ "description": "An in memory database of specific DatabaseRecord types.",
664
+ "name": "InMemoryDatabase",
665
+ "members": [
666
+ {
667
+ "kind": "field",
668
+ "name": "isWorking",
669
+ "type": {
670
+ "text": "boolean"
671
+ },
672
+ "privacy": "public",
673
+ "default": "false"
674
+ },
675
+ {
676
+ "kind": "field",
677
+ "name": "records",
678
+ "type": {
679
+ "text": "Record<string, T>"
680
+ },
681
+ "privacy": "private",
682
+ "default": "{}"
683
+ },
684
+ {
685
+ "kind": "field",
686
+ "name": "beforeUpdateListeners",
687
+ "privacy": "private"
688
+ },
689
+ {
690
+ "kind": "field",
691
+ "name": "afterUpdateListeners",
692
+ "privacy": "private"
693
+ },
694
+ {
695
+ "kind": "method",
696
+ "name": "create",
697
+ "privacy": "public",
698
+ "return": {
699
+ "type": {
700
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
701
+ }
702
+ },
703
+ "parameters": [
704
+ {
705
+ "name": "newValue",
706
+ "type": {
707
+ "text": "Omit<T, 'id'>"
708
+ }
709
+ }
710
+ ]
711
+ },
712
+ {
713
+ "kind": "method",
714
+ "name": "read",
715
+ "privacy": "public",
716
+ "return": {
717
+ "type": {
718
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
719
+ }
720
+ },
721
+ "parameters": [
722
+ {
723
+ "name": "id",
724
+ "type": {
725
+ "text": "string"
726
+ }
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "kind": "method",
732
+ "name": "update",
733
+ "privacy": "public",
734
+ "return": {
735
+ "type": {
736
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
737
+ }
738
+ },
739
+ "parameters": [
740
+ {
741
+ "name": "id",
742
+ "type": {
743
+ "text": "string"
744
+ }
745
+ },
746
+ {
747
+ "name": "newValue",
748
+ "type": {
749
+ "text": "Omit<Partial<T>, 'id'>"
750
+ }
751
+ }
752
+ ]
753
+ },
754
+ {
755
+ "kind": "method",
756
+ "name": "delete",
757
+ "privacy": "public",
758
+ "return": {
759
+ "type": {
760
+ "text": "Promise<DatabaseAccessResult.Delete>"
761
+ }
762
+ },
763
+ "parameters": [
764
+ {
765
+ "name": "id",
766
+ "type": {
767
+ "text": "string"
768
+ }
769
+ }
770
+ ]
771
+ },
772
+ {
773
+ "kind": "method",
774
+ "name": "visit",
775
+ "privacy": "public",
776
+ "return": {
777
+ "type": {
778
+ "text": "Promise<void>"
805
779
  }
806
780
  },
807
781
  "parameters": [
808
782
  {
809
- "name": "key",
783
+ "name": "visitor",
810
784
  "type": {
811
- "text": "keyof TErrorDetailMap"
812
- },
813
- "description": "The key."
785
+ "text": "(record: T) => void"
786
+ }
814
787
  }
815
- ],
816
- "description": "Has an error for key.",
817
- "privacy": "public"
788
+ ]
818
789
  },
819
790
  {
820
791
  "kind": "method",
821
- "name": "delete",
792
+ "name": "onBeforeUpdate",
793
+ "privacy": "public",
822
794
  "return": {
823
795
  "type": {
824
- "text": ""
796
+ "text": "() => void"
825
797
  }
826
798
  },
827
799
  "parameters": [
828
800
  {
829
- "name": "key",
801
+ "name": "listener",
830
802
  "type": {
831
- "text": "keyof TErrorDetailMap"
832
- },
833
- "description": "The key."
803
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
804
+ }
834
805
  }
835
- ],
836
- "description": "Delete an error.",
837
- "privacy": "public"
806
+ ]
838
807
  },
839
808
  {
840
809
  "kind": "method",
841
- "name": "clear",
842
- "description": "Clear errors.",
843
- "privacy": "public"
844
- },
845
- {
846
- "kind": "field",
847
- "name": "size",
848
- "type": {
849
- "text": "number"
850
- },
851
- "description": "The size of the error map.",
810
+ "name": "onAfterUpdate",
811
+ "privacy": "public",
852
812
  "return": {
853
813
  "type": {
854
- "text": ""
814
+ "text": "() => void"
855
815
  }
856
816
  },
857
- "privacy": "public",
858
- "readonly": true
859
- },
860
- {
861
- "kind": "method",
862
- "name": "values",
863
- "privacy": "public"
864
- },
865
- {
866
- "kind": "field",
867
- "name": "messages",
868
- "type": {
869
- "text": "string"
870
- },
871
- "description": "{@inheritDoc ErrorMap.messages}",
872
- "readonly": true
817
+ "parameters": [
818
+ {
819
+ "name": "listener",
820
+ "type": {
821
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
822
+ }
823
+ }
824
+ ]
873
825
  }
874
826
  ]
875
- },
876
- {
877
- "kind": "function",
878
- "name": "createErrorMap",
879
- "return": {
880
- "type": {
881
- "text": ""
882
- }
883
- },
884
- "parameters": [
885
- {
886
- "name": "logger",
887
- "type": {
888
- "text": "ErrorMapLogger"
889
- },
890
- "description": "A logger error method reference."
891
- }
892
- ],
893
- "description": "A factory to create the error map.",
894
- "privacy": "public"
895
827
  }
896
828
  ],
897
829
  "exports": [
898
830
  {
899
831
  "kind": "js",
900
- "name": "DefaultErrorMap",
901
- "declaration": {
902
- "name": "DefaultErrorMap",
903
- "module": "src/error/errorMap.ts"
904
- }
905
- },
906
- {
907
- "kind": "js",
908
- "name": "createErrorMap",
832
+ "name": "InMemoryDatabase",
909
833
  "declaration": {
910
- "name": "createErrorMap",
911
- "module": "src/error/errorMap.ts"
834
+ "name": "InMemoryDatabase",
835
+ "module": "src/data/inMemoryDatabase.ts"
912
836
  }
913
837
  }
914
838
  ]
915
839
  },
916
840
  {
917
841
  "kind": "javascript-module",
918
- "path": "src/error/index.ts",
842
+ "path": "src/data/index.ts",
919
843
  "declarations": [],
920
844
  "exports": [
921
845
  {
@@ -923,7 +847,7 @@
923
847
  "name": "*",
924
848
  "declaration": {
925
849
  "name": "*",
926
- "package": "./errorMap"
850
+ "package": "./inMemoryDatabase"
927
851
  }
928
852
  }
929
853
  ]
@@ -1213,6 +1137,82 @@
1213
1137
  }
1214
1138
  ]
1215
1139
  },
1140
+ {
1141
+ "kind": "javascript-module",
1142
+ "path": "src/directives/index.ts",
1143
+ "declarations": [],
1144
+ "exports": [
1145
+ {
1146
+ "kind": "js",
1147
+ "name": "*",
1148
+ "declaration": {
1149
+ "name": "*",
1150
+ "package": "./sync"
1151
+ }
1152
+ },
1153
+ {
1154
+ "kind": "js",
1155
+ "name": "*",
1156
+ "declaration": {
1157
+ "name": "*",
1158
+ "package": "./when-else"
1159
+ }
1160
+ }
1161
+ ]
1162
+ },
1163
+ {
1164
+ "kind": "javascript-module",
1165
+ "path": "src/decorators/index.ts",
1166
+ "declarations": [],
1167
+ "exports": [
1168
+ {
1169
+ "kind": "js",
1170
+ "name": "*",
1171
+ "declaration": {
1172
+ "name": "*",
1173
+ "package": "./renderOnChange"
1174
+ }
1175
+ }
1176
+ ]
1177
+ },
1178
+ {
1179
+ "kind": "javascript-module",
1180
+ "path": "src/decorators/renderOnChange.ts",
1181
+ "declarations": [
1182
+ {
1183
+ "kind": "function",
1184
+ "name": "renderOnChange",
1185
+ "parameters": [
1186
+ {
1187
+ "name": "target",
1188
+ "type": {
1189
+ "text": "FASTElement & { render(): void }"
1190
+ },
1191
+ "description": "The target to define the property change handler on."
1192
+ },
1193
+ {
1194
+ "name": "name",
1195
+ "type": {
1196
+ "text": "string"
1197
+ },
1198
+ "description": "The property name."
1199
+ }
1200
+ ],
1201
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1202
+ "privacy": "public"
1203
+ }
1204
+ ],
1205
+ "exports": [
1206
+ {
1207
+ "kind": "js",
1208
+ "name": "renderOnChange",
1209
+ "declaration": {
1210
+ "name": "renderOnChange",
1211
+ "module": "src/decorators/renderOnChange.ts"
1212
+ }
1213
+ }
1214
+ ]
1215
+ },
1216
1216
  {
1217
1217
  "kind": "javascript-module",
1218
1218
  "path": "src/logger/index.ts",
@@ -1647,43 +1647,6 @@
1647
1647
  }
1648
1648
  ]
1649
1649
  },
1650
- {
1651
- "kind": "javascript-module",
1652
- "path": "src/utils/index.ts",
1653
- "declarations": [],
1654
- "exports": [
1655
- {
1656
- "kind": "js",
1657
- "name": "*",
1658
- "declaration": {
1659
- "name": "*",
1660
- "package": "./logger"
1661
- }
1662
- }
1663
- ]
1664
- },
1665
- {
1666
- "kind": "javascript-module",
1667
- "path": "src/utils/logger.ts",
1668
- "declarations": [
1669
- {
1670
- "kind": "variable",
1671
- "name": "logger",
1672
- "description": "Logger for the foundation-utils package",
1673
- "privacy": "public"
1674
- }
1675
- ],
1676
- "exports": [
1677
- {
1678
- "kind": "js",
1679
- "name": "logger",
1680
- "declaration": {
1681
- "name": "logger",
1682
- "module": "src/utils/logger.ts"
1683
- }
1684
- }
1685
- ]
1686
- },
1687
1650
  {
1688
1651
  "kind": "javascript-module",
1689
1652
  "path": "src/styles/color.ts",
@@ -2031,6 +1994,43 @@
2031
1994
  }
2032
1995
  ]
2033
1996
  },
1997
+ {
1998
+ "kind": "javascript-module",
1999
+ "path": "src/utils/index.ts",
2000
+ "declarations": [],
2001
+ "exports": [
2002
+ {
2003
+ "kind": "js",
2004
+ "name": "*",
2005
+ "declaration": {
2006
+ "name": "*",
2007
+ "package": "./logger"
2008
+ }
2009
+ }
2010
+ ]
2011
+ },
2012
+ {
2013
+ "kind": "javascript-module",
2014
+ "path": "src/utils/logger.ts",
2015
+ "declarations": [
2016
+ {
2017
+ "kind": "variable",
2018
+ "name": "logger",
2019
+ "description": "Logger for the foundation-utils package",
2020
+ "privacy": "public"
2021
+ }
2022
+ ],
2023
+ "exports": [
2024
+ {
2025
+ "kind": "js",
2026
+ "name": "logger",
2027
+ "declaration": {
2028
+ "name": "logger",
2029
+ "module": "src/utils/logger.ts"
2030
+ }
2031
+ }
2032
+ ]
2033
+ },
2034
2034
  {
2035
2035
  "kind": "javascript-module",
2036
2036
  "path": "src/uuid/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.217.4",
4
+ "version": "14.217.6-alpha-f6d0d1c0fdc7.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.217.4",
31
- "@genesislcap/genx": "14.217.4",
32
- "@genesislcap/rollup-builder": "14.217.4",
33
- "@genesislcap/ts-builder": "14.217.4",
34
- "@genesislcap/uvu-playwright-builder": "14.217.4",
35
- "@genesislcap/vite-builder": "14.217.4",
36
- "@genesislcap/webpack-builder": "14.217.4",
30
+ "@genesislcap/foundation-testing": "14.217.6-alpha-f6d0d1c0fdc7.0",
31
+ "@genesislcap/genx": "14.217.6-alpha-f6d0d1c0fdc7.0",
32
+ "@genesislcap/rollup-builder": "14.217.6-alpha-f6d0d1c0fdc7.0",
33
+ "@genesislcap/ts-builder": "14.217.6-alpha-f6d0d1c0fdc7.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.217.6-alpha-f6d0d1c0fdc7.0",
35
+ "@genesislcap/vite-builder": "14.217.6-alpha-f6d0d1c0fdc7.0",
36
+ "@genesislcap/webpack-builder": "14.217.6-alpha-f6d0d1c0fdc7.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.217.4",
40
+ "@genesislcap/foundation-logger": "14.217.6-alpha-f6d0d1c0fdc7.0",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "2.49.6",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "d7e7d4b855806613641fe36056b06efebc70a5a3"
58
+ "gitHead": "2d8bbf3cb2cf1ec3d91d958ee2739cf426ae7d04"
59
59
  }