@ptsecurity/mosaic 15.8.5 → 15.8.7

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.
@@ -16,16 +16,17 @@ export declare class McLoaderOverlay implements OnInit, OnDestroy {
16
16
  private elementRef;
17
17
  private renderer;
18
18
  private fixedTop;
19
+ externalIndicator: McLoaderOverlayIndicator | null;
20
+ externalText: McLoaderOverlayText | null;
21
+ externalCaption: McLoaderOverlayCaption | null;
19
22
  text: string;
20
23
  caption: string;
24
+ private parent;
21
25
  get isExternalIndicator(): boolean;
22
26
  get isExternalText(): boolean;
23
27
  get isExternalCaption(): boolean;
24
28
  get isFixedTop(): boolean;
25
29
  get isEmpty(): boolean;
26
- externalIndicator: McLoaderOverlayIndicator | null;
27
- externalText: McLoaderOverlayText | null;
28
- externalCaption: McLoaderOverlayCaption | null;
29
30
  constructor(elementRef: ElementRef, renderer: Renderer2, fixedTop: string | null);
30
31
  ngOnInit(): void;
31
32
  ngOnDestroy(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptsecurity/mosaic",
3
- "version": "15.8.5",
3
+ "version": "15.8.7",
4
4
  "description": "Mosaic",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,9 +19,9 @@
19
19
  "peerDependencies": {
20
20
  "@angular/cdk": "15.2.9",
21
21
  "@angular/forms": "15.2.9",
22
- "@ptsecurity/cdk": "^15.8.5",
23
- "@ptsecurity/mosaic-moment-adapter": "^15.8.5",
24
- "@ptsecurity/mosaic-luxon-adapter": "^15.8.5",
22
+ "@ptsecurity/cdk": "^15.8.7",
23
+ "@ptsecurity/mosaic-moment-adapter": "^15.8.7",
24
+ "@ptsecurity/mosaic-luxon-adapter": "^15.8.7",
25
25
  "@mosaic-design/date-formatter": "2.1.5",
26
26
  "@ptsecurity/mosaic-icons": "7.0.8",
27
27
  "@mosaic-design/tokens-builder": "1.3.0",
@@ -1,4 +1,4 @@
1
- import { AfterContentInit, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
1
+ import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
2
2
  import { McSidebarAnimationState } from './sidebar-animations';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare enum SidebarPositions {
@@ -26,6 +26,7 @@ export declare class McSidebarClosed {
26
26
  export declare class McSidebar implements OnDestroy, OnInit, AfterContentInit {
27
27
  private ngZone;
28
28
  private elementRef;
29
+ private cdr;
29
30
  get opened(): boolean;
30
31
  set opened(value: boolean);
31
32
  private _opened;
@@ -37,7 +38,7 @@ export declare class McSidebar implements OnDestroy, OnInit, AfterContentInit {
37
38
  get animationState(): McSidebarAnimationState;
38
39
  internalState: boolean;
39
40
  private documentKeydownListener;
40
- constructor(ngZone: NgZone, elementRef: ElementRef);
41
+ constructor(ngZone: NgZone, elementRef: ElementRef, cdr: ChangeDetectorRef);
41
42
  ngOnInit(): void;
42
43
  ngOnDestroy(): void;
43
44
  toggle(): void;