@colijnit/corecomponents_v12 260.1.3 → 260.1.4

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.
@@ -5969,6 +5969,7 @@
5969
5969
  _this.ngZoneWrapper = ngZoneWrapper;
5970
5970
  _this.elementRef = elementRef;
5971
5971
  _this.firstDayOfWeek = '';
5972
+ _this.showClearButton = true;
5972
5973
  _super.prototype._markAsOnPush.call(_this);
5973
5974
  return _this;
5974
5975
  }
@@ -6048,7 +6049,7 @@
6048
6049
  InputDatePickerComponent.decorators = [
6049
6050
  { type: i0.Component, args: [{
6050
6051
  selector: 'co-input-date',
6051
- 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 ",
6052
+ 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 ",
6052
6053
  providers: [
6053
6054
  OverlayService, {
6054
6055
  provide: SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, useExisting: i0.forwardRef(function () { return InputDatePickerComponent; })
@@ -6071,6 +6072,7 @@
6071
6072
  ]; };
6072
6073
  InputDatePickerComponent.propDecorators = {
6073
6074
  firstDayOfWeek: [{ type: i0.Input }],
6075
+ showClearButton: [{ type: i0.Input }],
6074
6076
  showClass: [{ type: i0.HostBinding, args: ['class.co-input-date',] }]
6075
6077
  };
6076
6078