@colijnit/corecomponents_v12 12.0.64 → 12.0.65

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.
@@ -6409,6 +6409,8 @@
6409
6409
  _this.elementRef = elementRef;
6410
6410
  _this.shopPopup = true;
6411
6411
  _this.valueChange = new core.EventEmitter();
6412
+ _this.isSmall = false;
6413
+ _this.customHeight = false;
6412
6414
  _super.prototype._markAsOnPush.call(_this);
6413
6415
  return _this;
6414
6416
  }
@@ -6454,6 +6456,8 @@
6454
6456
  popupHeight: [{ type: core.Input }],
6455
6457
  popupWidth: [{ type: core.Input }],
6456
6458
  valueChange: [{ type: core.Output }],
6459
+ isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
6460
+ customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }],
6457
6461
  showClass: [{ type: core.HostBinding, args: ["class.co-input-combo-box",] }]
6458
6462
  };
6459
6463
 
@@ -7510,6 +7514,8 @@
7510
7514
  _this.showPlaceholderOnFocus = true;
7511
7515
  _this.hasOwnLabel = true;
7512
7516
  _this.hideArrowButtons = false;
7517
+ _this.isSmall = false;
7518
+ _this.customHeight = false;
7513
7519
  _super.prototype._markAsOnPush.call(_this);
7514
7520
  return _this;
7515
7521
  }
@@ -7588,7 +7594,9 @@
7588
7594
  hasLeftIcon: [{ type: core.HostBinding, args: ['class.has-left-icon',] }],
7589
7595
  hasRightIcon: [{ type: core.HostBinding, args: ['class.has-right-icon',] }],
7590
7596
  hasOwnLabel: [{ type: core.HostBinding, args: ["class.has-own-label",] }],
7591
- hideArrowButtons: [{ type: core.Input }, { type: core.HostBinding, args: ['class.hideArrows',] }]
7597
+ hideArrowButtons: [{ type: core.Input }, { type: core.HostBinding, args: ['class.hideArrows',] }],
7598
+ isSmall: [{ type: core.HostBinding, args: ['class.is-small',] }, { type: core.Input }],
7599
+ customHeight: [{ type: core.HostBinding, args: ['class.custom-height',] }, { type: core.Input }]
7592
7600
  };
7593
7601
 
7594
7602
  var ValidationErrorModule = /** @class */ (function () {