@genesislcap/foundation-utils 14.187.0 → 14.187.1-accessibility.1

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 +137 -137
  2. package/package.json +10 -10
@@ -357,6 +357,56 @@
357
357
  }
358
358
  ]
359
359
  },
360
+ {
361
+ "kind": "javascript-module",
362
+ "path": "src/design-system/design-system.ts",
363
+ "declarations": [
364
+ {
365
+ "kind": "function",
366
+ "name": "assureDesignSystem",
367
+ "return": {
368
+ "type": {
369
+ "text": "DesignSystemModule"
370
+ }
371
+ },
372
+ "parameters": [
373
+ {
374
+ "name": "module",
375
+ "type": {
376
+ "text": "DesignSystemModule"
377
+ }
378
+ }
379
+ ],
380
+ "description": "assureDesignSystem.",
381
+ "privacy": "public"
382
+ }
383
+ ],
384
+ "exports": [
385
+ {
386
+ "kind": "js",
387
+ "name": "assureDesignSystem",
388
+ "declaration": {
389
+ "name": "assureDesignSystem",
390
+ "module": "src/design-system/design-system.ts"
391
+ }
392
+ }
393
+ ]
394
+ },
395
+ {
396
+ "kind": "javascript-module",
397
+ "path": "src/design-system/index.ts",
398
+ "declarations": [],
399
+ "exports": [
400
+ {
401
+ "kind": "js",
402
+ "name": "*",
403
+ "declaration": {
404
+ "name": "*",
405
+ "package": "./design-system"
406
+ }
407
+ }
408
+ ]
409
+ },
360
410
  {
361
411
  "kind": "javascript-module",
362
412
  "path": "src/decorators/index.ts",
@@ -410,56 +460,6 @@
410
460
  }
411
461
  ]
412
462
  },
413
- {
414
- "kind": "javascript-module",
415
- "path": "src/design-system/design-system.ts",
416
- "declarations": [
417
- {
418
- "kind": "function",
419
- "name": "assureDesignSystem",
420
- "return": {
421
- "type": {
422
- "text": "DesignSystemModule"
423
- }
424
- },
425
- "parameters": [
426
- {
427
- "name": "module",
428
- "type": {
429
- "text": "DesignSystemModule"
430
- }
431
- }
432
- ],
433
- "description": "assureDesignSystem.",
434
- "privacy": "public"
435
- }
436
- ],
437
- "exports": [
438
- {
439
- "kind": "js",
440
- "name": "assureDesignSystem",
441
- "declaration": {
442
- "name": "assureDesignSystem",
443
- "module": "src/design-system/design-system.ts"
444
- }
445
- }
446
- ]
447
- },
448
- {
449
- "kind": "javascript-module",
450
- "path": "src/design-system/index.ts",
451
- "declarations": [],
452
- "exports": [
453
- {
454
- "kind": "js",
455
- "name": "*",
456
- "declaration": {
457
- "name": "*",
458
- "package": "./design-system"
459
- }
460
- }
461
- ]
462
- },
463
463
  {
464
464
  "kind": "javascript-module",
465
465
  "path": "src/directives/index.ts",
@@ -2496,6 +2496,93 @@
2496
2496
  }
2497
2497
  ]
2498
2498
  },
2499
+ {
2500
+ "kind": "javascript-module",
2501
+ "path": "src/mixins/pendingState/index.ts",
2502
+ "declarations": [],
2503
+ "exports": [
2504
+ {
2505
+ "kind": "js",
2506
+ "name": "*",
2507
+ "declaration": {
2508
+ "name": "*",
2509
+ "package": "./pendingState"
2510
+ }
2511
+ }
2512
+ ]
2513
+ },
2514
+ {
2515
+ "kind": "javascript-module",
2516
+ "path": "src/mixins/pendingState/pendingState.ts",
2517
+ "declarations": [
2518
+ {
2519
+ "kind": "mixin",
2520
+ "description": "The `PendingState` mixin.",
2521
+ "name": "PendingState",
2522
+ "members": [
2523
+ {
2524
+ "kind": "field",
2525
+ "name": "pendingCount",
2526
+ "type": {
2527
+ "text": "number"
2528
+ },
2529
+ "privacy": "public",
2530
+ "default": "0",
2531
+ "description": "The number of promises that are currently pending."
2532
+ },
2533
+ {
2534
+ "kind": "field",
2535
+ "name": "resolvedCount",
2536
+ "type": {
2537
+ "text": "number"
2538
+ },
2539
+ "privacy": "public",
2540
+ "default": "0",
2541
+ "description": "The number of promises that have been resolved."
2542
+ },
2543
+ {
2544
+ "kind": "field",
2545
+ "name": "hasPendingChildren",
2546
+ "type": {
2547
+ "text": "boolean"
2548
+ },
2549
+ "privacy": "public",
2550
+ "default": "false",
2551
+ "description": "A boolean indicating whether there are any pending children."
2552
+ },
2553
+ {
2554
+ "kind": "field",
2555
+ "name": "progress",
2556
+ "type": {
2557
+ "text": "number"
2558
+ },
2559
+ "privacy": "public",
2560
+ "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2561
+ "readonly": true
2562
+ }
2563
+ ],
2564
+ "parameters": [
2565
+ {
2566
+ "name": "Base",
2567
+ "type": {
2568
+ "text": "TBase"
2569
+ }
2570
+ }
2571
+ ],
2572
+ "privacy": "public"
2573
+ }
2574
+ ],
2575
+ "exports": [
2576
+ {
2577
+ "kind": "js",
2578
+ "name": "PendingState",
2579
+ "declaration": {
2580
+ "name": "PendingState",
2581
+ "module": "src/mixins/pendingState/pendingState.ts"
2582
+ }
2583
+ }
2584
+ ]
2585
+ },
2499
2586
  {
2500
2587
  "kind": "javascript-module",
2501
2588
  "path": "src/serializers/json/index.ts",
@@ -2722,93 +2809,6 @@
2722
2809
  "path": "src/serializers/json/types.ts",
2723
2810
  "declarations": [],
2724
2811
  "exports": []
2725
- },
2726
- {
2727
- "kind": "javascript-module",
2728
- "path": "src/mixins/pendingState/index.ts",
2729
- "declarations": [],
2730
- "exports": [
2731
- {
2732
- "kind": "js",
2733
- "name": "*",
2734
- "declaration": {
2735
- "name": "*",
2736
- "package": "./pendingState"
2737
- }
2738
- }
2739
- ]
2740
- },
2741
- {
2742
- "kind": "javascript-module",
2743
- "path": "src/mixins/pendingState/pendingState.ts",
2744
- "declarations": [
2745
- {
2746
- "kind": "mixin",
2747
- "description": "The `PendingState` mixin.",
2748
- "name": "PendingState",
2749
- "members": [
2750
- {
2751
- "kind": "field",
2752
- "name": "pendingCount",
2753
- "type": {
2754
- "text": "number"
2755
- },
2756
- "privacy": "public",
2757
- "default": "0",
2758
- "description": "The number of promises that are currently pending."
2759
- },
2760
- {
2761
- "kind": "field",
2762
- "name": "resolvedCount",
2763
- "type": {
2764
- "text": "number"
2765
- },
2766
- "privacy": "public",
2767
- "default": "0",
2768
- "description": "The number of promises that have been resolved."
2769
- },
2770
- {
2771
- "kind": "field",
2772
- "name": "hasPendingChildren",
2773
- "type": {
2774
- "text": "boolean"
2775
- },
2776
- "privacy": "public",
2777
- "default": "false",
2778
- "description": "A boolean indicating whether there are any pending children."
2779
- },
2780
- {
2781
- "kind": "field",
2782
- "name": "progress",
2783
- "type": {
2784
- "text": "number"
2785
- },
2786
- "privacy": "public",
2787
- "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2788
- "readonly": true
2789
- }
2790
- ],
2791
- "parameters": [
2792
- {
2793
- "name": "Base",
2794
- "type": {
2795
- "text": "TBase"
2796
- }
2797
- }
2798
- ],
2799
- "privacy": "public"
2800
- }
2801
- ],
2802
- "exports": [
2803
- {
2804
- "kind": "js",
2805
- "name": "PendingState",
2806
- "declaration": {
2807
- "name": "PendingState",
2808
- "module": "src/mixins/pendingState/pendingState.ts"
2809
- }
2810
- }
2811
- ]
2812
2812
  }
2813
2813
  ]
2814
2814
  }
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.187.0",
4
+ "version": "14.187.1-accessibility.1",
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.187.0",
31
- "@genesislcap/genx": "14.187.0",
32
- "@genesislcap/rollup-builder": "14.187.0",
33
- "@genesislcap/ts-builder": "14.187.0",
34
- "@genesislcap/uvu-playwright-builder": "14.187.0",
35
- "@genesislcap/vite-builder": "14.187.0",
36
- "@genesislcap/webpack-builder": "14.187.0",
30
+ "@genesislcap/foundation-testing": "14.187.1-accessibility.1",
31
+ "@genesislcap/genx": "14.187.1-accessibility.1",
32
+ "@genesislcap/rollup-builder": "14.187.1-accessibility.1",
33
+ "@genesislcap/ts-builder": "14.187.1-accessibility.1",
34
+ "@genesislcap/uvu-playwright-builder": "14.187.1-accessibility.1",
35
+ "@genesislcap/vite-builder": "14.187.1-accessibility.1",
36
+ "@genesislcap/webpack-builder": "14.187.1-accessibility.1",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.187.0",
40
+ "@genesislcap/foundation-logger": "14.187.1-accessibility.1",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -54,5 +54,5 @@
54
54
  "access": "public"
55
55
  },
56
56
  "customElements": "dist/custom-elements.json",
57
- "gitHead": "a1fbc41e29012ff3bc2c28616ef3908de7e626fe"
57
+ "gitHead": "e798cfd3061012fb058a61b92406bc8f92363e9f"
58
58
  }