@genesislcap/foundation-utils 14.223.0 → 14.223.1-alpha-600a8b9.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 +133 -133
  2. package/package.json +12 -12
@@ -418,6 +418,29 @@
418
418
  }
419
419
  ]
420
420
  },
421
+ {
422
+ "kind": "javascript-module",
423
+ "path": "src/directives/index.ts",
424
+ "declarations": [],
425
+ "exports": [
426
+ {
427
+ "kind": "js",
428
+ "name": "*",
429
+ "declaration": {
430
+ "name": "*",
431
+ "package": "./sync"
432
+ }
433
+ },
434
+ {
435
+ "kind": "js",
436
+ "name": "*",
437
+ "declaration": {
438
+ "name": "*",
439
+ "package": "./when-else"
440
+ }
441
+ }
442
+ ]
443
+ },
421
444
  {
422
445
  "kind": "javascript-module",
423
446
  "path": "src/design-system/design-system.ts",
@@ -468,29 +491,6 @@
468
491
  }
469
492
  ]
470
493
  },
471
- {
472
- "kind": "javascript-module",
473
- "path": "src/directives/index.ts",
474
- "declarations": [],
475
- "exports": [
476
- {
477
- "kind": "js",
478
- "name": "*",
479
- "declaration": {
480
- "name": "*",
481
- "package": "./sync"
482
- }
483
- },
484
- {
485
- "kind": "js",
486
- "name": "*",
487
- "declaration": {
488
- "name": "*",
489
- "package": "./when-else"
490
- }
491
- }
492
- ]
493
- },
494
494
  {
495
495
  "kind": "javascript-module",
496
496
  "path": "src/env/index.ts",
@@ -1314,6 +1314,29 @@
1314
1314
  }
1315
1315
  ]
1316
1316
  },
1317
+ {
1318
+ "kind": "javascript-module",
1319
+ "path": "src/mixins/index.ts",
1320
+ "declarations": [],
1321
+ "exports": [
1322
+ {
1323
+ "kind": "js",
1324
+ "name": "*",
1325
+ "declaration": {
1326
+ "name": "*",
1327
+ "package": "./pendingState"
1328
+ }
1329
+ },
1330
+ {
1331
+ "kind": "js",
1332
+ "name": "*",
1333
+ "declaration": {
1334
+ "name": "*",
1335
+ "package": "./lifecycle"
1336
+ }
1337
+ }
1338
+ ]
1339
+ },
1317
1340
  {
1318
1341
  "kind": "javascript-module",
1319
1342
  "path": "src/observer/index.ts",
@@ -1386,29 +1409,6 @@
1386
1409
  }
1387
1410
  ]
1388
1411
  },
1389
- {
1390
- "kind": "javascript-module",
1391
- "path": "src/mixins/index.ts",
1392
- "declarations": [],
1393
- "exports": [
1394
- {
1395
- "kind": "js",
1396
- "name": "*",
1397
- "declaration": {
1398
- "name": "*",
1399
- "package": "./pendingState"
1400
- }
1401
- },
1402
- {
1403
- "kind": "js",
1404
- "name": "*",
1405
- "declaration": {
1406
- "name": "*",
1407
- "package": "./lifecycle"
1408
- }
1409
- }
1410
- ]
1411
- },
1412
1412
  {
1413
1413
  "kind": "javascript-module",
1414
1414
  "path": "src/promise/index.ts",
@@ -2594,6 +2594,93 @@
2594
2594
  }
2595
2595
  ]
2596
2596
  },
2597
+ {
2598
+ "kind": "javascript-module",
2599
+ "path": "src/mixins/pendingState/index.ts",
2600
+ "declarations": [],
2601
+ "exports": [
2602
+ {
2603
+ "kind": "js",
2604
+ "name": "*",
2605
+ "declaration": {
2606
+ "name": "*",
2607
+ "package": "./pendingState"
2608
+ }
2609
+ }
2610
+ ]
2611
+ },
2612
+ {
2613
+ "kind": "javascript-module",
2614
+ "path": "src/mixins/pendingState/pendingState.ts",
2615
+ "declarations": [
2616
+ {
2617
+ "kind": "mixin",
2618
+ "description": "The `PendingState` mixin.",
2619
+ "name": "PendingState",
2620
+ "members": [
2621
+ {
2622
+ "kind": "field",
2623
+ "name": "pendingCount",
2624
+ "type": {
2625
+ "text": "number"
2626
+ },
2627
+ "privacy": "public",
2628
+ "default": "0",
2629
+ "description": "The number of promises that are currently pending."
2630
+ },
2631
+ {
2632
+ "kind": "field",
2633
+ "name": "resolvedCount",
2634
+ "type": {
2635
+ "text": "number"
2636
+ },
2637
+ "privacy": "public",
2638
+ "default": "0",
2639
+ "description": "The number of promises that have been resolved."
2640
+ },
2641
+ {
2642
+ "kind": "field",
2643
+ "name": "hasPendingChildren",
2644
+ "type": {
2645
+ "text": "boolean"
2646
+ },
2647
+ "privacy": "public",
2648
+ "default": "false",
2649
+ "description": "A boolean indicating whether there are any pending children."
2650
+ },
2651
+ {
2652
+ "kind": "field",
2653
+ "name": "progress",
2654
+ "type": {
2655
+ "text": "number"
2656
+ },
2657
+ "privacy": "public",
2658
+ "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2659
+ "readonly": true
2660
+ }
2661
+ ],
2662
+ "parameters": [
2663
+ {
2664
+ "name": "Base",
2665
+ "type": {
2666
+ "text": "TBase"
2667
+ }
2668
+ }
2669
+ ],
2670
+ "privacy": "public"
2671
+ }
2672
+ ],
2673
+ "exports": [
2674
+ {
2675
+ "kind": "js",
2676
+ "name": "PendingState",
2677
+ "declaration": {
2678
+ "name": "PendingState",
2679
+ "module": "src/mixins/pendingState/pendingState.ts"
2680
+ }
2681
+ }
2682
+ ]
2683
+ },
2597
2684
  {
2598
2685
  "kind": "javascript-module",
2599
2686
  "path": "src/serializers/json/index.ts",
@@ -2820,93 +2907,6 @@
2820
2907
  "path": "src/serializers/json/types.ts",
2821
2908
  "declarations": [],
2822
2909
  "exports": []
2823
- },
2824
- {
2825
- "kind": "javascript-module",
2826
- "path": "src/mixins/pendingState/index.ts",
2827
- "declarations": [],
2828
- "exports": [
2829
- {
2830
- "kind": "js",
2831
- "name": "*",
2832
- "declaration": {
2833
- "name": "*",
2834
- "package": "./pendingState"
2835
- }
2836
- }
2837
- ]
2838
- },
2839
- {
2840
- "kind": "javascript-module",
2841
- "path": "src/mixins/pendingState/pendingState.ts",
2842
- "declarations": [
2843
- {
2844
- "kind": "mixin",
2845
- "description": "The `PendingState` mixin.",
2846
- "name": "PendingState",
2847
- "members": [
2848
- {
2849
- "kind": "field",
2850
- "name": "pendingCount",
2851
- "type": {
2852
- "text": "number"
2853
- },
2854
- "privacy": "public",
2855
- "default": "0",
2856
- "description": "The number of promises that are currently pending."
2857
- },
2858
- {
2859
- "kind": "field",
2860
- "name": "resolvedCount",
2861
- "type": {
2862
- "text": "number"
2863
- },
2864
- "privacy": "public",
2865
- "default": "0",
2866
- "description": "The number of promises that have been resolved."
2867
- },
2868
- {
2869
- "kind": "field",
2870
- "name": "hasPendingChildren",
2871
- "type": {
2872
- "text": "boolean"
2873
- },
2874
- "privacy": "public",
2875
- "default": "false",
2876
- "description": "A boolean indicating whether there are any pending children."
2877
- },
2878
- {
2879
- "kind": "field",
2880
- "name": "progress",
2881
- "type": {
2882
- "text": "number"
2883
- },
2884
- "privacy": "public",
2885
- "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2886
- "readonly": true
2887
- }
2888
- ],
2889
- "parameters": [
2890
- {
2891
- "name": "Base",
2892
- "type": {
2893
- "text": "TBase"
2894
- }
2895
- }
2896
- ],
2897
- "privacy": "public"
2898
- }
2899
- ],
2900
- "exports": [
2901
- {
2902
- "kind": "js",
2903
- "name": "PendingState",
2904
- "declaration": {
2905
- "name": "PendingState",
2906
- "module": "src/mixins/pendingState/pendingState.ts"
2907
- }
2908
- }
2909
- ]
2910
2910
  }
2911
2911
  ]
2912
2912
  }
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.223.0",
4
+ "version": "14.223.1-alpha-600a8b9.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,20 +27,20 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.223.0",
31
- "@genesislcap/genx": "14.223.0",
32
- "@genesislcap/rollup-builder": "14.223.0",
33
- "@genesislcap/ts-builder": "14.223.0",
34
- "@genesislcap/uvu-playwright-builder": "14.223.0",
35
- "@genesislcap/vite-builder": "14.223.0",
36
- "@genesislcap/webpack-builder": "14.223.0",
30
+ "@genesislcap/foundation-testing": "14.223.1-alpha-600a8b9.0",
31
+ "@genesislcap/genx": "14.223.1-alpha-600a8b9.0",
32
+ "@genesislcap/rollup-builder": "14.223.1-alpha-600a8b9.0",
33
+ "@genesislcap/ts-builder": "14.223.1-alpha-600a8b9.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.223.1-alpha-600a8b9.0",
35
+ "@genesislcap/vite-builder": "14.223.1-alpha-600a8b9.0",
36
+ "@genesislcap/webpack-builder": "14.223.1-alpha-600a8b9.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.223.0",
40
+ "@genesislcap/foundation-logger": "14.223.1-alpha-600a8b9.0",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
- "@microsoft/fast-element": "^1.12.0",
43
- "@microsoft/fast-foundation": "2.49.6",
42
+ "@microsoft/fast-element": "1.12.0",
43
+ "@microsoft/fast-foundation": "2.49.5",
44
44
  "lossless-json": "^2.0.11",
45
45
  "numeral": "2.0.6",
46
46
  "tslib": "^2.3.1",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "22b246a956a4063d7337ab506bbdaa43e136ba63"
58
+ "gitHead": "bcb4280835849ef6d18b9e68867ca96d423ec5d4"
59
59
  }