@sustaina/shared-ui 1.7.3 → 1.8.0
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.css +26 -0
- package/dist/index.d.mts +61 -14
- package/dist/index.d.ts +61 -14
- package/dist/index.js +821 -343
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +765 -287
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -26,6 +26,32 @@
|
|
|
26
26
|
--color-sus-primary-3-hover: #eff5f1;
|
|
27
27
|
--color-sus-primary-1-active: #dfeae3;
|
|
28
28
|
--color-sus-secondary-hover: #907b46;
|
|
29
|
+
|
|
30
|
+
/* animate */
|
|
31
|
+
--animate-sus-spinner: sus-spinner 1s linear infinite;
|
|
32
|
+
@keyframes sus-spinner {
|
|
33
|
+
0% {
|
|
34
|
+
opacity: 1;
|
|
35
|
+
}
|
|
36
|
+
10% {
|
|
37
|
+
opacity: 0.7;
|
|
38
|
+
}
|
|
39
|
+
20% {
|
|
40
|
+
opacity: 0.3;
|
|
41
|
+
}
|
|
42
|
+
35% {
|
|
43
|
+
opacity: 0.2;
|
|
44
|
+
}
|
|
45
|
+
50% {
|
|
46
|
+
opacity: 0.1;
|
|
47
|
+
}
|
|
48
|
+
75% {
|
|
49
|
+
opacity: 0.05;
|
|
50
|
+
}
|
|
51
|
+
100% {
|
|
52
|
+
opacity: 0;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
29
55
|
}
|
|
30
56
|
|
|
31
57
|
/* src/components/advanceSearch/styles/index.css */
|
package/dist/index.d.mts
CHANGED
|
@@ -65,6 +65,18 @@ type ColumnResizerProps = {
|
|
|
65
65
|
style?: CSSProperties;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
+
type ColumnSeparatorProps = {
|
|
69
|
+
show?: boolean;
|
|
70
|
+
className?: string;
|
|
71
|
+
style?: React__default.CSSProperties;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
type ContentSlot = {
|
|
75
|
+
content?: React__default.ReactNode;
|
|
76
|
+
icon?: React__default.ReactNode;
|
|
77
|
+
wrapperProps?: React__default.ComponentProps<"div">;
|
|
78
|
+
};
|
|
79
|
+
|
|
68
80
|
type DataTableColumnFilterProps<TData extends RowData$1> = {
|
|
69
81
|
column: Column$1<TData>;
|
|
70
82
|
table: Table$1<TData>;
|
|
@@ -152,7 +164,6 @@ type DataTableRowClickHandler<TData extends RowData$1> = (rowData: TData, info:
|
|
|
152
164
|
table: Table$1<TData>;
|
|
153
165
|
clickType: RowClickType;
|
|
154
166
|
}) => void;
|
|
155
|
-
type DataTableRowClickMode = "native" | "timeout";
|
|
156
167
|
type DataTableRowIdKeyHandler<TData extends RowData$1> = (originalRow: TData, index: number, parent?: Row<TData>) => string;
|
|
157
168
|
type DataTableHeaderCell<TData extends RowData$1> = {
|
|
158
169
|
id: string;
|
|
@@ -183,6 +194,9 @@ type DatatableColumnResizing = {
|
|
|
183
194
|
enabled: boolean;
|
|
184
195
|
resizeMode?: ColumnResizeMode;
|
|
185
196
|
};
|
|
197
|
+
type DataTableColumnSeparatorProps = {
|
|
198
|
+
headerCell?: ColumnSeparatorProps;
|
|
199
|
+
};
|
|
186
200
|
type DataTableComponentProps<TData> = {
|
|
187
201
|
containerProps?: React.ComponentProps<typeof TableContainer>;
|
|
188
202
|
tableProps?: React.ComponentProps<typeof Table>;
|
|
@@ -206,10 +220,7 @@ type DataTableComponentProps<TData> = {
|
|
|
206
220
|
table: Table$1<TData>;
|
|
207
221
|
}) => React.ComponentProps<typeof TableCell>);
|
|
208
222
|
columnResizerProps?: Omit<ColumnResizerProps, "header">;
|
|
209
|
-
|
|
210
|
-
type ContentSlot = {
|
|
211
|
-
content: React.ReactNode;
|
|
212
|
-
wrapperProps?: React.ComponentProps<"div">;
|
|
223
|
+
columnSeparatorProps?: DataTableColumnSeparatorProps;
|
|
213
224
|
};
|
|
214
225
|
type DataTableStatusContent = {
|
|
215
226
|
initialLoading?: ContentSlot;
|
|
@@ -275,7 +286,6 @@ declare function booleanToSelectValue(value: boolean | undefined, options?: {
|
|
|
275
286
|
fallbackUndefinedValue?: string;
|
|
276
287
|
}): string;
|
|
277
288
|
declare function selectValueToBoolean(value: string): boolean | undefined;
|
|
278
|
-
declare function renderContentSlot(slot: ContentSlot, defaultWrapperProps?: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
279
289
|
|
|
280
290
|
type SorterProps = {
|
|
281
291
|
show?: boolean;
|
|
@@ -286,8 +296,9 @@ type HeaderCellProps<TData = any, TValue = any> = {
|
|
|
286
296
|
rootClassName?: string;
|
|
287
297
|
labelClassName?: string;
|
|
288
298
|
sorterProps?: SorterProps;
|
|
299
|
+
align?: "left" | "center" | "right";
|
|
289
300
|
};
|
|
290
|
-
declare const HeaderCell: ({ rootClassName, labelClassName, context, label, sorterProps }: HeaderCellProps) => react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare const HeaderCell: ({ rootClassName, labelClassName, context, label, sorterProps, align }: HeaderCellProps) => react_jsx_runtime.JSX.Element;
|
|
291
302
|
|
|
292
303
|
declare const PreventPageLeave: ({ children }: React__default.PropsWithChildren) => React__default.ReactNode;
|
|
293
304
|
|
|
@@ -357,7 +368,7 @@ type UseGridSettingsStoreState = {
|
|
|
357
368
|
declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
|
|
358
369
|
|
|
359
370
|
declare const buttonVariants: (props?: ({
|
|
360
|
-
variant?: "link" | "default" | "
|
|
371
|
+
variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "cancel" | "ghost" | "defaultSelect" | "defaultOutline" | null | undefined;
|
|
361
372
|
size?: "default" | "option" | "icon" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon-md" | "icon-lg" | null | undefined;
|
|
362
373
|
active?: boolean | null | undefined;
|
|
363
374
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
@@ -394,7 +405,7 @@ type NavbarBaseProps = {
|
|
|
394
405
|
type NavbarProps = RequireAtLeastOne<NavbarBaseProps, "title">;
|
|
395
406
|
declare const _default: React__default.MemoExoticComponent<({ className, title, subTitle, headImageURL, headImageURLClassName, tooltipContentClassName, tooltipTitle, tooltipIcon, tooltipdescription, tooltipDescriptionWrapperClassName, mainButtonText, mainButtonClassName, mainButtonDisable, subButtonText, subButtonClassName, subButtonDisable, onMainButtonClick, onSubButtonClick, separatorDisable, searchButton }: NavbarProps) => react_jsx_runtime.JSX.Element>;
|
|
396
407
|
|
|
397
|
-
type FieldType = "text" | "number" | "date" | "datetime" | "checkbox" | "dropdown" | "lookup" | "uuid";
|
|
408
|
+
type FieldType = "text" | "number" | "date" | "datetime" | "checkbox" | "dropdown" | "lookup" | "uuid" | "json";
|
|
398
409
|
type Option = {
|
|
399
410
|
value: string;
|
|
400
411
|
label: string;
|
|
@@ -404,6 +415,7 @@ interface FieldSchemaBase<T extends FieldType> {
|
|
|
404
415
|
type: T;
|
|
405
416
|
label?: string;
|
|
406
417
|
multiTableSearch?: boolean;
|
|
418
|
+
jsonPath?: string[];
|
|
407
419
|
}
|
|
408
420
|
interface DropdownFieldSchema extends FieldSchemaBase<"dropdown"> {
|
|
409
421
|
options: Option[];
|
|
@@ -414,14 +426,38 @@ type DateFieldSchema = FieldSchemaBase<"date">;
|
|
|
414
426
|
type DateTimeFieldSchema = FieldSchemaBase<"datetime">;
|
|
415
427
|
type CheckboxFieldSchema = FieldSchemaBase<"checkbox">;
|
|
416
428
|
type LookupFieldSchema = FieldSchemaBase<"lookup">;
|
|
417
|
-
type
|
|
418
|
-
type
|
|
429
|
+
type UUIDFieldSchema = FieldSchemaBase<"uuid">;
|
|
430
|
+
type JSONFieldSchema = FieldSchemaBase<"json">;
|
|
431
|
+
type FieldSchema = DropdownFieldSchema | TextFieldSchema | NumberFieldSchema | DateFieldSchema | DateTimeFieldSchema | CheckboxFieldSchema | LookupFieldSchema | UUIDFieldSchema | JSONFieldSchema;
|
|
432
|
+
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll";
|
|
433
|
+
type RowState = {
|
|
434
|
+
id: string;
|
|
435
|
+
fieldName: string;
|
|
436
|
+
fieldType: FieldType;
|
|
437
|
+
operator: Exclude<OperatorValue, "between">;
|
|
438
|
+
value: string;
|
|
439
|
+
value2?: undefined;
|
|
440
|
+
multiTableSearch?: boolean;
|
|
441
|
+
jsonPath?: string[];
|
|
442
|
+
} | {
|
|
443
|
+
id: string;
|
|
444
|
+
fieldName: string;
|
|
445
|
+
fieldType: FieldType;
|
|
446
|
+
operator: "between";
|
|
447
|
+
value: string;
|
|
448
|
+
value2: string;
|
|
449
|
+
multiTableSearch?: boolean;
|
|
450
|
+
jsonPath?: string[];
|
|
451
|
+
};
|
|
452
|
+
interface Params {
|
|
453
|
+
AND: Record<string, unknown>[];
|
|
454
|
+
}
|
|
419
455
|
interface AdvanceSearchProps {
|
|
420
456
|
fields: FieldSchema[];
|
|
421
457
|
portalId: string;
|
|
422
458
|
limitRows?: number;
|
|
423
459
|
iconColor?: string;
|
|
424
|
-
onSearch?: (param:
|
|
460
|
+
onSearch?: (param: Params, rows: RowState[]) => void;
|
|
425
461
|
onClear?: () => void;
|
|
426
462
|
}
|
|
427
463
|
|
|
@@ -447,7 +483,18 @@ declare function DialogAlert({ open, onOpenChange, title, description, variant,
|
|
|
447
483
|
|
|
448
484
|
declare function isDefined(value: any): boolean;
|
|
449
485
|
declare function isEmptyObject(value: any): boolean;
|
|
450
|
-
|
|
486
|
+
type DebounceOptions = {
|
|
487
|
+
leading?: boolean;
|
|
488
|
+
trailing?: boolean;
|
|
489
|
+
maxWait?: number;
|
|
490
|
+
};
|
|
491
|
+
type DebouncedFunction<T extends (...args: any[]) => any> = {
|
|
492
|
+
(...args: Parameters<T>): ReturnType<T> | undefined;
|
|
493
|
+
cancel: () => void;
|
|
494
|
+
flush: () => ReturnType<T> | undefined;
|
|
495
|
+
};
|
|
496
|
+
declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number, options?: DebounceOptions): DebouncedFunction<T>;
|
|
497
|
+
declare function throttle<T extends (...args: any[]) => any>(func: T, wait: number, options?: Pick<DebounceOptions, "leading" | "trailing">): DebouncedFunction<T>;
|
|
451
498
|
|
|
452
499
|
declare function stripNullishObject<T extends Record<string, any>>(value: Partial<T>): {
|
|
453
500
|
[k: string]: any;
|
|
@@ -531,4 +578,4 @@ type UseTruncatedOptions<T> = {
|
|
|
531
578
|
type UseTruncatedResult = boolean;
|
|
532
579
|
declare const useTruncated: <T extends HTMLElement = any>({ elementRef, onChange, resizeDetectDelay }: UseTruncatedOptions<T>) => UseTruncatedResult;
|
|
533
580
|
|
|
534
|
-
export { AdvanceSearch, type Breakpoints, Button, type Column,
|
|
581
|
+
export { AdvanceSearch, type Breakpoints, Button, type Column, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DatatableColumnResizing, type DebounceOptions, type DebouncedFunction, DialogAlert, type DialogAlertProps, type DialogVariant, type FieldSchema, FormErrorMessage, type FormErrorMessageProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, FormLabel, type FormLabelProps, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HeaderCell, type HeaderCellProps, _default as Navbar, type NavbarProps, NumberInput, type NumberInputProps, type Params, PreventPageLeave, type RowClickType, type RowState, type ScrollInfo, type SorterProps, TextInput, type TextInputProps, type UseFormFieldOptions, type UseFormFieldReturn, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, booleanToSelectValue, buttonVariants, cn, compareAlphanumeric, debounce, isDefined, isEmptyObject, selectValueToBoolean, stripNullishObject, throttle, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useTruncated };
|
package/dist/index.d.ts
CHANGED
|
@@ -65,6 +65,18 @@ type ColumnResizerProps = {
|
|
|
65
65
|
style?: CSSProperties;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
+
type ColumnSeparatorProps = {
|
|
69
|
+
show?: boolean;
|
|
70
|
+
className?: string;
|
|
71
|
+
style?: React__default.CSSProperties;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
type ContentSlot = {
|
|
75
|
+
content?: React__default.ReactNode;
|
|
76
|
+
icon?: React__default.ReactNode;
|
|
77
|
+
wrapperProps?: React__default.ComponentProps<"div">;
|
|
78
|
+
};
|
|
79
|
+
|
|
68
80
|
type DataTableColumnFilterProps<TData extends RowData$1> = {
|
|
69
81
|
column: Column$1<TData>;
|
|
70
82
|
table: Table$1<TData>;
|
|
@@ -152,7 +164,6 @@ type DataTableRowClickHandler<TData extends RowData$1> = (rowData: TData, info:
|
|
|
152
164
|
table: Table$1<TData>;
|
|
153
165
|
clickType: RowClickType;
|
|
154
166
|
}) => void;
|
|
155
|
-
type DataTableRowClickMode = "native" | "timeout";
|
|
156
167
|
type DataTableRowIdKeyHandler<TData extends RowData$1> = (originalRow: TData, index: number, parent?: Row<TData>) => string;
|
|
157
168
|
type DataTableHeaderCell<TData extends RowData$1> = {
|
|
158
169
|
id: string;
|
|
@@ -183,6 +194,9 @@ type DatatableColumnResizing = {
|
|
|
183
194
|
enabled: boolean;
|
|
184
195
|
resizeMode?: ColumnResizeMode;
|
|
185
196
|
};
|
|
197
|
+
type DataTableColumnSeparatorProps = {
|
|
198
|
+
headerCell?: ColumnSeparatorProps;
|
|
199
|
+
};
|
|
186
200
|
type DataTableComponentProps<TData> = {
|
|
187
201
|
containerProps?: React.ComponentProps<typeof TableContainer>;
|
|
188
202
|
tableProps?: React.ComponentProps<typeof Table>;
|
|
@@ -206,10 +220,7 @@ type DataTableComponentProps<TData> = {
|
|
|
206
220
|
table: Table$1<TData>;
|
|
207
221
|
}) => React.ComponentProps<typeof TableCell>);
|
|
208
222
|
columnResizerProps?: Omit<ColumnResizerProps, "header">;
|
|
209
|
-
|
|
210
|
-
type ContentSlot = {
|
|
211
|
-
content: React.ReactNode;
|
|
212
|
-
wrapperProps?: React.ComponentProps<"div">;
|
|
223
|
+
columnSeparatorProps?: DataTableColumnSeparatorProps;
|
|
213
224
|
};
|
|
214
225
|
type DataTableStatusContent = {
|
|
215
226
|
initialLoading?: ContentSlot;
|
|
@@ -275,7 +286,6 @@ declare function booleanToSelectValue(value: boolean | undefined, options?: {
|
|
|
275
286
|
fallbackUndefinedValue?: string;
|
|
276
287
|
}): string;
|
|
277
288
|
declare function selectValueToBoolean(value: string): boolean | undefined;
|
|
278
|
-
declare function renderContentSlot(slot: ContentSlot, defaultWrapperProps?: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
279
289
|
|
|
280
290
|
type SorterProps = {
|
|
281
291
|
show?: boolean;
|
|
@@ -286,8 +296,9 @@ type HeaderCellProps<TData = any, TValue = any> = {
|
|
|
286
296
|
rootClassName?: string;
|
|
287
297
|
labelClassName?: string;
|
|
288
298
|
sorterProps?: SorterProps;
|
|
299
|
+
align?: "left" | "center" | "right";
|
|
289
300
|
};
|
|
290
|
-
declare const HeaderCell: ({ rootClassName, labelClassName, context, label, sorterProps }: HeaderCellProps) => react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare const HeaderCell: ({ rootClassName, labelClassName, context, label, sorterProps, align }: HeaderCellProps) => react_jsx_runtime.JSX.Element;
|
|
291
302
|
|
|
292
303
|
declare const PreventPageLeave: ({ children }: React__default.PropsWithChildren) => React__default.ReactNode;
|
|
293
304
|
|
|
@@ -357,7 +368,7 @@ type UseGridSettingsStoreState = {
|
|
|
357
368
|
declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
|
|
358
369
|
|
|
359
370
|
declare const buttonVariants: (props?: ({
|
|
360
|
-
variant?: "link" | "default" | "
|
|
371
|
+
variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "cancel" | "ghost" | "defaultSelect" | "defaultOutline" | null | undefined;
|
|
361
372
|
size?: "default" | "option" | "icon" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon-md" | "icon-lg" | null | undefined;
|
|
362
373
|
active?: boolean | null | undefined;
|
|
363
374
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
@@ -394,7 +405,7 @@ type NavbarBaseProps = {
|
|
|
394
405
|
type NavbarProps = RequireAtLeastOne<NavbarBaseProps, "title">;
|
|
395
406
|
declare const _default: React__default.MemoExoticComponent<({ className, title, subTitle, headImageURL, headImageURLClassName, tooltipContentClassName, tooltipTitle, tooltipIcon, tooltipdescription, tooltipDescriptionWrapperClassName, mainButtonText, mainButtonClassName, mainButtonDisable, subButtonText, subButtonClassName, subButtonDisable, onMainButtonClick, onSubButtonClick, separatorDisable, searchButton }: NavbarProps) => react_jsx_runtime.JSX.Element>;
|
|
396
407
|
|
|
397
|
-
type FieldType = "text" | "number" | "date" | "datetime" | "checkbox" | "dropdown" | "lookup" | "uuid";
|
|
408
|
+
type FieldType = "text" | "number" | "date" | "datetime" | "checkbox" | "dropdown" | "lookup" | "uuid" | "json";
|
|
398
409
|
type Option = {
|
|
399
410
|
value: string;
|
|
400
411
|
label: string;
|
|
@@ -404,6 +415,7 @@ interface FieldSchemaBase<T extends FieldType> {
|
|
|
404
415
|
type: T;
|
|
405
416
|
label?: string;
|
|
406
417
|
multiTableSearch?: boolean;
|
|
418
|
+
jsonPath?: string[];
|
|
407
419
|
}
|
|
408
420
|
interface DropdownFieldSchema extends FieldSchemaBase<"dropdown"> {
|
|
409
421
|
options: Option[];
|
|
@@ -414,14 +426,38 @@ type DateFieldSchema = FieldSchemaBase<"date">;
|
|
|
414
426
|
type DateTimeFieldSchema = FieldSchemaBase<"datetime">;
|
|
415
427
|
type CheckboxFieldSchema = FieldSchemaBase<"checkbox">;
|
|
416
428
|
type LookupFieldSchema = FieldSchemaBase<"lookup">;
|
|
417
|
-
type
|
|
418
|
-
type
|
|
429
|
+
type UUIDFieldSchema = FieldSchemaBase<"uuid">;
|
|
430
|
+
type JSONFieldSchema = FieldSchemaBase<"json">;
|
|
431
|
+
type FieldSchema = DropdownFieldSchema | TextFieldSchema | NumberFieldSchema | DateFieldSchema | DateTimeFieldSchema | CheckboxFieldSchema | LookupFieldSchema | UUIDFieldSchema | JSONFieldSchema;
|
|
432
|
+
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll";
|
|
433
|
+
type RowState = {
|
|
434
|
+
id: string;
|
|
435
|
+
fieldName: string;
|
|
436
|
+
fieldType: FieldType;
|
|
437
|
+
operator: Exclude<OperatorValue, "between">;
|
|
438
|
+
value: string;
|
|
439
|
+
value2?: undefined;
|
|
440
|
+
multiTableSearch?: boolean;
|
|
441
|
+
jsonPath?: string[];
|
|
442
|
+
} | {
|
|
443
|
+
id: string;
|
|
444
|
+
fieldName: string;
|
|
445
|
+
fieldType: FieldType;
|
|
446
|
+
operator: "between";
|
|
447
|
+
value: string;
|
|
448
|
+
value2: string;
|
|
449
|
+
multiTableSearch?: boolean;
|
|
450
|
+
jsonPath?: string[];
|
|
451
|
+
};
|
|
452
|
+
interface Params {
|
|
453
|
+
AND: Record<string, unknown>[];
|
|
454
|
+
}
|
|
419
455
|
interface AdvanceSearchProps {
|
|
420
456
|
fields: FieldSchema[];
|
|
421
457
|
portalId: string;
|
|
422
458
|
limitRows?: number;
|
|
423
459
|
iconColor?: string;
|
|
424
|
-
onSearch?: (param:
|
|
460
|
+
onSearch?: (param: Params, rows: RowState[]) => void;
|
|
425
461
|
onClear?: () => void;
|
|
426
462
|
}
|
|
427
463
|
|
|
@@ -447,7 +483,18 @@ declare function DialogAlert({ open, onOpenChange, title, description, variant,
|
|
|
447
483
|
|
|
448
484
|
declare function isDefined(value: any): boolean;
|
|
449
485
|
declare function isEmptyObject(value: any): boolean;
|
|
450
|
-
|
|
486
|
+
type DebounceOptions = {
|
|
487
|
+
leading?: boolean;
|
|
488
|
+
trailing?: boolean;
|
|
489
|
+
maxWait?: number;
|
|
490
|
+
};
|
|
491
|
+
type DebouncedFunction<T extends (...args: any[]) => any> = {
|
|
492
|
+
(...args: Parameters<T>): ReturnType<T> | undefined;
|
|
493
|
+
cancel: () => void;
|
|
494
|
+
flush: () => ReturnType<T> | undefined;
|
|
495
|
+
};
|
|
496
|
+
declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number, options?: DebounceOptions): DebouncedFunction<T>;
|
|
497
|
+
declare function throttle<T extends (...args: any[]) => any>(func: T, wait: number, options?: Pick<DebounceOptions, "leading" | "trailing">): DebouncedFunction<T>;
|
|
451
498
|
|
|
452
499
|
declare function stripNullishObject<T extends Record<string, any>>(value: Partial<T>): {
|
|
453
500
|
[k: string]: any;
|
|
@@ -531,4 +578,4 @@ type UseTruncatedOptions<T> = {
|
|
|
531
578
|
type UseTruncatedResult = boolean;
|
|
532
579
|
declare const useTruncated: <T extends HTMLElement = any>({ elementRef, onChange, resizeDetectDelay }: UseTruncatedOptions<T>) => UseTruncatedResult;
|
|
533
580
|
|
|
534
|
-
export { AdvanceSearch, type Breakpoints, Button, type Column,
|
|
581
|
+
export { AdvanceSearch, type Breakpoints, Button, type Column, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DatatableColumnResizing, type DebounceOptions, type DebouncedFunction, DialogAlert, type DialogAlertProps, type DialogVariant, type FieldSchema, FormErrorMessage, type FormErrorMessageProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, FormLabel, type FormLabelProps, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HeaderCell, type HeaderCellProps, _default as Navbar, type NavbarProps, NumberInput, type NumberInputProps, type Params, PreventPageLeave, type RowClickType, type RowState, type ScrollInfo, type SorterProps, TextInput, type TextInputProps, type UseFormFieldOptions, type UseFormFieldReturn, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, booleanToSelectValue, buttonVariants, cn, compareAlphanumeric, debounce, isDefined, isEmptyObject, selectValueToBoolean, stripNullishObject, throttle, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useTruncated };
|