@genesislcap/foundation-utils 14.180.7 → 14.181.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 +250 -250
  2. package/package.json +10 -10
@@ -359,30 +359,7 @@
359
359
  },
360
360
  {
361
361
  "kind": "javascript-module",
362
- "path": "src/directives/index.ts",
363
- "declarations": [],
364
- "exports": [
365
- {
366
- "kind": "js",
367
- "name": "*",
368
- "declaration": {
369
- "name": "*",
370
- "package": "./sync"
371
- }
372
- },
373
- {
374
- "kind": "js",
375
- "name": "*",
376
- "declaration": {
377
- "name": "*",
378
- "package": "./when-else"
379
- }
380
- }
381
- ]
382
- },
383
- {
384
- "kind": "javascript-module",
385
- "path": "src/env/index.ts",
362
+ "path": "src/decorators/index.ts",
386
363
  "declarations": [],
387
364
  "exports": [
388
365
  {
@@ -390,215 +367,118 @@
390
367
  "name": "*",
391
368
  "declaration": {
392
369
  "name": "*",
393
- "package": "./is-dev"
394
- }
395
- },
396
- {
397
- "kind": "js",
398
- "name": "*",
399
- "declaration": {
400
- "name": "*",
401
- "package": "./variables"
370
+ "package": "./renderOnChange"
402
371
  }
403
372
  }
404
373
  ]
405
374
  },
406
375
  {
407
376
  "kind": "javascript-module",
408
- "path": "src/env/is-dev.ts",
377
+ "path": "src/decorators/renderOnChange.ts",
409
378
  "declarations": [
410
379
  {
411
380
  "kind": "function",
412
- "name": "isDev",
413
- "description": "Determines if the current environment is a development environment.",
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.",
414
399
  "privacy": "public"
415
400
  }
416
401
  ],
417
402
  "exports": [
418
403
  {
419
404
  "kind": "js",
420
- "name": "isDev",
405
+ "name": "renderOnChange",
421
406
  "declaration": {
422
- "name": "isDev",
423
- "module": "src/env/is-dev.ts"
407
+ "name": "renderOnChange",
408
+ "module": "src/decorators/renderOnChange.ts"
424
409
  }
425
410
  }
426
411
  ]
427
412
  },
428
413
  {
429
414
  "kind": "javascript-module",
430
- "path": "src/env/variables.ts",
415
+ "path": "src/design-system/design-system.ts",
431
416
  "declarations": [
432
417
  {
433
- "kind": "variable",
434
- "name": "SOCKET_EXT",
435
- "type": {
436
- "text": "string"
437
- }
438
- },
439
- {
440
- "kind": "variable",
441
- "name": "_SOCKET_EXT",
442
- "type": {
443
- "text": "string"
444
- },
445
- "default": "'gwf'",
446
- "description": "The sub-path used for WebSocket connections when API_HOST is not set",
447
- "privacy": "public"
448
- },
449
- {
450
- "kind": "variable",
451
- "name": "FORCE_HTTP",
452
- "type": {
453
- "text": "string"
454
- }
455
- },
456
- {
457
- "kind": "variable",
458
- "name": "_FORCE_HTTP",
459
- "type": {
460
- "text": "string"
461
- },
462
- "description": "The path to a JSON config file for the HTTP mode.",
463
- "privacy": "public"
464
- },
465
- {
466
- "kind": "variable",
467
- "name": "API_HOST",
468
- "type": {
469
- "text": "string"
470
- }
471
- },
472
- {
473
- "kind": "variable",
474
- "name": "_API_HOST",
475
- "type": {
476
- "text": "string"
477
- },
478
- "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
479
- "description": "The Genesis Server URL (WebSocket or HTTP).",
480
- "privacy": "public"
481
- },
482
- {
483
- "kind": "variable",
484
- "name": "HTTP_CONFIG",
485
- "type": {
486
- "text": "string"
487
- }
488
- },
489
- {
490
- "kind": "variable",
491
- "name": "_HTTP_CONFIG",
492
- "type": {
493
- "text": "string"
494
- },
495
- "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
496
- "privacy": "public"
497
- },
498
- {
499
- "kind": "variable",
500
- "name": "DEFAULT_ORGANISATION",
501
- "type": {
502
- "text": "string"
503
- }
504
- },
505
- {
506
- "kind": "variable",
507
- "name": "_DEFAULT_ORGANISATION",
508
- "type": {
509
- "text": "string"
510
- },
511
- "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
512
- "privacy": "public"
513
- },
514
- {
515
- "kind": "variable",
516
- "name": "DEFAULT_PASSWORD",
517
- "type": {
518
- "text": "string"
519
- }
520
- },
521
- {
522
- "kind": "variable",
523
- "name": "_DEFAULT_PASSWORD",
524
- "type": {
525
- "text": "string"
526
- },
527
- "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
528
- "privacy": "public"
529
- },
530
- {
531
- "kind": "variable",
532
- "name": "DEFAULT_USER",
533
- "type": {
534
- "text": "string"
535
- }
536
- },
537
- {
538
- "kind": "variable",
539
- "name": "_DEFAULT_USER",
540
- "type": {
541
- "text": "string"
418
+ "kind": "function",
419
+ "name": "assureDesignSystem",
420
+ "return": {
421
+ "type": {
422
+ "text": "DesignSystemModule"
423
+ }
542
424
  },
543
- "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
425
+ "parameters": [
426
+ {
427
+ "name": "module",
428
+ "type": {
429
+ "text": "DesignSystemModule"
430
+ }
431
+ }
432
+ ],
433
+ "description": "assureDesignSystem.",
544
434
  "privacy": "public"
545
435
  }
546
436
  ],
547
437
  "exports": [
548
438
  {
549
439
  "kind": "js",
550
- "name": "SOCKET_EXT",
551
- "declaration": {
552
- "name": "_SOCKET_EXT",
553
- "module": "src/env/variables.ts"
554
- }
555
- },
556
- {
557
- "kind": "js",
558
- "name": "FORCE_HTTP",
559
- "declaration": {
560
- "name": "_FORCE_HTTP",
561
- "module": "src/env/variables.ts"
562
- }
563
- },
564
- {
565
- "kind": "js",
566
- "name": "API_HOST",
567
- "declaration": {
568
- "name": "_API_HOST",
569
- "module": "src/env/variables.ts"
570
- }
571
- },
572
- {
573
- "kind": "js",
574
- "name": "HTTP_CONFIG",
440
+ "name": "assureDesignSystem",
575
441
  "declaration": {
576
- "name": "_HTTP_CONFIG",
577
- "module": "src/env/variables.ts"
442
+ "name": "assureDesignSystem",
443
+ "module": "src/design-system/design-system.ts"
578
444
  }
579
- },
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "kind": "javascript-module",
450
+ "path": "src/design-system/index.ts",
451
+ "declarations": [],
452
+ "exports": [
580
453
  {
581
454
  "kind": "js",
582
- "name": "DEFAULT_ORGANISATION",
455
+ "name": "*",
583
456
  "declaration": {
584
- "name": "_DEFAULT_ORGANISATION",
585
- "module": "src/env/variables.ts"
457
+ "name": "*",
458
+ "package": "./design-system"
586
459
  }
587
- },
460
+ }
461
+ ]
462
+ },
463
+ {
464
+ "kind": "javascript-module",
465
+ "path": "src/directives/index.ts",
466
+ "declarations": [],
467
+ "exports": [
588
468
  {
589
469
  "kind": "js",
590
- "name": "DEFAULT_PASSWORD",
470
+ "name": "*",
591
471
  "declaration": {
592
- "name": "_DEFAULT_PASSWORD",
593
- "module": "src/env/variables.ts"
472
+ "name": "*",
473
+ "package": "./sync"
594
474
  }
595
475
  },
596
476
  {
597
477
  "kind": "js",
598
- "name": "DEFAULT_USER",
478
+ "name": "*",
599
479
  "declaration": {
600
- "name": "_DEFAULT_USER",
601
- "module": "src/env/variables.ts"
480
+ "name": "*",
481
+ "package": "./when-else"
602
482
  }
603
483
  }
604
484
  ]
@@ -804,103 +684,223 @@
804
684
  },
805
685
  {
806
686
  "kind": "javascript-module",
807
- "path": "src/design-system/design-system.ts",
808
- "declarations": [
809
- {
810
- "kind": "function",
811
- "name": "assureDesignSystem",
812
- "return": {
813
- "type": {
814
- "text": "DesignSystemModule"
815
- }
816
- },
817
- "parameters": [
818
- {
819
- "name": "module",
820
- "type": {
821
- "text": "DesignSystemModule"
822
- }
823
- }
824
- ],
825
- "description": "assureDesignSystem.",
826
- "privacy": "public"
827
- }
828
- ],
687
+ "path": "src/env/index.ts",
688
+ "declarations": [],
829
689
  "exports": [
830
690
  {
831
691
  "kind": "js",
832
- "name": "assureDesignSystem",
692
+ "name": "*",
833
693
  "declaration": {
834
- "name": "assureDesignSystem",
835
- "module": "src/design-system/design-system.ts"
694
+ "name": "*",
695
+ "package": "./is-dev"
836
696
  }
837
- }
838
- ]
839
- },
840
- {
841
- "kind": "javascript-module",
842
- "path": "src/design-system/index.ts",
843
- "declarations": [],
844
- "exports": [
697
+ },
845
698
  {
846
699
  "kind": "js",
847
700
  "name": "*",
848
701
  "declaration": {
849
702
  "name": "*",
850
- "package": "./design-system"
703
+ "package": "./variables"
851
704
  }
852
705
  }
853
706
  ]
854
707
  },
855
708
  {
856
709
  "kind": "javascript-module",
857
- "path": "src/decorators/index.ts",
858
- "declarations": [],
710
+ "path": "src/env/is-dev.ts",
711
+ "declarations": [
712
+ {
713
+ "kind": "function",
714
+ "name": "isDev",
715
+ "description": "Determines if the current environment is a development environment.",
716
+ "privacy": "public"
717
+ }
718
+ ],
859
719
  "exports": [
860
720
  {
861
721
  "kind": "js",
862
- "name": "*",
722
+ "name": "isDev",
863
723
  "declaration": {
864
- "name": "*",
865
- "package": "./renderOnChange"
724
+ "name": "isDev",
725
+ "module": "src/env/is-dev.ts"
866
726
  }
867
727
  }
868
728
  ]
869
729
  },
870
730
  {
871
731
  "kind": "javascript-module",
872
- "path": "src/decorators/renderOnChange.ts",
732
+ "path": "src/env/variables.ts",
873
733
  "declarations": [
874
734
  {
875
- "kind": "function",
876
- "name": "renderOnChange",
877
- "parameters": [
878
- {
879
- "name": "target",
880
- "type": {
881
- "text": "FASTElement & { render(): void }"
882
- },
883
- "description": "The target to define the property change handler on."
884
- },
885
- {
886
- "name": "name",
887
- "type": {
888
- "text": "string"
889
- },
890
- "description": "The property name."
891
- }
892
- ],
893
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
735
+ "kind": "variable",
736
+ "name": "SOCKET_EXT",
737
+ "type": {
738
+ "text": "string"
739
+ }
740
+ },
741
+ {
742
+ "kind": "variable",
743
+ "name": "_SOCKET_EXT",
744
+ "type": {
745
+ "text": "string"
746
+ },
747
+ "default": "'gwf'",
748
+ "description": "The sub-path used for WebSocket connections when API_HOST is not set",
749
+ "privacy": "public"
750
+ },
751
+ {
752
+ "kind": "variable",
753
+ "name": "FORCE_HTTP",
754
+ "type": {
755
+ "text": "string"
756
+ }
757
+ },
758
+ {
759
+ "kind": "variable",
760
+ "name": "_FORCE_HTTP",
761
+ "type": {
762
+ "text": "string"
763
+ },
764
+ "description": "The path to a JSON config file for the HTTP mode.",
765
+ "privacy": "public"
766
+ },
767
+ {
768
+ "kind": "variable",
769
+ "name": "API_HOST",
770
+ "type": {
771
+ "text": "string"
772
+ }
773
+ },
774
+ {
775
+ "kind": "variable",
776
+ "name": "_API_HOST",
777
+ "type": {
778
+ "text": "string"
779
+ },
780
+ "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
781
+ "description": "The Genesis Server URL (WebSocket or HTTP).",
782
+ "privacy": "public"
783
+ },
784
+ {
785
+ "kind": "variable",
786
+ "name": "HTTP_CONFIG",
787
+ "type": {
788
+ "text": "string"
789
+ }
790
+ },
791
+ {
792
+ "kind": "variable",
793
+ "name": "_HTTP_CONFIG",
794
+ "type": {
795
+ "text": "string"
796
+ },
797
+ "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
798
+ "privacy": "public"
799
+ },
800
+ {
801
+ "kind": "variable",
802
+ "name": "DEFAULT_ORGANISATION",
803
+ "type": {
804
+ "text": "string"
805
+ }
806
+ },
807
+ {
808
+ "kind": "variable",
809
+ "name": "_DEFAULT_ORGANISATION",
810
+ "type": {
811
+ "text": "string"
812
+ },
813
+ "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
814
+ "privacy": "public"
815
+ },
816
+ {
817
+ "kind": "variable",
818
+ "name": "DEFAULT_PASSWORD",
819
+ "type": {
820
+ "text": "string"
821
+ }
822
+ },
823
+ {
824
+ "kind": "variable",
825
+ "name": "_DEFAULT_PASSWORD",
826
+ "type": {
827
+ "text": "string"
828
+ },
829
+ "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
830
+ "privacy": "public"
831
+ },
832
+ {
833
+ "kind": "variable",
834
+ "name": "DEFAULT_USER",
835
+ "type": {
836
+ "text": "string"
837
+ }
838
+ },
839
+ {
840
+ "kind": "variable",
841
+ "name": "_DEFAULT_USER",
842
+ "type": {
843
+ "text": "string"
844
+ },
845
+ "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
894
846
  "privacy": "public"
895
847
  }
896
848
  ],
897
849
  "exports": [
898
850
  {
899
851
  "kind": "js",
900
- "name": "renderOnChange",
852
+ "name": "SOCKET_EXT",
901
853
  "declaration": {
902
- "name": "renderOnChange",
903
- "module": "src/decorators/renderOnChange.ts"
854
+ "name": "_SOCKET_EXT",
855
+ "module": "src/env/variables.ts"
856
+ }
857
+ },
858
+ {
859
+ "kind": "js",
860
+ "name": "FORCE_HTTP",
861
+ "declaration": {
862
+ "name": "_FORCE_HTTP",
863
+ "module": "src/env/variables.ts"
864
+ }
865
+ },
866
+ {
867
+ "kind": "js",
868
+ "name": "API_HOST",
869
+ "declaration": {
870
+ "name": "_API_HOST",
871
+ "module": "src/env/variables.ts"
872
+ }
873
+ },
874
+ {
875
+ "kind": "js",
876
+ "name": "HTTP_CONFIG",
877
+ "declaration": {
878
+ "name": "_HTTP_CONFIG",
879
+ "module": "src/env/variables.ts"
880
+ }
881
+ },
882
+ {
883
+ "kind": "js",
884
+ "name": "DEFAULT_ORGANISATION",
885
+ "declaration": {
886
+ "name": "_DEFAULT_ORGANISATION",
887
+ "module": "src/env/variables.ts"
888
+ }
889
+ },
890
+ {
891
+ "kind": "js",
892
+ "name": "DEFAULT_PASSWORD",
893
+ "declaration": {
894
+ "name": "_DEFAULT_PASSWORD",
895
+ "module": "src/env/variables.ts"
896
+ }
897
+ },
898
+ {
899
+ "kind": "js",
900
+ "name": "DEFAULT_USER",
901
+ "declaration": {
902
+ "name": "_DEFAULT_USER",
903
+ "module": "src/env/variables.ts"
904
904
  }
905
905
  }
906
906
  ]
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.180.7",
4
+ "version": "14.181.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,17 +19,17 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.180.7",
23
- "@genesislcap/genx": "14.180.7",
24
- "@genesislcap/rollup-builder": "14.180.7",
25
- "@genesislcap/ts-builder": "14.180.7",
26
- "@genesislcap/uvu-playwright-builder": "14.180.7",
27
- "@genesislcap/vite-builder": "14.180.7",
28
- "@genesislcap/webpack-builder": "14.180.7",
22
+ "@genesislcap/foundation-testing": "14.181.0",
23
+ "@genesislcap/genx": "14.181.0",
24
+ "@genesislcap/rollup-builder": "14.181.0",
25
+ "@genesislcap/ts-builder": "14.181.0",
26
+ "@genesislcap/uvu-playwright-builder": "14.181.0",
27
+ "@genesislcap/vite-builder": "14.181.0",
28
+ "@genesislcap/webpack-builder": "14.181.0",
29
29
  "rimraf": "^3.0.2"
30
30
  },
31
31
  "dependencies": {
32
- "@genesislcap/foundation-logger": "14.180.7",
32
+ "@genesislcap/foundation-logger": "14.181.0",
33
33
  "@microsoft/fast-components": "^2.30.6",
34
34
  "@microsoft/fast-element": "^1.12.0",
35
35
  "@microsoft/fast-foundation": "^2.49.4",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "customElements": "dist/custom-elements.json",
50
- "gitHead": "f3ae410371b27f3841816a79862a2f952bf6740d"
50
+ "gitHead": "0f2f5f3767deedba68f85942c0617c64f829589f"
51
51
  }