@skyux/indicators 13.0.0-alpha.1 → 13.0.0-alpha.11
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/index.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ declare class SkyAlertComponent implements AfterViewChecked, OnInit, OnDestroy {
|
|
|
46
46
|
* Fires when users close the alert.
|
|
47
47
|
*/
|
|
48
48
|
closedChange: EventEmitter<boolean>;
|
|
49
|
-
iconName: string
|
|
49
|
+
iconName: string;
|
|
50
50
|
alertTypeOrDefault: SkyIndicatorIconType;
|
|
51
51
|
descriptionComputed: string | undefined;
|
|
52
52
|
ngOnInit(): void;
|
|
@@ -144,9 +144,14 @@ declare class SkyChevronModule {
|
|
|
144
144
|
*/
|
|
145
145
|
declare abstract class SkyIllustrationResolverService {
|
|
146
146
|
/**
|
|
147
|
-
* Resolves a URL for the specified illustration name
|
|
147
|
+
* Resolves a URL for the specified illustration name to render in an `img`.
|
|
148
148
|
*/
|
|
149
149
|
abstract resolveUrl(name: string): Promise<string>;
|
|
150
|
+
/**
|
|
151
|
+
* Resolves the `href` of the SVG element to reference in `use`.
|
|
152
|
+
* If both an `href` and a URL are resolved, the SVG with `href` will be rendered.
|
|
153
|
+
*/
|
|
154
|
+
resolveHref(name: string): Promise<string>;
|
|
150
155
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyIllustrationResolverService, never>;
|
|
151
156
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyIllustrationResolverService>;
|
|
152
157
|
}
|
|
@@ -169,6 +174,7 @@ declare class SkyIllustrationComponent {
|
|
|
169
174
|
*/
|
|
170
175
|
readonly size: i0.InputSignal<SkyIllustrationSize>;
|
|
171
176
|
protected readonly url: i0.Signal<string | undefined>;
|
|
177
|
+
protected readonly svgHref: i0.Signal<string | undefined>;
|
|
172
178
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyIllustrationComponent, never>;
|
|
173
179
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyIllustrationComponent, "sky-illustration", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
|
|
174
180
|
}
|
|
@@ -256,7 +262,7 @@ declare class SkyLabelComponent implements AfterViewChecked, OnDestroy, OnInit {
|
|
|
256
262
|
set customDescription(value: string | undefined);
|
|
257
263
|
get customDescription(): string | undefined;
|
|
258
264
|
descriptionComputed: string | undefined;
|
|
259
|
-
iconName: string
|
|
265
|
+
iconName: string;
|
|
260
266
|
labelTypeOrDefault: SkyLabelType;
|
|
261
267
|
ngOnInit(): void;
|
|
262
268
|
ngAfterViewChecked(): void;
|
|
@@ -314,7 +320,7 @@ declare class SkyStatusIndicatorComponent implements OnInit {
|
|
|
314
320
|
*/
|
|
315
321
|
helpKey: string | undefined;
|
|
316
322
|
descriptionComputed: string | undefined;
|
|
317
|
-
iconName: string
|
|
323
|
+
iconName: string;
|
|
318
324
|
indicatorTypeOrDefault: SkyIndicatorIconType;
|
|
319
325
|
ngOnInit(): void;
|
|
320
326
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorComponent, never>;
|
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.11",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,12 +21,17 @@
|
|
|
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.11",
|
|
25
|
+
"@skyux/core": "13.0.0-alpha.11",
|
|
26
|
+
"@skyux/help-inline": "13.0.0-alpha.11",
|
|
27
|
+
"@skyux/i18n": "13.0.0-alpha.11",
|
|
28
|
+
"@skyux/icon": "13.0.0-alpha.11",
|
|
29
|
+
"@skyux/theme": "13.0.0-alpha.11"
|
|
30
|
+
},
|
|
31
|
+
"peerDependenciesMeta": {
|
|
32
|
+
"@skyux-sdk/testing": {
|
|
33
|
+
"optional": true
|
|
34
|
+
}
|
|
30
35
|
},
|
|
31
36
|
"dependencies": {
|
|
32
37
|
"tslib": "^2.8.1"
|
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
|
/**
|
|
@@ -441,6 +448,7 @@ declare class SkyAlertFixture {
|
|
|
441
448
|
|
|
442
449
|
/**
|
|
443
450
|
* Allows interaction with a SKY UX label component.
|
|
451
|
+
* @deprecated Use `SkyLabelHarness` instead.
|
|
444
452
|
* @internal
|
|
445
453
|
*/
|
|
446
454
|
declare class SkyLabelFixture {
|
|
@@ -457,6 +465,7 @@ declare class SkyLabelFixture {
|
|
|
457
465
|
}
|
|
458
466
|
|
|
459
467
|
/**
|
|
468
|
+
* @deprecated Use `SkyWaitHarness` instead.
|
|
460
469
|
* @internal
|
|
461
470
|
*/
|
|
462
471
|
declare class SkyWaitFixture {
|