@skyux/core 11.0.0-alpha.4 → 11.0.0-alpha.6

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
@@ -65,6 +65,8 @@ export { SkyPercentPipe } from './lib/modules/percent-pipe/percent.pipe';
65
65
  export { SkyResizeObserverMediaQueryService } from './lib/modules/resize-observer/resize-observer-media-query.service';
66
66
  export { SkyResizeObserverService } from './lib/modules/resize-observer/resize-observer.service';
67
67
  export { SkyScreenReaderLabelDirective } from './lib/modules/screen-reader-label/screen-reader-label.directive';
68
+ export { SkyScrollShadowDirective } from './lib/modules/scroll-shadow/scroll-shadow.directive';
69
+ export { SkyScrollShadowEventArgs } from './lib/modules/scroll-shadow/scroll-shadow-event-args';
68
70
  export { SkyScrollableHostService } from './lib/modules/scrollable-host/scrollable-host.service';
69
71
  export { SkyStackingContext } from './lib/modules/stacking-context/stacking-context';
70
72
  export { SKY_STACKING_CONTEXT } from './lib/modules/stacking-context/stacking-context-token';
@@ -4,11 +4,6 @@ import { NgControl } from '@angular/forms';
4
4
  * @internal
5
5
  */
6
6
  export declare class SkyFormsUtility {
7
- /**
8
- * Coerces a data-bound value (typically a string) to a boolean.
9
- * @deprecated Use the `booleanAttribute` transform instead.
10
- */
11
- static coerceBooleanProperty(value: any): boolean;
12
7
  /**
13
8
  * Gets the required state of the checkbox.
14
9
  * Currently, Angular doesn't offer a way to get this easily, so we have to create an empty
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @internal
3
+ */
4
+ export interface SkyScrollShadowEventArgs {
5
+ bottomShadow: string;
6
+ topShadow: string;
7
+ }
@@ -0,0 +1,19 @@
1
+ import { EventEmitter, OnDestroy } from '@angular/core';
2
+ import { SkyScrollShadowEventArgs } from './scroll-shadow-event-args';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Raises an event when the box shadow for a component's header or footer should be adjusted
6
+ * based on the scroll position of the host element.
7
+ * @internal
8
+ */
9
+ export declare class SkyScrollShadowDirective implements OnDestroy {
10
+ #private;
11
+ set skyScrollShadowEnabled(value: boolean);
12
+ get skyScrollShadowEnabled(): boolean;
13
+ skyScrollShadow: EventEmitter<SkyScrollShadowEventArgs>;
14
+ windowResize(): void;
15
+ scroll(): void;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyScrollShadowDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SkyScrollShadowDirective, "[skyScrollShadow]", never, { "skyScrollShadowEnabled": { "alias": "skyScrollShadowEnabled"; "required": false; }; }, { "skyScrollShadow": "skyScrollShadow"; }, never, never, true, never>;
19
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "11.0.0-alpha.4",
3
+ "version": "11.0.0-alpha.6",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -42,7 +42,7 @@
42
42
  "@angular/forms": "^18.1.1",
43
43
  "@angular/platform-browser": "^18.1.1",
44
44
  "@angular/router": "^18.1.1",
45
- "@skyux/i18n": "11.0.0-alpha.4"
45
+ "@skyux/i18n": "11.0.0-alpha.6"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.6.3"