kui-crm 0.0.89 → 0.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/cjs/index.js +0 -2
- package/cjs/index.js.map +1 -1
- package/hooks/cjs/index.js +0 -2
- package/hooks/cjs/index.js.map +1 -1
- package/hooks/index.js +0 -2
- package/hooks/index.js.map +1 -1
- package/index.d.ts +5 -0
- package/index.js +0 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +5 -0
- package/utils/index.d.ts +5 -0
package/cjs/index.js
CHANGED
|
@@ -373,7 +373,6 @@ var useAutocomplete = function (filter, paginator, fetchAll, isOpen, defaultFilt
|
|
|
373
373
|
paginator.startFetching();
|
|
374
374
|
}, []);
|
|
375
375
|
React.useEffect(function () {
|
|
376
|
-
console.log("effect", paginator.isFetching, paginator.isFinishPage, withoutRequest, isOpen);
|
|
377
376
|
if (paginator.isFetching &&
|
|
378
377
|
!paginator.isFinishPage &&
|
|
379
378
|
!withoutRequest &&
|
|
@@ -382,7 +381,6 @@ var useAutocomplete = function (filter, paginator, fetchAll, isOpen, defaultFilt
|
|
|
382
381
|
}
|
|
383
382
|
}, [fetchAll, paginator.isFetching, isOpen]);
|
|
384
383
|
kuiUtils.useDebounce(filter.searchQuery, 500, function () {
|
|
385
|
-
console.log("update search query");
|
|
386
384
|
paginator.clearOffset();
|
|
387
385
|
paginator.startFetching();
|
|
388
386
|
});
|