@ptsecurity/mosaic 16.4.6 → 16.4.8
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/esm2022/core/version.mjs +2 -2
- package/esm2022/form-field/form-field.mjs +6 -5
- package/esm2022/loader-overlay/loader-overlay.component.mjs +10 -8
- package/esm2022/sidebar/sidebar.component.mjs +10 -6
- package/fesm2022/ptsecurity-mosaic-core.mjs +1 -1
- package/fesm2022/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-form-field.mjs +5 -4
- package/fesm2022/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-loader-overlay.mjs +10 -8
- package/fesm2022/ptsecurity-mosaic-loader-overlay.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-sidebar.mjs +8 -4
- package/fesm2022/ptsecurity-mosaic-sidebar.mjs.map +1 -1
- package/form-field/form-field.d.ts +1 -1
- package/loader-overlay/loader-overlay.component.d.ts +4 -3
- package/package.json +4 -4
- package/sidebar/sidebar.component.d.ts +3 -2
@@ -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;
|