@croquiscom/pds 15.15.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 +6 -0
- package/dist/components/list/List.d.ts +6 -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 -2
- 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
|
@@ -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;
|