fone-design-system_v2 1.0.216 → 1.0.218
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/components/Table2/rows/Cell.d.ts +2 -1
- package/dist/components/Table2/rows/Row.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +3 -0
- package/dist/components/Tabs/index.d.ts +2 -2
- package/dist/fone-design-system.es.js +8937 -8806
- package/dist/fone-design-system.umd.js +134 -134
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ interface Props<T extends object = any> {
|
|
|
20
20
|
reorderMode?: boolean;
|
|
21
21
|
dragHandleProps?: DraggableProvidedDragHandleProps | null;
|
|
22
22
|
rowHeight?: number;
|
|
23
|
+
draggingColumnWidths?: Array<string | undefined>;
|
|
23
24
|
}
|
|
24
|
-
declare const Cell: <T extends object>({ onCellClick, cell, idx, isHover, isRowClicked, isRowActive, selectedCellInfo, showSelectedCellBorder, onChange, setTableData, setRowSelection, rowSelection, radio, reorderMode, dragHandleProps, rowHeight, }: Props<T>) => import("react/jsx-runtime").JSX.Element | null;
|
|
25
|
+
declare const Cell: <T extends object>({ onCellClick, cell, idx, isHover, isRowClicked, isRowActive, selectedCellInfo, showSelectedCellBorder, onChange, setTableData, setRowSelection, rowSelection, radio, reorderMode, dragHandleProps, rowHeight, draggingColumnWidths, }: Props<T>) => import("react/jsx-runtime").JSX.Element | null;
|
|
25
26
|
export default Cell;
|
|
@@ -35,6 +35,7 @@ interface Props<T extends object = any> {
|
|
|
35
35
|
rowStyle?: CSSProperties;
|
|
36
36
|
rowHeight?: number;
|
|
37
37
|
headerRowHeight?: number;
|
|
38
|
+
draggingColumnWidths?: Array<string | undefined>;
|
|
38
39
|
}
|
|
39
40
|
declare const Row: import('react').ForwardRefExoticComponent<Props<any> & import('react').RefAttributes<HTMLTableRowElement>>;
|
|
40
41
|
export default Row;
|
|
@@ -10,6 +10,7 @@ export type TabsItem = {
|
|
|
10
10
|
iconPosition?: "start" | "end" | "top" | "bottom";
|
|
11
11
|
ariaLabel?: string;
|
|
12
12
|
};
|
|
13
|
+
export type TabsAppearance = "default" | "card";
|
|
13
14
|
export interface TabsProps extends Omit<MuiTabsProps, "children" | "value" | "onChange"> {
|
|
14
15
|
/** 현재 선택된 탭 인덱스 */
|
|
15
16
|
value: number;
|
|
@@ -25,6 +26,8 @@ export interface TabsProps extends Omit<MuiTabsProps, "children" | "value" | "on
|
|
|
25
26
|
selectionFollowsFocus?: boolean;
|
|
26
27
|
/** 숨겨진 패널도 DOM 유지 여부 */
|
|
27
28
|
keepMounted?: boolean;
|
|
29
|
+
/** 탭 스타일 프리셋 */
|
|
30
|
+
appearance?: TabsAppearance;
|
|
28
31
|
/** 루트 wrapper 스타일 */
|
|
29
32
|
sx?: SxProps<Theme>;
|
|
30
33
|
/** MuiTabs 스타일 */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { default as Tabs, TabsProps } from './Tabs';
|
|
2
|
-
export { Tabs, TabsProps };
|
|
1
|
+
import { default as Tabs, TabsAppearance, TabsProps } from './Tabs';
|
|
2
|
+
export { Tabs, TabsProps, TabsAppearance };
|