@croquiscom/pds 15.14.0 → 15.16.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/CHANGELOG.md +12 -0
- package/dist/components/date-picker/DatePickerMask.d.ts +1 -1
- package/dist/components/list/List.d.ts +6 -1
- package/dist/components/list/List.stories.d.ts +1 -0
- package/dist/components/list-item/ListItem.d.ts +7 -1
- package/dist/components/list-item/styles.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/zIndex.d.ts +2 -1
- package/package.json +1 -1
- package/plugin/generate_svg/ui.html +1 -1
- package/plugin/generate_svg/ui.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
3
|
export declare const DatePickerMask: import("@emotion/styled").StyledComponent<{
|
|
4
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
4
5
|
color?: string | undefined;
|
|
5
6
|
suppressHydrationWarning?: boolean | undefined;
|
|
6
7
|
className?: string | undefined;
|
|
@@ -231,7 +232,6 @@ export declare const DatePickerMask: import("@emotion/styled").StyledComponent<{
|
|
|
231
232
|
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
232
233
|
contextMenu?: string | undefined;
|
|
233
234
|
dir?: string | undefined;
|
|
234
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
235
235
|
hidden?: boolean | undefined;
|
|
236
236
|
nonce?: string | undefined;
|
|
237
237
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
@@ -6,6 +6,11 @@ export interface ListProps<T = string> {
|
|
|
6
6
|
* @default false
|
|
7
7
|
*/
|
|
8
8
|
draggable?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* 드래그시 오버레이 영역의 z-index 값
|
|
11
|
+
* @default 1065
|
|
12
|
+
*/
|
|
13
|
+
dragOverlayZindex?: number;
|
|
9
14
|
/**
|
|
10
15
|
* 드래그될 경우 변경된 items값을 파라미터로 넘겨준다
|
|
11
16
|
* @see draggable
|
|
@@ -13,4 +18,4 @@ export interface ListProps<T = string> {
|
|
|
13
18
|
onChange?: (items: Array<ListItemProps<T>>) => void;
|
|
14
19
|
width?: number;
|
|
15
20
|
}
|
|
16
|
-
export declare const List: <T extends string>({ items, draggable, onChange, width }: ListProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const List: <T extends string>({ items, draggable, dragOverlayZindex, onChange, width, }: ListProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -8,6 +8,12 @@ export interface ListItemProps<T = string> {
|
|
|
8
8
|
* @default false
|
|
9
9
|
*/
|
|
10
10
|
draggable?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
/**
|
|
13
|
+
* 드래그 오버레이된 항목 여부
|
|
14
|
+
* @see draggable
|
|
15
|
+
*/
|
|
16
|
+
draggingOverlay?: boolean;
|
|
11
17
|
/**
|
|
12
18
|
* draggable=true이면, index는 필수값이 된다
|
|
13
19
|
* @see draggable
|
|
@@ -32,4 +38,4 @@ export interface ListItemProps<T = string> {
|
|
|
32
38
|
*/
|
|
33
39
|
onPin?: (fixed: boolean, index?: number) => void;
|
|
34
40
|
}
|
|
35
|
-
export declare const ListItem: <T extends string>({ id, isOn, fixed, disabled, text, draggable, index, onToggle, onPin, }: ListItemProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
41
|
+
export declare const ListItem: <T extends string>({ id, isOn, fixed, disabled, text, draggable, draggingOverlay, index, onToggle, onPin, }: ListItemProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -828,5 +828,5 @@ export declare const getItemStyle: (isDragging: boolean, style?: React.CSSProper
|
|
|
828
828
|
export declare const item_base_css: import("@emotion/utils").SerializedStyles;
|
|
829
829
|
export declare const pin_base_css: import("@emotion/utils").SerializedStyles;
|
|
830
830
|
export declare const getStylesByPinned: (isFixed: boolean) => import("@emotion/utils").SerializedStyles;
|
|
831
|
-
export declare const getDraggableStyle: (isDragging: boolean, disabled: boolean | undefined) => import("@emotion/utils").SerializedStyles;
|
|
831
|
+
export declare const getDraggableStyle: (isDragging: boolean, isDraggingOverlay: boolean, disabled: boolean | undefined) => import("@emotion/utils").SerializedStyles;
|
|
832
832
|
export declare const three_bars_base_css: import("@emotion/utils").SerializedStyles;
|