@skyux/core 10.37.4 → 10.38.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/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';
@@ -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": "10.37.4",
3
+ "version": "10.38.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -42,7 +42,7 @@
42
42
  "@angular/forms": "^17.3.4",
43
43
  "@angular/platform-browser": "^17.3.4",
44
44
  "@angular/router": "^17.3.4",
45
- "@skyux/i18n": "10.37.4"
45
+ "@skyux/i18n": "10.38.0"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.6.2"