@colijnit/corecomponents_v12 259.1.17 → 259.1.18

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.
@@ -5967,6 +5967,7 @@
5967
5967
  _this.ngZoneWrapper = ngZoneWrapper;
5968
5968
  _this.elementRef = elementRef;
5969
5969
  _this.firstDayOfWeek = '';
5970
+ _this.showClearButton = true;
5970
5971
  _super.prototype._markAsOnPush.call(_this);
5971
5972
  return _this;
5972
5973
  }
@@ -6046,7 +6047,7 @@
6046
6047
  InputDatePickerComponent.decorators = [
6047
6048
  { type: i0.Component, args: [{
6048
6049
  selector: 'co-input-date',
6049
- template: "\n <co-input-text (clickOutside)=\"toggleCalendar(false)\" overlayParent #parentForOverlay=\"overlayParent\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly\"\n [(model)]=\"modelAsString\"\n [rightIcon]=\"rightIcon\"\n [leftIcon]=\"leftIcon\"\n [leftIconData]=\"leftIconData\"\n [pattern]=\"'yyyy-MM-dd'\"\n [type]=\"'date'\"\n [placeholder]=\"placeholder\"\n (leftIconClick)=\"leftIconClick.emit($event)\"\n (rightIconClick)=\"toggleCalendar(true)\"\n (modelChange)=\"modelAsString = $event\"\n (clearIconClick)=\"handleClearIconClicked()\"\n [emptyPlace]=\"true\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n (keydown.enter)=\"finalizeDate()\"\n (keydown.tab)=\"finalizeDate()\"\n (blur)=\"finalizeDate()\"\n ></co-input-text>\n ",
6050
+ template: "\n <co-input-text (clickOutside)=\"toggleCalendar(false)\" overlayParent #parentForOverlay=\"overlayParent\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly\"\n [(model)]=\"modelAsString\"\n [rightIcon]=\"rightIcon\"\n [leftIcon]=\"leftIcon\"\n [leftIconData]=\"leftIconData\"\n [pattern]=\"'yyyy-MM-dd'\"\n [type]=\"'date'\"\n [placeholder]=\"placeholder\"\n [showClearButton]=\"showClearButton\"\n (leftIconClick)=\"leftIconClick.emit($event)\"\n (rightIconClick)=\"toggleCalendar(true)\"\n (modelChange)=\"modelAsString = $event\"\n (clearIconClick)=\"handleClearIconClicked()\"\n [emptyPlace]=\"true\"\n [firstDayOfWeek]=\"firstDayOfWeek\"\n (keydown.enter)=\"finalizeDate()\"\n (keydown.tab)=\"finalizeDate()\"\n (blur)=\"finalizeDate()\"\n ></co-input-text>\n ",
6050
6051
  providers: [
6051
6052
  OverlayService, {
6052
6053
  provide: SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, useExisting: i0.forwardRef(function () { return InputDatePickerComponent; })
@@ -6069,6 +6070,7 @@
6069
6070
  ]; };
6070
6071
  InputDatePickerComponent.propDecorators = {
6071
6072
  firstDayOfWeek: [{ type: i0.Input }],
6073
+ showClearButton: [{ type: i0.Input }],
6072
6074
  showClass: [{ type: i0.HostBinding, args: ['class.co-input-date',] }]
6073
6075
  };
6074
6076