@croquiscom/pds 8.25.0 → 8.26.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.26.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 696c02a: ChipInput 높이 무한 추가
8
+
9
+ ## 8.25.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 129c48b: ChipInput canDelete false인 아이템이 맨마지막인 경우 백스페이스 삭제 불가 추가
14
+
3
15
  ## 8.25.0
4
16
 
5
17
  ### Minor Changes
@@ -30,8 +30,9 @@ export interface ChipInputProps extends AriaFocusProps, Omit<InputHTMLAttributes
30
30
  * `wrap` prop이 `"wrap"`인 경우 최대 높이를 지정할 수 있습니다.
31
31
  * 최대 높이를 초과하면 수직으로 스크롤됩니다.
32
32
  * `maxHeight` prop이 지정되지 않으면 `size` prop에 따라 기본 높이가 적용됩니다.(small: 66px, medium: 80px, large: 90px)
33
+ * infinite 적용시 value 만큼 높이가 증가합니다.
33
34
  */
34
- maxHeight?: number;
35
+ maxHeight?: number | 'infinite';
35
36
  className?: string;
36
37
  style?: CSSProperties;
37
38
  onChange?: (value: ChipInputValue[]) => void;