@proximus/lavender-angular 1.4.7-alpha.4 → 1.4.7-alpha.5

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.
@@ -11225,6 +11225,12 @@ class PxDrawer {
11225
11225
  get openedby() {
11226
11226
  return this.elementRef.nativeElement['openedby'];
11227
11227
  }
11228
+ set closedby(value) {
11229
+ this.elementRef.nativeElement['closedby'] = value;
11230
+ }
11231
+ get closedby() {
11232
+ return this.elementRef.nativeElement['closedby'];
11233
+ }
11228
11234
  HIDE_EVENT = new EventEmitter();
11229
11235
  constructor(elementRef) {
11230
11236
  this.elementRef = elementRef;
@@ -11233,7 +11239,7 @@ class PxDrawer {
11233
11239
  });
11234
11240
  }
11235
11241
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
11236
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
11242
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
11237
11243
  }
11238
11244
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
11239
11245
  type: Directive,
@@ -11247,6 +11253,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
11247
11253
  args: ['aria-label-close-button']
11248
11254
  }], openedby: [{
11249
11255
  type: Input
11256
+ }], closedby: [{
11257
+ type: Input
11250
11258
  }], HIDE_EVENT: [{
11251
11259
  type: Output
11252
11260
  }] } });