fone-design-system_v2 1.0.13 → 1.0.14
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/assets/icons/outline/index.d.ts +2 -0
- package/dist/components/ui/Breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/dist/components/ui/Checkbox/index.d.ts +2 -1
- package/dist/components/ui/Select/Select.d.ts +4 -0
- package/dist/components/ui/Table2/{CelButton.d.ts → CellButton.d.ts} +2 -2
- package/dist/components/ui/Table2/CellModal.d.ts +1 -1
- package/dist/components/ui/Table2/Table2.d.ts +1 -0
- package/dist/fone-design-system.es.js +8579 -8176
- package/dist/fone-design-system.umd.js +158 -152
- package/dist/fone-design-system_v2.css +1 -1
- package/dist/styles.css +0 -202
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
- package/dist/emptyBox.png +0 -0
- package/dist/images/require.png +0 -0
|
@@ -10,3 +10,5 @@ export { default as SettingOutlined } from './settingOutlined.svg?react';
|
|
|
10
10
|
export { default as StarOutlined } from './starOutlined.svg?react';
|
|
11
11
|
export { default as User2Outlined } from './user2Outlined.svg?react';
|
|
12
12
|
export { default as UserOutlined } from './userOutlined.svg?react';
|
|
13
|
+
export { default as EmptyBox } from './emptyBox.svg';
|
|
14
|
+
export { default as Require } from './require.svg';
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { default as Checkbox, CheckboxProps } from './Checkbox';
|
|
2
|
-
|
|
2
|
+
import { default as RHFCheckboxController, RHFCheckboxControllerProps } from './RHFCheckboxController';
|
|
3
|
+
export { Checkbox, CheckboxProps, RHFCheckboxController, RHFCheckboxControllerProps, };
|
|
@@ -25,6 +25,10 @@ export interface SelectProps extends Omit<MSelectProps, any>, CustomSelectProps
|
|
|
25
25
|
all?: boolean;
|
|
26
26
|
select?: boolean;
|
|
27
27
|
defaultValue?: string;
|
|
28
|
+
/** 메뉴 및 선택된 값 가운데 정렬 여부 */
|
|
29
|
+
center?: boolean;
|
|
30
|
+
/** 메뉴 아이템에 추가로 적용할 sx */
|
|
31
|
+
menuItemSx?: SxProps<Theme>;
|
|
28
32
|
}
|
|
29
33
|
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLDivElement>>;
|
|
30
34
|
export default Select;
|
|
@@ -8,5 +8,5 @@ interface Props<T extends object> {
|
|
|
8
8
|
isActive: boolean;
|
|
9
9
|
}>>;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
12
|
-
export default
|
|
11
|
+
declare const CellButton: <T extends object>({ align, cell, setCurrentEditingCell, }: Props<T>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default CellButton;
|
|
@@ -14,5 +14,5 @@ interface Props<T extends object = any> {
|
|
|
14
14
|
radio: boolean;
|
|
15
15
|
isClicked: boolean;
|
|
16
16
|
}
|
|
17
|
-
declare const CellModal: <T extends object>({
|
|
17
|
+
declare const CellModal: <T extends object>({ cell, isHover, setTableData, setRowSelection, setCurrentEditingCell, radio, isClicked, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export default CellModal;
|
|
@@ -25,6 +25,7 @@ export type ColumnDef<T extends object> = TanstackColumnDef<T> & {
|
|
|
25
25
|
maxLength?: number;
|
|
26
26
|
numRange?: number[];
|
|
27
27
|
component?: (row: T) => React.ReactNode;
|
|
28
|
+
readOnly?: boolean;
|
|
28
29
|
};
|
|
29
30
|
export interface Table2Props<T extends object> {
|
|
30
31
|
data: T[] | undefined;
|