@skyux/core 11.40.0 → 11.41.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/documentation.json +730 -637
- package/esm2022/lib/modules/viewkeeper/viewkeeper-host-options.mjs +1 -1
- package/esm2022/lib/modules/viewkeeper/viewkeeper-options.mjs +1 -1
- package/esm2022/lib/modules/viewkeeper/viewkeeper.mjs +16 -7
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core.mjs +16 -7
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/viewkeeper/viewkeeper-host-options.d.ts +1 -0
- package/lib/modules/viewkeeper/viewkeeper-options.d.ts +4 -0
- package/package.json +2 -2
@@ -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": "11.
|
3
|
+
"version": "11.41.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^18.2.13",
|
42
42
|
"@angular/platform-browser": "^18.2.13",
|
43
43
|
"@angular/router": "^18.2.13",
|
44
|
-
"@skyux/i18n": "11.
|
44
|
+
"@skyux/i18n": "11.41.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.3"
|