@skyux/core 7.1.1 → 7.1.2

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.
@@ -4,7 +4,6 @@ import { SkyFocusableChildrenOptions } from './focusable-children-options';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SkyCoreAdapterService {
6
6
  #private;
7
- private rendererFactory;
8
7
  constructor(rendererFactory: RendererFactory2);
9
8
  /**
10
9
  * Set the responsive container CSS class for a given element.
@@ -61,7 +61,6 @@ export declare class SkyAffixDirective implements OnInit, OnChanges, OnDestroy {
61
61
  ngOnInit(): void;
62
62
  ngOnChanges(changes: SimpleChanges): void;
63
63
  ngOnDestroy(): void;
64
- private updateAlignment;
65
64
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAffixDirective, never>;
66
65
  static ɵdir: i0.ɵɵDirectiveDeclaration<SkyAffixDirective, "[skyAffixTo]", never, { "skyAffixTo": "skyAffixTo"; "affixAutoFitContext": "affixAutoFitContext"; "affixAutoFitOverflowOffset": "affixAutoFitOverflowOffset"; "affixEnableAutoFit": "affixEnableAutoFit"; "affixHorizontalAlignment": "affixHorizontalAlignment"; "affixIsSticky": "affixIsSticky"; "affixPlacement": "affixPlacement"; "affixVerticalAlignment": "affixVerticalAlignment"; }, { "affixOffsetChange": "affixOffsetChange"; "affixOverflowScroll": "affixOverflowScroll"; "affixPlacementChange": "affixPlacementChange"; }, never, never, false>;
67
66
  }
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ElementRef, Injector, Type } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, Injector, Type, ViewContainerRef } from '@angular/core';
2
2
  import { SkyDockDomAdapterService } from './dock-dom-adapter.service';
3
3
  import { SkyDockInsertComponentConfig } from './dock-insert-component-config';
4
4
  import { SkyDockItemReference } from './dock-item-reference';
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  */
10
10
  export declare class SkyDockComponent {
11
11
  #private;
12
- private target;
12
+ target: ViewContainerRef | undefined;
13
13
  constructor(changeDetector: ChangeDetectorRef, elementRef: ElementRef, injector: Injector, domAdapter: SkyDockDomAdapterService);
14
14
  insertComponent<T>(component: Type<T>, config?: SkyDockInsertComponentConfig): SkyDockItemReference<T>;
15
15
  removeItem(item: SkyDockItemReference<any>): void;
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ComponentRef, EmbeddedViewRef, Injector, OnDestroy, OnInit, StaticProvider, TemplateRef, Type } from '@angular/core';
1
+ import { ChangeDetectorRef, ComponentRef, ElementRef, EmbeddedViewRef, Injector, OnDestroy, OnInit, StaticProvider, TemplateRef, Type, ViewContainerRef } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { Observable } from 'rxjs';
4
4
  import { SkyCoreAdapterService } from '../adapter-service/adapter.service';
@@ -17,9 +17,9 @@ export declare class SkyOverlayComponent implements OnInit, OnDestroy {
17
17
  id: string;
18
18
  showBackdrop: boolean;
19
19
  zIndex: string;
20
- private overlayContentRef;
21
- private overlayRef;
22
- private targetRef;
20
+ overlayContentRef: ElementRef | undefined;
21
+ overlayRef: ElementRef | undefined;
22
+ targetRef: ViewContainerRef | undefined;
23
23
  constructor(changeDetector: ChangeDetectorRef, injector: Injector, coreAdapter: SkyCoreAdapterService, context: SkyOverlayContext, idSvc: SkyIdService, router?: Router);
24
24
  ngOnInit(): void;
25
25
  ngOnDestroy(): void;
@@ -6,15 +6,12 @@ import * as i0 from "@angular/core";
6
6
  */
7
7
  export declare class SkyResizeObserverService implements OnDestroy {
8
8
  #private;
9
- private zone;
10
9
  constructor(zone: NgZone);
11
10
  ngOnDestroy(): void;
12
11
  /**
13
12
  * Create rxjs observable to get size changes for an element ref.
14
13
  */
15
14
  observe(element: ElementRef): Observable<ResizeObserverEntry>;
16
- private observeAndTrack;
17
- private callback;
18
15
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyResizeObserverService, never>;
19
16
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyResizeObserverService>;
20
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
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.1.1"
48
+ "@skyux/i18n": "7.1.2"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1"