@wizishop/angular-components 15.1.22 → 15.1.23
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/angular-components.scss +72 -72
- package/esm2020/lib/components/alert/alert.component.mjs +10 -4
- package/fesm2015/wizishop-angular-components.mjs +8 -2
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +8 -2
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/alert/alert.component.d.ts +4 -2
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.23.tgz +0 -0
- package/wizishop-angular-components-15.1.22.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -150,78 +150,78 @@ $wac-link-active: #38A3F1!default;
|
|
|
150
150
|
.wac-table__head__cell--checkbox .wac-field-checkbox__row {
|
|
151
151
|
transform: translateX(5px);
|
|
152
152
|
}
|
|
153
|
-
.wac-alert {
|
|
154
|
-
width: 100%;
|
|
155
|
-
background-color: transparentize($wac-link-color, 0.85);
|
|
156
|
-
color: $wac-link-color;
|
|
157
|
-
border-radius: 3px;
|
|
158
|
-
display: flex;
|
|
159
|
-
flex-wrap: nowrap;
|
|
160
|
-
justify-content: space-between;
|
|
161
|
-
padding: 20px;
|
|
162
|
-
&.success {
|
|
163
|
-
background-color: transparentize($wac-green-color, 0.85);
|
|
164
|
-
p {
|
|
165
|
-
color: $wac-p-alert-color-success;
|
|
166
|
-
> * {
|
|
167
|
-
color: $wac-p-alert-color-success;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
i {
|
|
171
|
-
color: $wac-green-color;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
&.warning {
|
|
175
|
-
background-color: transparentize($wac-primary-button, 0.85);
|
|
176
|
-
p {
|
|
177
|
-
color: $wac-p-alert-color-warning;
|
|
178
|
-
> * {
|
|
179
|
-
color: $wac-p-alert-color-warning;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
i {
|
|
183
|
-
color: $wac-primary-button;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
&.alert {
|
|
187
|
-
background-color: transparentize($wac-orange-color, 0.85);
|
|
188
|
-
p {
|
|
189
|
-
color: $wac-p-alert-color-alert;
|
|
190
|
-
> * {
|
|
191
|
-
color: $wac-p-alert-color-alert;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
i {
|
|
195
|
-
color: $wac-orange-color;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
p {
|
|
199
|
-
width: 100%;
|
|
200
|
-
font-size: rem(14);
|
|
201
|
-
line-height: rem(25);
|
|
202
|
-
margin: 0;
|
|
203
|
-
padding: 0;
|
|
204
|
-
color: $wac-p-alert-color-default;
|
|
205
|
-
> * {
|
|
206
|
-
color: $wac-p-alert-color-default;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
i {
|
|
210
|
-
width: auto;
|
|
211
|
-
margin: 0 10px 0 0;
|
|
212
|
-
color: inherit;
|
|
213
|
-
font-size: rem(14);
|
|
214
|
-
line-height: rem(25);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.wac-button i {
|
|
218
|
-
color: $wac-white;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.closeAlert {
|
|
222
|
-
font-size: rem(20);
|
|
223
|
-
}
|
|
224
|
-
}
|
|
153
|
+
.wac-alert {
|
|
154
|
+
width: 100%;
|
|
155
|
+
background-color: transparentize($wac-link-color, 0.85);
|
|
156
|
+
color: $wac-link-color;
|
|
157
|
+
border-radius: 3px;
|
|
158
|
+
display: flex;
|
|
159
|
+
flex-wrap: nowrap;
|
|
160
|
+
justify-content: space-between;
|
|
161
|
+
padding: 20px;
|
|
162
|
+
&.success {
|
|
163
|
+
background-color: transparentize($wac-green-color, 0.85);
|
|
164
|
+
p {
|
|
165
|
+
color: $wac-p-alert-color-success;
|
|
166
|
+
> * {
|
|
167
|
+
color: $wac-p-alert-color-success;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
i {
|
|
171
|
+
color: $wac-green-color;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
&.warning {
|
|
175
|
+
background-color: transparentize($wac-primary-button, 0.85);
|
|
176
|
+
p {
|
|
177
|
+
color: $wac-p-alert-color-warning;
|
|
178
|
+
> * {
|
|
179
|
+
color: $wac-p-alert-color-warning;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
i {
|
|
183
|
+
color: $wac-primary-button;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
&.alert {
|
|
187
|
+
background-color: transparentize($wac-orange-color, 0.85);
|
|
188
|
+
p {
|
|
189
|
+
color: $wac-p-alert-color-alert;
|
|
190
|
+
> * {
|
|
191
|
+
color: $wac-p-alert-color-alert;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
i {
|
|
195
|
+
color: $wac-orange-color;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
p {
|
|
199
|
+
width: 100%;
|
|
200
|
+
font-size: rem(14);
|
|
201
|
+
line-height: rem(25);
|
|
202
|
+
margin: 0;
|
|
203
|
+
padding: 0;
|
|
204
|
+
color: $wac-p-alert-color-default;
|
|
205
|
+
> * {
|
|
206
|
+
color: $wac-p-alert-color-default;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
i {
|
|
210
|
+
width: auto;
|
|
211
|
+
margin: 0 10px 0 0;
|
|
212
|
+
color: inherit;
|
|
213
|
+
font-size: rem(14);
|
|
214
|
+
line-height: rem(25);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.wac-button i {
|
|
218
|
+
color: $wac-white;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.closeAlert {
|
|
222
|
+
font-size: rem(20);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
225
|
.wac-alert-popup {
|
|
226
226
|
.alert {
|
|
227
227
|
z-index: 999999;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "@angular/common";
|
|
4
4
|
export class AlertComponent {
|
|
@@ -9,17 +9,21 @@ export class AlertComponent {
|
|
|
9
9
|
this.alert = false;
|
|
10
10
|
this.iconClass = 'fas fa-info';
|
|
11
11
|
this.closeButton = false;
|
|
12
|
+
this.isClose = false;
|
|
13
|
+
this.isCloseChange = new EventEmitter();
|
|
12
14
|
}
|
|
13
15
|
ngOnInit() { }
|
|
14
16
|
closeAlert(el) {
|
|
15
17
|
el.remove();
|
|
18
|
+
this.isClose = true;
|
|
19
|
+
this.isCloseChange.next(this.isClose);
|
|
16
20
|
}
|
|
17
21
|
}
|
|
18
22
|
AlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
19
|
-
AlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: AlertComponent, selector: "wac-alert", inputs: { icon: "icon", warning: "warning", success: "success", alert: "alert", iconClass: "iconClass", closeButton: "closeButton" }, ngImport: i0, template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
23
|
+
AlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: AlertComponent, selector: "wac-alert", inputs: { icon: "icon", warning: "warning", success: "success", alert: "alert", iconClass: "iconClass", closeButton: "closeButton" }, outputs: { isCloseChange: "isCloseChange" }, ngImport: i0, template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\r\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\r\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\r\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
20
24
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AlertComponent, decorators: [{
|
|
21
25
|
type: Component,
|
|
22
|
-
args: [{ selector: 'wac-alert', template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\n</div>\n" }]
|
|
26
|
+
args: [{ selector: 'wac-alert', template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\r\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\r\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\r\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\r\n</div>\r\n" }]
|
|
23
27
|
}], ctorParameters: function () { return []; }, propDecorators: { icon: [{
|
|
24
28
|
type: Input
|
|
25
29
|
}], warning: [{
|
|
@@ -32,5 +36,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
32
36
|
type: Input
|
|
33
37
|
}], closeButton: [{
|
|
34
38
|
type: Input
|
|
39
|
+
}], isCloseChange: [{
|
|
40
|
+
type: Output
|
|
35
41
|
}] } });
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQU0vRSxNQUFNLE9BQU8sY0FBYztJQVd6QjtRQVZTLFNBQUksR0FBRyxJQUFJLENBQUM7UUFDWixZQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ2hCLFlBQU8sR0FBRyxLQUFLLENBQUM7UUFDaEIsVUFBSyxHQUFHLEtBQUssQ0FBQztRQUNkLGNBQVMsR0FBRyxhQUFhLENBQUM7UUFDMUIsZ0JBQVcsR0FBRyxLQUFLLENBQUM7UUFFckIsWUFBTyxHQUFZLEtBQUssQ0FBQztRQUN2QixrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFXLENBQUM7SUFFdkMsQ0FBQztJQUNoQixRQUFRLEtBQVUsQ0FBQztJQUVuQixVQUFVLENBQUMsRUFBRTtRQUNYLEVBQUUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUNaLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDO1FBQ3BCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN4QyxDQUFDOzsyR0FsQlUsY0FBYzsrRkFBZCxjQUFjLG9PQ04zQixrWkFLQTsyRkRDYSxjQUFjO2tCQUoxQixTQUFTOytCQUNFLFdBQVc7MEVBSVosSUFBSTtzQkFBWixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFHSSxhQUFhO3NCQUF0QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICd3YWMtYWxlcnQnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9hbGVydC5jb21wb25lbnQuaHRtbCdcclxufSlcclxuZXhwb3J0IGNsYXNzIEFsZXJ0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKSBpY29uID0gdHJ1ZTtcclxuICBASW5wdXQoKSB3YXJuaW5nID0gZmFsc2U7XHJcbiAgQElucHV0KCkgc3VjY2VzcyA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIGFsZXJ0ID0gZmFsc2U7XHJcbiAgQElucHV0KCkgaWNvbkNsYXNzID0gJ2ZhcyBmYS1pbmZvJztcclxuICBASW5wdXQoKSBjbG9zZUJ1dHRvbiA9IGZhbHNlO1xyXG5cclxuICBwcml2YXRlIGlzQ2xvc2U6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBAT3V0cHV0KCkgaXNDbG9zZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7fVxyXG4gIG5nT25Jbml0KCk6IHZvaWQge31cclxuXHJcbiAgY2xvc2VBbGVydChlbCkge1xyXG4gICAgZWwucmVtb3ZlKCk7XHJcbiAgICB0aGlzLmlzQ2xvc2UgPSB0cnVlO1xyXG4gICAgdGhpcy5pc0Nsb3NlQ2hhbmdlLm5leHQodGhpcy5pc0Nsb3NlKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiAjYWxlcnRCbG9jayBjbGFzcz1cIndhYy1hbGVydFwiIFtuZ0NsYXNzXT1cInsgc3VjY2Vzczogc3VjY2Vzcywgd2FybmluZzogd2FybmluZywgYWxlcnQ6IGFsZXJ0IH1cIj5cclxuICA8aSAqbmdJZj1cImljb25cIiBbbmdDbGFzc109XCJpY29uQ2xhc3NcIj48L2k+XHJcbiAgPHA+PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PjwvcD4gPCEtLSAhIFJlZmFjdG8gOiBSZW1vdmUgcCB0YWcsIGF0dGVudGlvbiDDoCB3aXppLWFkbWluIC0tPlxyXG4gIDxhICpuZ0lmPVwiY2xvc2VCdXR0b25cIiAoY2xpY2spPVwiY2xvc2VBbGVydCh0aGlzLmFsZXJ0QmxvY2spXCI+PGkgW25nQ2xhc3NdPVwiJ2Nsb3NlQWxlcnQgZmFsIGZhLWNpcmNsZS14bWFyaydcIj48L2k+PC9hPlxyXG48L2Rpdj5cclxuIl19
|
|
@@ -3168,17 +3168,21 @@ class AlertComponent {
|
|
|
3168
3168
|
this.alert = false;
|
|
3169
3169
|
this.iconClass = 'fas fa-info';
|
|
3170
3170
|
this.closeButton = false;
|
|
3171
|
+
this.isClose = false;
|
|
3172
|
+
this.isCloseChange = new EventEmitter();
|
|
3171
3173
|
}
|
|
3172
3174
|
ngOnInit() { }
|
|
3173
3175
|
closeAlert(el) {
|
|
3174
3176
|
el.remove();
|
|
3177
|
+
this.isClose = true;
|
|
3178
|
+
this.isCloseChange.next(this.isClose);
|
|
3175
3179
|
}
|
|
3176
3180
|
}
|
|
3177
3181
|
AlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3178
|
-
AlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: AlertComponent, selector: "wac-alert", inputs: { icon: "icon", warning: "warning", success: "success", alert: "alert", iconClass: "iconClass", closeButton: "closeButton" }, ngImport: i0, template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3182
|
+
AlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: AlertComponent, selector: "wac-alert", inputs: { icon: "icon", warning: "warning", success: "success", alert: "alert", iconClass: "iconClass", closeButton: "closeButton" }, outputs: { isCloseChange: "isCloseChange" }, ngImport: i0, template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\r\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\r\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\r\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3179
3183
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: AlertComponent, decorators: [{
|
|
3180
3184
|
type: Component,
|
|
3181
|
-
args: [{ selector: 'wac-alert', template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\n</div>\n" }]
|
|
3185
|
+
args: [{ selector: 'wac-alert', template: "<div #alertBlock class=\"wac-alert\" [ngClass]=\"{ success: success, warning: warning, alert: alert }\">\r\n <i *ngIf=\"icon\" [ngClass]=\"iconClass\"></i>\r\n <p><ng-content></ng-content></p> <!-- ! Refacto : Remove p tag, attention \u00E0 wizi-admin -->\r\n <a *ngIf=\"closeButton\" (click)=\"closeAlert(this.alertBlock)\"><i [ngClass]=\"'closeAlert fal fa-circle-xmark'\"></i></a>\r\n</div>\r\n" }]
|
|
3182
3186
|
}], ctorParameters: function () { return []; }, propDecorators: { icon: [{
|
|
3183
3187
|
type: Input
|
|
3184
3188
|
}], warning: [{
|
|
@@ -3191,6 +3195,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
3191
3195
|
type: Input
|
|
3192
3196
|
}], closeButton: [{
|
|
3193
3197
|
type: Input
|
|
3198
|
+
}], isCloseChange: [{
|
|
3199
|
+
type: Output
|
|
3194
3200
|
}] } });
|
|
3195
3201
|
|
|
3196
3202
|
class TextComponent {
|