@skyux/core 7.5.0 → 7.6.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.
@@ -5,7 +5,7 @@ import { SkyAffixPlacement } from './affix-placement';
5
5
  import { SkyAffixVerticalAlignment } from './affix-vertical-alignment';
6
6
  export interface SkyAffixConfig {
7
7
  /**
8
- * Indicates which parent element is used by the auto-fit functionality.
8
+ * Which parent element is used by the auto-fit functionality.
9
9
  */
10
10
  autoFitContext?: SkyAffixAutoFitContext;
11
11
  /**
@@ -17,9 +17,9 @@ export interface SkyAffixConfig {
17
17
  */
18
18
  autoFitOverflowOffset?: SkyAffixOffset;
19
19
  /**
20
- * Indicates if the affix service should try and find the best placement for the affixed element
21
- * if the element would be hidden otherwise. If this setting is disabled, the affix service will
22
- * force the placement of the affixed element.
20
+ * Whether the affix service tries to find the best placement for the affixed element
21
+ * if the element would be hidden otherwise. If this setting is disabled, the affix service
22
+ * forces the placement of the affixed element.
23
23
  */
24
24
  enableAutoFit?: boolean;
25
25
  /**
@@ -27,7 +27,7 @@ export interface SkyAffixConfig {
27
27
  */
28
28
  horizontalAlignment?: SkyAffixHorizontalAlignment;
29
29
  /**
30
- * Indicates if the affixed element should remain affixed to the base element when the window is scrolled or resized.
30
+ * Whether the affixed element remains affixed to the base element when the window is scrolled or resized.
31
31
  */
32
32
  isSticky?: boolean;
33
33
  /**
@@ -1,13 +1,14 @@
1
- import { ApplicationRef, ComponentRef, Injector, RendererFactory2, Type } from '@angular/core';
1
+ import { ApplicationRef, ComponentRef, EnvironmentInjector, Injector, RendererFactory2, Type } from '@angular/core';
2
2
  import { SkyAppWindowRef } from '../window/window-ref';
3
3
  import { SkyDynamicComponentOptions } from './dynamic-component-options';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Angular service for creating and rendering a dynamic component.
7
+ * @internal
7
8
  */
8
9
  export declare class SkyDynamicComponentService {
9
10
  #private;
10
- constructor(applicationRef: ApplicationRef, injector: Injector, windowRef: SkyAppWindowRef, rendererFactory: RendererFactory2);
11
+ constructor(applicationRef: ApplicationRef, injector: Injector, windowRef: SkyAppWindowRef, rendererFactory: RendererFactory2, environmentInjector: EnvironmentInjector);
11
12
  /**
12
13
  * Creates an instance of the specified component and adds it to the specified location
13
14
  * on the page.
@@ -1,18 +1,18 @@
1
1
  export declare enum SkyMediaBreakpoints {
2
2
  /**
3
- * Indicates screen widths of 767px or less.
3
+ * Screen widths of 767px or less.
4
4
  */
5
5
  xs = 1,
6
6
  /**
7
- * Indicates screen widths of 768px to 991px.
7
+ * Screen widths of 768px to 991px.
8
8
  */
9
9
  sm = 2,
10
10
  /**
11
- * Indicates screen widths of 992px to 1199px.
11
+ * Screen widths of 992px to 1199px.
12
12
  */
13
13
  md = 3,
14
14
  /**
15
- * Indicates screen widths of 1200px or greater.
15
+ * Screen widths of 1200px or greater.
16
16
  */
17
17
  lg = 4
18
18
  }
@@ -1,6 +1,6 @@
1
1
  import { SkyMediaBreakpoints } from './media-breakpoints';
2
2
  /**
3
- * Specifies a function that is called when the breakpoints change. It is called
3
+ * The function that is called when the breakpoints change. It is called
4
4
  * with a `SkyMediaBreakpoints` argument, which is an enum that represents the new breakpoint.
5
5
  */
6
6
  export declare type SkyMediaQueryListener = (args: SkyMediaBreakpoints) => void;
@@ -1,26 +1,26 @@
1
1
  export interface SkyOverlayConfig {
2
2
  /**
3
- * Specifies if the overlay should be closed after a navigation change.
3
+ * Whether the overlay closes after a navigation change.
4
4
  */
5
5
  closeOnNavigation?: boolean;
6
6
  /**
7
- * Specifies if the overlay should be closed when a user clicks outside the overlay's content.
7
+ * Whether the overlay closes when a user clicks outside the overlay's content.
8
8
  */
9
9
  enableClose?: boolean;
10
10
  /**
11
- * Specifies if mouse interactions should be allowed below the backdrop.
11
+ * Whether mouse interactions are allowed below the backdrop.
12
12
  */
13
13
  enablePointerEvents?: boolean;
14
14
  /**
15
- * Specifies if window scrolling should be enabled when the overlay is opened.
15
+ * Whether window scrolling is enabled when the overlay is opened.
16
16
  */
17
17
  enableScroll?: boolean;
18
18
  /**
19
- * Specifies if the overlay's backdrop should be visible.
19
+ * Whether the overlay's backdrop is visible.
20
20
  */
21
21
  showBackdrop?: boolean;
22
22
  /**
23
- * Specifies extra CSS classes to be added to the overlay's wrapper element.
23
+ * Extra CSS classes to add to the overlay's wrapper element.
24
24
  */
25
25
  wrapperClass?: string;
26
26
  }
@@ -1,6 +1,6 @@
1
1
  import { SkyOverlayConfig } from './overlay-config';
2
2
  /**
3
- * Provides contextual information to each overlay created.
3
+ * Contextual information for each overlay.
4
4
  * @internal
5
5
  */
6
6
  export declare class SkyOverlayContext {
@@ -13,12 +13,12 @@ export interface SkyViewkeeperOptions {
13
13
  */
14
14
  el?: HTMLElement;
15
15
  /**
16
- * Specifies a scrollable parent which the viewkeeper resides in and should listen to and be
17
- * positioned within.
16
+ * The scrollable parent where the viewkeeper resides. It should listen to and be
17
+ * positioned within the parent.
18
18
  */
19
19
  scrollableHost?: HTMLElement;
20
20
  /**
21
- * Specifies whether to set the width of the viewkeeper element to the width of its
21
+ * Sets the width of the viewkeeper element to the width of its
22
22
  * host element. Otherwise, if the element does not have an explicit width specified,
23
23
  * the element would collapse horizontally as a result of fixing the element to the top
24
24
  * of the viewport.
@@ -10,7 +10,7 @@ export declare function getWindow(): any;
10
10
  */
11
11
  export declare class SkyAppWindowRef {
12
12
  /**
13
- * References the global `window` variable.
13
+ * The global `window` variable.
14
14
  */
15
15
  get nativeWindow(): any;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAppWindowRef, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "7.5.0",
3
+ "version": "7.6.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -45,7 +45,7 @@
45
45
  "@angular/core": "^14.2.11",
46
46
  "@angular/platform-browser": "^14.2.11",
47
47
  "@angular/router": "^14.2.11",
48
- "@skyux/i18n": "7.5.0"
48
+ "@skyux/i18n": "7.6.0"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1"