@croquiscom/pds 8.25.1 → 8.26.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - e0bab88: feat: PDS 누락된 아이콘 추가(ColoredTrendDecreasingLine)
8
+
9
+ ## 8.26.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 696c02a: ChipInput 높이 무한 추가
14
+
3
15
  ## 8.25.1
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.2127 10.5942C14.0903 10.3823 13.8723 10.2434 13.6286 10.222C13.3849 10.2007 13.1461 10.2995 12.9887 10.4869L9.91413 14.1489L3.94952 3.81787C3.74241 3.45915 3.28372 3.33625 2.925 3.54336C2.56628 3.75046 2.44337 4.20915 2.65048 4.56787L9.15048 15.8262C9.27281 16.0381 9.4908 16.177 9.73452 16.1983C9.97825 16.2197 10.2171 16.1208 10.3744 15.9335L13.449 12.2715L17.8601 19.9117L14.7903 19.2879C14.3844 19.2054 13.9885 19.4676 13.906 19.8735C13.8235 20.2795 14.0857 20.6754 14.4916 20.7579L19.3915 21.7535C19.7974 21.836 20.1933 21.5738 20.2758 21.1679L21.2714 16.268C21.3539 15.8621 21.0917 15.4662 20.6858 15.3837C20.2799 15.3012 19.884 15.5634 19.8015 15.9693L19.1544 19.1536L14.2127 10.5942Z" fill="#F05046"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgColoredTrendDecreasingLine: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgColoredTrendDecreasingLine;
@@ -137,6 +137,7 @@ export { default as IconColoredSiren } from './ColoredSiren';
137
137
  export { default as IconColoredStar } from './ColoredStar';
138
138
  export { default as IconColoredThumbsUp } from './ColoredThumbsUp';
139
139
  export { default as IconColoredTip } from './ColoredTip';
140
+ export { default as IconColoredTrendDecreasingLine } from './ColoredTrendDecreasingLine';
140
141
  export { default as IconColoredTrendIncreasingLine } from './ColoredTrendIncreasingLine';
141
142
  export { default as IconColoredWarning } from './ColoredWarning';
142
143
  export { default as IconColoredWarningRed } from './ColoredWarningRed';
@@ -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;