@genesislcap/foundation-utils 15.4.1 → 15.5.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 +317 -317
  2. package/package.json +11 -11
@@ -209,70 +209,6 @@
209
209
  }
210
210
  ]
211
211
  },
212
- {
213
- "kind": "javascript-module",
214
- "path": "src/converters/index.ts",
215
- "declarations": [],
216
- "exports": [
217
- {
218
- "kind": "js",
219
- "name": "*",
220
- "declaration": {
221
- "name": "*",
222
- "package": "./string-array-converter"
223
- }
224
- }
225
- ]
226
- },
227
- {
228
- "kind": "javascript-module",
229
- "path": "src/converters/string-array-converter.ts",
230
- "declarations": [
231
- {
232
- "kind": "variable",
233
- "name": "stringArrayConverter",
234
- "type": {
235
- "text": "ValueConverter"
236
- },
237
- "default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
238
- "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
239
- "privacy": "public"
240
- }
241
- ],
242
- "exports": [
243
- {
244
- "kind": "js",
245
- "name": "stringArrayConverter",
246
- "declaration": {
247
- "name": "stringArrayConverter",
248
- "module": "src/converters/string-array-converter.ts"
249
- }
250
- }
251
- ]
252
- },
253
- {
254
- "kind": "javascript-module",
255
- "path": "src/directives/index.ts",
256
- "declarations": [],
257
- "exports": [
258
- {
259
- "kind": "js",
260
- "name": "*",
261
- "declaration": {
262
- "name": "*",
263
- "package": "./sync"
264
- }
265
- },
266
- {
267
- "kind": "js",
268
- "name": "*",
269
- "declaration": {
270
- "name": "*",
271
- "package": "./when-else"
272
- }
273
- }
274
- ]
275
- },
276
212
  {
277
213
  "kind": "javascript-module",
278
214
  "path": "src/design-system/design-system.ts",
@@ -475,6 +411,70 @@
475
411
  }
476
412
  ]
477
413
  },
414
+ {
415
+ "kind": "javascript-module",
416
+ "path": "src/directives/index.ts",
417
+ "declarations": [],
418
+ "exports": [
419
+ {
420
+ "kind": "js",
421
+ "name": "*",
422
+ "declaration": {
423
+ "name": "*",
424
+ "package": "./sync"
425
+ }
426
+ },
427
+ {
428
+ "kind": "js",
429
+ "name": "*",
430
+ "declaration": {
431
+ "name": "*",
432
+ "package": "./when-else"
433
+ }
434
+ }
435
+ ]
436
+ },
437
+ {
438
+ "kind": "javascript-module",
439
+ "path": "src/converters/index.ts",
440
+ "declarations": [],
441
+ "exports": [
442
+ {
443
+ "kind": "js",
444
+ "name": "*",
445
+ "declaration": {
446
+ "name": "*",
447
+ "package": "./string-array-converter"
448
+ }
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "kind": "javascript-module",
454
+ "path": "src/converters/string-array-converter.ts",
455
+ "declarations": [
456
+ {
457
+ "kind": "variable",
458
+ "name": "stringArrayConverter",
459
+ "type": {
460
+ "text": "ValueConverter"
461
+ },
462
+ "default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
463
+ "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
464
+ "privacy": "public"
465
+ }
466
+ ],
467
+ "exports": [
468
+ {
469
+ "kind": "js",
470
+ "name": "stringArrayConverter",
471
+ "declaration": {
472
+ "name": "stringArrayConverter",
473
+ "module": "src/converters/string-array-converter.ts"
474
+ }
475
+ }
476
+ ]
477
+ },
478
478
  {
479
479
  "kind": "javascript-module",
480
480
  "path": "src/encoding/index.ts",
@@ -484,8 +484,259 @@
484
484
  "kind": "js",
485
485
  "name": "*",
486
486
  "declaration": {
487
- "name": "*",
488
- "package": "./base64"
487
+ "name": "*",
488
+ "package": "./base64"
489
+ }
490
+ }
491
+ ]
492
+ },
493
+ {
494
+ "kind": "javascript-module",
495
+ "path": "src/data/inMemoryDatabase.ts",
496
+ "declarations": [
497
+ {
498
+ "kind": "class",
499
+ "description": "An in memory database of specific DatabaseRecord types.",
500
+ "name": "InMemoryDatabase",
501
+ "members": [
502
+ {
503
+ "kind": "field",
504
+ "name": "isWorking",
505
+ "type": {
506
+ "text": "boolean"
507
+ },
508
+ "privacy": "public",
509
+ "default": "false"
510
+ },
511
+ {
512
+ "kind": "field",
513
+ "name": "records",
514
+ "type": {
515
+ "text": "Record<string, T>"
516
+ },
517
+ "privacy": "private",
518
+ "default": "{}"
519
+ },
520
+ {
521
+ "kind": "field",
522
+ "name": "beforeUpdateListeners",
523
+ "privacy": "private"
524
+ },
525
+ {
526
+ "kind": "field",
527
+ "name": "afterUpdateListeners",
528
+ "privacy": "private"
529
+ },
530
+ {
531
+ "kind": "method",
532
+ "name": "create",
533
+ "privacy": "public",
534
+ "return": {
535
+ "type": {
536
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
537
+ }
538
+ },
539
+ "parameters": [
540
+ {
541
+ "name": "newValue",
542
+ "type": {
543
+ "text": "Omit<T, 'id'>"
544
+ }
545
+ }
546
+ ]
547
+ },
548
+ {
549
+ "kind": "method",
550
+ "name": "read",
551
+ "privacy": "public",
552
+ "return": {
553
+ "type": {
554
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
555
+ }
556
+ },
557
+ "parameters": [
558
+ {
559
+ "name": "id",
560
+ "type": {
561
+ "text": "string"
562
+ }
563
+ }
564
+ ]
565
+ },
566
+ {
567
+ "kind": "method",
568
+ "name": "update",
569
+ "privacy": "public",
570
+ "return": {
571
+ "type": {
572
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
573
+ }
574
+ },
575
+ "parameters": [
576
+ {
577
+ "name": "id",
578
+ "type": {
579
+ "text": "string"
580
+ }
581
+ },
582
+ {
583
+ "name": "newValue",
584
+ "type": {
585
+ "text": "Omit<Partial<T>, 'id'>"
586
+ }
587
+ }
588
+ ]
589
+ },
590
+ {
591
+ "kind": "method",
592
+ "name": "delete",
593
+ "privacy": "public",
594
+ "return": {
595
+ "type": {
596
+ "text": "Promise<DatabaseAccessResult.Delete>"
597
+ }
598
+ },
599
+ "parameters": [
600
+ {
601
+ "name": "id",
602
+ "type": {
603
+ "text": "string"
604
+ }
605
+ }
606
+ ]
607
+ },
608
+ {
609
+ "kind": "method",
610
+ "name": "visit",
611
+ "privacy": "public",
612
+ "return": {
613
+ "type": {
614
+ "text": "Promise<void>"
615
+ }
616
+ },
617
+ "parameters": [
618
+ {
619
+ "name": "visitor",
620
+ "type": {
621
+ "text": "(record: T) => void"
622
+ }
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "kind": "method",
628
+ "name": "onBeforeUpdate",
629
+ "privacy": "public",
630
+ "return": {
631
+ "type": {
632
+ "text": "() => void"
633
+ }
634
+ },
635
+ "parameters": [
636
+ {
637
+ "name": "listener",
638
+ "type": {
639
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
640
+ }
641
+ }
642
+ ]
643
+ },
644
+ {
645
+ "kind": "method",
646
+ "name": "onAfterUpdate",
647
+ "privacy": "public",
648
+ "return": {
649
+ "type": {
650
+ "text": "() => void"
651
+ }
652
+ },
653
+ "parameters": [
654
+ {
655
+ "name": "listener",
656
+ "type": {
657
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
658
+ }
659
+ }
660
+ ]
661
+ }
662
+ ]
663
+ }
664
+ ],
665
+ "exports": [
666
+ {
667
+ "kind": "js",
668
+ "name": "InMemoryDatabase",
669
+ "declaration": {
670
+ "name": "InMemoryDatabase",
671
+ "module": "src/data/inMemoryDatabase.ts"
672
+ }
673
+ }
674
+ ]
675
+ },
676
+ {
677
+ "kind": "javascript-module",
678
+ "path": "src/data/index.ts",
679
+ "declarations": [],
680
+ "exports": [
681
+ {
682
+ "kind": "js",
683
+ "name": "*",
684
+ "declaration": {
685
+ "name": "*",
686
+ "package": "./inMemoryDatabase"
687
+ }
688
+ }
689
+ ]
690
+ },
691
+ {
692
+ "kind": "javascript-module",
693
+ "path": "src/decorators/index.ts",
694
+ "declarations": [],
695
+ "exports": [
696
+ {
697
+ "kind": "js",
698
+ "name": "*",
699
+ "declaration": {
700
+ "name": "*",
701
+ "package": "./renderOnChange"
702
+ }
703
+ }
704
+ ]
705
+ },
706
+ {
707
+ "kind": "javascript-module",
708
+ "path": "src/decorators/renderOnChange.ts",
709
+ "declarations": [
710
+ {
711
+ "kind": "function",
712
+ "name": "renderOnChange",
713
+ "parameters": [
714
+ {
715
+ "name": "target",
716
+ "type": {
717
+ "text": "FASTElement & { render(): void }"
718
+ },
719
+ "description": "The target to define the property change handler on."
720
+ },
721
+ {
722
+ "name": "name",
723
+ "type": {
724
+ "text": "string"
725
+ },
726
+ "description": "The property name."
727
+ }
728
+ ],
729
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
730
+ "privacy": "public"
731
+ }
732
+ ],
733
+ "exports": [
734
+ {
735
+ "kind": "js",
736
+ "name": "renderOnChange",
737
+ "declaration": {
738
+ "name": "renderOnChange",
739
+ "module": "src/decorators/renderOnChange.ts"
489
740
  }
490
741
  }
491
742
  ]
@@ -989,257 +1240,6 @@
989
1240
  }
990
1241
  ]
991
1242
  },
992
- {
993
- "kind": "javascript-module",
994
- "path": "src/data/inMemoryDatabase.ts",
995
- "declarations": [
996
- {
997
- "kind": "class",
998
- "description": "An in memory database of specific DatabaseRecord types.",
999
- "name": "InMemoryDatabase",
1000
- "members": [
1001
- {
1002
- "kind": "field",
1003
- "name": "isWorking",
1004
- "type": {
1005
- "text": "boolean"
1006
- },
1007
- "privacy": "public",
1008
- "default": "false"
1009
- },
1010
- {
1011
- "kind": "field",
1012
- "name": "records",
1013
- "type": {
1014
- "text": "Record<string, T>"
1015
- },
1016
- "privacy": "private",
1017
- "default": "{}"
1018
- },
1019
- {
1020
- "kind": "field",
1021
- "name": "beforeUpdateListeners",
1022
- "privacy": "private"
1023
- },
1024
- {
1025
- "kind": "field",
1026
- "name": "afterUpdateListeners",
1027
- "privacy": "private"
1028
- },
1029
- {
1030
- "kind": "method",
1031
- "name": "create",
1032
- "privacy": "public",
1033
- "return": {
1034
- "type": {
1035
- "text": "Promise<DatabaseAccessResult.Create<T>>"
1036
- }
1037
- },
1038
- "parameters": [
1039
- {
1040
- "name": "newValue",
1041
- "type": {
1042
- "text": "Omit<T, 'id'>"
1043
- }
1044
- }
1045
- ]
1046
- },
1047
- {
1048
- "kind": "method",
1049
- "name": "read",
1050
- "privacy": "public",
1051
- "return": {
1052
- "type": {
1053
- "text": "Promise<DatabaseAccessResult.Read<T>>"
1054
- }
1055
- },
1056
- "parameters": [
1057
- {
1058
- "name": "id",
1059
- "type": {
1060
- "text": "string"
1061
- }
1062
- }
1063
- ]
1064
- },
1065
- {
1066
- "kind": "method",
1067
- "name": "update",
1068
- "privacy": "public",
1069
- "return": {
1070
- "type": {
1071
- "text": "Promise<DatabaseAccessResult.Update<T>>"
1072
- }
1073
- },
1074
- "parameters": [
1075
- {
1076
- "name": "id",
1077
- "type": {
1078
- "text": "string"
1079
- }
1080
- },
1081
- {
1082
- "name": "newValue",
1083
- "type": {
1084
- "text": "Omit<Partial<T>, 'id'>"
1085
- }
1086
- }
1087
- ]
1088
- },
1089
- {
1090
- "kind": "method",
1091
- "name": "delete",
1092
- "privacy": "public",
1093
- "return": {
1094
- "type": {
1095
- "text": "Promise<DatabaseAccessResult.Delete>"
1096
- }
1097
- },
1098
- "parameters": [
1099
- {
1100
- "name": "id",
1101
- "type": {
1102
- "text": "string"
1103
- }
1104
- }
1105
- ]
1106
- },
1107
- {
1108
- "kind": "method",
1109
- "name": "visit",
1110
- "privacy": "public",
1111
- "return": {
1112
- "type": {
1113
- "text": "Promise<void>"
1114
- }
1115
- },
1116
- "parameters": [
1117
- {
1118
- "name": "visitor",
1119
- "type": {
1120
- "text": "(record: T) => void"
1121
- }
1122
- }
1123
- ]
1124
- },
1125
- {
1126
- "kind": "method",
1127
- "name": "onBeforeUpdate",
1128
- "privacy": "public",
1129
- "return": {
1130
- "type": {
1131
- "text": "() => void"
1132
- }
1133
- },
1134
- "parameters": [
1135
- {
1136
- "name": "listener",
1137
- "type": {
1138
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1139
- }
1140
- }
1141
- ]
1142
- },
1143
- {
1144
- "kind": "method",
1145
- "name": "onAfterUpdate",
1146
- "privacy": "public",
1147
- "return": {
1148
- "type": {
1149
- "text": "() => void"
1150
- }
1151
- },
1152
- "parameters": [
1153
- {
1154
- "name": "listener",
1155
- "type": {
1156
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1157
- }
1158
- }
1159
- ]
1160
- }
1161
- ]
1162
- }
1163
- ],
1164
- "exports": [
1165
- {
1166
- "kind": "js",
1167
- "name": "InMemoryDatabase",
1168
- "declaration": {
1169
- "name": "InMemoryDatabase",
1170
- "module": "src/data/inMemoryDatabase.ts"
1171
- }
1172
- }
1173
- ]
1174
- },
1175
- {
1176
- "kind": "javascript-module",
1177
- "path": "src/data/index.ts",
1178
- "declarations": [],
1179
- "exports": [
1180
- {
1181
- "kind": "js",
1182
- "name": "*",
1183
- "declaration": {
1184
- "name": "*",
1185
- "package": "./inMemoryDatabase"
1186
- }
1187
- }
1188
- ]
1189
- },
1190
- {
1191
- "kind": "javascript-module",
1192
- "path": "src/decorators/index.ts",
1193
- "declarations": [],
1194
- "exports": [
1195
- {
1196
- "kind": "js",
1197
- "name": "*",
1198
- "declaration": {
1199
- "name": "*",
1200
- "package": "./renderOnChange"
1201
- }
1202
- }
1203
- ]
1204
- },
1205
- {
1206
- "kind": "javascript-module",
1207
- "path": "src/decorators/renderOnChange.ts",
1208
- "declarations": [
1209
- {
1210
- "kind": "function",
1211
- "name": "renderOnChange",
1212
- "parameters": [
1213
- {
1214
- "name": "target",
1215
- "type": {
1216
- "text": "FASTElement & { render(): void }"
1217
- },
1218
- "description": "The target to define the property change handler on."
1219
- },
1220
- {
1221
- "name": "name",
1222
- "type": {
1223
- "text": "string"
1224
- },
1225
- "description": "The property name."
1226
- }
1227
- ],
1228
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1229
- "privacy": "public"
1230
- }
1231
- ],
1232
- "exports": [
1233
- {
1234
- "kind": "js",
1235
- "name": "renderOnChange",
1236
- "declaration": {
1237
- "name": "renderOnChange",
1238
- "module": "src/decorators/renderOnChange.ts"
1239
- }
1240
- }
1241
- ]
1242
- },
1243
1243
  {
1244
1244
  "kind": "javascript-module",
1245
1245
  "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": "15.4.1",
4
+ "version": "15.5.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": "15.4.1",
33
- "@genesislcap/genx": "15.4.1",
34
- "@genesislcap/rollup-builder": "15.4.1",
35
- "@genesislcap/ts-builder": "15.4.1",
36
- "@genesislcap/uvu-playwright-builder": "15.4.1",
37
- "@genesislcap/vite-builder": "15.4.1",
38
- "@genesislcap/webpack-builder": "15.4.1",
32
+ "@genesislcap/foundation-testing": "15.5.0",
33
+ "@genesislcap/genx": "15.5.0",
34
+ "@genesislcap/rollup-builder": "15.5.0",
35
+ "@genesislcap/ts-builder": "15.5.0",
36
+ "@genesislcap/uvu-playwright-builder": "15.5.0",
37
+ "@genesislcap/vite-builder": "15.5.0",
38
+ "@genesislcap/webpack-builder": "15.5.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "15.4.1",
43
- "@genesislcap/foundation-logger": "15.4.1",
42
+ "@genesislcap/expression-builder": "15.5.0",
43
+ "@genesislcap/foundation-logger": "15.5.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",
@@ -70,5 +70,5 @@
70
70
  },
71
71
  "./package.json": "./package.json"
72
72
  },
73
- "gitHead": "984a77280362d69ba3eab6256dbb7fe03b8c76b3"
73
+ "gitHead": "be7121280e828345e79cca6a084b1025536813f2"
74
74
  }