@croquiscom/pds 8.25.1 → 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 +6 -0
- package/dist/components/input/ChipInput.d.ts +2 -1
- package/dist/index.es.js +6 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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;
|