@genesislcap/foundation-utils 14.225.4-alpha-5f6eefd.0 → 14.226.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 +147 -147
  2. package/package.json +10 -10
@@ -420,29 +420,6 @@
420
420
  }
421
421
  ]
422
422
  },
423
- {
424
- "kind": "javascript-module",
425
- "path": "src/directives/index.ts",
426
- "declarations": [],
427
- "exports": [
428
- {
429
- "kind": "js",
430
- "name": "*",
431
- "declaration": {
432
- "name": "*",
433
- "package": "./sync"
434
- }
435
- },
436
- {
437
- "kind": "js",
438
- "name": "*",
439
- "declaration": {
440
- "name": "*",
441
- "package": "./when-else"
442
- }
443
- }
444
- ]
445
- },
446
423
  {
447
424
  "kind": "javascript-module",
448
425
  "path": "src/design-system/design-system.ts",
@@ -493,6 +470,29 @@
493
470
  }
494
471
  ]
495
472
  },
473
+ {
474
+ "kind": "javascript-module",
475
+ "path": "src/directives/index.ts",
476
+ "declarations": [],
477
+ "exports": [
478
+ {
479
+ "kind": "js",
480
+ "name": "*",
481
+ "declaration": {
482
+ "name": "*",
483
+ "package": "./sync"
484
+ }
485
+ },
486
+ {
487
+ "kind": "js",
488
+ "name": "*",
489
+ "declaration": {
490
+ "name": "*",
491
+ "package": "./when-else"
492
+ }
493
+ }
494
+ ]
495
+ },
496
496
  {
497
497
  "kind": "javascript-module",
498
498
  "path": "src/encoding/index.ts",
@@ -2048,6 +2048,43 @@
2048
2048
  }
2049
2049
  ]
2050
2050
  },
2051
+ {
2052
+ "kind": "javascript-module",
2053
+ "path": "src/uuid/index.ts",
2054
+ "declarations": [],
2055
+ "exports": [
2056
+ {
2057
+ "kind": "js",
2058
+ "name": "*",
2059
+ "declaration": {
2060
+ "name": "*",
2061
+ "package": "./uuid"
2062
+ }
2063
+ }
2064
+ ]
2065
+ },
2066
+ {
2067
+ "kind": "javascript-module",
2068
+ "path": "src/uuid/uuid.ts",
2069
+ "declarations": [
2070
+ {
2071
+ "kind": "variable",
2072
+ "name": "UUID",
2073
+ "description": "A dependency injection token for the UUID interface.",
2074
+ "privacy": "public"
2075
+ }
2076
+ ],
2077
+ "exports": [
2078
+ {
2079
+ "kind": "js",
2080
+ "name": "UUID",
2081
+ "declaration": {
2082
+ "name": "UUID",
2083
+ "module": "src/uuid/uuid.ts"
2084
+ }
2085
+ }
2086
+ ]
2087
+ },
2051
2088
  {
2052
2089
  "kind": "javascript-module",
2053
2090
  "path": "src/window/index.ts",
@@ -2196,43 +2233,6 @@
2196
2233
  }
2197
2234
  ]
2198
2235
  },
2199
- {
2200
- "kind": "javascript-module",
2201
- "path": "src/uuid/index.ts",
2202
- "declarations": [],
2203
- "exports": [
2204
- {
2205
- "kind": "js",
2206
- "name": "*",
2207
- "declaration": {
2208
- "name": "*",
2209
- "package": "./uuid"
2210
- }
2211
- }
2212
- ]
2213
- },
2214
- {
2215
- "kind": "javascript-module",
2216
- "path": "src/uuid/uuid.ts",
2217
- "declarations": [
2218
- {
2219
- "kind": "variable",
2220
- "name": "UUID",
2221
- "description": "A dependency injection token for the UUID interface.",
2222
- "privacy": "public"
2223
- }
2224
- ],
2225
- "exports": [
2226
- {
2227
- "kind": "js",
2228
- "name": "UUID",
2229
- "declaration": {
2230
- "name": "UUID",
2231
- "module": "src/uuid/uuid.ts"
2232
- }
2233
- }
2234
- ]
2235
- },
2236
2236
  {
2237
2237
  "kind": "javascript-module",
2238
2238
  "path": "src/directives/sync/index.ts",
@@ -2765,6 +2765,93 @@
2765
2765
  }
2766
2766
  ]
2767
2767
  },
2768
+ {
2769
+ "kind": "javascript-module",
2770
+ "path": "src/mixins/pendingState/index.ts",
2771
+ "declarations": [],
2772
+ "exports": [
2773
+ {
2774
+ "kind": "js",
2775
+ "name": "*",
2776
+ "declaration": {
2777
+ "name": "*",
2778
+ "package": "./pendingState"
2779
+ }
2780
+ }
2781
+ ]
2782
+ },
2783
+ {
2784
+ "kind": "javascript-module",
2785
+ "path": "src/mixins/pendingState/pendingState.ts",
2786
+ "declarations": [
2787
+ {
2788
+ "kind": "mixin",
2789
+ "description": "The `PendingState` mixin.",
2790
+ "name": "PendingState",
2791
+ "members": [
2792
+ {
2793
+ "kind": "field",
2794
+ "name": "pendingCount",
2795
+ "type": {
2796
+ "text": "number"
2797
+ },
2798
+ "privacy": "public",
2799
+ "default": "0",
2800
+ "description": "The number of promises that are currently pending."
2801
+ },
2802
+ {
2803
+ "kind": "field",
2804
+ "name": "resolvedCount",
2805
+ "type": {
2806
+ "text": "number"
2807
+ },
2808
+ "privacy": "public",
2809
+ "default": "0",
2810
+ "description": "The number of promises that have been resolved."
2811
+ },
2812
+ {
2813
+ "kind": "field",
2814
+ "name": "hasPendingChildren",
2815
+ "type": {
2816
+ "text": "boolean"
2817
+ },
2818
+ "privacy": "public",
2819
+ "default": "false",
2820
+ "description": "A boolean indicating whether there are any pending children."
2821
+ },
2822
+ {
2823
+ "kind": "field",
2824
+ "name": "progress",
2825
+ "type": {
2826
+ "text": "number"
2827
+ },
2828
+ "privacy": "public",
2829
+ "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2830
+ "readonly": true
2831
+ }
2832
+ ],
2833
+ "parameters": [
2834
+ {
2835
+ "name": "Base",
2836
+ "type": {
2837
+ "text": "TBase"
2838
+ }
2839
+ }
2840
+ ],
2841
+ "privacy": "public"
2842
+ }
2843
+ ],
2844
+ "exports": [
2845
+ {
2846
+ "kind": "js",
2847
+ "name": "PendingState",
2848
+ "declaration": {
2849
+ "name": "PendingState",
2850
+ "module": "src/mixins/pendingState/pendingState.ts"
2851
+ }
2852
+ }
2853
+ ]
2854
+ },
2768
2855
  {
2769
2856
  "kind": "javascript-module",
2770
2857
  "path": "src/serializers/json/index.ts",
@@ -2991,93 +3078,6 @@
2991
3078
  "path": "src/serializers/json/types.ts",
2992
3079
  "declarations": [],
2993
3080
  "exports": []
2994
- },
2995
- {
2996
- "kind": "javascript-module",
2997
- "path": "src/mixins/pendingState/index.ts",
2998
- "declarations": [],
2999
- "exports": [
3000
- {
3001
- "kind": "js",
3002
- "name": "*",
3003
- "declaration": {
3004
- "name": "*",
3005
- "package": "./pendingState"
3006
- }
3007
- }
3008
- ]
3009
- },
3010
- {
3011
- "kind": "javascript-module",
3012
- "path": "src/mixins/pendingState/pendingState.ts",
3013
- "declarations": [
3014
- {
3015
- "kind": "mixin",
3016
- "description": "The `PendingState` mixin.",
3017
- "name": "PendingState",
3018
- "members": [
3019
- {
3020
- "kind": "field",
3021
- "name": "pendingCount",
3022
- "type": {
3023
- "text": "number"
3024
- },
3025
- "privacy": "public",
3026
- "default": "0",
3027
- "description": "The number of promises that are currently pending."
3028
- },
3029
- {
3030
- "kind": "field",
3031
- "name": "resolvedCount",
3032
- "type": {
3033
- "text": "number"
3034
- },
3035
- "privacy": "public",
3036
- "default": "0",
3037
- "description": "The number of promises that have been resolved."
3038
- },
3039
- {
3040
- "kind": "field",
3041
- "name": "hasPendingChildren",
3042
- "type": {
3043
- "text": "boolean"
3044
- },
3045
- "privacy": "public",
3046
- "default": "false",
3047
- "description": "A boolean indicating whether there are any pending children."
3048
- },
3049
- {
3050
- "kind": "field",
3051
- "name": "progress",
3052
- "type": {
3053
- "text": "number"
3054
- },
3055
- "privacy": "public",
3056
- "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
3057
- "readonly": true
3058
- }
3059
- ],
3060
- "parameters": [
3061
- {
3062
- "name": "Base",
3063
- "type": {
3064
- "text": "TBase"
3065
- }
3066
- }
3067
- ],
3068
- "privacy": "public"
3069
- }
3070
- ],
3071
- "exports": [
3072
- {
3073
- "kind": "js",
3074
- "name": "PendingState",
3075
- "declaration": {
3076
- "name": "PendingState",
3077
- "module": "src/mixins/pendingState/pendingState.ts"
3078
- }
3079
- }
3080
- ]
3081
3081
  }
3082
3082
  ]
3083
3083
  }
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.225.4-alpha-5f6eefd.0",
4
+ "version": "14.226.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.225.4-alpha-5f6eefd.0",
31
- "@genesislcap/genx": "14.225.4-alpha-5f6eefd.0",
32
- "@genesislcap/rollup-builder": "14.225.4-alpha-5f6eefd.0",
33
- "@genesislcap/ts-builder": "14.225.4-alpha-5f6eefd.0",
34
- "@genesislcap/uvu-playwright-builder": "14.225.4-alpha-5f6eefd.0",
35
- "@genesislcap/vite-builder": "14.225.4-alpha-5f6eefd.0",
36
- "@genesislcap/webpack-builder": "14.225.4-alpha-5f6eefd.0",
30
+ "@genesislcap/foundation-testing": "14.226.0",
31
+ "@genesislcap/genx": "14.226.0",
32
+ "@genesislcap/rollup-builder": "14.226.0",
33
+ "@genesislcap/ts-builder": "14.226.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.226.0",
35
+ "@genesislcap/vite-builder": "14.226.0",
36
+ "@genesislcap/webpack-builder": "14.226.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.225.4-alpha-5f6eefd.0",
40
+ "@genesislcap/foundation-logger": "14.226.0",
41
41
  "@microsoft/fast-components": "2.30.6",
42
42
  "@microsoft/fast-element": "1.14.0",
43
43
  "@microsoft/fast-foundation": "2.49.6",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "232162ffe08f1239c9af3c85819c422c4a68db00"
58
+ "gitHead": "92b4d205bf702945dbed4e9c998c4fd000d99e4b"
59
59
  }