@genesislcap/foundation-utils 14.312.1-alpha-2a2b7d6.0 → 14.312.1-alpha-73d5a68.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 +410 -410
  2. package/package.json +11 -11
@@ -179,98 +179,190 @@
179
179
  },
180
180
  {
181
181
  "kind": "javascript-module",
182
- "path": "src/decorators/index.ts",
183
- "declarations": [],
184
- "exports": [
185
- {
186
- "kind": "js",
187
- "name": "*",
188
- "declaration": {
189
- "name": "*",
190
- "package": "./renderOnChange"
191
- }
192
- }
193
- ]
194
- },
195
- {
196
- "kind": "javascript-module",
197
- "path": "src/decorators/renderOnChange.ts",
182
+ "path": "src/data/inMemoryDatabase.ts",
198
183
  "declarations": [
199
184
  {
200
- "kind": "function",
201
- "name": "renderOnChange",
202
- "parameters": [
185
+ "kind": "class",
186
+ "description": "An in memory database of specific DatabaseRecord types.",
187
+ "name": "InMemoryDatabase",
188
+ "members": [
203
189
  {
204
- "name": "target",
190
+ "kind": "field",
191
+ "name": "isWorking",
205
192
  "type": {
206
- "text": "FASTElement & { render(): void }"
193
+ "text": "boolean"
207
194
  },
208
- "description": "The target to define the property change handler on."
195
+ "privacy": "public",
196
+ "default": "false"
209
197
  },
210
198
  {
211
- "name": "name",
199
+ "kind": "field",
200
+ "name": "records",
212
201
  "type": {
213
- "text": "string"
202
+ "text": "Record<string, T>"
214
203
  },
215
- "description": "The property name."
204
+ "privacy": "private",
205
+ "default": "{}"
206
+ },
207
+ {
208
+ "kind": "field",
209
+ "name": "beforeUpdateListeners",
210
+ "privacy": "private"
211
+ },
212
+ {
213
+ "kind": "field",
214
+ "name": "afterUpdateListeners",
215
+ "privacy": "private"
216
+ },
217
+ {
218
+ "kind": "method",
219
+ "name": "create",
220
+ "privacy": "public",
221
+ "return": {
222
+ "type": {
223
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
224
+ }
225
+ },
226
+ "parameters": [
227
+ {
228
+ "name": "newValue",
229
+ "type": {
230
+ "text": "Omit<T, 'id'>"
231
+ }
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ "kind": "method",
237
+ "name": "read",
238
+ "privacy": "public",
239
+ "return": {
240
+ "type": {
241
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
242
+ }
243
+ },
244
+ "parameters": [
245
+ {
246
+ "name": "id",
247
+ "type": {
248
+ "text": "string"
249
+ }
250
+ }
251
+ ]
252
+ },
253
+ {
254
+ "kind": "method",
255
+ "name": "update",
256
+ "privacy": "public",
257
+ "return": {
258
+ "type": {
259
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
260
+ }
261
+ },
262
+ "parameters": [
263
+ {
264
+ "name": "id",
265
+ "type": {
266
+ "text": "string"
267
+ }
268
+ },
269
+ {
270
+ "name": "newValue",
271
+ "type": {
272
+ "text": "Omit<Partial<T>, 'id'>"
273
+ }
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "kind": "method",
279
+ "name": "delete",
280
+ "privacy": "public",
281
+ "return": {
282
+ "type": {
283
+ "text": "Promise<DatabaseAccessResult.Delete>"
284
+ }
285
+ },
286
+ "parameters": [
287
+ {
288
+ "name": "id",
289
+ "type": {
290
+ "text": "string"
291
+ }
292
+ }
293
+ ]
294
+ },
295
+ {
296
+ "kind": "method",
297
+ "name": "visit",
298
+ "privacy": "public",
299
+ "return": {
300
+ "type": {
301
+ "text": "Promise<void>"
302
+ }
303
+ },
304
+ "parameters": [
305
+ {
306
+ "name": "visitor",
307
+ "type": {
308
+ "text": "(record: T) => void"
309
+ }
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ "kind": "method",
315
+ "name": "onBeforeUpdate",
316
+ "privacy": "public",
317
+ "return": {
318
+ "type": {
319
+ "text": "() => void"
320
+ }
321
+ },
322
+ "parameters": [
323
+ {
324
+ "name": "listener",
325
+ "type": {
326
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
327
+ }
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "kind": "method",
333
+ "name": "onAfterUpdate",
334
+ "privacy": "public",
335
+ "return": {
336
+ "type": {
337
+ "text": "() => void"
338
+ }
339
+ },
340
+ "parameters": [
341
+ {
342
+ "name": "listener",
343
+ "type": {
344
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
345
+ }
346
+ }
347
+ ]
216
348
  }
217
- ],
218
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
219
- "privacy": "public"
349
+ ]
220
350
  }
221
351
  ],
222
352
  "exports": [
223
353
  {
224
354
  "kind": "js",
225
- "name": "renderOnChange",
226
- "declaration": {
227
- "name": "renderOnChange",
228
- "module": "src/decorators/renderOnChange.ts"
229
- }
230
- }
231
- ]
232
- },
233
- {
234
- "kind": "javascript-module",
235
- "path": "src/directives/index.ts",
236
- "declarations": [],
237
- "exports": [
238
- {
239
- "kind": "js",
240
- "name": "*",
241
- "declaration": {
242
- "name": "*",
243
- "package": "./sync"
244
- }
245
- },
246
- {
247
- "kind": "js",
248
- "name": "*",
249
- "declaration": {
250
- "name": "*",
251
- "package": "./when-else"
252
- }
253
- }
254
- ]
255
- },
256
- {
257
- "kind": "javascript-module",
258
- "path": "src/encoding/index.ts",
259
- "declarations": [],
260
- "exports": [
261
- {
262
- "kind": "js",
263
- "name": "*",
355
+ "name": "InMemoryDatabase",
264
356
  "declaration": {
265
- "name": "*",
266
- "package": "./base64"
357
+ "name": "InMemoryDatabase",
358
+ "module": "src/data/inMemoryDatabase.ts"
267
359
  }
268
360
  }
269
361
  ]
270
362
  },
271
363
  {
272
364
  "kind": "javascript-module",
273
- "path": "src/env/index.ts",
365
+ "path": "src/data/index.ts",
274
366
  "declarations": [],
275
367
  "exports": [
276
368
  {
@@ -278,37 +370,263 @@
278
370
  "name": "*",
279
371
  "declaration": {
280
372
  "name": "*",
281
- "package": "./is-dev"
282
- }
283
- },
284
- {
285
- "kind": "js",
286
- "name": "*",
287
- "declaration": {
288
- "name": "*",
289
- "package": "./variables"
373
+ "package": "./inMemoryDatabase"
290
374
  }
291
375
  }
292
376
  ]
293
377
  },
294
378
  {
295
379
  "kind": "javascript-module",
296
- "path": "src/env/is-dev.ts",
380
+ "path": "src/design-system/design-system.ts",
297
381
  "declarations": [
298
382
  {
299
383
  "kind": "function",
300
- "name": "isDev",
301
- "description": "Determines if the current environment is a development environment.",
302
- "privacy": "public"
303
- }
304
- ],
305
- "exports": [
306
- {
307
- "kind": "js",
308
- "name": "isDev",
309
- "declaration": {
310
- "name": "isDev",
311
- "module": "src/env/is-dev.ts"
384
+ "name": "assureDesignSystem",
385
+ "return": {
386
+ "type": {
387
+ "text": "DesignSystemModule"
388
+ }
389
+ },
390
+ "parameters": [
391
+ {
392
+ "name": "module",
393
+ "type": {
394
+ "text": "DesignSystemModule"
395
+ }
396
+ }
397
+ ],
398
+ "description": "assureDesignSystem.",
399
+ "privacy": "public"
400
+ },
401
+ {
402
+ "kind": "function",
403
+ "name": "getCurrentDesignSystem",
404
+ "return": {
405
+ "type": {
406
+ "text": ""
407
+ }
408
+ },
409
+ "parameters": [
410
+ {
411
+ "name": "element",
412
+ "type": {
413
+ "text": "HTMLElement"
414
+ },
415
+ "description": "The starting HTML element"
416
+ },
417
+ {
418
+ "name": "fallbackPrefix",
419
+ "type": {
420
+ "text": "string"
421
+ },
422
+ "description": "The prefix to fallback to if the provider is not available"
423
+ }
424
+ ],
425
+ "description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
426
+ "privacy": "public"
427
+ },
428
+ {
429
+ "kind": "function",
430
+ "name": "getCurrentDesignSystemPrefix",
431
+ "return": {
432
+ "type": {
433
+ "text": ""
434
+ }
435
+ },
436
+ "parameters": [
437
+ {
438
+ "name": "element",
439
+ "type": {
440
+ "text": "HTMLElement"
441
+ },
442
+ "description": "The starting HTML element"
443
+ },
444
+ {
445
+ "name": "fallbackPrefix",
446
+ "type": {
447
+ "text": "string"
448
+ },
449
+ "description": "The prefix to fallback to if the provider is not available"
450
+ }
451
+ ],
452
+ "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
453
+ "privacy": "public"
454
+ }
455
+ ],
456
+ "exports": [
457
+ {
458
+ "kind": "js",
459
+ "name": "assureDesignSystem",
460
+ "declaration": {
461
+ "name": "assureDesignSystem",
462
+ "module": "src/design-system/design-system.ts"
463
+ }
464
+ },
465
+ {
466
+ "kind": "js",
467
+ "name": "getCurrentDesignSystem",
468
+ "declaration": {
469
+ "name": "getCurrentDesignSystem",
470
+ "module": "src/design-system/design-system.ts"
471
+ }
472
+ },
473
+ {
474
+ "kind": "js",
475
+ "name": "getCurrentDesignSystemPrefix",
476
+ "declaration": {
477
+ "name": "getCurrentDesignSystemPrefix",
478
+ "module": "src/design-system/design-system.ts"
479
+ }
480
+ }
481
+ ]
482
+ },
483
+ {
484
+ "kind": "javascript-module",
485
+ "path": "src/design-system/index.ts",
486
+ "declarations": [],
487
+ "exports": [
488
+ {
489
+ "kind": "js",
490
+ "name": "*",
491
+ "declaration": {
492
+ "name": "*",
493
+ "package": "./design-system"
494
+ }
495
+ }
496
+ ]
497
+ },
498
+ {
499
+ "kind": "javascript-module",
500
+ "path": "src/directives/index.ts",
501
+ "declarations": [],
502
+ "exports": [
503
+ {
504
+ "kind": "js",
505
+ "name": "*",
506
+ "declaration": {
507
+ "name": "*",
508
+ "package": "./sync"
509
+ }
510
+ },
511
+ {
512
+ "kind": "js",
513
+ "name": "*",
514
+ "declaration": {
515
+ "name": "*",
516
+ "package": "./when-else"
517
+ }
518
+ }
519
+ ]
520
+ },
521
+ {
522
+ "kind": "javascript-module",
523
+ "path": "src/decorators/index.ts",
524
+ "declarations": [],
525
+ "exports": [
526
+ {
527
+ "kind": "js",
528
+ "name": "*",
529
+ "declaration": {
530
+ "name": "*",
531
+ "package": "./renderOnChange"
532
+ }
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "kind": "javascript-module",
538
+ "path": "src/decorators/renderOnChange.ts",
539
+ "declarations": [
540
+ {
541
+ "kind": "function",
542
+ "name": "renderOnChange",
543
+ "parameters": [
544
+ {
545
+ "name": "target",
546
+ "type": {
547
+ "text": "FASTElement & { render(): void }"
548
+ },
549
+ "description": "The target to define the property change handler on."
550
+ },
551
+ {
552
+ "name": "name",
553
+ "type": {
554
+ "text": "string"
555
+ },
556
+ "description": "The property name."
557
+ }
558
+ ],
559
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
560
+ "privacy": "public"
561
+ }
562
+ ],
563
+ "exports": [
564
+ {
565
+ "kind": "js",
566
+ "name": "renderOnChange",
567
+ "declaration": {
568
+ "name": "renderOnChange",
569
+ "module": "src/decorators/renderOnChange.ts"
570
+ }
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "kind": "javascript-module",
576
+ "path": "src/encoding/index.ts",
577
+ "declarations": [],
578
+ "exports": [
579
+ {
580
+ "kind": "js",
581
+ "name": "*",
582
+ "declaration": {
583
+ "name": "*",
584
+ "package": "./base64"
585
+ }
586
+ }
587
+ ]
588
+ },
589
+ {
590
+ "kind": "javascript-module",
591
+ "path": "src/env/index.ts",
592
+ "declarations": [],
593
+ "exports": [
594
+ {
595
+ "kind": "js",
596
+ "name": "*",
597
+ "declaration": {
598
+ "name": "*",
599
+ "package": "./is-dev"
600
+ }
601
+ },
602
+ {
603
+ "kind": "js",
604
+ "name": "*",
605
+ "declaration": {
606
+ "name": "*",
607
+ "package": "./variables"
608
+ }
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "kind": "javascript-module",
614
+ "path": "src/env/is-dev.ts",
615
+ "declarations": [
616
+ {
617
+ "kind": "function",
618
+ "name": "isDev",
619
+ "description": "Determines if the current environment is a development environment.",
620
+ "privacy": "public"
621
+ }
622
+ ],
623
+ "exports": [
624
+ {
625
+ "kind": "js",
626
+ "name": "isDev",
627
+ "declaration": {
628
+ "name": "isDev",
629
+ "module": "src/env/is-dev.ts"
312
630
  }
313
631
  }
314
632
  ]
@@ -743,324 +1061,6 @@
743
1061
  }
744
1062
  ]
745
1063
  },
746
- {
747
- "kind": "javascript-module",
748
- "path": "src/data/inMemoryDatabase.ts",
749
- "declarations": [
750
- {
751
- "kind": "class",
752
- "description": "An in memory database of specific DatabaseRecord types.",
753
- "name": "InMemoryDatabase",
754
- "members": [
755
- {
756
- "kind": "field",
757
- "name": "isWorking",
758
- "type": {
759
- "text": "boolean"
760
- },
761
- "privacy": "public",
762
- "default": "false"
763
- },
764
- {
765
- "kind": "field",
766
- "name": "records",
767
- "type": {
768
- "text": "Record<string, T>"
769
- },
770
- "privacy": "private",
771
- "default": "{}"
772
- },
773
- {
774
- "kind": "field",
775
- "name": "beforeUpdateListeners",
776
- "privacy": "private"
777
- },
778
- {
779
- "kind": "field",
780
- "name": "afterUpdateListeners",
781
- "privacy": "private"
782
- },
783
- {
784
- "kind": "method",
785
- "name": "create",
786
- "privacy": "public",
787
- "return": {
788
- "type": {
789
- "text": "Promise<DatabaseAccessResult.Create<T>>"
790
- }
791
- },
792
- "parameters": [
793
- {
794
- "name": "newValue",
795
- "type": {
796
- "text": "Omit<T, 'id'>"
797
- }
798
- }
799
- ]
800
- },
801
- {
802
- "kind": "method",
803
- "name": "read",
804
- "privacy": "public",
805
- "return": {
806
- "type": {
807
- "text": "Promise<DatabaseAccessResult.Read<T>>"
808
- }
809
- },
810
- "parameters": [
811
- {
812
- "name": "id",
813
- "type": {
814
- "text": "string"
815
- }
816
- }
817
- ]
818
- },
819
- {
820
- "kind": "method",
821
- "name": "update",
822
- "privacy": "public",
823
- "return": {
824
- "type": {
825
- "text": "Promise<DatabaseAccessResult.Update<T>>"
826
- }
827
- },
828
- "parameters": [
829
- {
830
- "name": "id",
831
- "type": {
832
- "text": "string"
833
- }
834
- },
835
- {
836
- "name": "newValue",
837
- "type": {
838
- "text": "Omit<Partial<T>, 'id'>"
839
- }
840
- }
841
- ]
842
- },
843
- {
844
- "kind": "method",
845
- "name": "delete",
846
- "privacy": "public",
847
- "return": {
848
- "type": {
849
- "text": "Promise<DatabaseAccessResult.Delete>"
850
- }
851
- },
852
- "parameters": [
853
- {
854
- "name": "id",
855
- "type": {
856
- "text": "string"
857
- }
858
- }
859
- ]
860
- },
861
- {
862
- "kind": "method",
863
- "name": "visit",
864
- "privacy": "public",
865
- "return": {
866
- "type": {
867
- "text": "Promise<void>"
868
- }
869
- },
870
- "parameters": [
871
- {
872
- "name": "visitor",
873
- "type": {
874
- "text": "(record: T) => void"
875
- }
876
- }
877
- ]
878
- },
879
- {
880
- "kind": "method",
881
- "name": "onBeforeUpdate",
882
- "privacy": "public",
883
- "return": {
884
- "type": {
885
- "text": "() => void"
886
- }
887
- },
888
- "parameters": [
889
- {
890
- "name": "listener",
891
- "type": {
892
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
893
- }
894
- }
895
- ]
896
- },
897
- {
898
- "kind": "method",
899
- "name": "onAfterUpdate",
900
- "privacy": "public",
901
- "return": {
902
- "type": {
903
- "text": "() => void"
904
- }
905
- },
906
- "parameters": [
907
- {
908
- "name": "listener",
909
- "type": {
910
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
911
- }
912
- }
913
- ]
914
- }
915
- ]
916
- }
917
- ],
918
- "exports": [
919
- {
920
- "kind": "js",
921
- "name": "InMemoryDatabase",
922
- "declaration": {
923
- "name": "InMemoryDatabase",
924
- "module": "src/data/inMemoryDatabase.ts"
925
- }
926
- }
927
- ]
928
- },
929
- {
930
- "kind": "javascript-module",
931
- "path": "src/data/index.ts",
932
- "declarations": [],
933
- "exports": [
934
- {
935
- "kind": "js",
936
- "name": "*",
937
- "declaration": {
938
- "name": "*",
939
- "package": "./inMemoryDatabase"
940
- }
941
- }
942
- ]
943
- },
944
- {
945
- "kind": "javascript-module",
946
- "path": "src/design-system/design-system.ts",
947
- "declarations": [
948
- {
949
- "kind": "function",
950
- "name": "assureDesignSystem",
951
- "return": {
952
- "type": {
953
- "text": "DesignSystemModule"
954
- }
955
- },
956
- "parameters": [
957
- {
958
- "name": "module",
959
- "type": {
960
- "text": "DesignSystemModule"
961
- }
962
- }
963
- ],
964
- "description": "assureDesignSystem.",
965
- "privacy": "public"
966
- },
967
- {
968
- "kind": "function",
969
- "name": "getCurrentDesignSystem",
970
- "return": {
971
- "type": {
972
- "text": ""
973
- }
974
- },
975
- "parameters": [
976
- {
977
- "name": "element",
978
- "type": {
979
- "text": "HTMLElement"
980
- },
981
- "description": "The starting HTML element"
982
- },
983
- {
984
- "name": "fallbackPrefix",
985
- "type": {
986
- "text": "string"
987
- },
988
- "description": "The prefix to fallback to if the provider is not available"
989
- }
990
- ],
991
- "description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
992
- "privacy": "public"
993
- },
994
- {
995
- "kind": "function",
996
- "name": "getCurrentDesignSystemPrefix",
997
- "return": {
998
- "type": {
999
- "text": ""
1000
- }
1001
- },
1002
- "parameters": [
1003
- {
1004
- "name": "element",
1005
- "type": {
1006
- "text": "HTMLElement"
1007
- },
1008
- "description": "The starting HTML element"
1009
- },
1010
- {
1011
- "name": "fallbackPrefix",
1012
- "type": {
1013
- "text": "string"
1014
- },
1015
- "description": "The prefix to fallback to if the provider is not available"
1016
- }
1017
- ],
1018
- "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
1019
- "privacy": "public"
1020
- }
1021
- ],
1022
- "exports": [
1023
- {
1024
- "kind": "js",
1025
- "name": "assureDesignSystem",
1026
- "declaration": {
1027
- "name": "assureDesignSystem",
1028
- "module": "src/design-system/design-system.ts"
1029
- }
1030
- },
1031
- {
1032
- "kind": "js",
1033
- "name": "getCurrentDesignSystem",
1034
- "declaration": {
1035
- "name": "getCurrentDesignSystem",
1036
- "module": "src/design-system/design-system.ts"
1037
- }
1038
- },
1039
- {
1040
- "kind": "js",
1041
- "name": "getCurrentDesignSystemPrefix",
1042
- "declaration": {
1043
- "name": "getCurrentDesignSystemPrefix",
1044
- "module": "src/design-system/design-system.ts"
1045
- }
1046
- }
1047
- ]
1048
- },
1049
- {
1050
- "kind": "javascript-module",
1051
- "path": "src/design-system/index.ts",
1052
- "declarations": [],
1053
- "exports": [
1054
- {
1055
- "kind": "js",
1056
- "name": "*",
1057
- "declaration": {
1058
- "name": "*",
1059
- "package": "./design-system"
1060
- }
1061
- }
1062
- ]
1063
- },
1064
1064
  {
1065
1065
  "kind": "javascript-module",
1066
1066
  "path": "src/error/errorMap.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.312.1-alpha-2a2b7d6.0",
4
+ "version": "14.312.1-alpha-73d5a68.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,18 +27,18 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.312.1-alpha-2a2b7d6.0",
31
- "@genesislcap/genx": "14.312.1-alpha-2a2b7d6.0",
32
- "@genesislcap/rollup-builder": "14.312.1-alpha-2a2b7d6.0",
33
- "@genesislcap/ts-builder": "14.312.1-alpha-2a2b7d6.0",
34
- "@genesislcap/uvu-playwright-builder": "14.312.1-alpha-2a2b7d6.0",
35
- "@genesislcap/vite-builder": "14.312.1-alpha-2a2b7d6.0",
36
- "@genesislcap/webpack-builder": "14.312.1-alpha-2a2b7d6.0",
30
+ "@genesislcap/foundation-testing": "14.312.1-alpha-73d5a68.0",
31
+ "@genesislcap/genx": "14.312.1-alpha-73d5a68.0",
32
+ "@genesislcap/rollup-builder": "14.312.1-alpha-73d5a68.0",
33
+ "@genesislcap/ts-builder": "14.312.1-alpha-73d5a68.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.312.1-alpha-73d5a68.0",
35
+ "@genesislcap/vite-builder": "14.312.1-alpha-73d5a68.0",
36
+ "@genesislcap/webpack-builder": "14.312.1-alpha-73d5a68.0",
37
37
  "@types/json-schema": "^7.0.11"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/expression-builder": "14.312.1-alpha-2a2b7d6.0",
41
- "@genesislcap/foundation-logger": "14.312.1-alpha-2a2b7d6.0",
40
+ "@genesislcap/expression-builder": "14.312.1-alpha-73d5a68.0",
41
+ "@genesislcap/foundation-logger": "14.312.1-alpha-73d5a68.0",
42
42
  "@microsoft/fast-components": "2.30.6",
43
43
  "@microsoft/fast-element": "1.14.0",
44
44
  "@microsoft/fast-foundation": "2.49.6",
@@ -56,5 +56,5 @@
56
56
  "access": "public"
57
57
  },
58
58
  "customElements": "dist/custom-elements.json",
59
- "gitHead": "ce43b3b2211539be2f2d4b2d38134287a08ad51f"
59
+ "gitHead": "c2f79cba4b3b77d1338fb7853f7a0113f861a505"
60
60
  }