@skyux/core 12.0.0-alpha.6 → 12.0.0-alpha.7
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 +1247 -1247
- package/fesm2022/skyux-core.mjs +54 -4
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/layout-host/layout-host.directive.d.ts +11 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -37,6 +37,7 @@ export { SkyHelpUpdateArgs } from './lib/modules/help/help-update-args';
|
|
37
37
|
export { SkyHelpService } from './lib/modules/help/help.service';
|
38
38
|
export { SkyIdModule } from './lib/modules/id/id.module';
|
39
39
|
export { SkyIdService } from './lib/modules/id/id.service';
|
40
|
+
export { SkyLayoutHostDirective } from './lib/modules/layout-host/layout-host.directive';
|
40
41
|
export { SkyLayoutHostForChildArgs } from './lib/modules/layout-host/layout-host-for-child-args';
|
41
42
|
export { SkyLayoutHostService } from './lib/modules/layout-host/layout-host.service';
|
42
43
|
export { SkyLiveAnnouncerService } from './lib/modules/live-announcer/live-announcer.service';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
/**
|
3
|
+
* @internal
|
4
|
+
*/
|
5
|
+
export declare class SkyLayoutHostDirective<T = 'none' | 'fit'> {
|
6
|
+
#private;
|
7
|
+
readonly layout: import("@angular/core").InputSignal<T | undefined>;
|
8
|
+
constructor();
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyLayoutHostDirective<any>, never>;
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SkyLayoutHostDirective<any>, "[skyLayoutHost]", never, { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
11
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "12.0.0-alpha.
|
3
|
+
"version": "12.0.0-alpha.7",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -37,7 +37,7 @@
|
|
37
37
|
"@angular/core": "^19.0.5",
|
38
38
|
"@angular/platform-browser": "^19.0.5",
|
39
39
|
"@angular/router": "^19.0.5",
|
40
|
-
"@skyux/i18n": "12.0.0-alpha.
|
40
|
+
"@skyux/i18n": "12.0.0-alpha.7"
|
41
41
|
},
|
42
42
|
"dependencies": {
|
43
43
|
"tslib": "^2.8.1"
|