@skyux/indicators 7.1.0 → 7.1.2
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 +346 -177
- package/esm2020/lib/modules/icon/icon-class-list.pipe.mjs +7 -3
- package/esm2020/lib/modules/icon/icon-resolver.service.mjs +9 -6
- package/esm2020/lib/modules/label/label.component.mjs +2 -2
- package/esm2020/lib/modules/tokens/token.component.mjs +1 -1
- package/esm2020/lib/modules/wait/types/wait-blocking-wrap-args.mjs +2 -0
- package/esm2020/lib/modules/wait/types/wait-non-blocking-wrap-args.mjs +2 -0
- package/esm2020/lib/modules/wait/wait.service.mjs +32 -15
- package/esm2020/testing/label-fixture.mjs +11 -7
- package/esm2020/testing/wait-fixture.mjs +14 -10
- package/fesm2015/skyux-indicators-testing.mjs +21 -15
- package/fesm2015/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2015/skyux-indicators.mjs +46 -24
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators-testing.mjs +21 -15
- package/fesm2020/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +46 -24
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/icon/icon-class-list.pipe.d.ts +1 -1
- package/lib/modules/icon/icon-resolver.service.d.ts +1 -1
- package/lib/modules/tokens/token.component.d.ts +1 -1
- package/lib/modules/wait/types/wait-blocking-wrap-args.d.ts +4 -0
- package/lib/modules/wait/types/wait-non-blocking-wrap-args.d.ts +4 -0
- package/lib/modules/wait/wait.service.d.ts +12 -2
- package/package.json +5 -5
- package/testing/label-fixture.d.ts +1 -2
- package/testing/wait-fixture.d.ts +1 -2
|
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
* @internal
|
|
7
7
|
*/
|
|
8
8
|
export declare class SkyIconClassListPipe implements PipeTransform {
|
|
9
|
-
private
|
|
9
|
+
#private;
|
|
10
10
|
constructor(resolver: SkyIconResolverService);
|
|
11
11
|
transform(icon: string, iconType?: string, size?: string, fixedWidth?: boolean, variant?: SkyIconVariantType): string[];
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconClassListPipe, never>;
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
* @internal
|
|
6
6
|
*/
|
|
7
7
|
export declare class SkyIconResolverService {
|
|
8
|
-
private
|
|
8
|
+
#private;
|
|
9
9
|
constructor(manifestSvc: SkyThemeIconManifestService);
|
|
10
10
|
resolveIcon(iconName: string, variant?: SkyIconVariantType): string;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconResolverService, never>;
|
|
@@ -41,7 +41,7 @@ export declare class SkyTokenComponent {
|
|
|
41
41
|
* Fires when users place focus on the token by navigating to it with the `Tab` key.
|
|
42
42
|
*/
|
|
43
43
|
tokenFocus: EventEmitter<void>;
|
|
44
|
-
|
|
44
|
+
actionButtonRef: ElementRef | undefined;
|
|
45
45
|
isFocused: boolean;
|
|
46
46
|
tokenActive: boolean;
|
|
47
47
|
closeActive: boolean;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { ApplicationRef, ComponentFactoryResolver } from '@angular/core';
|
|
2
|
-
import { SkyAppWindowRef } from '@skyux/core';
|
|
2
|
+
import { SkyAppWindowRef, SkyLogService } from '@skyux/core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
+
import { SkyWaitBlockingWrapArgs } from './types/wait-blocking-wrap-args';
|
|
5
|
+
import { SkyWaitNonBlockingWrapArgs } from './types/wait-non-blocking-wrap-args';
|
|
4
6
|
import { SkyWaitPageAdapterService } from './wait-page-adapter.service';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class SkyWaitService {
|
|
7
9
|
#private;
|
|
8
|
-
constructor(resolver: ComponentFactoryResolver, appRef: ApplicationRef, waitAdapter: SkyWaitPageAdapterService, windowSvc: SkyAppWindowRef);
|
|
10
|
+
constructor(resolver: ComponentFactoryResolver, appRef: ApplicationRef, waitAdapter: SkyWaitPageAdapterService, windowSvc: SkyAppWindowRef, logService: SkyLogService);
|
|
9
11
|
/**
|
|
10
12
|
* Starts a blocking page wait on the page.
|
|
11
13
|
*/
|
|
@@ -35,11 +37,19 @@ export declare class SkyWaitService {
|
|
|
35
37
|
/**
|
|
36
38
|
* Launches a page wait and automatically stops when the specific asynchronous event completes.
|
|
37
39
|
*/
|
|
40
|
+
blockingWrap<T>(args: SkyWaitBlockingWrapArgs<T>): Observable<T>;
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated Use the version which takes in `SkyWaitBlockingWrapArgs` instead
|
|
43
|
+
*/
|
|
38
44
|
blockingWrap<T>(observable: Observable<T>): Observable<T>;
|
|
39
45
|
/**
|
|
40
46
|
* Launches a non-blocking page wait and automatically stops when the specific
|
|
41
47
|
* asynchronous event completes.
|
|
42
48
|
*/
|
|
49
|
+
nonBlockingWrap<T>(args: SkyWaitNonBlockingWrapArgs<T>): Observable<T>;
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Use the version which takes in `SkyWaitNonBlockingWrapArgs` instead
|
|
52
|
+
*/
|
|
43
53
|
nonBlockingWrap<T>(observable: Observable<T>): Observable<T>;
|
|
44
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyWaitService, never>;
|
|
45
55
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyWaitService>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.2",
|
|
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.1.
|
|
49
|
-
"@skyux/core": "7.1.
|
|
50
|
-
"@skyux/i18n": "7.1.
|
|
51
|
-
"@skyux/theme": "7.1.
|
|
48
|
+
"@skyux-sdk/testing": "7.1.2",
|
|
49
|
+
"@skyux/core": "7.1.2",
|
|
50
|
+
"@skyux/i18n": "7.1.2",
|
|
51
|
+
"@skyux/theme": "7.1.2"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|
|
@@ -4,6 +4,7 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyLabelFixture {
|
|
7
|
+
#private;
|
|
7
8
|
/**
|
|
8
9
|
* The label's current type.
|
|
9
10
|
*/
|
|
@@ -12,7 +13,5 @@ export declare class SkyLabelFixture {
|
|
|
12
13
|
* The label's current text.
|
|
13
14
|
*/
|
|
14
15
|
get text(): string | undefined;
|
|
15
|
-
private debugEl;
|
|
16
16
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
|
17
|
-
private getLabelEl;
|
|
18
17
|
}
|
|
@@ -3,11 +3,10 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare class SkyWaitFixture {
|
|
6
|
+
#private;
|
|
6
7
|
get isWaiting(): boolean;
|
|
7
8
|
get isFullPage(): boolean;
|
|
8
9
|
get ariaLabel(): string;
|
|
9
10
|
get isNonBlocking(): boolean;
|
|
10
|
-
private debugEl;
|
|
11
11
|
constructor(fixture: ComponentFixture<unknown>, skyTestId: string);
|
|
12
|
-
private innerWaitComponentContainsClass;
|
|
13
12
|
}
|