@coreui/angular-pro 4.0.0-alpha.1 → 4.0.0-alpha.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.
- package/bundles/coreui-angular-pro.umd.js +34 -20
- package/bundles/coreui-angular-pro.umd.js.map +1 -1
- package/esm2015/lib/backdrop/backdrop.service.js +9 -9
- package/esm2015/lib/modal/modal/modal.component.js +25 -12
- package/esm2015/lib/offcanvas/offcanvas/offcanvas.component.js +2 -2
- package/fesm2015/coreui-angular-pro.js +33 -20
- package/fesm2015/coreui-angular-pro.js.map +1 -1
- package/lib/backdrop/backdrop.service.d.ts +1 -1
- package/lib/modal/modal/modal.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export declare class BackdropService {
|
|
|
8
8
|
private renderer;
|
|
9
9
|
private unListen;
|
|
10
10
|
constructor(document: any, rendererFactory: RendererFactory2);
|
|
11
|
-
setBackdrop(): any;
|
|
11
|
+
setBackdrop(type?: string): any;
|
|
12
12
|
clearBackdrop(backdrop: any): any;
|
|
13
13
|
onClickHandler(): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackdropService, never>;
|
|
@@ -11,6 +11,7 @@ export declare class ModalComponent implements OnInit, OnDestroy {
|
|
|
11
11
|
private modalService;
|
|
12
12
|
private backdropService;
|
|
13
13
|
static ngAcceptInputType_scrollable: BooleanInput;
|
|
14
|
+
static ngAcceptInputType_visible: BooleanInput;
|
|
14
15
|
constructor(document: any, renderer: Renderer2, hostElement: ElementRef, modalService: ModalService, backdropService: BackdropService);
|
|
15
16
|
/**
|
|
16
17
|
* Align the modal in the center or top of the screen.
|
|
@@ -68,7 +69,7 @@ export declare class ModalComponent implements OnInit, OnDestroy {
|
|
|
68
69
|
* Toggle the visibility of modal component.
|
|
69
70
|
* @type boolean
|
|
70
71
|
*/
|
|
71
|
-
set visible(
|
|
72
|
+
set visible(value: boolean);
|
|
72
73
|
get visible(): boolean;
|
|
73
74
|
private _visible;
|
|
74
75
|
/**
|
|
@@ -90,6 +91,8 @@ export declare class ModalComponent implements OnInit, OnDestroy {
|
|
|
90
91
|
animateStart(event: AnimationEvent): void;
|
|
91
92
|
animateDone(event: AnimationEvent): void;
|
|
92
93
|
onKeyDownHandler(event: KeyboardEvent): void;
|
|
94
|
+
private mouseDownTarget;
|
|
95
|
+
onMouseDownHandler($event: MouseEvent): void;
|
|
93
96
|
onClickHandler($event: MouseEvent): void;
|
|
94
97
|
ngOnInit(): void;
|
|
95
98
|
ngOnDestroy(): void;
|