@skyux/core 12.0.0-alpha.0 → 12.0.0-alpha.10
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 +2644 -1983
- package/fesm2022/skyux-core-testing.mjs +26 -27
- package/fesm2022/skyux-core-testing.mjs.map +1 -1
- package/fesm2022/skyux-core.mjs +295 -195
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/content-info-provider/content-info-provider.d.ts +3 -0
- package/lib/modules/dock/dock.module.d.ts +1 -0
- package/lib/modules/dock/dock.service.d.ts +0 -2
- package/lib/modules/layout-host/layout-host.directive.d.ts +11 -0
- package/lib/modules/live-announcer/types/live-announcer-args.d.ts +4 -0
- package/lib/modules/overlay/overlay.module.d.ts +1 -0
- package/lib/modules/viewkeeper/viewkeeper-host-options.d.ts +1 -0
- package/lib/modules/viewkeeper/viewkeeper-options.d.ts +4 -0
- package/package.json +7 -7
- package/testing/modules/overlay/overlay-harness-filters.d.ts +2 -2
- package/testing/shared/harness-filters.d.ts +0 -1
- package/testing/shared/input-harness.d.ts +0 -1
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';
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import { SkyContentInfo } from './content-info';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
/**
|
4
5
|
* @internal
|
5
6
|
* An API to provide information about a parent component's content to child components.
|
@@ -11,4 +12,6 @@ export declare class SkyContentInfoProvider {
|
|
11
12
|
#private;
|
12
13
|
patchInfo(value: SkyContentInfo): void;
|
13
14
|
getInfo(): Observable<SkyContentInfo>;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyContentInfoProvider, never>;
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkyContentInfoProvider>;
|
14
17
|
}
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { Type } from '@angular/core';
|
2
|
-
import { SkyDynamicComponentService } from '../dynamic-component/dynamic-component.service';
|
3
2
|
import { SkyDockInsertComponentConfig } from './dock-insert-component-config';
|
4
3
|
import { SkyDockItem } from './dock-item';
|
5
4
|
import { SkyDockOptions } from './dock-options';
|
@@ -15,7 +14,6 @@ export declare class SkyDockService {
|
|
15
14
|
* Returns all docked items.
|
16
15
|
*/
|
17
16
|
get items(): SkyDockItem<any>[];
|
18
|
-
constructor(dynamicComponentSvc: SkyDynamicComponentService);
|
19
17
|
/**
|
20
18
|
* Docks a component to the bottom of the page.
|
21
19
|
* @param component The component to dock.
|
@@ -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
|
+
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
/**
|
3
3
|
* @deprecated The `SkyOverlayModule` is no longer needed and can be removed from your application.
|
4
|
+
* @internal
|
4
5
|
*/
|
5
6
|
export declare class SkyOverlayModule {
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyOverlayModule, never>;
|
@@ -8,6 +8,7 @@ export declare class SkyViewkeeperHostOptions implements SkyViewkeeperOptions {
|
|
8
8
|
verticalOffset?: number;
|
9
9
|
verticalOffsetEl?: HTMLElement;
|
10
10
|
viewportMarginTop?: number;
|
11
|
+
viewportMarginProperty?: `--${string}`;
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyViewkeeperHostOptions, never>;
|
12
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyViewkeeperHostOptions>;
|
13
14
|
}
|
@@ -38,4 +38,8 @@ export interface SkyViewkeeperOptions {
|
|
38
38
|
* Reserved space in pixels at the top of the viewport.
|
39
39
|
*/
|
40
40
|
viewportMarginTop?: number;
|
41
|
+
/**
|
42
|
+
* Custom CSS property for reserved space at the top of the viewport.
|
43
|
+
*/
|
44
|
+
viewportMarginProperty?: `--${string}`;
|
41
45
|
}
|
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.10",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -32,12 +32,12 @@
|
|
32
32
|
}
|
33
33
|
},
|
34
34
|
"peerDependencies": {
|
35
|
-
"@angular/cdk": "^19.
|
36
|
-
"@angular/common": "^19.
|
37
|
-
"@angular/core": "^19.
|
38
|
-
"@angular/platform-browser": "^19.
|
39
|
-
"@angular/router": "^19.
|
40
|
-
"@skyux/i18n": "12.0.0-alpha.
|
35
|
+
"@angular/cdk": "^19.2.2",
|
36
|
+
"@angular/common": "^19.2.1",
|
37
|
+
"@angular/core": "^19.2.1",
|
38
|
+
"@angular/platform-browser": "^19.2.1",
|
39
|
+
"@angular/router": "^19.2.1",
|
40
|
+
"@skyux/i18n": "12.0.0-alpha.10"
|
41
41
|
},
|
42
42
|
"dependencies": {
|
43
43
|
"tslib": "^2.8.1"
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { BaseHarnessFilters } from '@angular/cdk/testing';
|
2
2
|
/**
|
3
3
|
* A set of criteria that can be used to filter a list of SkyOverlayHarness instances.
|
4
4
|
* @internal
|
5
5
|
*/
|
6
|
-
export interface SkyOverlayHarnessFilters extends
|
6
|
+
export interface SkyOverlayHarnessFilters extends BaseHarnessFilters {
|
7
7
|
}
|