@mdspl/mds-shared-ui 1.3.0 → 1.3.2
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/dist/index.cjs +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1837 -1814
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -481,6 +481,7 @@ export declare function useDebouncedSearch(options?: UseDebouncedSearchOptions):
|
|
|
481
481
|
export declare interface UseDebouncedSearchOptions {
|
|
482
482
|
initialValue?: string;
|
|
483
483
|
delay?: number;
|
|
484
|
+
len?: number;
|
|
484
485
|
}
|
|
485
486
|
|
|
486
487
|
declare interface UseDebouncedSearchResult {
|
|
@@ -488,6 +489,7 @@ declare interface UseDebouncedSearchResult {
|
|
|
488
489
|
debouncedSearch: string;
|
|
489
490
|
onSearchChange: (value: string) => void;
|
|
490
491
|
reset: () => void;
|
|
492
|
+
len: number;
|
|
491
493
|
}
|
|
492
494
|
|
|
493
495
|
/**
|