@genesislcap/foundation-utils 14.412.0 → 14.414.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 +382 -382
  2. package/package.json +11 -11
@@ -372,7 +372,7 @@
372
372
  },
373
373
  {
374
374
  "kind": "javascript-module",
375
- "path": "src/directives/index.ts",
375
+ "path": "src/encoding/index.ts",
376
376
  "declarations": [],
377
377
  "exports": [
378
378
  {
@@ -380,22 +380,212 @@
380
380
  "name": "*",
381
381
  "declaration": {
382
382
  "name": "*",
383
- "package": "./sync"
383
+ "package": "./base64"
384
384
  }
385
- },
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "kind": "javascript-module",
390
+ "path": "src/data/inMemoryDatabase.ts",
391
+ "declarations": [
392
+ {
393
+ "kind": "class",
394
+ "description": "An in memory database of specific DatabaseRecord types.",
395
+ "name": "InMemoryDatabase",
396
+ "members": [
397
+ {
398
+ "kind": "field",
399
+ "name": "isWorking",
400
+ "type": {
401
+ "text": "boolean"
402
+ },
403
+ "privacy": "public",
404
+ "default": "false"
405
+ },
406
+ {
407
+ "kind": "field",
408
+ "name": "records",
409
+ "type": {
410
+ "text": "Record<string, T>"
411
+ },
412
+ "privacy": "private",
413
+ "default": "{}"
414
+ },
415
+ {
416
+ "kind": "field",
417
+ "name": "beforeUpdateListeners",
418
+ "privacy": "private"
419
+ },
420
+ {
421
+ "kind": "field",
422
+ "name": "afterUpdateListeners",
423
+ "privacy": "private"
424
+ },
425
+ {
426
+ "kind": "method",
427
+ "name": "create",
428
+ "privacy": "public",
429
+ "return": {
430
+ "type": {
431
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
432
+ }
433
+ },
434
+ "parameters": [
435
+ {
436
+ "name": "newValue",
437
+ "type": {
438
+ "text": "Omit<T, 'id'>"
439
+ }
440
+ }
441
+ ]
442
+ },
443
+ {
444
+ "kind": "method",
445
+ "name": "read",
446
+ "privacy": "public",
447
+ "return": {
448
+ "type": {
449
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
450
+ }
451
+ },
452
+ "parameters": [
453
+ {
454
+ "name": "id",
455
+ "type": {
456
+ "text": "string"
457
+ }
458
+ }
459
+ ]
460
+ },
461
+ {
462
+ "kind": "method",
463
+ "name": "update",
464
+ "privacy": "public",
465
+ "return": {
466
+ "type": {
467
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
468
+ }
469
+ },
470
+ "parameters": [
471
+ {
472
+ "name": "id",
473
+ "type": {
474
+ "text": "string"
475
+ }
476
+ },
477
+ {
478
+ "name": "newValue",
479
+ "type": {
480
+ "text": "Omit<Partial<T>, 'id'>"
481
+ }
482
+ }
483
+ ]
484
+ },
485
+ {
486
+ "kind": "method",
487
+ "name": "delete",
488
+ "privacy": "public",
489
+ "return": {
490
+ "type": {
491
+ "text": "Promise<DatabaseAccessResult.Delete>"
492
+ }
493
+ },
494
+ "parameters": [
495
+ {
496
+ "name": "id",
497
+ "type": {
498
+ "text": "string"
499
+ }
500
+ }
501
+ ]
502
+ },
503
+ {
504
+ "kind": "method",
505
+ "name": "visit",
506
+ "privacy": "public",
507
+ "return": {
508
+ "type": {
509
+ "text": "Promise<void>"
510
+ }
511
+ },
512
+ "parameters": [
513
+ {
514
+ "name": "visitor",
515
+ "type": {
516
+ "text": "(record: T) => void"
517
+ }
518
+ }
519
+ ]
520
+ },
521
+ {
522
+ "kind": "method",
523
+ "name": "onBeforeUpdate",
524
+ "privacy": "public",
525
+ "return": {
526
+ "type": {
527
+ "text": "() => void"
528
+ }
529
+ },
530
+ "parameters": [
531
+ {
532
+ "name": "listener",
533
+ "type": {
534
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
535
+ }
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "kind": "method",
541
+ "name": "onAfterUpdate",
542
+ "privacy": "public",
543
+ "return": {
544
+ "type": {
545
+ "text": "() => void"
546
+ }
547
+ },
548
+ "parameters": [
549
+ {
550
+ "name": "listener",
551
+ "type": {
552
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
553
+ }
554
+ }
555
+ ]
556
+ }
557
+ ]
558
+ }
559
+ ],
560
+ "exports": [
561
+ {
562
+ "kind": "js",
563
+ "name": "InMemoryDatabase",
564
+ "declaration": {
565
+ "name": "InMemoryDatabase",
566
+ "module": "src/data/inMemoryDatabase.ts"
567
+ }
568
+ }
569
+ ]
570
+ },
571
+ {
572
+ "kind": "javascript-module",
573
+ "path": "src/data/index.ts",
574
+ "declarations": [],
575
+ "exports": [
386
576
  {
387
577
  "kind": "js",
388
578
  "name": "*",
389
579
  "declaration": {
390
580
  "name": "*",
391
- "package": "./when-else"
581
+ "package": "./inMemoryDatabase"
392
582
  }
393
583
  }
394
584
  ]
395
585
  },
396
586
  {
397
587
  "kind": "javascript-module",
398
- "path": "src/encoding/index.ts",
588
+ "path": "src/directives/index.ts",
399
589
  "declarations": [],
400
590
  "exports": [
401
591
  {
@@ -403,7 +593,15 @@
403
593
  "name": "*",
404
594
  "declaration": {
405
595
  "name": "*",
406
- "package": "./base64"
596
+ "package": "./sync"
597
+ }
598
+ },
599
+ {
600
+ "kind": "js",
601
+ "name": "*",
602
+ "declaration": {
603
+ "name": "*",
604
+ "package": "./when-else"
407
605
  }
408
606
  }
409
607
  ]
@@ -885,236 +1083,38 @@
885
1083
  },
886
1084
  {
887
1085
  "kind": "javascript-module",
888
- "path": "src/data/inMemoryDatabase.ts",
1086
+ "path": "src/decorators/index.ts",
1087
+ "declarations": [],
1088
+ "exports": [
1089
+ {
1090
+ "kind": "js",
1091
+ "name": "*",
1092
+ "declaration": {
1093
+ "name": "*",
1094
+ "package": "./renderOnChange"
1095
+ }
1096
+ }
1097
+ ]
1098
+ },
1099
+ {
1100
+ "kind": "javascript-module",
1101
+ "path": "src/decorators/renderOnChange.ts",
889
1102
  "declarations": [
890
1103
  {
891
- "kind": "class",
892
- "description": "An in memory database of specific DatabaseRecord types.",
893
- "name": "InMemoryDatabase",
894
- "members": [
1104
+ "kind": "function",
1105
+ "name": "renderOnChange",
1106
+ "parameters": [
895
1107
  {
896
- "kind": "field",
897
- "name": "isWorking",
1108
+ "name": "target",
898
1109
  "type": {
899
- "text": "boolean"
1110
+ "text": "FASTElement & { render(): void }"
900
1111
  },
901
- "privacy": "public",
902
- "default": "false"
1112
+ "description": "The target to define the property change handler on."
903
1113
  },
904
1114
  {
905
- "kind": "field",
906
- "name": "records",
1115
+ "name": "name",
907
1116
  "type": {
908
- "text": "Record<string, T>"
909
- },
910
- "privacy": "private",
911
- "default": "{}"
912
- },
913
- {
914
- "kind": "field",
915
- "name": "beforeUpdateListeners",
916
- "privacy": "private"
917
- },
918
- {
919
- "kind": "field",
920
- "name": "afterUpdateListeners",
921
- "privacy": "private"
922
- },
923
- {
924
- "kind": "method",
925
- "name": "create",
926
- "privacy": "public",
927
- "return": {
928
- "type": {
929
- "text": "Promise<DatabaseAccessResult.Create<T>>"
930
- }
931
- },
932
- "parameters": [
933
- {
934
- "name": "newValue",
935
- "type": {
936
- "text": "Omit<T, 'id'>"
937
- }
938
- }
939
- ]
940
- },
941
- {
942
- "kind": "method",
943
- "name": "read",
944
- "privacy": "public",
945
- "return": {
946
- "type": {
947
- "text": "Promise<DatabaseAccessResult.Read<T>>"
948
- }
949
- },
950
- "parameters": [
951
- {
952
- "name": "id",
953
- "type": {
954
- "text": "string"
955
- }
956
- }
957
- ]
958
- },
959
- {
960
- "kind": "method",
961
- "name": "update",
962
- "privacy": "public",
963
- "return": {
964
- "type": {
965
- "text": "Promise<DatabaseAccessResult.Update<T>>"
966
- }
967
- },
968
- "parameters": [
969
- {
970
- "name": "id",
971
- "type": {
972
- "text": "string"
973
- }
974
- },
975
- {
976
- "name": "newValue",
977
- "type": {
978
- "text": "Omit<Partial<T>, 'id'>"
979
- }
980
- }
981
- ]
982
- },
983
- {
984
- "kind": "method",
985
- "name": "delete",
986
- "privacy": "public",
987
- "return": {
988
- "type": {
989
- "text": "Promise<DatabaseAccessResult.Delete>"
990
- }
991
- },
992
- "parameters": [
993
- {
994
- "name": "id",
995
- "type": {
996
- "text": "string"
997
- }
998
- }
999
- ]
1000
- },
1001
- {
1002
- "kind": "method",
1003
- "name": "visit",
1004
- "privacy": "public",
1005
- "return": {
1006
- "type": {
1007
- "text": "Promise<void>"
1008
- }
1009
- },
1010
- "parameters": [
1011
- {
1012
- "name": "visitor",
1013
- "type": {
1014
- "text": "(record: T) => void"
1015
- }
1016
- }
1017
- ]
1018
- },
1019
- {
1020
- "kind": "method",
1021
- "name": "onBeforeUpdate",
1022
- "privacy": "public",
1023
- "return": {
1024
- "type": {
1025
- "text": "() => void"
1026
- }
1027
- },
1028
- "parameters": [
1029
- {
1030
- "name": "listener",
1031
- "type": {
1032
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1033
- }
1034
- }
1035
- ]
1036
- },
1037
- {
1038
- "kind": "method",
1039
- "name": "onAfterUpdate",
1040
- "privacy": "public",
1041
- "return": {
1042
- "type": {
1043
- "text": "() => void"
1044
- }
1045
- },
1046
- "parameters": [
1047
- {
1048
- "name": "listener",
1049
- "type": {
1050
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1051
- }
1052
- }
1053
- ]
1054
- }
1055
- ]
1056
- }
1057
- ],
1058
- "exports": [
1059
- {
1060
- "kind": "js",
1061
- "name": "InMemoryDatabase",
1062
- "declaration": {
1063
- "name": "InMemoryDatabase",
1064
- "module": "src/data/inMemoryDatabase.ts"
1065
- }
1066
- }
1067
- ]
1068
- },
1069
- {
1070
- "kind": "javascript-module",
1071
- "path": "src/data/index.ts",
1072
- "declarations": [],
1073
- "exports": [
1074
- {
1075
- "kind": "js",
1076
- "name": "*",
1077
- "declaration": {
1078
- "name": "*",
1079
- "package": "./inMemoryDatabase"
1080
- }
1081
- }
1082
- ]
1083
- },
1084
- {
1085
- "kind": "javascript-module",
1086
- "path": "src/decorators/index.ts",
1087
- "declarations": [],
1088
- "exports": [
1089
- {
1090
- "kind": "js",
1091
- "name": "*",
1092
- "declaration": {
1093
- "name": "*",
1094
- "package": "./renderOnChange"
1095
- }
1096
- }
1097
- ]
1098
- },
1099
- {
1100
- "kind": "javascript-module",
1101
- "path": "src/decorators/renderOnChange.ts",
1102
- "declarations": [
1103
- {
1104
- "kind": "function",
1105
- "name": "renderOnChange",
1106
- "parameters": [
1107
- {
1108
- "name": "target",
1109
- "type": {
1110
- "text": "FASTElement & { render(): void }"
1111
- },
1112
- "description": "The target to define the property change handler on."
1113
- },
1114
- {
1115
- "name": "name",
1116
- "type": {
1117
- "text": "string"
1117
+ "text": "string"
1118
1118
  },
1119
1119
  "description": "The property name."
1120
1120
  }
@@ -4308,160 +4308,6 @@
4308
4308
  }
4309
4309
  ]
4310
4310
  },
4311
- {
4312
- "kind": "javascript-module",
4313
- "path": "src/directives/sync/index.ts",
4314
- "declarations": [],
4315
- "exports": [
4316
- {
4317
- "kind": "js",
4318
- "name": "*",
4319
- "declaration": {
4320
- "name": "*",
4321
- "package": "./sync"
4322
- }
4323
- }
4324
- ]
4325
- },
4326
- {
4327
- "kind": "javascript-module",
4328
- "path": "src/directives/sync/sync.ts",
4329
- "declarations": [
4330
- {
4331
- "kind": "variable",
4332
- "name": "defaultEventMap",
4333
- "type": {
4334
- "text": "Map<string, EventName>"
4335
- },
4336
- "default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])",
4337
- "description": "A map that associates specific HTML element tags with their corresponding default event names.",
4338
- "privacy": "public"
4339
- },
4340
- {
4341
- "kind": "function",
4342
- "name": "sync",
4343
- "return": {
4344
- "type": {
4345
- "text": "CaptureType<TSource>"
4346
- }
4347
- },
4348
- "parameters": [
4349
- {
4350
- "name": "binding",
4351
- "type": {
4352
- "text": "Binding<TSource, TReturn>"
4353
- }
4354
- },
4355
- {
4356
- "name": "conversionType",
4357
- "default": "'string'",
4358
- "type": {
4359
- "text": "ConversionType"
4360
- }
4361
- },
4362
- {
4363
- "name": "eventName",
4364
- "default": "'default'",
4365
- "type": {
4366
- "text": "EventName"
4367
- }
4368
- },
4369
- {
4370
- "name": "keyAttr",
4371
- "optional": true,
4372
- "type": {
4373
- "text": "string"
4374
- }
4375
- }
4376
- ],
4377
- "description": "Creates a synchronization directive that binds a data source to an HTML element,",
4378
- "privacy": "public"
4379
- }
4380
- ],
4381
- "exports": [
4382
- {
4383
- "kind": "js",
4384
- "name": "defaultEventMap",
4385
- "declaration": {
4386
- "name": "defaultEventMap",
4387
- "module": "src/directives/sync/sync.ts"
4388
- }
4389
- },
4390
- {
4391
- "kind": "js",
4392
- "name": "sync",
4393
- "declaration": {
4394
- "name": "sync",
4395
- "module": "src/directives/sync/sync.ts"
4396
- }
4397
- }
4398
- ]
4399
- },
4400
- {
4401
- "kind": "javascript-module",
4402
- "path": "src/directives/when-else/index.ts",
4403
- "declarations": [],
4404
- "exports": [
4405
- {
4406
- "kind": "js",
4407
- "name": "*",
4408
- "declaration": {
4409
- "name": "*",
4410
- "package": "./when-else"
4411
- }
4412
- }
4413
- ]
4414
- },
4415
- {
4416
- "kind": "javascript-module",
4417
- "path": "src/directives/when-else/when-else.ts",
4418
- "declarations": [
4419
- {
4420
- "kind": "function",
4421
- "name": "whenElse",
4422
- "return": {
4423
- "type": {
4424
- "text": "CaptureType<TSource>"
4425
- }
4426
- },
4427
- "parameters": [
4428
- {
4429
- "name": "binding",
4430
- "type": {
4431
- "text": "Binding<TSource, TReturn>"
4432
- },
4433
- "description": "The condition to test for rendering."
4434
- },
4435
- {
4436
- "name": "trueTemplateOrTemplateBinding",
4437
- "type": {
4438
- "text": "WhenTemplate<TSource>"
4439
- },
4440
- "description": "The template or a binding that gets the template to render when the condition is true."
4441
- },
4442
- {
4443
- "name": "falseTemplateOrTemplateBinding",
4444
- "type": {
4445
- "text": "WhenTemplate<TSource>"
4446
- },
4447
- "description": "The template or a binding that gets the template to render when the condition is false."
4448
- }
4449
- ],
4450
- "description": "Directive that allows supplying an \"else\" template to the traditional https://www.fast.design/docs/api/fast-element.when/#when-function directive",
4451
- "privacy": "public"
4452
- }
4453
- ],
4454
- "exports": [
4455
- {
4456
- "kind": "js",
4457
- "name": "whenElse",
4458
- "declaration": {
4459
- "name": "whenElse",
4460
- "module": "src/directives/when-else/when-else.ts"
4461
- }
4462
- }
4463
- ]
4464
- },
4465
4311
  {
4466
4312
  "kind": "javascript-module",
4467
4313
  "path": "src/encoding/base64/decode.ts",
@@ -4616,6 +4462,160 @@
4616
4462
  }
4617
4463
  ]
4618
4464
  },
4465
+ {
4466
+ "kind": "javascript-module",
4467
+ "path": "src/directives/sync/index.ts",
4468
+ "declarations": [],
4469
+ "exports": [
4470
+ {
4471
+ "kind": "js",
4472
+ "name": "*",
4473
+ "declaration": {
4474
+ "name": "*",
4475
+ "package": "./sync"
4476
+ }
4477
+ }
4478
+ ]
4479
+ },
4480
+ {
4481
+ "kind": "javascript-module",
4482
+ "path": "src/directives/sync/sync.ts",
4483
+ "declarations": [
4484
+ {
4485
+ "kind": "variable",
4486
+ "name": "defaultEventMap",
4487
+ "type": {
4488
+ "text": "Map<string, EventName>"
4489
+ },
4490
+ "default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])",
4491
+ "description": "A map that associates specific HTML element tags with their corresponding default event names.",
4492
+ "privacy": "public"
4493
+ },
4494
+ {
4495
+ "kind": "function",
4496
+ "name": "sync",
4497
+ "return": {
4498
+ "type": {
4499
+ "text": "CaptureType<TSource>"
4500
+ }
4501
+ },
4502
+ "parameters": [
4503
+ {
4504
+ "name": "binding",
4505
+ "type": {
4506
+ "text": "Binding<TSource, TReturn>"
4507
+ }
4508
+ },
4509
+ {
4510
+ "name": "conversionType",
4511
+ "default": "'string'",
4512
+ "type": {
4513
+ "text": "ConversionType"
4514
+ }
4515
+ },
4516
+ {
4517
+ "name": "eventName",
4518
+ "default": "'default'",
4519
+ "type": {
4520
+ "text": "EventName"
4521
+ }
4522
+ },
4523
+ {
4524
+ "name": "keyAttr",
4525
+ "optional": true,
4526
+ "type": {
4527
+ "text": "string"
4528
+ }
4529
+ }
4530
+ ],
4531
+ "description": "Creates a synchronization directive that binds a data source to an HTML element,",
4532
+ "privacy": "public"
4533
+ }
4534
+ ],
4535
+ "exports": [
4536
+ {
4537
+ "kind": "js",
4538
+ "name": "defaultEventMap",
4539
+ "declaration": {
4540
+ "name": "defaultEventMap",
4541
+ "module": "src/directives/sync/sync.ts"
4542
+ }
4543
+ },
4544
+ {
4545
+ "kind": "js",
4546
+ "name": "sync",
4547
+ "declaration": {
4548
+ "name": "sync",
4549
+ "module": "src/directives/sync/sync.ts"
4550
+ }
4551
+ }
4552
+ ]
4553
+ },
4554
+ {
4555
+ "kind": "javascript-module",
4556
+ "path": "src/directives/when-else/index.ts",
4557
+ "declarations": [],
4558
+ "exports": [
4559
+ {
4560
+ "kind": "js",
4561
+ "name": "*",
4562
+ "declaration": {
4563
+ "name": "*",
4564
+ "package": "./when-else"
4565
+ }
4566
+ }
4567
+ ]
4568
+ },
4569
+ {
4570
+ "kind": "javascript-module",
4571
+ "path": "src/directives/when-else/when-else.ts",
4572
+ "declarations": [
4573
+ {
4574
+ "kind": "function",
4575
+ "name": "whenElse",
4576
+ "return": {
4577
+ "type": {
4578
+ "text": "CaptureType<TSource>"
4579
+ }
4580
+ },
4581
+ "parameters": [
4582
+ {
4583
+ "name": "binding",
4584
+ "type": {
4585
+ "text": "Binding<TSource, TReturn>"
4586
+ },
4587
+ "description": "The condition to test for rendering."
4588
+ },
4589
+ {
4590
+ "name": "trueTemplateOrTemplateBinding",
4591
+ "type": {
4592
+ "text": "WhenTemplate<TSource>"
4593
+ },
4594
+ "description": "The template or a binding that gets the template to render when the condition is true."
4595
+ },
4596
+ {
4597
+ "name": "falseTemplateOrTemplateBinding",
4598
+ "type": {
4599
+ "text": "WhenTemplate<TSource>"
4600
+ },
4601
+ "description": "The template or a binding that gets the template to render when the condition is false."
4602
+ }
4603
+ ],
4604
+ "description": "Directive that allows supplying an \"else\" template to the traditional https://www.fast.design/docs/api/fast-element.when/#when-function directive",
4605
+ "privacy": "public"
4606
+ }
4607
+ ],
4608
+ "exports": [
4609
+ {
4610
+ "kind": "js",
4611
+ "name": "whenElse",
4612
+ "declaration": {
4613
+ "name": "whenElse",
4614
+ "module": "src/directives/when-else/when-else.ts"
4615
+ }
4616
+ }
4617
+ ]
4618
+ },
4619
4619
  {
4620
4620
  "kind": "javascript-module",
4621
4621
  "path": "src/mappers/dto/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.412.0",
4
+ "version": "14.414.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -29,18 +29,18 @@
29
29
  }
30
30
  },
31
31
  "devDependencies": {
32
- "@genesislcap/foundation-testing": "14.412.0",
33
- "@genesislcap/genx": "14.412.0",
34
- "@genesislcap/rollup-builder": "14.412.0",
35
- "@genesislcap/ts-builder": "14.412.0",
36
- "@genesislcap/uvu-playwright-builder": "14.412.0",
37
- "@genesislcap/vite-builder": "14.412.0",
38
- "@genesislcap/webpack-builder": "14.412.0",
32
+ "@genesislcap/foundation-testing": "14.414.0",
33
+ "@genesislcap/genx": "14.414.0",
34
+ "@genesislcap/rollup-builder": "14.414.0",
35
+ "@genesislcap/ts-builder": "14.414.0",
36
+ "@genesislcap/uvu-playwright-builder": "14.414.0",
37
+ "@genesislcap/vite-builder": "14.414.0",
38
+ "@genesislcap/webpack-builder": "14.414.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.412.0",
43
- "@genesislcap/foundation-logger": "14.412.0",
42
+ "@genesislcap/expression-builder": "14.414.0",
43
+ "@genesislcap/foundation-logger": "14.414.0",
44
44
  "@microsoft/fast-components": "2.30.6",
45
45
  "@microsoft/fast-element": "1.14.0",
46
46
  "@microsoft/fast-foundation": "2.50.0",
@@ -58,5 +58,5 @@
58
58
  "access": "public"
59
59
  },
60
60
  "customElements": "dist/custom-elements.json",
61
- "gitHead": "b759370097c295bea2a87d6f3a132ec6dba807ca"
61
+ "gitHead": "1773c265a5c49119bbf46847678b3eb155f67eb6"
62
62
  }