@skyux/core 12.0.0-alpha.5 → 12.0.0-alpha.6

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.
@@ -5,4 +5,8 @@ import { SkyLiveAnnouncerPoliteness } from './live-announcer-politeness';
5
5
  */
6
6
  export interface SkyLiveAnnouncerArgs {
7
7
  politeness?: SkyLiveAnnouncerPoliteness;
8
+ /**
9
+ * Sets how long the live announcer text persists in DOM.
10
+ */
11
+ duration?: number;
8
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "12.0.0-alpha.5",
3
+ "version": "12.0.0-alpha.6",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -37,7 +37,7 @@
37
37
  "@angular/core": "^19.0.5",
38
38
  "@angular/platform-browser": "^19.0.5",
39
39
  "@angular/router": "^19.0.5",
40
- "@skyux/i18n": "12.0.0-alpha.5"
40
+ "@skyux/i18n": "12.0.0-alpha.6"
41
41
  },
42
42
  "dependencies": {
43
43
  "tslib": "^2.8.1"
@@ -1,7 +1,6 @@
1
1
  import { BaseHarnessFilters } from '@angular/cdk/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyComponentHarness` instances.
4
- * @internal
5
4
  */
6
5
  export interface SkyHarnessFilters extends BaseHarnessFilters {
7
6
  /**
@@ -1,7 +1,6 @@
1
1
  import { ComponentHarness } from '@angular/cdk/testing';
2
2
  /**
3
3
  * Harness used to interact with native input elements in tests.
4
- * @internal
5
4
  */
6
5
  export declare class SkyInputHarness extends ComponentHarness {
7
6
  /**