@colijnit/corecomponents_v12 12.0.40 → 12.0.41

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.
@@ -6389,6 +6389,8 @@
6389
6389
  _this.startDateChange = new core.EventEmitter();
6390
6390
  _this.endDateChange = new core.EventEmitter();
6391
6391
  _this.dateRangeChange = new core.EventEmitter();
6392
+ _this.close = new core.EventEmitter();
6393
+ _this.select = new core.EventEmitter();
6392
6394
  return _this;
6393
6395
  }
6394
6396
  InputDateRangePickerComponent.prototype.showClass = function () {
@@ -6406,7 +6408,7 @@
6406
6408
  InputDateRangePickerComponent.decorators = [
6407
6409
  { type: core.Component, args: [{
6408
6410
  selector: "co-input-date-range",
6409
- template: "\n <ejs-daterangepicker\n [format]=\"dateFormat\"\n [placeholder]=\"placeholder\"\n [ngModel]=\"model\"\n (ngModelChange)=\"rangeChange()\"\n [(startDate)]=\"startDate\"\n [(endDate)]=\"endDate\"\n ></ejs-daterangepicker>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6411
+ template: "\n <ejs-daterangepicker\n [format]=\"dateFormat\"\n [placeholder]=\"placeholder\"\n [ngModel]=\"model\"\n (ngModelChange)=\"rangeChange()\"\n (close)=\"close.next($event)\"\n (select)=\"select.next($event)\"\n [(startDate)]=\"startDate\"\n [(endDate)]=\"endDate\"\n ></ejs-daterangepicker>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6410
6412
  encapsulation: core.ViewEncapsulation.None
6411
6413
  },] }
6412
6414
  ];
@@ -6418,6 +6420,8 @@
6418
6420
  startDateChange: [{ type: core.Output }],
6419
6421
  endDateChange: [{ type: core.Output }],
6420
6422
  dateRangeChange: [{ type: core.Output }],
6423
+ close: [{ type: core.Output }],
6424
+ select: [{ type: core.Output }],
6421
6425
  showClass: [{ type: core.HostBinding, args: ["class.co-input-date-range-picker",] }]
6422
6426
  };
6423
6427