@instincthub/react-ui 0.1.33 → 0.1.34

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.
@@ -5,6 +5,7 @@ interface SearchFieldProps {
5
5
  delay?: number;
6
6
  className?: string;
7
7
  name?: string;
8
+ disableSearchParams?: boolean;
8
9
  }
9
10
  /**
10
11
  *
@@ -17,6 +18,7 @@ interface SearchFieldProps {
17
18
  * @param delay - Debounce delay for search input
18
19
  * @param className - Additional class name
19
20
  * @param name - Name attribute for the input field
21
+ * @param disableSearchParams - When true, skip URL search param updates and only call setSearchValues
20
22
  * @returns
21
23
  */
22
24
  declare const SearchField: React.FC<SearchFieldProps>;
@@ -117,7 +117,7 @@ interface IHubTableServerPropsType<T> {
117
117
  interface IHubTableServerComponent {
118
118
  <T extends object>(props: IHubTableServerPropsType<T> & {
119
119
  ref?: React.Ref<IHubTableServerRef>;
120
- }): React.ReactNode;
120
+ }): React.ReactElement | null;
121
121
  displayName?: string;
122
122
  }
123
123
  export declare const IHubTableServer: IHubTableServerComponent;