@colijnit/corecomponents_v12 12.0.63 → 12.0.64

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.
@@ -6425,7 +6425,7 @@
6425
6425
  InputComboBoxComponent.decorators = [
6426
6426
  { type: core.Component, args: [{
6427
6427
  selector: "co-input-combo-box",
6428
- template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6428
+ template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n [popupWidth]=\"popupWidth\"\n [popupHeight]=\"popupHeight\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6429
6429
  providers: [{
6430
6430
  provide: COMPONENT_INTERFACE_NAME,
6431
6431
  useExisting: core.forwardRef(function () { return InputComboBoxComponent; })
@@ -6451,6 +6451,8 @@
6451
6451
  selected: [{ type: core.Input }],
6452
6452
  placeholder: [{ type: core.Input }],
6453
6453
  shopPopup: [{ type: core.Input }],
6454
+ popupHeight: [{ type: core.Input }],
6455
+ popupWidth: [{ type: core.Input }],
6454
6456
  valueChange: [{ type: core.Output }],
6455
6457
  showClass: [{ type: core.HostBinding, args: ["class.co-input-combo-box",] }]
6456
6458
  };