dhre-component-lib 0.8.28 → 0.8.30

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.
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -24,6 +24,7 @@ interface CustomSearchFieldProps {
24
24
  onHandleClear?: () => void;
25
25
  isWhiteBackgound?: boolean;
26
26
  shouldShowAll?: boolean;
27
+ noResultFoundText?: string;
27
28
  }
28
29
  declare const Search: React.FC<CustomSearchFieldProps>;
29
30
  export default Search;
package/dist/index.d.ts CHANGED
@@ -253,6 +253,7 @@ interface CustomSearchFieldProps {
253
253
  onHandleClear?: () => void;
254
254
  isWhiteBackgound?: boolean;
255
255
  shouldShowAll?: boolean;
256
+ noResultFoundText?: string;
256
257
  }
257
258
  declare const Search: React.FC<CustomSearchFieldProps>;
258
259