@skyux/core 9.0.0-alpha.9 → 9.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/documentation.json +1285 -1313
- package/esm2022/lib/modules/affix/affix.service.mjs +9 -9
- package/esm2022/lib/modules/affix/affixer.mjs +45 -35
- package/fesm2022/skyux-core.mjs +52 -42
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/affix/affix.service.d.ts +1 -2
- package/lib/modules/affix/affixer.d.ts +3 -2
- package/package.json +2 -2
@@ -1,9 +1,8 @@
|
|
1
|
-
import { ElementRef
|
1
|
+
import { ElementRef } from '@angular/core';
|
2
2
|
import { SkyAffixer } from './affixer';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class SkyAffixService {
|
5
5
|
#private;
|
6
|
-
constructor(rendererFactory: RendererFactory2);
|
7
6
|
/**
|
8
7
|
* Creates an instance of [[SkyAffixer]].
|
9
8
|
* @param affixed The element to be affixed.
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { ViewportRuler } from '@angular/cdk/overlay';
|
2
|
+
import { NgZone, Renderer2 } from '@angular/core';
|
2
3
|
import { Observable } from 'rxjs';
|
3
4
|
import { SkyAffixConfig } from './affix-config';
|
4
5
|
import { SkyAffixOffsetChange } from './affix-offset-change';
|
@@ -20,7 +21,7 @@ export declare class SkyAffixer {
|
|
20
21
|
* placement could not be found.
|
21
22
|
*/
|
22
23
|
get placementChange(): Observable<SkyAffixPlacementChange>;
|
23
|
-
constructor(affixedElement: HTMLElement, renderer: Renderer2);
|
24
|
+
constructor(affixedElement: HTMLElement, renderer: Renderer2, viewportRuler: ViewportRuler, zone: NgZone);
|
24
25
|
/**
|
25
26
|
* Affixes an element to a base element.
|
26
27
|
* @param baseElement The base element.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "9.0.0-
|
3
|
+
"version": "9.0.0-beta.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^16.2.1",
|
42
42
|
"@angular/platform-browser": "^16.2.1",
|
43
43
|
"@angular/router": "^16.2.1",
|
44
|
-
"@skyux/i18n": "9.0.0-
|
44
|
+
"@skyux/i18n": "9.0.0-beta.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.2"
|