@sunggang/ui-lib 0.3.23 → 0.3.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.3.23",
3
+ "version": "0.3.24",
4
4
  "dependencies": {
5
5
  "@emotion/react": "^11.14.0",
6
6
  "@emotion/styled": "^11.14.0",
package/src/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import './style.css';
2
2
  export * from './lib/uiLibrary';
3
3
  export * from './lib/Spin';
4
- export { DropImage } from './lib/DropImage/CSRDropImage';
4
+ export * from './lib/DropImage';
5
5
  export * from './lib/Dropdown';
6
6
  export * from './lib/UploadImage/CustomUpload';
7
7
  export * from './components/ui/switch';
@@ -6,7 +6,6 @@ interface ImageItem {
6
6
  }
7
7
  interface CustomDragDropImagesProps {
8
8
  imageUrls: ImageItem[];
9
- onDragEnd: () => void;
10
9
  handleRemove: (item: ImageItem) => void;
11
10
  }
12
11
  export declare const CustomDragDropImages: React.FC<CustomDragDropImagesProps>;
@@ -6,8 +6,8 @@ interface ImageItem {
6
6
  }
7
7
  interface PrimaryDragDropImagesProps {
8
8
  imageUrls: ImageItem[];
9
- onDragEnd: () => void;
10
9
  handleRemove: (item: ImageItem) => void;
10
+ isDropDisabled?: boolean;
11
11
  }
12
12
  export declare const PrimaryDragDropImage: React.FC<PrimaryDragDropImagesProps>;
13
13
  export {};
@@ -6,7 +6,6 @@ interface ImageItem {
6
6
  }
7
7
  interface DragDropImagesProps {
8
8
  imageUrls: ImageItem[];
9
- onDragEnd: () => void;
10
9
  handleRemove: (item: ImageItem) => void;
11
10
  }
12
11
  export declare const DragDropImages: React.FC<DragDropImagesProps>;