@genesislcap/foundation-utils 14.208.2 → 14.208.3-alpha-92c853eac01c.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +270 -270
  2. package/package.json +10 -10
@@ -167,56 +167,6 @@
167
167
  }
168
168
  ]
169
169
  },
170
- {
171
- "kind": "javascript-module",
172
- "path": "src/design-system/design-system.ts",
173
- "declarations": [
174
- {
175
- "kind": "function",
176
- "name": "assureDesignSystem",
177
- "return": {
178
- "type": {
179
- "text": "DesignSystemModule"
180
- }
181
- },
182
- "parameters": [
183
- {
184
- "name": "module",
185
- "type": {
186
- "text": "DesignSystemModule"
187
- }
188
- }
189
- ],
190
- "description": "assureDesignSystem.",
191
- "privacy": "public"
192
- }
193
- ],
194
- "exports": [
195
- {
196
- "kind": "js",
197
- "name": "assureDesignSystem",
198
- "declaration": {
199
- "name": "assureDesignSystem",
200
- "module": "src/design-system/design-system.ts"
201
- }
202
- }
203
- ]
204
- },
205
- {
206
- "kind": "javascript-module",
207
- "path": "src/design-system/index.ts",
208
- "declarations": [],
209
- "exports": [
210
- {
211
- "kind": "js",
212
- "name": "*",
213
- "declaration": {
214
- "name": "*",
215
- "package": "./design-system"
216
- }
217
- }
218
- ]
219
- },
220
170
  {
221
171
  "kind": "javascript-module",
222
172
  "path": "src/data/inMemoryDatabase.ts",
@@ -386,23 +336,275 @@
386
336
  }
387
337
  ]
388
338
  }
389
- ]
339
+ ]
340
+ }
341
+ ],
342
+ "exports": [
343
+ {
344
+ "kind": "js",
345
+ "name": "InMemoryDatabase",
346
+ "declaration": {
347
+ "name": "InMemoryDatabase",
348
+ "module": "src/data/inMemoryDatabase.ts"
349
+ }
350
+ }
351
+ ]
352
+ },
353
+ {
354
+ "kind": "javascript-module",
355
+ "path": "src/data/index.ts",
356
+ "declarations": [],
357
+ "exports": [
358
+ {
359
+ "kind": "js",
360
+ "name": "*",
361
+ "declaration": {
362
+ "name": "*",
363
+ "package": "./inMemoryDatabase"
364
+ }
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "kind": "javascript-module",
370
+ "path": "src/decorators/index.ts",
371
+ "declarations": [],
372
+ "exports": [
373
+ {
374
+ "kind": "js",
375
+ "name": "*",
376
+ "declaration": {
377
+ "name": "*",
378
+ "package": "./renderOnChange"
379
+ }
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "kind": "javascript-module",
385
+ "path": "src/decorators/renderOnChange.ts",
386
+ "declarations": [
387
+ {
388
+ "kind": "function",
389
+ "name": "renderOnChange",
390
+ "parameters": [
391
+ {
392
+ "name": "target",
393
+ "type": {
394
+ "text": "FASTElement & { render(): void }"
395
+ },
396
+ "description": "The target to define the property change handler on."
397
+ },
398
+ {
399
+ "name": "name",
400
+ "type": {
401
+ "text": "string"
402
+ },
403
+ "description": "The property name."
404
+ }
405
+ ],
406
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
407
+ "privacy": "public"
408
+ }
409
+ ],
410
+ "exports": [
411
+ {
412
+ "kind": "js",
413
+ "name": "renderOnChange",
414
+ "declaration": {
415
+ "name": "renderOnChange",
416
+ "module": "src/decorators/renderOnChange.ts"
417
+ }
418
+ }
419
+ ]
420
+ },
421
+ {
422
+ "kind": "javascript-module",
423
+ "path": "src/error/errorMap.ts",
424
+ "declarations": [
425
+ {
426
+ "kind": "class",
427
+ "description": "",
428
+ "name": "DefaultErrorMap",
429
+ "members": [
430
+ {
431
+ "kind": "field",
432
+ "name": "map",
433
+ "privacy": "private",
434
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
435
+ },
436
+ {
437
+ "kind": "field",
438
+ "name": "lastError",
439
+ "type": {
440
+ "text": "Error"
441
+ },
442
+ "description": "{@inheritDoc ErrorMap.lastError}"
443
+ },
444
+ {
445
+ "kind": "method",
446
+ "name": "set",
447
+ "return": {
448
+ "type": {
449
+ "text": "void"
450
+ }
451
+ },
452
+ "parameters": [
453
+ {
454
+ "name": "key",
455
+ "type": {
456
+ "text": "keyof TErrorDetailMap"
457
+ }
458
+ },
459
+ {
460
+ "name": "error",
461
+ "type": {
462
+ "text": "Error"
463
+ }
464
+ }
465
+ ],
466
+ "description": "{@inheritDoc ErrorMap.set}"
467
+ },
468
+ {
469
+ "kind": "method",
470
+ "name": "get",
471
+ "return": {
472
+ "type": {
473
+ "text": ""
474
+ }
475
+ },
476
+ "parameters": [
477
+ {
478
+ "name": "key",
479
+ "type": {
480
+ "text": "keyof TErrorDetailMap"
481
+ },
482
+ "description": "The key."
483
+ }
484
+ ],
485
+ "description": "Get an error by key.",
486
+ "privacy": "public"
487
+ },
488
+ {
489
+ "kind": "method",
490
+ "name": "has",
491
+ "return": {
492
+ "type": {
493
+ "text": ""
494
+ }
495
+ },
496
+ "parameters": [
497
+ {
498
+ "name": "key",
499
+ "type": {
500
+ "text": "keyof TErrorDetailMap"
501
+ },
502
+ "description": "The key."
503
+ }
504
+ ],
505
+ "description": "Has an error for key.",
506
+ "privacy": "public"
507
+ },
508
+ {
509
+ "kind": "method",
510
+ "name": "delete",
511
+ "return": {
512
+ "type": {
513
+ "text": ""
514
+ }
515
+ },
516
+ "parameters": [
517
+ {
518
+ "name": "key",
519
+ "type": {
520
+ "text": "keyof TErrorDetailMap"
521
+ },
522
+ "description": "The key."
523
+ }
524
+ ],
525
+ "description": "Delete an error.",
526
+ "privacy": "public"
527
+ },
528
+ {
529
+ "kind": "method",
530
+ "name": "clear",
531
+ "description": "Clear errors.",
532
+ "privacy": "public"
533
+ },
534
+ {
535
+ "kind": "field",
536
+ "name": "size",
537
+ "type": {
538
+ "text": "number"
539
+ },
540
+ "description": "The size of the error map.",
541
+ "return": {
542
+ "type": {
543
+ "text": ""
544
+ }
545
+ },
546
+ "privacy": "public",
547
+ "readonly": true
548
+ },
549
+ {
550
+ "kind": "method",
551
+ "name": "values",
552
+ "privacy": "public"
553
+ },
554
+ {
555
+ "kind": "field",
556
+ "name": "messages",
557
+ "type": {
558
+ "text": "string"
559
+ },
560
+ "description": "{@inheritDoc ErrorMap.messages}",
561
+ "readonly": true
562
+ }
563
+ ]
564
+ },
565
+ {
566
+ "kind": "function",
567
+ "name": "createErrorMap",
568
+ "return": {
569
+ "type": {
570
+ "text": ""
571
+ }
572
+ },
573
+ "parameters": [
574
+ {
575
+ "name": "logger",
576
+ "type": {
577
+ "text": "ErrorMapLogger"
578
+ },
579
+ "description": "A logger error method reference."
580
+ }
581
+ ],
582
+ "description": "A factory to create the error map.",
583
+ "privacy": "public"
390
584
  }
391
585
  ],
392
586
  "exports": [
393
587
  {
394
588
  "kind": "js",
395
- "name": "InMemoryDatabase",
589
+ "name": "DefaultErrorMap",
396
590
  "declaration": {
397
- "name": "InMemoryDatabase",
398
- "module": "src/data/inMemoryDatabase.ts"
591
+ "name": "DefaultErrorMap",
592
+ "module": "src/error/errorMap.ts"
593
+ }
594
+ },
595
+ {
596
+ "kind": "js",
597
+ "name": "createErrorMap",
598
+ "declaration": {
599
+ "name": "createErrorMap",
600
+ "module": "src/error/errorMap.ts"
399
601
  }
400
602
  }
401
603
  ]
402
604
  },
403
605
  {
404
606
  "kind": "javascript-module",
405
- "path": "src/data/index.ts",
607
+ "path": "src/error/index.ts",
406
608
  "declarations": [],
407
609
  "exports": [
408
610
  {
@@ -410,7 +612,7 @@
410
612
  "name": "*",
411
613
  "declaration": {
412
614
  "name": "*",
413
- "package": "./inMemoryDatabase"
615
+ "package": "./errorMap"
414
616
  }
415
617
  }
416
618
  ]
@@ -678,206 +880,42 @@
678
880
  },
679
881
  {
680
882
  "kind": "javascript-module",
681
- "path": "src/error/errorMap.ts",
883
+ "path": "src/design-system/design-system.ts",
682
884
  "declarations": [
683
- {
684
- "kind": "class",
685
- "description": "",
686
- "name": "DefaultErrorMap",
687
- "members": [
688
- {
689
- "kind": "field",
690
- "name": "map",
691
- "privacy": "private",
692
- "default": "new Map<keyof TErrorDetailMap, Error>()"
693
- },
694
- {
695
- "kind": "field",
696
- "name": "lastError",
697
- "type": {
698
- "text": "Error"
699
- },
700
- "description": "{@inheritDoc ErrorMap.lastError}"
701
- },
702
- {
703
- "kind": "method",
704
- "name": "set",
705
- "return": {
706
- "type": {
707
- "text": "void"
708
- }
709
- },
710
- "parameters": [
711
- {
712
- "name": "key",
713
- "type": {
714
- "text": "keyof TErrorDetailMap"
715
- }
716
- },
717
- {
718
- "name": "error",
719
- "type": {
720
- "text": "Error"
721
- }
722
- }
723
- ],
724
- "description": "{@inheritDoc ErrorMap.set}"
725
- },
726
- {
727
- "kind": "method",
728
- "name": "get",
729
- "return": {
730
- "type": {
731
- "text": ""
732
- }
733
- },
734
- "parameters": [
735
- {
736
- "name": "key",
737
- "type": {
738
- "text": "keyof TErrorDetailMap"
739
- },
740
- "description": "The key."
741
- }
742
- ],
743
- "description": "Get an error by key.",
744
- "privacy": "public"
745
- },
746
- {
747
- "kind": "method",
748
- "name": "has",
749
- "return": {
750
- "type": {
751
- "text": ""
752
- }
753
- },
754
- "parameters": [
755
- {
756
- "name": "key",
757
- "type": {
758
- "text": "keyof TErrorDetailMap"
759
- },
760
- "description": "The key."
761
- }
762
- ],
763
- "description": "Has an error for key.",
764
- "privacy": "public"
765
- },
766
- {
767
- "kind": "method",
768
- "name": "delete",
769
- "return": {
770
- "type": {
771
- "text": ""
772
- }
773
- },
774
- "parameters": [
775
- {
776
- "name": "key",
777
- "type": {
778
- "text": "keyof TErrorDetailMap"
779
- },
780
- "description": "The key."
781
- }
782
- ],
783
- "description": "Delete an error.",
784
- "privacy": "public"
785
- },
786
- {
787
- "kind": "method",
788
- "name": "clear",
789
- "description": "Clear errors.",
790
- "privacy": "public"
791
- },
792
- {
793
- "kind": "field",
794
- "name": "size",
795
- "type": {
796
- "text": "number"
797
- },
798
- "description": "The size of the error map.",
799
- "return": {
800
- "type": {
801
- "text": ""
802
- }
803
- },
804
- "privacy": "public",
805
- "readonly": true
806
- },
807
- {
808
- "kind": "method",
809
- "name": "values",
810
- "privacy": "public"
811
- },
812
- {
813
- "kind": "field",
814
- "name": "messages",
815
- "type": {
816
- "text": "string"
817
- },
818
- "description": "{@inheritDoc ErrorMap.messages}",
819
- "readonly": true
820
- }
821
- ]
822
- },
823
885
  {
824
886
  "kind": "function",
825
- "name": "createErrorMap",
887
+ "name": "assureDesignSystem",
826
888
  "return": {
827
889
  "type": {
828
- "text": ""
890
+ "text": "DesignSystemModule"
829
891
  }
830
892
  },
831
893
  "parameters": [
832
894
  {
833
- "name": "logger",
895
+ "name": "module",
834
896
  "type": {
835
- "text": "ErrorMapLogger"
836
- },
837
- "description": "A logger error method reference."
897
+ "text": "DesignSystemModule"
898
+ }
838
899
  }
839
900
  ],
840
- "description": "A factory to create the error map.",
901
+ "description": "assureDesignSystem.",
841
902
  "privacy": "public"
842
903
  }
843
904
  ],
844
905
  "exports": [
845
906
  {
846
907
  "kind": "js",
847
- "name": "DefaultErrorMap",
848
- "declaration": {
849
- "name": "DefaultErrorMap",
850
- "module": "src/error/errorMap.ts"
851
- }
852
- },
853
- {
854
- "kind": "js",
855
- "name": "createErrorMap",
856
- "declaration": {
857
- "name": "createErrorMap",
858
- "module": "src/error/errorMap.ts"
859
- }
860
- }
861
- ]
862
- },
863
- {
864
- "kind": "javascript-module",
865
- "path": "src/error/index.ts",
866
- "declarations": [],
867
- "exports": [
868
- {
869
- "kind": "js",
870
- "name": "*",
908
+ "name": "assureDesignSystem",
871
909
  "declaration": {
872
- "name": "*",
873
- "package": "./errorMap"
910
+ "name": "assureDesignSystem",
911
+ "module": "src/design-system/design-system.ts"
874
912
  }
875
913
  }
876
914
  ]
877
915
  },
878
916
  {
879
917
  "kind": "javascript-module",
880
- "path": "src/decorators/index.ts",
918
+ "path": "src/design-system/index.ts",
881
919
  "declarations": [],
882
920
  "exports": [
883
921
  {
@@ -885,45 +923,7 @@
885
923
  "name": "*",
886
924
  "declaration": {
887
925
  "name": "*",
888
- "package": "./renderOnChange"
889
- }
890
- }
891
- ]
892
- },
893
- {
894
- "kind": "javascript-module",
895
- "path": "src/decorators/renderOnChange.ts",
896
- "declarations": [
897
- {
898
- "kind": "function",
899
- "name": "renderOnChange",
900
- "parameters": [
901
- {
902
- "name": "target",
903
- "type": {
904
- "text": "FASTElement & { render(): void }"
905
- },
906
- "description": "The target to define the property change handler on."
907
- },
908
- {
909
- "name": "name",
910
- "type": {
911
- "text": "string"
912
- },
913
- "description": "The property name."
914
- }
915
- ],
916
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
917
- "privacy": "public"
918
- }
919
- ],
920
- "exports": [
921
- {
922
- "kind": "js",
923
- "name": "renderOnChange",
924
- "declaration": {
925
- "name": "renderOnChange",
926
- "module": "src/decorators/renderOnChange.ts"
926
+ "package": "./design-system"
927
927
  }
928
928
  }
929
929
  ]
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.208.2",
4
+ "version": "14.208.3-alpha-92c853eac01c.0",
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.208.2",
31
- "@genesislcap/genx": "14.208.2",
32
- "@genesislcap/rollup-builder": "14.208.2",
33
- "@genesislcap/ts-builder": "14.208.2",
34
- "@genesislcap/uvu-playwright-builder": "14.208.2",
35
- "@genesislcap/vite-builder": "14.208.2",
36
- "@genesislcap/webpack-builder": "14.208.2",
30
+ "@genesislcap/foundation-testing": "14.208.3-alpha-92c853eac01c.0",
31
+ "@genesislcap/genx": "14.208.3-alpha-92c853eac01c.0",
32
+ "@genesislcap/rollup-builder": "14.208.3-alpha-92c853eac01c.0",
33
+ "@genesislcap/ts-builder": "14.208.3-alpha-92c853eac01c.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.208.3-alpha-92c853eac01c.0",
35
+ "@genesislcap/vite-builder": "14.208.3-alpha-92c853eac01c.0",
36
+ "@genesislcap/webpack-builder": "14.208.3-alpha-92c853eac01c.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.208.2",
40
+ "@genesislcap/foundation-logger": "14.208.3-alpha-92c853eac01c.0",
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": "6e8bcdbd7a90cc39adef48f79ae5b073ff38c358"
58
+ "gitHead": "0c255308dce170cfed17ffc99d8d40f4be0ec256"
59
59
  }