@skyux/core 7.0.0-beta.1 → 7.0.0-beta.11

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.
@@ -1,12 +1,12 @@
1
1
  import { ElementRef, OnDestroy, RendererFactory2 } from '@angular/core';
2
- import { MutationObserverService } from '../mutation/mutation-observer-service';
2
+ import { SkyMutationObserverService } from '../mutation/mutation-observer-service';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * @internal
6
6
  */
7
7
  export declare class SkyDockDomAdapterService implements OnDestroy {
8
8
  #private;
9
- constructor(mutationSvc: MutationObserverService, rendererFactory: RendererFactory2);
9
+ constructor(mutationSvc: SkyMutationObserverService, rendererFactory: RendererFactory2);
10
10
  ngOnDestroy(): void;
11
11
  setSticky(elementRef: ElementRef): void;
12
12
  setZIndex(zIndex: number, elementRef: ElementRef): void;
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ComponentFactoryResolver, ElementRef, Injector, Type } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, Injector, Type } 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';
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
10
10
  export declare class SkyDockComponent {
11
11
  #private;
12
12
  private target;
13
- constructor(changeDetector: ChangeDetectorRef, resolver: ComponentFactoryResolver, elementRef: ElementRef, injector: Injector, domAdapter: SkyDockDomAdapterService);
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;
16
16
  setOptions(options: SkyDockOptions | undefined): void;
@@ -1,4 +1,4 @@
1
- import { ApplicationRef, ComponentFactoryResolver, ComponentRef, Injector, RendererFactory2, Type } from '@angular/core';
1
+ import { ApplicationRef, ComponentRef, 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";
@@ -7,11 +7,10 @@ import * as i0 from "@angular/core";
7
7
  */
8
8
  export declare class SkyDynamicComponentService {
9
9
  #private;
10
- constructor(componentFactoryResolver: ComponentFactoryResolver, applicationRef: ApplicationRef, injector: Injector, windowRef: SkyAppWindowRef, rendererFactory: RendererFactory2);
10
+ constructor(applicationRef: ApplicationRef, injector: Injector, windowRef: SkyAppWindowRef, rendererFactory: RendererFactory2);
11
11
  /**
12
12
  * Creates an instance of the specified component and adds it to the specified location
13
13
  * on the page.
14
- * @param options Options for creating the dynamic component.
15
14
  */
16
15
  createComponent<T>(componentType: Type<T>, options?: SkyDynamicComponentOptions): ComponentRef<T>;
17
16
  /**
@@ -1,6 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare class MutationObserverService {
3
- create(callback: any): MutationObserver;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<MutationObserverService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<MutationObserverService>;
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare class SkyMutationObserverService {
6
+ create(callback: MutationCallback): MutationObserver;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyMutationObserverService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<SkyMutationObserverService>;
6
9
  }
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ComponentFactoryResolver, ComponentRef, EmbeddedViewRef, Injector, OnDestroy, OnInit, StaticProvider, TemplateRef, Type } from '@angular/core';
1
+ import { ChangeDetectorRef, ComponentRef, EmbeddedViewRef, Injector, OnDestroy, OnInit, StaticProvider, TemplateRef, Type } 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';
@@ -20,11 +20,11 @@ export declare class SkyOverlayComponent implements OnInit, OnDestroy {
20
20
  private overlayContentRef;
21
21
  private overlayRef;
22
22
  private targetRef;
23
- constructor(changeDetector: ChangeDetectorRef, resolver: ComponentFactoryResolver, injector: Injector, coreAdapter: SkyCoreAdapterService, context: SkyOverlayContext, idSvc: SkyIdService, router?: Router);
23
+ constructor(changeDetector: ChangeDetectorRef, injector: Injector, coreAdapter: SkyCoreAdapterService, context: SkyOverlayContext, idSvc: SkyIdService, router?: Router);
24
24
  ngOnInit(): void;
25
25
  ngOnDestroy(): void;
26
26
  attachComponent<C>(component: Type<C>, providers?: StaticProvider[]): ComponentRef<C>;
27
27
  attachTemplate<T>(templateRef: TemplateRef<T>, context: T): EmbeddedViewRef<T>;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<SkyOverlayComponent, [null, null, null, null, null, null, { optional: true; }]>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyOverlayComponent, [null, null, null, null, null, { optional: true; }]>;
29
29
  static ɵcmp: i0.ɵɵComponentDeclaration<SkyOverlayComponent, "sky-overlay", never, {}, {}, never, never, false>;
30
30
  }
@@ -1,11 +1,11 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
- import { MutationObserverService } from '../mutation/mutation-observer-service';
3
+ import { SkyMutationObserverService } from '../mutation/mutation-observer-service';
4
4
  import { SkyAppWindowRef } from '../window/window-ref';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SkyScrollableHostService {
7
7
  #private;
8
- constructor(mutationObserverSvc: MutationObserverService, windowRef: SkyAppWindowRef);
8
+ constructor(mutationObserverSvc: SkyMutationObserverService, windowRef: SkyAppWindowRef);
9
9
  /**
10
10
  * Returns the given element's current scrollable host
11
11
  * @param elementRef The element whose scrollable host is being requested
@@ -1,12 +1,12 @@
1
1
  import { ElementRef, OnDestroy, OnInit } from '@angular/core';
2
- import { MutationObserverService } from '../mutation/mutation-observer-service';
2
+ import { SkyMutationObserverService } from '../mutation/mutation-observer-service';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Trims whitespace in each text node that is a direct descendent of the current element.
6
6
  */
7
7
  export declare class SkyTrimDirective implements OnInit, OnDestroy {
8
8
  #private;
9
- constructor(elRef: ElementRef, mutationObs: MutationObserverService);
9
+ constructor(elRef: ElementRef, mutationObs: SkyMutationObserverService);
10
10
  ngOnInit(): void;
11
11
  ngOnDestroy(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyTrimDirective, never>;
@@ -1,5 +1,5 @@
1
1
  import { ElementRef, OnDestroy, OnInit } from '@angular/core';
2
- import { MutationObserverService } from '../mutation/mutation-observer-service';
2
+ import { SkyMutationObserverService } from '../mutation/mutation-observer-service';
3
3
  import { SkyScrollableHostService } from '../scrollable-host/scrollable-host.service';
4
4
  import { SkyViewkeeperService } from './viewkeeper.service';
5
5
  import * as i0 from "@angular/core";
@@ -7,7 +7,7 @@ export declare class SkyViewkeeperDirective implements OnInit, OnDestroy {
7
7
  #private;
8
8
  set skyViewkeeper(value: string[] | undefined);
9
9
  get skyViewkeeper(): string[] | undefined;
10
- constructor(el: ElementRef, mutationObserverSvc: MutationObserverService, viewkeeperSvc: SkyViewkeeperService, scrollableHostSvc?: SkyScrollableHostService);
10
+ constructor(el: ElementRef, mutationObserverSvc: SkyMutationObserverService, viewkeeperSvc: SkyViewkeeperService, scrollableHostSvc?: SkyScrollableHostService);
11
11
  ngOnInit(): void;
12
12
  ngOnDestroy(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyViewkeeperDirective, [null, null, null, { optional: true; }]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "7.0.0-beta.1",
3
+ "version": "7.0.0-beta.11",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -45,7 +45,7 @@
45
45
  "@angular/core": "^14.2.0",
46
46
  "@angular/platform-browser": "^14.2.0",
47
47
  "@angular/router": "^14.2.0",
48
- "@skyux/i18n": "7.0.0-beta.1"
48
+ "@skyux/i18n": "7.0.0-beta.11"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1"