@data-c/ui 0.1.72 → 0.2.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.d.ts +3 -3
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/package.json +15 -12
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import * as _mui_material_styles from '@mui/material/styles';
|
|
|
9
9
|
import { AvatarProps } from '@mui/material/Avatar';
|
|
10
10
|
import { DialogComponent, DialogProps as DialogProps$2 } from '@toolpad/core';
|
|
11
11
|
export { useDialogs } from '@toolpad/core';
|
|
12
|
-
import {
|
|
12
|
+
import { GridColDef as GridColDef$1, DataGridProps, GridRowsProp, GridRowSelectionModel, GridCallbackDetails } from '@mui/x-data-grid';
|
|
13
13
|
import * as LucideIcons from 'lucide-react';
|
|
14
14
|
import { LucideProps } from 'lucide-react';
|
|
15
15
|
|
|
@@ -545,7 +545,7 @@ interface DialogAdicionarButtonProps<T> extends Omit<ButtonProps$3, 'onClick'> {
|
|
|
545
545
|
}
|
|
546
546
|
declare function DialogAdicionarButton<T>(props: DialogAdicionarButtonProps<T>): react_jsx_runtime.JSX.Element;
|
|
547
547
|
|
|
548
|
-
interface DialogConfirmProps<T = any> extends DialogProps$2<T,
|
|
548
|
+
interface DialogConfirmProps<T = any> extends DialogProps$2<T, T | false> {
|
|
549
549
|
title?: string;
|
|
550
550
|
message?: string;
|
|
551
551
|
confirmButtonLabel?: string;
|
|
@@ -730,7 +730,7 @@ declare function CellActions(props: CellActionsProps): react_jsx_runtime.JSX.Ele
|
|
|
730
730
|
type CellActionProps = {
|
|
731
731
|
event?: string;
|
|
732
732
|
onClick?: (event?: string) => void;
|
|
733
|
-
}
|
|
733
|
+
};
|
|
734
734
|
declare function CellAction(props: CellActionProps): react_jsx_runtime.JSX.Element;
|
|
735
735
|
|
|
736
736
|
interface PaginationProps {
|