@skyux/indicators 13.0.0-alpha.7 → 13.0.0-alpha.9
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "13.0.0-alpha.
|
|
3
|
+
"version": "13.0.0-alpha.9",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"@angular/common": "^20.0.5",
|
|
22
22
|
"@angular/core": "^20.0.5",
|
|
23
23
|
"@angular/platform-browser": "^20.0.5",
|
|
24
|
-
"@skyux-sdk/testing": "13.0.0-alpha.
|
|
25
|
-
"@skyux/core": "13.0.0-alpha.
|
|
26
|
-
"@skyux/help-inline": "13.0.0-alpha.
|
|
27
|
-
"@skyux/i18n": "13.0.0-alpha.
|
|
28
|
-
"@skyux/icon": "13.0.0-alpha.
|
|
29
|
-
"@skyux/theme": "13.0.0-alpha.
|
|
24
|
+
"@skyux-sdk/testing": "13.0.0-alpha.9",
|
|
25
|
+
"@skyux/core": "13.0.0-alpha.9",
|
|
26
|
+
"@skyux/help-inline": "13.0.0-alpha.9",
|
|
27
|
+
"@skyux/i18n": "13.0.0-alpha.9",
|
|
28
|
+
"@skyux/icon": "13.0.0-alpha.9",
|
|
29
|
+
"@skyux/theme": "13.0.0-alpha.9"
|
|
30
30
|
},
|
|
31
31
|
"peerDependenciesMeta": {
|
|
32
32
|
"@skyux-sdk/testing": {
|
package/testing/index.d.ts
CHANGED
|
@@ -358,7 +358,14 @@ declare class SkyTokensHarness extends SkyComponentHarness {
|
|
|
358
358
|
*/
|
|
359
359
|
dismissTokens(filters?: SkyTokenHarnessFilters): Promise<void>;
|
|
360
360
|
/**
|
|
361
|
-
*
|
|
361
|
+
* Gets a specific token based on the filter criteria.
|
|
362
|
+
* @param filter The filter criteria.
|
|
363
|
+
*/
|
|
364
|
+
getToken(filter: SkyTokenHarnessFilters): Promise<SkyTokenHarness>;
|
|
365
|
+
/**
|
|
366
|
+
* Gets an array of tokens based on the filter criteria.
|
|
367
|
+
* If no filter is provided, returns all tokens.
|
|
368
|
+
* @param filters The optional filter criteria.
|
|
362
369
|
*/
|
|
363
370
|
getTokens(filters?: SkyTokenHarnessFilters): Promise<SkyTokenHarness[]>;
|
|
364
371
|
/**
|