@proximus/lavender-angular 2.0.0-alpha.113 → 2.0.0-alpha.115
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.
|
@@ -12212,6 +12212,36 @@ class PxDrawer {
|
|
|
12212
12212
|
get closedby() {
|
|
12213
12213
|
return this.elementRef.nativeElement['closedby'];
|
|
12214
12214
|
}
|
|
12215
|
+
set fullscreen(value) {
|
|
12216
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
12217
|
+
}
|
|
12218
|
+
get fullscreen() {
|
|
12219
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
12220
|
+
}
|
|
12221
|
+
set fullscreenMobile(value) {
|
|
12222
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
12223
|
+
}
|
|
12224
|
+
get fullscreenMobile() {
|
|
12225
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
12226
|
+
}
|
|
12227
|
+
set fullscreenTablet(value) {
|
|
12228
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
12229
|
+
}
|
|
12230
|
+
get fullscreenTablet() {
|
|
12231
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
12232
|
+
}
|
|
12233
|
+
set fullscreenLaptop(value) {
|
|
12234
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
12235
|
+
}
|
|
12236
|
+
get fullscreenLaptop() {
|
|
12237
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
12238
|
+
}
|
|
12239
|
+
set fullscreenDesktop(value) {
|
|
12240
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
12241
|
+
}
|
|
12242
|
+
get fullscreenDesktop() {
|
|
12243
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
12244
|
+
}
|
|
12215
12245
|
HIDE_EVENT = new EventEmitter();
|
|
12216
12246
|
constructor(elementRef) {
|
|
12217
12247
|
this.elementRef = elementRef;
|
|
@@ -12220,7 +12250,7 @@ class PxDrawer {
|
|
|
12220
12250
|
});
|
|
12221
12251
|
}
|
|
12222
12252
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12223
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", closeButtonAriaLabel: ["close-button-aria-label", "closeButtonAriaLabel"], openedby: "openedby", closedby: "closedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12253
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", closeButtonAriaLabel: ["close-button-aria-label", "closeButtonAriaLabel"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12224
12254
|
}
|
|
12225
12255
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12226
12256
|
type: Directive,
|
|
@@ -12236,6 +12266,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12236
12266
|
type: Input
|
|
12237
12267
|
}], closedby: [{
|
|
12238
12268
|
type: Input
|
|
12269
|
+
}], fullscreen: [{
|
|
12270
|
+
type: Input
|
|
12271
|
+
}], fullscreenMobile: [{
|
|
12272
|
+
type: Input,
|
|
12273
|
+
args: ['fullscreen--mobile']
|
|
12274
|
+
}], fullscreenTablet: [{
|
|
12275
|
+
type: Input,
|
|
12276
|
+
args: ['fullscreen--tablet']
|
|
12277
|
+
}], fullscreenLaptop: [{
|
|
12278
|
+
type: Input,
|
|
12279
|
+
args: ['fullscreen--laptop']
|
|
12280
|
+
}], fullscreenDesktop: [{
|
|
12281
|
+
type: Input,
|
|
12282
|
+
args: ['fullscreen--desktop']
|
|
12239
12283
|
}], HIDE_EVENT: [{
|
|
12240
12284
|
type: Output
|
|
12241
12285
|
}] } });
|