@dartech/arsenal-ui 1.5.68 → 1.5.70
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -65,6 +65,7 @@ export type ControlAutocompleteProps = Omit<AutocompleteProps<unknown, boolean,
|
|
65
65
|
requiredErrorText?: string;
|
66
66
|
startAdornment?: InputProps['startAdornment'];
|
67
67
|
endAdornment?: InputProps['endAdornment'];
|
68
|
+
placeholder?: string;
|
68
69
|
};
|
69
70
|
/**
|
70
71
|
* Material UI `Autocomplete` controlled component. Used with react-hook-form
|
@@ -42,6 +42,7 @@ export interface TableProps {
|
|
42
42
|
onRowClick?: (params: GridRowParams, event: React.MouseEvent, details: GridCallbackDetails) => void;
|
43
43
|
pagination?: boolean;
|
44
44
|
refProp?: Ref<unknown>;
|
45
|
+
[key: string]: any;
|
45
46
|
}
|
46
47
|
export declare const Table: ({ columns, rows, rowCount, loading, disableMargin, mode, initialPageSize, pagination, onCellClick, ...dataGridProps }: TableProps) => JSX.Element;
|
47
48
|
export default Table;
|