@mintplayer/ng-bootstrap 14.0.0 → 14.1.0
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/esm2020/lib/components/alert/alert/alert.component.mjs +25 -5
- package/fesm2015/mintplayer-ng-bootstrap.mjs +23 -3
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +23 -3
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/lib/components/alert/alert/alert.component.d.ts +8 -2
- package/package.json +1 -1
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { Color } from '../../../enums';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BsAlertComponent {
|
|
4
5
|
type: Color;
|
|
5
6
|
colors: typeof Color;
|
|
6
|
-
|
|
7
|
+
private _isVisible;
|
|
8
|
+
get isVisible(): boolean;
|
|
9
|
+
set isVisible(value: boolean);
|
|
10
|
+
isVisibleChange: EventEmitter<boolean>;
|
|
11
|
+
afterOpenedOrClosed: EventEmitter<any>;
|
|
12
|
+
onAfterOpenedOrClosed(isVisible: boolean): void;
|
|
7
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsAlertComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BsAlertComponent, "bs-alert", never, { "type": "type"; }, {}, never, ["*"], false>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BsAlertComponent, "bs-alert", never, { "type": "type"; "isVisible": "isVisible"; }, { "isVisibleChange": "isVisibleChange"; "afterOpenedOrClosed": "afterOpenedOrClosed"; }, never, ["*"], false>;
|
|
9
15
|
}
|