@instincthub/react-ui 0.1.33 → 0.1.35
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/src/components/forms/DateTimePicker.js +1 -1
- package/dist/src/components/forms/SearchField.js +1 -1
- package/dist/src/components/ui/ComponentLists.js +1 -1
- package/dist/src/types/components/forms/SearchField.d.ts +2 -0
- package/dist/src/types/components/ui/tables/IHubTableServer.d.ts +1 -1
- package/dist/src/types/types/index.d.ts +2 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -2
|
@@ -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.
|
|
120
|
+
}): React.ReactElement | null;
|
|
121
121
|
displayName?: string;
|
|
122
122
|
}
|
|
123
123
|
export declare const IHubTableServer: IHubTableServerComponent;
|
|
@@ -684,6 +684,8 @@ export interface DateTimePickerPropsType {
|
|
|
684
684
|
useSeparateFields?: boolean;
|
|
685
685
|
/** Input mode: datetime (default), date only, or time only */
|
|
686
686
|
mode?: "datetime" | "date" | "time";
|
|
687
|
+
/** Maximum width of the picker dropdown in pixels (default: 600) */
|
|
688
|
+
maxWidth?: number;
|
|
687
689
|
}
|
|
688
690
|
export interface DateRange {
|
|
689
691
|
startDate: string;
|