@colijnit/corecomponents_v12 12.0.89 → 12.0.90
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.
- package/bundles/colijnit-corecomponents_v12.umd.js +6 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-combo-box/input-combo-box.component.js +9 -2
- package/fesm2015/colijnit-corecomponents_v12.js +8 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-combo-box/input-combo-box.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -6593,6 +6593,8 @@
|
|
|
6593
6593
|
_this.formUserChangeListener = formUserChangeListener;
|
|
6594
6594
|
_this.ngZoneWrapper = ngZoneWrapper;
|
|
6595
6595
|
_this.elementRef = elementRef;
|
|
6596
|
+
_this.autofill = true;
|
|
6597
|
+
_this.allowFiltering = false;
|
|
6596
6598
|
_this.shopPopup = true;
|
|
6597
6599
|
_this.valueChange = new i0.EventEmitter();
|
|
6598
6600
|
_this.isSmall = false;
|
|
@@ -6612,7 +6614,7 @@
|
|
|
6612
6614
|
InputComboBoxComponent.decorators = [
|
|
6613
6615
|
{ type: i0.Component, args: [{
|
|
6614
6616
|
selector: "co-input-combo-box",
|
|
6615
|
-
template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"
|
|
6617
|
+
template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"autofill\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n [popupWidth]=\"popupWidth\"\n [popupHeight]=\"popupHeight\"\n [filterType]=\"filterType\"\n [allowFiltering]=\"allowFiltering\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
|
|
6616
6618
|
providers: [{
|
|
6617
6619
|
provide: COMPONENT_INTERFACE_NAME,
|
|
6618
6620
|
useExisting: i0.forwardRef(function () { return InputComboBoxComponent; })
|
|
@@ -6633,6 +6635,9 @@
|
|
|
6633
6635
|
]; };
|
|
6634
6636
|
InputComboBoxComponent.propDecorators = {
|
|
6635
6637
|
combo: [{ type: i0.ViewChild, args: ["combo",] }],
|
|
6638
|
+
autofill: [{ type: i0.Input }],
|
|
6639
|
+
allowFiltering: [{ type: i0.Input }],
|
|
6640
|
+
filterType: [{ type: i0.Input }],
|
|
6636
6641
|
collection: [{ type: i0.Input }],
|
|
6637
6642
|
fields: [{ type: i0.Input }],
|
|
6638
6643
|
selected: [{ type: i0.Input }],
|