fone-design-system_v2 1.0.67 → 1.0.69
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ButtonProps as MuiButtonProps } from '@mui/material';
|
|
3
3
|
export interface ButtonProps extends Omit<MuiButtonProps<"button">, "color" | "size"> {
|
|
4
|
-
|
|
4
|
+
className?: any;
|
|
5
5
|
/** 자식 요소<br/>: 버튼 내에 포함될 내용 */
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
/** 색상 설정<br/>: 버튼 색상 */
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Cell as TableCell } from '@tanstack/react-table';
|
|
2
2
|
interface CellEditProps<T> {
|
|
3
3
|
cell: TableCell<T, unknown>;
|
|
4
|
-
rowSelection: Record<string, boolean>;
|
|
5
4
|
}
|
|
6
|
-
declare const CellEdit: ({ cell
|
|
5
|
+
declare const CellEdit: ({ cell }: CellEditProps<any>) => import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
export default CellEdit;
|
|
@@ -101,6 +101,7 @@ export interface Table2Props<T extends object> {
|
|
|
101
101
|
/** 테이블 제목 옆에 아이콘 표시 여부를 설정합니다. */
|
|
102
102
|
isTableTitleIcon?: boolean;
|
|
103
103
|
isEditMode?: boolean;
|
|
104
|
+
isCheckbox?: boolean;
|
|
104
105
|
}
|
|
105
|
-
declare const Table2: <T extends object>({ data, columns, checkbox, radio, onChecked, onDelete, deleteAllData, onSave, onRowClick, onRowDoubleClick, title, isTotal, buttons, isLoading, isPlusButton, scrollTo, modalData, onAddFn, pagination, isAddRowActive, onModalApplied, rowClickTriggerIdx, onDelFn, isClickedCheckbox, onTableDataChange, checkboxCheckedIdx, No, selectedItems, setSelectedItems, isTableTitleIcon, isEditMode, }: Table2Props<T>) => import("react/jsx-runtime").JSX.Element;
|
|
106
|
+
declare const Table2: <T extends object>({ data, columns, checkbox, radio, onChecked, onDelete, deleteAllData, onSave, onRowClick, onRowDoubleClick, title, isTotal, buttons, isLoading, isPlusButton, scrollTo, modalData, onAddFn, pagination, isAddRowActive, onModalApplied, rowClickTriggerIdx, onDelFn, isClickedCheckbox, onTableDataChange, checkboxCheckedIdx, No, selectedItems, setSelectedItems, isTableTitleIcon, isEditMode, isCheckbox, }: Table2Props<T>) => import("react/jsx-runtime").JSX.Element;
|
|
106
107
|
export default Table2;
|