@acorex/components 4.2.60 → 4.2.61
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/esm2020/lib/search-bar/search-bar.component.mjs +11 -2
- package/fesm2015/acorex-components.mjs +10 -1
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +10 -1
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/search-bar/search-bar.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10285,7 +10285,9 @@ class AXSearchBarComponent {
|
|
|
10285
10285
|
this._editors.find((x) => x.property.property.name === name).clear();
|
|
10286
10286
|
}
|
|
10287
10287
|
refresh() {
|
|
10288
|
-
this.
|
|
10288
|
+
this._filterItems = [];
|
|
10289
|
+
this._filterItemsClone = [];
|
|
10290
|
+
this.items = this._items[0].items;
|
|
10289
10291
|
}
|
|
10290
10292
|
handleButtonClick() {
|
|
10291
10293
|
this.dropdown.toggle();
|
|
@@ -10359,6 +10361,13 @@ class AXSearchBarComponent {
|
|
|
10359
10361
|
}
|
|
10360
10362
|
}
|
|
10361
10363
|
ngOnInit() { }
|
|
10364
|
+
ngAfterViewInit() {
|
|
10365
|
+
setTimeout(() => {
|
|
10366
|
+
if (!this.dropdown.dropdownWidth) {
|
|
10367
|
+
this.dropdown.dropdownWidth = '600px';
|
|
10368
|
+
}
|
|
10369
|
+
});
|
|
10370
|
+
}
|
|
10362
10371
|
_handleTextValue(dataItem) {
|
|
10363
10372
|
let text = '';
|
|
10364
10373
|
if (Array.isArray(dataItem.value)) {
|