@genesislcap/foundation-utils 14.286.0 → 14.287.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 +209 -209
  2. package/package.json +10 -10
@@ -367,59 +367,6 @@
367
367
  }
368
368
  ]
369
369
  },
370
- {
371
- "kind": "javascript-module",
372
- "path": "src/decorators/index.ts",
373
- "declarations": [],
374
- "exports": [
375
- {
376
- "kind": "js",
377
- "name": "*",
378
- "declaration": {
379
- "name": "*",
380
- "package": "./renderOnChange"
381
- }
382
- }
383
- ]
384
- },
385
- {
386
- "kind": "javascript-module",
387
- "path": "src/decorators/renderOnChange.ts",
388
- "declarations": [
389
- {
390
- "kind": "function",
391
- "name": "renderOnChange",
392
- "parameters": [
393
- {
394
- "name": "target",
395
- "type": {
396
- "text": "FASTElement & { render(): void }"
397
- },
398
- "description": "The target to define the property change handler on."
399
- },
400
- {
401
- "name": "name",
402
- "type": {
403
- "text": "string"
404
- },
405
- "description": "The property name."
406
- }
407
- ],
408
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
409
- "privacy": "public"
410
- }
411
- ],
412
- "exports": [
413
- {
414
- "kind": "js",
415
- "name": "renderOnChange",
416
- "declaration": {
417
- "name": "renderOnChange",
418
- "module": "src/decorators/renderOnChange.ts"
419
- }
420
- }
421
- ]
422
- },
423
370
  {
424
371
  "kind": "javascript-module",
425
372
  "path": "src/design-system/design-system.ts",
@@ -507,7 +454,7 @@
507
454
  },
508
455
  {
509
456
  "kind": "javascript-module",
510
- "path": "src/encoding/index.ts",
457
+ "path": "src/decorators/index.ts",
511
458
  "declarations": [],
512
459
  "exports": [
513
460
  {
@@ -515,7 +462,45 @@
515
462
  "name": "*",
516
463
  "declaration": {
517
464
  "name": "*",
518
- "package": "./base64"
465
+ "package": "./renderOnChange"
466
+ }
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "kind": "javascript-module",
472
+ "path": "src/decorators/renderOnChange.ts",
473
+ "declarations": [
474
+ {
475
+ "kind": "function",
476
+ "name": "renderOnChange",
477
+ "parameters": [
478
+ {
479
+ "name": "target",
480
+ "type": {
481
+ "text": "FASTElement & { render(): void }"
482
+ },
483
+ "description": "The target to define the property change handler on."
484
+ },
485
+ {
486
+ "name": "name",
487
+ "type": {
488
+ "text": "string"
489
+ },
490
+ "description": "The property name."
491
+ }
492
+ ],
493
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
494
+ "privacy": "public"
495
+ }
496
+ ],
497
+ "exports": [
498
+ {
499
+ "kind": "js",
500
+ "name": "renderOnChange",
501
+ "declaration": {
502
+ "name": "renderOnChange",
503
+ "module": "src/decorators/renderOnChange.ts"
519
504
  }
520
505
  }
521
506
  ]
@@ -984,6 +969,21 @@
984
969
  }
985
970
  ]
986
971
  },
972
+ {
973
+ "kind": "javascript-module",
974
+ "path": "src/encoding/index.ts",
975
+ "declarations": [],
976
+ "exports": [
977
+ {
978
+ "kind": "js",
979
+ "name": "*",
980
+ "declaration": {
981
+ "name": "*",
982
+ "package": "./base64"
983
+ }
984
+ }
985
+ ]
986
+ },
987
987
  {
988
988
  "kind": "javascript-module",
989
989
  "path": "src/error/errorMap.ts",
@@ -2523,160 +2523,6 @@
2523
2523
  }
2524
2524
  ]
2525
2525
  },
2526
- {
2527
- "kind": "javascript-module",
2528
- "path": "src/encoding/base64/decode.ts",
2529
- "declarations": [
2530
- {
2531
- "kind": "function",
2532
- "name": "decodeFromBase64",
2533
- "return": {
2534
- "type": {
2535
- "text": ""
2536
- }
2537
- },
2538
- "parameters": [
2539
- {
2540
- "name": "base64Value",
2541
- "type": {
2542
- "text": "string"
2543
- }
2544
- },
2545
- {
2546
- "description": "The value to decode from base64.",
2547
- "name": "value"
2548
- }
2549
- ],
2550
- "description": "Decodes a value from base64.",
2551
- "privacy": "public"
2552
- },
2553
- {
2554
- "kind": "function",
2555
- "name": "decodeFromBase64WithPrefix",
2556
- "return": {
2557
- "type": {
2558
- "text": ""
2559
- }
2560
- },
2561
- "parameters": [
2562
- {
2563
- "name": "value",
2564
- "type": {
2565
- "text": "string"
2566
- },
2567
- "description": "The value to decode from base64."
2568
- }
2569
- ],
2570
- "description": "Decodes a value from base64 with a prefix.",
2571
- "privacy": "public"
2572
- }
2573
- ],
2574
- "exports": [
2575
- {
2576
- "kind": "js",
2577
- "name": "decodeFromBase64",
2578
- "declaration": {
2579
- "name": "decodeFromBase64",
2580
- "module": "src/encoding/base64/decode.ts"
2581
- }
2582
- },
2583
- {
2584
- "kind": "js",
2585
- "name": "decodeFromBase64WithPrefix",
2586
- "declaration": {
2587
- "name": "decodeFromBase64WithPrefix",
2588
- "module": "src/encoding/base64/decode.ts"
2589
- }
2590
- }
2591
- ]
2592
- },
2593
- {
2594
- "kind": "javascript-module",
2595
- "path": "src/encoding/base64/encode.ts",
2596
- "declarations": [
2597
- {
2598
- "kind": "function",
2599
- "name": "encodeToBase64",
2600
- "return": {
2601
- "type": {
2602
- "text": ""
2603
- }
2604
- },
2605
- "parameters": [
2606
- {
2607
- "name": "value",
2608
- "type": {
2609
- "text": "string | ArrayBuffer"
2610
- },
2611
- "description": "The value to encode to base64."
2612
- }
2613
- ],
2614
- "description": "Encodes the given value to base64.",
2615
- "privacy": "public"
2616
- },
2617
- {
2618
- "kind": "function",
2619
- "name": "encodeToBase64WithPrefix",
2620
- "return": {
2621
- "type": {
2622
- "text": ""
2623
- }
2624
- },
2625
- "parameters": [
2626
- {
2627
- "name": "value",
2628
- "type": {
2629
- "text": "string | ArrayBuffer"
2630
- },
2631
- "description": "The value to encode to base64."
2632
- }
2633
- ],
2634
- "description": "Encodes the given value with a prefix to base64.",
2635
- "privacy": "public"
2636
- }
2637
- ],
2638
- "exports": [
2639
- {
2640
- "kind": "js",
2641
- "name": "encodeToBase64",
2642
- "declaration": {
2643
- "name": "encodeToBase64",
2644
- "module": "src/encoding/base64/encode.ts"
2645
- }
2646
- },
2647
- {
2648
- "kind": "js",
2649
- "name": "encodeToBase64WithPrefix",
2650
- "declaration": {
2651
- "name": "encodeToBase64WithPrefix",
2652
- "module": "src/encoding/base64/encode.ts"
2653
- }
2654
- }
2655
- ]
2656
- },
2657
- {
2658
- "kind": "javascript-module",
2659
- "path": "src/encoding/base64/index.ts",
2660
- "declarations": [],
2661
- "exports": [
2662
- {
2663
- "kind": "js",
2664
- "name": "*",
2665
- "declaration": {
2666
- "name": "*",
2667
- "package": "./decode"
2668
- }
2669
- },
2670
- {
2671
- "kind": "js",
2672
- "name": "*",
2673
- "declaration": {
2674
- "name": "*",
2675
- "package": "./encode"
2676
- }
2677
- }
2678
- ]
2679
- },
2680
2526
  {
2681
2527
  "kind": "javascript-module",
2682
2528
  "path": "src/directives/sync/index.ts",
@@ -2831,6 +2677,160 @@
2831
2677
  }
2832
2678
  ]
2833
2679
  },
2680
+ {
2681
+ "kind": "javascript-module",
2682
+ "path": "src/encoding/base64/decode.ts",
2683
+ "declarations": [
2684
+ {
2685
+ "kind": "function",
2686
+ "name": "decodeFromBase64",
2687
+ "return": {
2688
+ "type": {
2689
+ "text": ""
2690
+ }
2691
+ },
2692
+ "parameters": [
2693
+ {
2694
+ "name": "base64Value",
2695
+ "type": {
2696
+ "text": "string"
2697
+ }
2698
+ },
2699
+ {
2700
+ "description": "The value to decode from base64.",
2701
+ "name": "value"
2702
+ }
2703
+ ],
2704
+ "description": "Decodes a value from base64.",
2705
+ "privacy": "public"
2706
+ },
2707
+ {
2708
+ "kind": "function",
2709
+ "name": "decodeFromBase64WithPrefix",
2710
+ "return": {
2711
+ "type": {
2712
+ "text": ""
2713
+ }
2714
+ },
2715
+ "parameters": [
2716
+ {
2717
+ "name": "value",
2718
+ "type": {
2719
+ "text": "string"
2720
+ },
2721
+ "description": "The value to decode from base64."
2722
+ }
2723
+ ],
2724
+ "description": "Decodes a value from base64 with a prefix.",
2725
+ "privacy": "public"
2726
+ }
2727
+ ],
2728
+ "exports": [
2729
+ {
2730
+ "kind": "js",
2731
+ "name": "decodeFromBase64",
2732
+ "declaration": {
2733
+ "name": "decodeFromBase64",
2734
+ "module": "src/encoding/base64/decode.ts"
2735
+ }
2736
+ },
2737
+ {
2738
+ "kind": "js",
2739
+ "name": "decodeFromBase64WithPrefix",
2740
+ "declaration": {
2741
+ "name": "decodeFromBase64WithPrefix",
2742
+ "module": "src/encoding/base64/decode.ts"
2743
+ }
2744
+ }
2745
+ ]
2746
+ },
2747
+ {
2748
+ "kind": "javascript-module",
2749
+ "path": "src/encoding/base64/encode.ts",
2750
+ "declarations": [
2751
+ {
2752
+ "kind": "function",
2753
+ "name": "encodeToBase64",
2754
+ "return": {
2755
+ "type": {
2756
+ "text": ""
2757
+ }
2758
+ },
2759
+ "parameters": [
2760
+ {
2761
+ "name": "value",
2762
+ "type": {
2763
+ "text": "string | ArrayBuffer"
2764
+ },
2765
+ "description": "The value to encode to base64."
2766
+ }
2767
+ ],
2768
+ "description": "Encodes the given value to base64.",
2769
+ "privacy": "public"
2770
+ },
2771
+ {
2772
+ "kind": "function",
2773
+ "name": "encodeToBase64WithPrefix",
2774
+ "return": {
2775
+ "type": {
2776
+ "text": ""
2777
+ }
2778
+ },
2779
+ "parameters": [
2780
+ {
2781
+ "name": "value",
2782
+ "type": {
2783
+ "text": "string | ArrayBuffer"
2784
+ },
2785
+ "description": "The value to encode to base64."
2786
+ }
2787
+ ],
2788
+ "description": "Encodes the given value with a prefix to base64.",
2789
+ "privacy": "public"
2790
+ }
2791
+ ],
2792
+ "exports": [
2793
+ {
2794
+ "kind": "js",
2795
+ "name": "encodeToBase64",
2796
+ "declaration": {
2797
+ "name": "encodeToBase64",
2798
+ "module": "src/encoding/base64/encode.ts"
2799
+ }
2800
+ },
2801
+ {
2802
+ "kind": "js",
2803
+ "name": "encodeToBase64WithPrefix",
2804
+ "declaration": {
2805
+ "name": "encodeToBase64WithPrefix",
2806
+ "module": "src/encoding/base64/encode.ts"
2807
+ }
2808
+ }
2809
+ ]
2810
+ },
2811
+ {
2812
+ "kind": "javascript-module",
2813
+ "path": "src/encoding/base64/index.ts",
2814
+ "declarations": [],
2815
+ "exports": [
2816
+ {
2817
+ "kind": "js",
2818
+ "name": "*",
2819
+ "declaration": {
2820
+ "name": "*",
2821
+ "package": "./decode"
2822
+ }
2823
+ },
2824
+ {
2825
+ "kind": "js",
2826
+ "name": "*",
2827
+ "declaration": {
2828
+ "name": "*",
2829
+ "package": "./encode"
2830
+ }
2831
+ }
2832
+ ]
2833
+ },
2834
2834
  {
2835
2835
  "kind": "javascript-module",
2836
2836
  "path": "src/mappers/dto/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.286.0",
4
+ "version": "14.287.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,19 +27,19 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.286.0",
31
- "@genesislcap/genx": "14.286.0",
32
- "@genesislcap/rollup-builder": "14.286.0",
33
- "@genesislcap/ts-builder": "14.286.0",
34
- "@genesislcap/uvu-playwright-builder": "14.286.0",
35
- "@genesislcap/vite-builder": "14.286.0",
36
- "@genesislcap/webpack-builder": "14.286.0",
30
+ "@genesislcap/foundation-testing": "14.287.0",
31
+ "@genesislcap/genx": "14.287.0",
32
+ "@genesislcap/rollup-builder": "14.287.0",
33
+ "@genesislcap/ts-builder": "14.287.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.287.0",
35
+ "@genesislcap/vite-builder": "14.287.0",
36
+ "@genesislcap/webpack-builder": "14.287.0",
37
37
  "@types/json-schema": "^7.0.11",
38
38
  "rimraf": "^5.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "@genesislcap/expression-builder": "14.258.1",
42
- "@genesislcap/foundation-logger": "14.286.0",
42
+ "@genesislcap/foundation-logger": "14.287.0",
43
43
  "@microsoft/fast-components": "2.30.6",
44
44
  "@microsoft/fast-element": "1.14.0",
45
45
  "@microsoft/fast-foundation": "2.49.6",
@@ -57,5 +57,5 @@
57
57
  "access": "public"
58
58
  },
59
59
  "customElements": "dist/custom-elements.json",
60
- "gitHead": "5dcc55742a75e355f98b4ce86c715e681448d7e2"
60
+ "gitHead": "ddf858b052217bd0fa79a50549a730b5b7e9dad9"
61
61
  }