@skyux/indicators 13.0.0-alpha.9 → 13.0.0-beta.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/index.d.ts
CHANGED
|
@@ -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
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "13.0.0-
|
|
3
|
+
"version": "13.0.0-beta.0",
|
|
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-
|
|
25
|
-
"@skyux/core": "13.0.0-
|
|
26
|
-
"@skyux/help-inline": "13.0.0-
|
|
27
|
-
"@skyux/i18n": "13.0.0-
|
|
28
|
-
"@skyux/icon": "13.0.0-
|
|
29
|
-
"@skyux/theme": "13.0.0-
|
|
24
|
+
"@skyux-sdk/testing": "13.0.0-beta.0",
|
|
25
|
+
"@skyux/core": "13.0.0-beta.0",
|
|
26
|
+
"@skyux/help-inline": "13.0.0-beta.0",
|
|
27
|
+
"@skyux/i18n": "13.0.0-beta.0",
|
|
28
|
+
"@skyux/icon": "13.0.0-beta.0",
|
|
29
|
+
"@skyux/theme": "13.0.0-beta.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependenciesMeta": {
|
|
32
32
|
"@skyux-sdk/testing": {
|