@skyux/indicators 7.4.2 → 7.5.0
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/documentation.json +49 -11
- package/esm2020/lib/modules/wait/wait-page.component.mjs +3 -3
- package/esm2020/testing/wait/wait-harness-filters.mjs +1 -1
- package/esm2020/testing/wait/wait-harness.mjs +11 -1
- package/fesm2015/skyux-indicators-testing.mjs +10 -0
- package/fesm2015/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2015/skyux-indicators.mjs +2 -2
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators-testing.mjs +10 -0
- package/fesm2020/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +2 -2
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/package.json +5 -5
- package/testing/wait/wait-harness-filters.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"@angular/common": "^14.2.11",
|
|
46
46
|
"@angular/core": "^14.2.11",
|
|
47
47
|
"@angular/platform-browser": "^14.2.11",
|
|
48
|
-
"@skyux-sdk/testing": "7.
|
|
49
|
-
"@skyux/core": "7.
|
|
50
|
-
"@skyux/i18n": "7.
|
|
51
|
-
"@skyux/theme": "7.
|
|
48
|
+
"@skyux-sdk/testing": "7.5.0",
|
|
49
|
+
"@skyux/core": "7.5.0",
|
|
50
|
+
"@skyux/i18n": "7.5.0",
|
|
51
|
+
"@skyux/theme": "7.5.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|
|
@@ -3,4 +3,8 @@ import { SkyHarnessFilters } from '@skyux/core/testing';
|
|
|
3
3
|
* A set of criteria that can be used to filter a list of SkyAlertHarness instances.
|
|
4
4
|
*/
|
|
5
5
|
export interface SkyWaitHarnessFilters extends SkyHarnessFilters {
|
|
6
|
+
/**
|
|
7
|
+
* Only find blocking or non-blocking instances created by the `SkyWaitService`.
|
|
8
|
+
*/
|
|
9
|
+
servicePageWaitType?: 'blocking' | 'non-blocking';
|
|
6
10
|
}
|