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.
@@ -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';
@@ -10,7 +10,7 @@ export interface BreadcrumbsProps {
10
10
  href?: string;
11
11
  }[];
12
12
  /** 구분자 */
13
- separator?: string;
13
+ separator?: string | React.ReactNode;
14
14
  /** 최대 표시 아이템 수 */
15
15
  maxItems?: number;
16
16
  /** 최대 표시 아이템 수를 초과할 경우 표시할 아이템 수 */
@@ -1,2 +1,3 @@
1
1
  import { default as Checkbox, CheckboxProps } from './Checkbox';
2
- export { Checkbox, CheckboxProps };
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 CelButton: <T extends object>({ align, cell, setCurrentEditingCell, }: Props<T>) => import("react/jsx-runtime").JSX.Element;
12
- export default CelButton;
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>({ align, cell, isHover, setTableData, setRowSelection, setCurrentEditingCell, radio, isClicked, }: Props) => import("react/jsx-runtime").JSX.Element;
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;