@proximus/lavender-angular 2.0.0-alpha.45 → 2.0.0-alpha.47
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.
|
@@ -22572,6 +22572,18 @@ class PxModal {
|
|
|
22572
22572
|
get openedby() {
|
|
22573
22573
|
return this.elementRef.nativeElement['openedby'];
|
|
22574
22574
|
}
|
|
22575
|
+
set closedby(value) {
|
|
22576
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
22577
|
+
}
|
|
22578
|
+
get closedby() {
|
|
22579
|
+
return this.elementRef.nativeElement['closedby'];
|
|
22580
|
+
}
|
|
22581
|
+
set id(value) {
|
|
22582
|
+
this.elementRef.nativeElement['id'] = value;
|
|
22583
|
+
}
|
|
22584
|
+
get id() {
|
|
22585
|
+
return this.elementRef.nativeElement['id'];
|
|
22586
|
+
}
|
|
22575
22587
|
CLOSE_EVENT = new EventEmitter();
|
|
22576
22588
|
constructor(elementRef) {
|
|
22577
22589
|
this.elementRef = elementRef;
|
|
@@ -22580,7 +22592,7 @@ class PxModal {
|
|
|
22580
22592
|
});
|
|
22581
22593
|
}
|
|
22582
22594
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22583
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22595
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby", closedby: "closedby", id: "id" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22584
22596
|
}
|
|
22585
22597
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, decorators: [{
|
|
22586
22598
|
type: Directive,
|
|
@@ -22596,6 +22608,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
22596
22608
|
args: ['media-src']
|
|
22597
22609
|
}], openedby: [{
|
|
22598
22610
|
type: Input
|
|
22611
|
+
}], closedby: [{
|
|
22612
|
+
type: Input
|
|
22613
|
+
}], id: [{
|
|
22614
|
+
type: Input
|
|
22599
22615
|
}], CLOSE_EVENT: [{
|
|
22600
22616
|
type: Output
|
|
22601
22617
|
}] } });
|