@croquiscom/pds 15.21.0 → 15.21.2

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 15.21.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 44f214b: feat: ImageFile Type에 key 속성값 추가
8
+
9
+ ## 15.21.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 599d88d: openerTriggerEvent가 hover일때 openProp이 바뀔 경우 툴팁이 열리는 문제 수정
14
+
3
15
  ## 15.21.0
4
16
 
5
17
  ### Minor Changes
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { UploadFile } from './FileUpload';
3
3
  export interface ImageFile extends Omit<UploadFile, 'value'> {
4
+ key?: string;
4
5
  value?: File | null;
5
6
  src?: string;
6
7
  removable?: boolean;
@@ -10,6 +10,7 @@ export declare const DisabledHideRemoveButton: Story;
10
10
  export declare const OnlyJpgFileExtension: Story;
11
11
  export declare const ClickUploadButton: Story;
12
12
  export declare const FileStatus: Story;
13
+ export declare const DeleteUploadImage: Story;
13
14
  export declare const ReadOnly: Story;
14
15
  export declare const Disabled: Story;
15
16
  export declare const MultipleImageUpload: Story;