@genesislcap/foundation-utils 14.200.0-FUI-2127.3 → 14.200.0-FUI-2127.4

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 +506 -506
  2. package/package.json +10 -10
@@ -159,6 +159,307 @@
159
159
  }
160
160
  ]
161
161
  },
162
+ {
163
+ "kind": "javascript-module",
164
+ "path": "src/data/inMemoryDatabase.ts",
165
+ "declarations": [
166
+ {
167
+ "kind": "class",
168
+ "description": "An in memory database of specific DatabaseRecord types.",
169
+ "name": "InMemoryDatabase",
170
+ "members": [
171
+ {
172
+ "kind": "field",
173
+ "name": "isWorking",
174
+ "type": {
175
+ "text": "boolean"
176
+ },
177
+ "privacy": "public",
178
+ "default": "false"
179
+ },
180
+ {
181
+ "kind": "field",
182
+ "name": "records",
183
+ "type": {
184
+ "text": "Record<string, T>"
185
+ },
186
+ "privacy": "private",
187
+ "default": "{}"
188
+ },
189
+ {
190
+ "kind": "field",
191
+ "name": "beforeUpdateListeners",
192
+ "privacy": "private"
193
+ },
194
+ {
195
+ "kind": "field",
196
+ "name": "afterUpdateListeners",
197
+ "privacy": "private"
198
+ },
199
+ {
200
+ "kind": "method",
201
+ "name": "create",
202
+ "privacy": "public",
203
+ "return": {
204
+ "type": {
205
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
206
+ }
207
+ },
208
+ "parameters": [
209
+ {
210
+ "name": "newValue",
211
+ "type": {
212
+ "text": "Omit<T, 'id'>"
213
+ }
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "kind": "method",
219
+ "name": "read",
220
+ "privacy": "public",
221
+ "return": {
222
+ "type": {
223
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
224
+ }
225
+ },
226
+ "parameters": [
227
+ {
228
+ "name": "id",
229
+ "type": {
230
+ "text": "string"
231
+ }
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ "kind": "method",
237
+ "name": "update",
238
+ "privacy": "public",
239
+ "return": {
240
+ "type": {
241
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
242
+ }
243
+ },
244
+ "parameters": [
245
+ {
246
+ "name": "id",
247
+ "type": {
248
+ "text": "string"
249
+ }
250
+ },
251
+ {
252
+ "name": "newValue",
253
+ "type": {
254
+ "text": "Omit<Partial<T>, 'id'>"
255
+ }
256
+ }
257
+ ]
258
+ },
259
+ {
260
+ "kind": "method",
261
+ "name": "delete",
262
+ "privacy": "public",
263
+ "return": {
264
+ "type": {
265
+ "text": "Promise<DatabaseAccessResult.Delete>"
266
+ }
267
+ },
268
+ "parameters": [
269
+ {
270
+ "name": "id",
271
+ "type": {
272
+ "text": "string"
273
+ }
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "kind": "method",
279
+ "name": "visit",
280
+ "privacy": "public",
281
+ "return": {
282
+ "type": {
283
+ "text": "Promise<void>"
284
+ }
285
+ },
286
+ "parameters": [
287
+ {
288
+ "name": "visitor",
289
+ "type": {
290
+ "text": "(record: T) => void"
291
+ }
292
+ }
293
+ ]
294
+ },
295
+ {
296
+ "kind": "method",
297
+ "name": "onBeforeUpdate",
298
+ "privacy": "public",
299
+ "return": {
300
+ "type": {
301
+ "text": "() => void"
302
+ }
303
+ },
304
+ "parameters": [
305
+ {
306
+ "name": "listener",
307
+ "type": {
308
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
309
+ }
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ "kind": "method",
315
+ "name": "onAfterUpdate",
316
+ "privacy": "public",
317
+ "return": {
318
+ "type": {
319
+ "text": "() => void"
320
+ }
321
+ },
322
+ "parameters": [
323
+ {
324
+ "name": "listener",
325
+ "type": {
326
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
327
+ }
328
+ }
329
+ ]
330
+ }
331
+ ]
332
+ }
333
+ ],
334
+ "exports": [
335
+ {
336
+ "kind": "js",
337
+ "name": "InMemoryDatabase",
338
+ "declaration": {
339
+ "name": "InMemoryDatabase",
340
+ "module": "src/data/inMemoryDatabase.ts"
341
+ }
342
+ }
343
+ ]
344
+ },
345
+ {
346
+ "kind": "javascript-module",
347
+ "path": "src/data/index.ts",
348
+ "declarations": [],
349
+ "exports": [
350
+ {
351
+ "kind": "js",
352
+ "name": "*",
353
+ "declaration": {
354
+ "name": "*",
355
+ "package": "./inMemoryDatabase"
356
+ }
357
+ }
358
+ ]
359
+ },
360
+ {
361
+ "kind": "javascript-module",
362
+ "path": "src/decorators/index.ts",
363
+ "declarations": [],
364
+ "exports": [
365
+ {
366
+ "kind": "js",
367
+ "name": "*",
368
+ "declaration": {
369
+ "name": "*",
370
+ "package": "./renderOnChange"
371
+ }
372
+ }
373
+ ]
374
+ },
375
+ {
376
+ "kind": "javascript-module",
377
+ "path": "src/decorators/renderOnChange.ts",
378
+ "declarations": [
379
+ {
380
+ "kind": "function",
381
+ "name": "renderOnChange",
382
+ "parameters": [
383
+ {
384
+ "name": "target",
385
+ "type": {
386
+ "text": "FASTElement & { render(): void }"
387
+ },
388
+ "description": "The target to define the property change handler on."
389
+ },
390
+ {
391
+ "name": "name",
392
+ "type": {
393
+ "text": "string"
394
+ },
395
+ "description": "The property name."
396
+ }
397
+ ],
398
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
399
+ "privacy": "public"
400
+ }
401
+ ],
402
+ "exports": [
403
+ {
404
+ "kind": "js",
405
+ "name": "renderOnChange",
406
+ "declaration": {
407
+ "name": "renderOnChange",
408
+ "module": "src/decorators/renderOnChange.ts"
409
+ }
410
+ }
411
+ ]
412
+ },
413
+ {
414
+ "kind": "javascript-module",
415
+ "path": "src/design-system/design-system.ts",
416
+ "declarations": [
417
+ {
418
+ "kind": "function",
419
+ "name": "assureDesignSystem",
420
+ "return": {
421
+ "type": {
422
+ "text": "DesignSystemModule"
423
+ }
424
+ },
425
+ "parameters": [
426
+ {
427
+ "name": "module",
428
+ "type": {
429
+ "text": "DesignSystemModule"
430
+ }
431
+ }
432
+ ],
433
+ "description": "assureDesignSystem.",
434
+ "privacy": "public"
435
+ }
436
+ ],
437
+ "exports": [
438
+ {
439
+ "kind": "js",
440
+ "name": "assureDesignSystem",
441
+ "declaration": {
442
+ "name": "assureDesignSystem",
443
+ "module": "src/design-system/design-system.ts"
444
+ }
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "kind": "javascript-module",
450
+ "path": "src/design-system/index.ts",
451
+ "declarations": [],
452
+ "exports": [
453
+ {
454
+ "kind": "js",
455
+ "name": "*",
456
+ "declaration": {
457
+ "name": "*",
458
+ "package": "./design-system"
459
+ }
460
+ }
461
+ ]
462
+ },
162
463
  {
163
464
  "kind": "javascript-module",
164
465
  "path": "src/directives/index.ts",
@@ -177,7 +478,206 @@
177
478
  "name": "*",
178
479
  "declaration": {
179
480
  "name": "*",
180
- "package": "./when-else"
481
+ "package": "./when-else"
482
+ }
483
+ }
484
+ ]
485
+ },
486
+ {
487
+ "kind": "javascript-module",
488
+ "path": "src/error/errorMap.ts",
489
+ "declarations": [
490
+ {
491
+ "kind": "class",
492
+ "description": "",
493
+ "name": "DefaultErrorMap",
494
+ "members": [
495
+ {
496
+ "kind": "field",
497
+ "name": "map",
498
+ "privacy": "private",
499
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
500
+ },
501
+ {
502
+ "kind": "field",
503
+ "name": "lastError",
504
+ "type": {
505
+ "text": "Error"
506
+ },
507
+ "description": "{@inheritDoc ErrorMap.lastError}"
508
+ },
509
+ {
510
+ "kind": "method",
511
+ "name": "set",
512
+ "return": {
513
+ "type": {
514
+ "text": "void"
515
+ }
516
+ },
517
+ "parameters": [
518
+ {
519
+ "name": "key",
520
+ "type": {
521
+ "text": "keyof TErrorDetailMap"
522
+ }
523
+ },
524
+ {
525
+ "name": "error",
526
+ "type": {
527
+ "text": "Error"
528
+ }
529
+ }
530
+ ],
531
+ "description": "{@inheritDoc ErrorMap.set}"
532
+ },
533
+ {
534
+ "kind": "method",
535
+ "name": "get",
536
+ "return": {
537
+ "type": {
538
+ "text": ""
539
+ }
540
+ },
541
+ "parameters": [
542
+ {
543
+ "name": "key",
544
+ "type": {
545
+ "text": "keyof TErrorDetailMap"
546
+ },
547
+ "description": "The key."
548
+ }
549
+ ],
550
+ "description": "Get an error by key.",
551
+ "privacy": "public"
552
+ },
553
+ {
554
+ "kind": "method",
555
+ "name": "has",
556
+ "return": {
557
+ "type": {
558
+ "text": ""
559
+ }
560
+ },
561
+ "parameters": [
562
+ {
563
+ "name": "key",
564
+ "type": {
565
+ "text": "keyof TErrorDetailMap"
566
+ },
567
+ "description": "The key."
568
+ }
569
+ ],
570
+ "description": "Has an error for key.",
571
+ "privacy": "public"
572
+ },
573
+ {
574
+ "kind": "method",
575
+ "name": "delete",
576
+ "return": {
577
+ "type": {
578
+ "text": ""
579
+ }
580
+ },
581
+ "parameters": [
582
+ {
583
+ "name": "key",
584
+ "type": {
585
+ "text": "keyof TErrorDetailMap"
586
+ },
587
+ "description": "The key."
588
+ }
589
+ ],
590
+ "description": "Delete an error.",
591
+ "privacy": "public"
592
+ },
593
+ {
594
+ "kind": "method",
595
+ "name": "clear",
596
+ "description": "Clear errors.",
597
+ "privacy": "public"
598
+ },
599
+ {
600
+ "kind": "field",
601
+ "name": "size",
602
+ "type": {
603
+ "text": "number"
604
+ },
605
+ "description": "The size of the error map.",
606
+ "return": {
607
+ "type": {
608
+ "text": ""
609
+ }
610
+ },
611
+ "privacy": "public",
612
+ "readonly": true
613
+ },
614
+ {
615
+ "kind": "method",
616
+ "name": "values",
617
+ "privacy": "public"
618
+ },
619
+ {
620
+ "kind": "field",
621
+ "name": "messages",
622
+ "type": {
623
+ "text": "string"
624
+ },
625
+ "description": "{@inheritDoc ErrorMap.messages}",
626
+ "readonly": true
627
+ }
628
+ ]
629
+ },
630
+ {
631
+ "kind": "function",
632
+ "name": "createErrorMap",
633
+ "return": {
634
+ "type": {
635
+ "text": ""
636
+ }
637
+ },
638
+ "parameters": [
639
+ {
640
+ "name": "logger",
641
+ "type": {
642
+ "text": "ErrorMapLogger"
643
+ },
644
+ "description": "A logger error method reference."
645
+ }
646
+ ],
647
+ "description": "A factory to create the error map.",
648
+ "privacy": "public"
649
+ }
650
+ ],
651
+ "exports": [
652
+ {
653
+ "kind": "js",
654
+ "name": "DefaultErrorMap",
655
+ "declaration": {
656
+ "name": "DefaultErrorMap",
657
+ "module": "src/error/errorMap.ts"
658
+ }
659
+ },
660
+ {
661
+ "kind": "js",
662
+ "name": "createErrorMap",
663
+ "declaration": {
664
+ "name": "createErrorMap",
665
+ "module": "src/error/errorMap.ts"
666
+ }
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "kind": "javascript-module",
672
+ "path": "src/error/index.ts",
673
+ "declarations": [],
674
+ "exports": [
675
+ {
676
+ "kind": "js",
677
+ "name": "*",
678
+ "declaration": {
679
+ "name": "*",
680
+ "package": "./errorMap"
181
681
  }
182
682
  }
183
683
  ]
@@ -408,266 +908,14 @@
408
908
  "declaration": {
409
909
  "name": "_DEFAULT_PASSWORD",
410
910
  "module": "src/env/variables.ts"
411
- }
412
- },
413
- {
414
- "kind": "js",
415
- "name": "DEFAULT_USER",
416
- "declaration": {
417
- "name": "_DEFAULT_USER",
418
- "module": "src/env/variables.ts"
419
- }
420
- }
421
- ]
422
- },
423
- {
424
- "kind": "javascript-module",
425
- "path": "src/decorators/index.ts",
426
- "declarations": [],
427
- "exports": [
428
- {
429
- "kind": "js",
430
- "name": "*",
431
- "declaration": {
432
- "name": "*",
433
- "package": "./renderOnChange"
434
- }
435
- }
436
- ]
437
- },
438
- {
439
- "kind": "javascript-module",
440
- "path": "src/decorators/renderOnChange.ts",
441
- "declarations": [
442
- {
443
- "kind": "function",
444
- "name": "renderOnChange",
445
- "parameters": [
446
- {
447
- "name": "target",
448
- "type": {
449
- "text": "FASTElement & { render(): void }"
450
- },
451
- "description": "The target to define the property change handler on."
452
- },
453
- {
454
- "name": "name",
455
- "type": {
456
- "text": "string"
457
- },
458
- "description": "The property name."
459
- }
460
- ],
461
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
462
- "privacy": "public"
463
- }
464
- ],
465
- "exports": [
466
- {
467
- "kind": "js",
468
- "name": "renderOnChange",
469
- "declaration": {
470
- "name": "renderOnChange",
471
- "module": "src/decorators/renderOnChange.ts"
472
- }
473
- }
474
- ]
475
- },
476
- {
477
- "kind": "javascript-module",
478
- "path": "src/error/errorMap.ts",
479
- "declarations": [
480
- {
481
- "kind": "class",
482
- "description": "",
483
- "name": "DefaultErrorMap",
484
- "members": [
485
- {
486
- "kind": "field",
487
- "name": "map",
488
- "privacy": "private",
489
- "default": "new Map<keyof TErrorDetailMap, Error>()"
490
- },
491
- {
492
- "kind": "field",
493
- "name": "lastError",
494
- "type": {
495
- "text": "Error"
496
- },
497
- "description": "{@inheritDoc ErrorMap.lastError}"
498
- },
499
- {
500
- "kind": "method",
501
- "name": "set",
502
- "return": {
503
- "type": {
504
- "text": "void"
505
- }
506
- },
507
- "parameters": [
508
- {
509
- "name": "key",
510
- "type": {
511
- "text": "keyof TErrorDetailMap"
512
- }
513
- },
514
- {
515
- "name": "error",
516
- "type": {
517
- "text": "Error"
518
- }
519
- }
520
- ],
521
- "description": "{@inheritDoc ErrorMap.set}"
522
- },
523
- {
524
- "kind": "method",
525
- "name": "get",
526
- "return": {
527
- "type": {
528
- "text": ""
529
- }
530
- },
531
- "parameters": [
532
- {
533
- "name": "key",
534
- "type": {
535
- "text": "keyof TErrorDetailMap"
536
- },
537
- "description": "The key."
538
- }
539
- ],
540
- "description": "Get an error by key.",
541
- "privacy": "public"
542
- },
543
- {
544
- "kind": "method",
545
- "name": "has",
546
- "return": {
547
- "type": {
548
- "text": ""
549
- }
550
- },
551
- "parameters": [
552
- {
553
- "name": "key",
554
- "type": {
555
- "text": "keyof TErrorDetailMap"
556
- },
557
- "description": "The key."
558
- }
559
- ],
560
- "description": "Has an error for key.",
561
- "privacy": "public"
562
- },
563
- {
564
- "kind": "method",
565
- "name": "delete",
566
- "return": {
567
- "type": {
568
- "text": ""
569
- }
570
- },
571
- "parameters": [
572
- {
573
- "name": "key",
574
- "type": {
575
- "text": "keyof TErrorDetailMap"
576
- },
577
- "description": "The key."
578
- }
579
- ],
580
- "description": "Delete an error.",
581
- "privacy": "public"
582
- },
583
- {
584
- "kind": "method",
585
- "name": "clear",
586
- "description": "Clear errors.",
587
- "privacy": "public"
588
- },
589
- {
590
- "kind": "field",
591
- "name": "size",
592
- "type": {
593
- "text": "number"
594
- },
595
- "description": "The size of the error map.",
596
- "return": {
597
- "type": {
598
- "text": ""
599
- }
600
- },
601
- "privacy": "public",
602
- "readonly": true
603
- },
604
- {
605
- "kind": "method",
606
- "name": "values",
607
- "privacy": "public"
608
- },
609
- {
610
- "kind": "field",
611
- "name": "messages",
612
- "type": {
613
- "text": "string"
614
- },
615
- "description": "{@inheritDoc ErrorMap.messages}",
616
- "readonly": true
617
- }
618
- ]
619
- },
620
- {
621
- "kind": "function",
622
- "name": "createErrorMap",
623
- "return": {
624
- "type": {
625
- "text": ""
626
- }
627
- },
628
- "parameters": [
629
- {
630
- "name": "logger",
631
- "type": {
632
- "text": "ErrorMapLogger"
633
- },
634
- "description": "A logger error method reference."
635
- }
636
- ],
637
- "description": "A factory to create the error map.",
638
- "privacy": "public"
639
- }
640
- ],
641
- "exports": [
642
- {
643
- "kind": "js",
644
- "name": "DefaultErrorMap",
645
- "declaration": {
646
- "name": "DefaultErrorMap",
647
- "module": "src/error/errorMap.ts"
648
- }
649
- },
650
- {
651
- "kind": "js",
652
- "name": "createErrorMap",
653
- "declaration": {
654
- "name": "createErrorMap",
655
- "module": "src/error/errorMap.ts"
656
- }
657
- }
658
- ]
659
- },
660
- {
661
- "kind": "javascript-module",
662
- "path": "src/error/index.ts",
663
- "declarations": [],
664
- "exports": [
911
+ }
912
+ },
665
913
  {
666
914
  "kind": "js",
667
- "name": "*",
915
+ "name": "DEFAULT_USER",
668
916
  "declaration": {
669
- "name": "*",
670
- "package": "./errorMap"
917
+ "name": "_DEFAULT_USER",
918
+ "module": "src/env/variables.ts"
671
919
  }
672
920
  }
673
921
  ]
@@ -957,254 +1205,6 @@
957
1205
  }
958
1206
  ]
959
1207
  },
960
- {
961
- "kind": "javascript-module",
962
- "path": "src/data/inMemoryDatabase.ts",
963
- "declarations": [
964
- {
965
- "kind": "class",
966
- "description": "An in memory database of specific DatabaseRecord types.",
967
- "name": "InMemoryDatabase",
968
- "members": [
969
- {
970
- "kind": "field",
971
- "name": "isWorking",
972
- "type": {
973
- "text": "boolean"
974
- },
975
- "privacy": "public",
976
- "default": "false"
977
- },
978
- {
979
- "kind": "field",
980
- "name": "records",
981
- "type": {
982
- "text": "Record<string, T>"
983
- },
984
- "privacy": "private",
985
- "default": "{}"
986
- },
987
- {
988
- "kind": "field",
989
- "name": "beforeUpdateListeners",
990
- "privacy": "private"
991
- },
992
- {
993
- "kind": "field",
994
- "name": "afterUpdateListeners",
995
- "privacy": "private"
996
- },
997
- {
998
- "kind": "method",
999
- "name": "create",
1000
- "privacy": "public",
1001
- "return": {
1002
- "type": {
1003
- "text": "Promise<DatabaseAccessResult.Create<T>>"
1004
- }
1005
- },
1006
- "parameters": [
1007
- {
1008
- "name": "newValue",
1009
- "type": {
1010
- "text": "Omit<T, 'id'>"
1011
- }
1012
- }
1013
- ]
1014
- },
1015
- {
1016
- "kind": "method",
1017
- "name": "read",
1018
- "privacy": "public",
1019
- "return": {
1020
- "type": {
1021
- "text": "Promise<DatabaseAccessResult.Read<T>>"
1022
- }
1023
- },
1024
- "parameters": [
1025
- {
1026
- "name": "id",
1027
- "type": {
1028
- "text": "string"
1029
- }
1030
- }
1031
- ]
1032
- },
1033
- {
1034
- "kind": "method",
1035
- "name": "update",
1036
- "privacy": "public",
1037
- "return": {
1038
- "type": {
1039
- "text": "Promise<DatabaseAccessResult.Update<T>>"
1040
- }
1041
- },
1042
- "parameters": [
1043
- {
1044
- "name": "id",
1045
- "type": {
1046
- "text": "string"
1047
- }
1048
- },
1049
- {
1050
- "name": "newValue",
1051
- "type": {
1052
- "text": "Omit<Partial<T>, 'id'>"
1053
- }
1054
- }
1055
- ]
1056
- },
1057
- {
1058
- "kind": "method",
1059
- "name": "delete",
1060
- "privacy": "public",
1061
- "return": {
1062
- "type": {
1063
- "text": "Promise<DatabaseAccessResult.Delete>"
1064
- }
1065
- },
1066
- "parameters": [
1067
- {
1068
- "name": "id",
1069
- "type": {
1070
- "text": "string"
1071
- }
1072
- }
1073
- ]
1074
- },
1075
- {
1076
- "kind": "method",
1077
- "name": "visit",
1078
- "privacy": "public",
1079
- "return": {
1080
- "type": {
1081
- "text": "Promise<void>"
1082
- }
1083
- },
1084
- "parameters": [
1085
- {
1086
- "name": "visitor",
1087
- "type": {
1088
- "text": "(record: T) => void"
1089
- }
1090
- }
1091
- ]
1092
- },
1093
- {
1094
- "kind": "method",
1095
- "name": "onBeforeUpdate",
1096
- "privacy": "public",
1097
- "return": {
1098
- "type": {
1099
- "text": "() => void"
1100
- }
1101
- },
1102
- "parameters": [
1103
- {
1104
- "name": "listener",
1105
- "type": {
1106
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1107
- }
1108
- }
1109
- ]
1110
- },
1111
- {
1112
- "kind": "method",
1113
- "name": "onAfterUpdate",
1114
- "privacy": "public",
1115
- "return": {
1116
- "type": {
1117
- "text": "() => void"
1118
- }
1119
- },
1120
- "parameters": [
1121
- {
1122
- "name": "listener",
1123
- "type": {
1124
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1125
- }
1126
- }
1127
- ]
1128
- }
1129
- ]
1130
- }
1131
- ],
1132
- "exports": [
1133
- {
1134
- "kind": "js",
1135
- "name": "InMemoryDatabase",
1136
- "declaration": {
1137
- "name": "InMemoryDatabase",
1138
- "module": "src/data/inMemoryDatabase.ts"
1139
- }
1140
- }
1141
- ]
1142
- },
1143
- {
1144
- "kind": "javascript-module",
1145
- "path": "src/data/index.ts",
1146
- "declarations": [],
1147
- "exports": [
1148
- {
1149
- "kind": "js",
1150
- "name": "*",
1151
- "declaration": {
1152
- "name": "*",
1153
- "package": "./inMemoryDatabase"
1154
- }
1155
- }
1156
- ]
1157
- },
1158
- {
1159
- "kind": "javascript-module",
1160
- "path": "src/design-system/design-system.ts",
1161
- "declarations": [
1162
- {
1163
- "kind": "function",
1164
- "name": "assureDesignSystem",
1165
- "return": {
1166
- "type": {
1167
- "text": "DesignSystemModule"
1168
- }
1169
- },
1170
- "parameters": [
1171
- {
1172
- "name": "module",
1173
- "type": {
1174
- "text": "DesignSystemModule"
1175
- }
1176
- }
1177
- ],
1178
- "description": "assureDesignSystem.",
1179
- "privacy": "public"
1180
- }
1181
- ],
1182
- "exports": [
1183
- {
1184
- "kind": "js",
1185
- "name": "assureDesignSystem",
1186
- "declaration": {
1187
- "name": "assureDesignSystem",
1188
- "module": "src/design-system/design-system.ts"
1189
- }
1190
- }
1191
- ]
1192
- },
1193
- {
1194
- "kind": "javascript-module",
1195
- "path": "src/design-system/index.ts",
1196
- "declarations": [],
1197
- "exports": [
1198
- {
1199
- "kind": "js",
1200
- "name": "*",
1201
- "declaration": {
1202
- "name": "*",
1203
- "package": "./design-system"
1204
- }
1205
- }
1206
- ]
1207
- },
1208
1208
  {
1209
1209
  "kind": "javascript-module",
1210
1210
  "path": "src/logger/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.200.0-FUI-2127.3",
4
+ "version": "14.200.0-FUI-2127.4",
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.200.0-FUI-2127.3",
31
- "@genesislcap/genx": "14.200.0-FUI-2127.3",
32
- "@genesislcap/rollup-builder": "14.200.0-FUI-2127.3",
33
- "@genesislcap/ts-builder": "14.200.0-FUI-2127.3",
34
- "@genesislcap/uvu-playwright-builder": "14.200.0-FUI-2127.3",
35
- "@genesislcap/vite-builder": "14.200.0-FUI-2127.3",
36
- "@genesislcap/webpack-builder": "14.200.0-FUI-2127.3",
30
+ "@genesislcap/foundation-testing": "14.200.0-FUI-2127.4",
31
+ "@genesislcap/genx": "14.200.0-FUI-2127.4",
32
+ "@genesislcap/rollup-builder": "14.200.0-FUI-2127.4",
33
+ "@genesislcap/ts-builder": "14.200.0-FUI-2127.4",
34
+ "@genesislcap/uvu-playwright-builder": "14.200.0-FUI-2127.4",
35
+ "@genesislcap/vite-builder": "14.200.0-FUI-2127.4",
36
+ "@genesislcap/webpack-builder": "14.200.0-FUI-2127.4",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.200.0-FUI-2127.3",
40
+ "@genesislcap/foundation-logger": "14.200.0-FUI-2127.4",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "b29e581ae1cc6e2acdaec752de35ddeb6262894d"
58
+ "gitHead": "88c454dc5efe6b735685385e8351136b50878065"
59
59
  }