@genesislcap/foundation-utils 14.194.1 → 14.194.2

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 +464 -464
  2. package/package.json +10 -10
@@ -161,30 +161,205 @@
161
161
  },
162
162
  {
163
163
  "kind": "javascript-module",
164
- "path": "src/directives/index.ts",
165
- "declarations": [],
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
+ ],
166
334
  "exports": [
167
335
  {
168
336
  "kind": "js",
169
- "name": "*",
337
+ "name": "InMemoryDatabase",
170
338
  "declaration": {
171
- "name": "*",
172
- "package": "./sync"
339
+ "name": "InMemoryDatabase",
340
+ "module": "src/data/inMemoryDatabase.ts"
173
341
  }
174
- },
342
+ }
343
+ ]
344
+ },
345
+ {
346
+ "kind": "javascript-module",
347
+ "path": "src/data/index.ts",
348
+ "declarations": [],
349
+ "exports": [
175
350
  {
176
351
  "kind": "js",
177
352
  "name": "*",
178
353
  "declaration": {
179
354
  "name": "*",
180
- "package": "./when-else"
355
+ "package": "./inMemoryDatabase"
181
356
  }
182
357
  }
183
358
  ]
184
359
  },
185
360
  {
186
361
  "kind": "javascript-module",
187
- "path": "src/env/index.ts",
362
+ "path": "src/directives/index.ts",
188
363
  "declarations": [],
189
364
  "exports": [
190
365
  {
@@ -192,7 +367,7 @@
192
367
  "name": "*",
193
368
  "declaration": {
194
369
  "name": "*",
195
- "package": "./is-dev"
370
+ "package": "./sync"
196
371
  }
197
372
  },
198
373
  {
@@ -200,58 +375,184 @@
200
375
  "name": "*",
201
376
  "declaration": {
202
377
  "name": "*",
203
- "package": "./variables"
378
+ "package": "./when-else"
204
379
  }
205
380
  }
206
381
  ]
207
382
  },
208
383
  {
209
384
  "kind": "javascript-module",
210
- "path": "src/env/is-dev.ts",
385
+ "path": "src/design-system/design-system.ts",
211
386
  "declarations": [
212
387
  {
213
388
  "kind": "function",
214
- "name": "isDev",
215
- "description": "Determines if the current environment is a development environment.",
389
+ "name": "assureDesignSystem",
390
+ "return": {
391
+ "type": {
392
+ "text": "DesignSystemModule"
393
+ }
394
+ },
395
+ "parameters": [
396
+ {
397
+ "name": "module",
398
+ "type": {
399
+ "text": "DesignSystemModule"
400
+ }
401
+ }
402
+ ],
403
+ "description": "assureDesignSystem.",
216
404
  "privacy": "public"
217
405
  }
218
406
  ],
219
407
  "exports": [
220
408
  {
221
409
  "kind": "js",
222
- "name": "isDev",
410
+ "name": "assureDesignSystem",
223
411
  "declaration": {
224
- "name": "isDev",
225
- "module": "src/env/is-dev.ts"
412
+ "name": "assureDesignSystem",
413
+ "module": "src/design-system/design-system.ts"
226
414
  }
227
415
  }
228
416
  ]
229
417
  },
230
418
  {
231
419
  "kind": "javascript-module",
232
- "path": "src/env/variables.ts",
233
- "declarations": [
420
+ "path": "src/design-system/index.ts",
421
+ "declarations": [],
422
+ "exports": [
234
423
  {
235
- "kind": "variable",
236
- "name": "SOCKET_EXT",
237
- "type": {
238
- "text": "string"
424
+ "kind": "js",
425
+ "name": "*",
426
+ "declaration": {
427
+ "name": "*",
428
+ "package": "./design-system"
239
429
  }
240
- },
241
- {
242
- "kind": "variable",
243
- "name": "_SOCKET_EXT",
244
- "type": {
245
- "text": "string"
246
- },
247
- "default": "'gwf'",
248
- "description": "The sub-path used for WebSocket connections when API_HOST is not set",
249
- "privacy": "public"
250
- },
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "kind": "javascript-module",
435
+ "path": "src/decorators/index.ts",
436
+ "declarations": [],
437
+ "exports": [
251
438
  {
252
- "kind": "variable",
253
- "name": "FORCE_HTTP",
254
- "type": {
439
+ "kind": "js",
440
+ "name": "*",
441
+ "declaration": {
442
+ "name": "*",
443
+ "package": "./renderOnChange"
444
+ }
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "kind": "javascript-module",
450
+ "path": "src/decorators/renderOnChange.ts",
451
+ "declarations": [
452
+ {
453
+ "kind": "function",
454
+ "name": "renderOnChange",
455
+ "parameters": [
456
+ {
457
+ "name": "target",
458
+ "type": {
459
+ "text": "FASTElement & { render(): void }"
460
+ },
461
+ "description": "The target to define the property change handler on."
462
+ },
463
+ {
464
+ "name": "name",
465
+ "type": {
466
+ "text": "string"
467
+ },
468
+ "description": "The property name."
469
+ }
470
+ ],
471
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
472
+ "privacy": "public"
473
+ }
474
+ ],
475
+ "exports": [
476
+ {
477
+ "kind": "js",
478
+ "name": "renderOnChange",
479
+ "declaration": {
480
+ "name": "renderOnChange",
481
+ "module": "src/decorators/renderOnChange.ts"
482
+ }
483
+ }
484
+ ]
485
+ },
486
+ {
487
+ "kind": "javascript-module",
488
+ "path": "src/env/index.ts",
489
+ "declarations": [],
490
+ "exports": [
491
+ {
492
+ "kind": "js",
493
+ "name": "*",
494
+ "declaration": {
495
+ "name": "*",
496
+ "package": "./is-dev"
497
+ }
498
+ },
499
+ {
500
+ "kind": "js",
501
+ "name": "*",
502
+ "declaration": {
503
+ "name": "*",
504
+ "package": "./variables"
505
+ }
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "kind": "javascript-module",
511
+ "path": "src/env/is-dev.ts",
512
+ "declarations": [
513
+ {
514
+ "kind": "function",
515
+ "name": "isDev",
516
+ "description": "Determines if the current environment is a development environment.",
517
+ "privacy": "public"
518
+ }
519
+ ],
520
+ "exports": [
521
+ {
522
+ "kind": "js",
523
+ "name": "isDev",
524
+ "declaration": {
525
+ "name": "isDev",
526
+ "module": "src/env/is-dev.ts"
527
+ }
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "kind": "javascript-module",
533
+ "path": "src/env/variables.ts",
534
+ "declarations": [
535
+ {
536
+ "kind": "variable",
537
+ "name": "SOCKET_EXT",
538
+ "type": {
539
+ "text": "string"
540
+ }
541
+ },
542
+ {
543
+ "kind": "variable",
544
+ "name": "_SOCKET_EXT",
545
+ "type": {
546
+ "text": "string"
547
+ },
548
+ "default": "'gwf'",
549
+ "description": "The sub-path used for WebSocket connections when API_HOST is not set",
550
+ "privacy": "public"
551
+ },
552
+ {
553
+ "kind": "variable",
554
+ "name": "FORCE_HTTP",
555
+ "type": {
255
556
  "text": "string"
256
557
  }
257
558
  },
@@ -420,56 +721,6 @@
420
721
  }
421
722
  ]
422
723
  },
423
- {
424
- "kind": "javascript-module",
425
- "path": "src/design-system/design-system.ts",
426
- "declarations": [
427
- {
428
- "kind": "function",
429
- "name": "assureDesignSystem",
430
- "return": {
431
- "type": {
432
- "text": "DesignSystemModule"
433
- }
434
- },
435
- "parameters": [
436
- {
437
- "name": "module",
438
- "type": {
439
- "text": "DesignSystemModule"
440
- }
441
- }
442
- ],
443
- "description": "assureDesignSystem.",
444
- "privacy": "public"
445
- }
446
- ],
447
- "exports": [
448
- {
449
- "kind": "js",
450
- "name": "assureDesignSystem",
451
- "declaration": {
452
- "name": "assureDesignSystem",
453
- "module": "src/design-system/design-system.ts"
454
- }
455
- }
456
- ]
457
- },
458
- {
459
- "kind": "javascript-module",
460
- "path": "src/design-system/index.ts",
461
- "declarations": [],
462
- "exports": [
463
- {
464
- "kind": "js",
465
- "name": "*",
466
- "declaration": {
467
- "name": "*",
468
- "package": "./design-system"
469
- }
470
- }
471
- ]
472
- },
473
724
  {
474
725
  "kind": "javascript-module",
475
726
  "path": "src/error/errorMap.ts",
@@ -495,381 +746,168 @@
495
746
  },
496
747
  {
497
748
  "kind": "method",
498
- "name": "set",
499
- "return": {
500
- "type": {
501
- "text": "void"
502
- }
503
- },
504
- "parameters": [
505
- {
506
- "name": "key",
507
- "type": {
508
- "text": "keyof TErrorDetailMap"
509
- }
510
- },
511
- {
512
- "name": "error",
513
- "type": {
514
- "text": "Error"
515
- }
516
- }
517
- ],
518
- "description": "{@inheritDoc ErrorMap.set}"
519
- },
520
- {
521
- "kind": "method",
522
- "name": "get",
523
- "return": {
524
- "type": {
525
- "text": ""
526
- }
527
- },
528
- "parameters": [
529
- {
530
- "name": "key",
531
- "type": {
532
- "text": "keyof TErrorDetailMap"
533
- },
534
- "description": "The key."
535
- }
536
- ],
537
- "description": "Get an error by key.",
538
- "privacy": "public"
539
- },
540
- {
541
- "kind": "method",
542
- "name": "has",
543
- "return": {
544
- "type": {
545
- "text": ""
546
- }
547
- },
548
- "parameters": [
549
- {
550
- "name": "key",
551
- "type": {
552
- "text": "keyof TErrorDetailMap"
553
- },
554
- "description": "The key."
555
- }
556
- ],
557
- "description": "Has an error for key.",
558
- "privacy": "public"
559
- },
560
- {
561
- "kind": "method",
562
- "name": "delete",
563
- "return": {
564
- "type": {
565
- "text": ""
566
- }
567
- },
568
- "parameters": [
569
- {
570
- "name": "key",
571
- "type": {
572
- "text": "keyof TErrorDetailMap"
573
- },
574
- "description": "The key."
575
- }
576
- ],
577
- "description": "Delete an error.",
578
- "privacy": "public"
579
- },
580
- {
581
- "kind": "method",
582
- "name": "clear",
583
- "description": "Clear errors.",
584
- "privacy": "public"
585
- },
586
- {
587
- "kind": "field",
588
- "name": "size",
589
- "type": {
590
- "text": "number"
591
- },
592
- "description": "The size of the error map.",
593
- "return": {
594
- "type": {
595
- "text": ""
596
- }
597
- },
598
- "privacy": "public",
599
- "readonly": true
600
- },
601
- {
602
- "kind": "method",
603
- "name": "values",
604
- "privacy": "public"
605
- },
606
- {
607
- "kind": "field",
608
- "name": "messages",
609
- "type": {
610
- "text": "string"
611
- },
612
- "description": "{@inheritDoc ErrorMap.messages}",
613
- "readonly": true
614
- }
615
- ]
616
- },
617
- {
618
- "kind": "function",
619
- "name": "createErrorMap",
620
- "return": {
621
- "type": {
622
- "text": ""
623
- }
624
- },
625
- "parameters": [
626
- {
627
- "name": "logger",
628
- "type": {
629
- "text": "ErrorMapLogger"
630
- },
631
- "description": "A logger error method reference."
632
- }
633
- ],
634
- "description": "A factory to create the error map.",
635
- "privacy": "public"
636
- }
637
- ],
638
- "exports": [
639
- {
640
- "kind": "js",
641
- "name": "DefaultErrorMap",
642
- "declaration": {
643
- "name": "DefaultErrorMap",
644
- "module": "src/error/errorMap.ts"
645
- }
646
- },
647
- {
648
- "kind": "js",
649
- "name": "createErrorMap",
650
- "declaration": {
651
- "name": "createErrorMap",
652
- "module": "src/error/errorMap.ts"
653
- }
654
- }
655
- ]
656
- },
657
- {
658
- "kind": "javascript-module",
659
- "path": "src/error/index.ts",
660
- "declarations": [],
661
- "exports": [
662
- {
663
- "kind": "js",
664
- "name": "*",
665
- "declaration": {
666
- "name": "*",
667
- "package": "./errorMap"
668
- }
669
- }
670
- ]
671
- },
672
- {
673
- "kind": "javascript-module",
674
- "path": "src/data/inMemoryDatabase.ts",
675
- "declarations": [
676
- {
677
- "kind": "class",
678
- "description": "An in memory database of specific DatabaseRecord types.",
679
- "name": "InMemoryDatabase",
680
- "members": [
681
- {
682
- "kind": "field",
683
- "name": "isWorking",
684
- "type": {
685
- "text": "boolean"
686
- },
687
- "privacy": "public",
688
- "default": "false"
689
- },
690
- {
691
- "kind": "field",
692
- "name": "records",
693
- "type": {
694
- "text": "Record<string, T>"
695
- },
696
- "privacy": "private",
697
- "default": "{}"
698
- },
699
- {
700
- "kind": "field",
701
- "name": "beforeUpdateListeners",
702
- "privacy": "private"
703
- },
704
- {
705
- "kind": "field",
706
- "name": "afterUpdateListeners",
707
- "privacy": "private"
708
- },
709
- {
710
- "kind": "method",
711
- "name": "create",
712
- "privacy": "public",
713
- "return": {
714
- "type": {
715
- "text": "Promise<DatabaseAccessResult.Create<T>>"
716
- }
717
- },
718
- "parameters": [
719
- {
720
- "name": "newValue",
721
- "type": {
722
- "text": "Omit<T, 'id'>"
723
- }
724
- }
725
- ]
726
- },
727
- {
728
- "kind": "method",
729
- "name": "read",
730
- "privacy": "public",
731
- "return": {
732
- "type": {
733
- "text": "Promise<DatabaseAccessResult.Read<T>>"
734
- }
735
- },
736
- "parameters": [
737
- {
738
- "name": "id",
739
- "type": {
740
- "text": "string"
741
- }
742
- }
743
- ]
744
- },
745
- {
746
- "kind": "method",
747
- "name": "update",
748
- "privacy": "public",
749
+ "name": "set",
749
750
  "return": {
750
751
  "type": {
751
- "text": "Promise<DatabaseAccessResult.Update<T>>"
752
+ "text": "void"
752
753
  }
753
754
  },
754
755
  "parameters": [
755
756
  {
756
- "name": "id",
757
+ "name": "key",
757
758
  "type": {
758
- "text": "string"
759
+ "text": "keyof TErrorDetailMap"
759
760
  }
760
761
  },
761
762
  {
762
- "name": "newValue",
763
+ "name": "error",
763
764
  "type": {
764
- "text": "Omit<Partial<T>, 'id'>"
765
+ "text": "Error"
765
766
  }
766
767
  }
767
- ]
768
+ ],
769
+ "description": "{@inheritDoc ErrorMap.set}"
768
770
  },
769
771
  {
770
772
  "kind": "method",
771
- "name": "delete",
772
- "privacy": "public",
773
+ "name": "get",
773
774
  "return": {
774
775
  "type": {
775
- "text": "Promise<DatabaseAccessResult.Delete>"
776
+ "text": ""
776
777
  }
777
778
  },
778
779
  "parameters": [
779
780
  {
780
- "name": "id",
781
+ "name": "key",
781
782
  "type": {
782
- "text": "string"
783
- }
783
+ "text": "keyof TErrorDetailMap"
784
+ },
785
+ "description": "The key."
784
786
  }
785
- ]
787
+ ],
788
+ "description": "Get an error by key.",
789
+ "privacy": "public"
786
790
  },
787
791
  {
788
792
  "kind": "method",
789
- "name": "visit",
790
- "privacy": "public",
793
+ "name": "has",
791
794
  "return": {
792
795
  "type": {
793
- "text": "Promise<void>"
796
+ "text": ""
794
797
  }
795
798
  },
796
799
  "parameters": [
797
800
  {
798
- "name": "visitor",
801
+ "name": "key",
799
802
  "type": {
800
- "text": "(record: T) => void"
801
- }
803
+ "text": "keyof TErrorDetailMap"
804
+ },
805
+ "description": "The key."
802
806
  }
803
- ]
807
+ ],
808
+ "description": "Has an error for key.",
809
+ "privacy": "public"
804
810
  },
805
811
  {
806
812
  "kind": "method",
807
- "name": "onBeforeUpdate",
808
- "privacy": "public",
813
+ "name": "delete",
809
814
  "return": {
810
815
  "type": {
811
- "text": "() => void"
816
+ "text": ""
812
817
  }
813
818
  },
814
819
  "parameters": [
815
820
  {
816
- "name": "listener",
821
+ "name": "key",
817
822
  "type": {
818
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
819
- }
823
+ "text": "keyof TErrorDetailMap"
824
+ },
825
+ "description": "The key."
820
826
  }
821
- ]
827
+ ],
828
+ "description": "Delete an error.",
829
+ "privacy": "public"
822
830
  },
823
831
  {
824
832
  "kind": "method",
825
- "name": "onAfterUpdate",
826
- "privacy": "public",
833
+ "name": "clear",
834
+ "description": "Clear errors.",
835
+ "privacy": "public"
836
+ },
837
+ {
838
+ "kind": "field",
839
+ "name": "size",
840
+ "type": {
841
+ "text": "number"
842
+ },
843
+ "description": "The size of the error map.",
827
844
  "return": {
828
845
  "type": {
829
- "text": "() => void"
846
+ "text": ""
830
847
  }
831
848
  },
832
- "parameters": [
833
- {
834
- "name": "listener",
835
- "type": {
836
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
837
- }
838
- }
839
- ]
849
+ "privacy": "public",
850
+ "readonly": true
851
+ },
852
+ {
853
+ "kind": "method",
854
+ "name": "values",
855
+ "privacy": "public"
856
+ },
857
+ {
858
+ "kind": "field",
859
+ "name": "messages",
860
+ "type": {
861
+ "text": "string"
862
+ },
863
+ "description": "{@inheritDoc ErrorMap.messages}",
864
+ "readonly": true
840
865
  }
841
866
  ]
867
+ },
868
+ {
869
+ "kind": "function",
870
+ "name": "createErrorMap",
871
+ "return": {
872
+ "type": {
873
+ "text": ""
874
+ }
875
+ },
876
+ "parameters": [
877
+ {
878
+ "name": "logger",
879
+ "type": {
880
+ "text": "ErrorMapLogger"
881
+ },
882
+ "description": "A logger error method reference."
883
+ }
884
+ ],
885
+ "description": "A factory to create the error map.",
886
+ "privacy": "public"
842
887
  }
843
888
  ],
844
889
  "exports": [
845
890
  {
846
891
  "kind": "js",
847
- "name": "InMemoryDatabase",
892
+ "name": "DefaultErrorMap",
848
893
  "declaration": {
849
- "name": "InMemoryDatabase",
850
- "module": "src/data/inMemoryDatabase.ts"
894
+ "name": "DefaultErrorMap",
895
+ "module": "src/error/errorMap.ts"
851
896
  }
852
- }
853
- ]
854
- },
855
- {
856
- "kind": "javascript-module",
857
- "path": "src/data/index.ts",
858
- "declarations": [],
859
- "exports": [
897
+ },
860
898
  {
861
899
  "kind": "js",
862
- "name": "*",
900
+ "name": "createErrorMap",
863
901
  "declaration": {
864
- "name": "*",
865
- "package": "./inMemoryDatabase"
902
+ "name": "createErrorMap",
903
+ "module": "src/error/errorMap.ts"
866
904
  }
867
905
  }
868
906
  ]
869
907
  },
870
908
  {
871
909
  "kind": "javascript-module",
872
- "path": "src/decorators/index.ts",
910
+ "path": "src/error/index.ts",
873
911
  "declarations": [],
874
912
  "exports": [
875
913
  {
@@ -877,45 +915,7 @@
877
915
  "name": "*",
878
916
  "declaration": {
879
917
  "name": "*",
880
- "package": "./renderOnChange"
881
- }
882
- }
883
- ]
884
- },
885
- {
886
- "kind": "javascript-module",
887
- "path": "src/decorators/renderOnChange.ts",
888
- "declarations": [
889
- {
890
- "kind": "function",
891
- "name": "renderOnChange",
892
- "parameters": [
893
- {
894
- "name": "target",
895
- "type": {
896
- "text": "FASTElement & { render(): void }"
897
- },
898
- "description": "The target to define the property change handler on."
899
- },
900
- {
901
- "name": "name",
902
- "type": {
903
- "text": "string"
904
- },
905
- "description": "The property name."
906
- }
907
- ],
908
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
909
- "privacy": "public"
910
- }
911
- ],
912
- "exports": [
913
- {
914
- "kind": "js",
915
- "name": "renderOnChange",
916
- "declaration": {
917
- "name": "renderOnChange",
918
- "module": "src/decorators/renderOnChange.ts"
918
+ "package": "./errorMap"
919
919
  }
920
920
  }
921
921
  ]
@@ -1566,6 +1566,41 @@
1566
1566
  }
1567
1567
  ]
1568
1568
  },
1569
+ {
1570
+ "kind": "javascript-module",
1571
+ "path": "src/utils/index.ts",
1572
+ "declarations": [],
1573
+ "exports": [
1574
+ {
1575
+ "kind": "js",
1576
+ "name": "*",
1577
+ "declaration": {
1578
+ "name": "*",
1579
+ "package": "./logger"
1580
+ }
1581
+ }
1582
+ ]
1583
+ },
1584
+ {
1585
+ "kind": "javascript-module",
1586
+ "path": "src/utils/logger.ts",
1587
+ "declarations": [
1588
+ {
1589
+ "kind": "variable",
1590
+ "name": "logger"
1591
+ }
1592
+ ],
1593
+ "exports": [
1594
+ {
1595
+ "kind": "js",
1596
+ "name": "logger",
1597
+ "declaration": {
1598
+ "name": "logger",
1599
+ "module": "src/utils/logger.ts"
1600
+ }
1601
+ }
1602
+ ]
1603
+ },
1569
1604
  {
1570
1605
  "kind": "javascript-module",
1571
1606
  "path": "src/styles/color.ts",
@@ -1913,41 +1948,6 @@
1913
1948
  }
1914
1949
  ]
1915
1950
  },
1916
- {
1917
- "kind": "javascript-module",
1918
- "path": "src/utils/index.ts",
1919
- "declarations": [],
1920
- "exports": [
1921
- {
1922
- "kind": "js",
1923
- "name": "*",
1924
- "declaration": {
1925
- "name": "*",
1926
- "package": "./logger"
1927
- }
1928
- }
1929
- ]
1930
- },
1931
- {
1932
- "kind": "javascript-module",
1933
- "path": "src/utils/logger.ts",
1934
- "declarations": [
1935
- {
1936
- "kind": "variable",
1937
- "name": "logger"
1938
- }
1939
- ],
1940
- "exports": [
1941
- {
1942
- "kind": "js",
1943
- "name": "logger",
1944
- "declaration": {
1945
- "name": "logger",
1946
- "module": "src/utils/logger.ts"
1947
- }
1948
- }
1949
- ]
1950
- },
1951
1951
  {
1952
1952
  "kind": "javascript-module",
1953
1953
  "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.194.1",
4
+ "version": "14.194.2",
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.194.1",
31
- "@genesislcap/genx": "14.194.1",
32
- "@genesislcap/rollup-builder": "14.194.1",
33
- "@genesislcap/ts-builder": "14.194.1",
34
- "@genesislcap/uvu-playwright-builder": "14.194.1",
35
- "@genesislcap/vite-builder": "14.194.1",
36
- "@genesislcap/webpack-builder": "14.194.1",
30
+ "@genesislcap/foundation-testing": "14.194.2",
31
+ "@genesislcap/genx": "14.194.2",
32
+ "@genesislcap/rollup-builder": "14.194.2",
33
+ "@genesislcap/ts-builder": "14.194.2",
34
+ "@genesislcap/uvu-playwright-builder": "14.194.2",
35
+ "@genesislcap/vite-builder": "14.194.2",
36
+ "@genesislcap/webpack-builder": "14.194.2",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.194.1",
40
+ "@genesislcap/foundation-logger": "14.194.2",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -54,5 +54,5 @@
54
54
  "access": "public"
55
55
  },
56
56
  "customElements": "dist/custom-elements.json",
57
- "gitHead": "fd89966869cd72af9e24ef5692e41ff8235f7136"
57
+ "gitHead": "494ed2d34f92870a01e5b4bdcf4cde9ef064a229"
58
58
  }