hplx-react-elements-dev 1.3.159 → 1.3.160
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.
|
@@ -58,6 +58,9 @@ export interface ITableColDef<T> {
|
|
|
58
58
|
renderCell?: (value: unknown, row: T, column: ITableColDef<T>, rowIndex: number) => React.ReactNode;
|
|
59
59
|
valueFormatter?: (value: unknown, row: T, column: ITableColDef<T>, rowIndex: number) => React.ReactNode;
|
|
60
60
|
enableFilter?: boolean;
|
|
61
|
+
enabledColumnCheckbox?: boolean;
|
|
62
|
+
isCheckBoxMarked?: boolean;
|
|
63
|
+
onColumnCheckboxClick?: (isMarked: boolean) => void;
|
|
61
64
|
filterValues?: ITableDropdown[];
|
|
62
65
|
onFilterCheck?: (value: string, key: string) => void;
|
|
63
66
|
filterIconFill?: string;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -308,6 +308,7 @@ export interface DropdownItemsProps {
|
|
|
308
308
|
setChangeLeft?: any;
|
|
309
309
|
onRightIconClick?: (value: any) => void;
|
|
310
310
|
children?: ReactNode;
|
|
311
|
+
onMouseDown?: (value: any) => void;
|
|
311
312
|
}
|
|
312
313
|
export type DropdownValue<IsMulti extends boolean> = IsMulti extends true ? DropdownItemsProps[] : DropdownItemsProps;
|
|
313
314
|
export interface DropdownFieldProps<IsMulti extends boolean> {
|