@croquiscom/pds 12.1.0 → 12.1.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
+ ## 12.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 573ee71: Breadcrumb 라벨 커스텀할 경우 링크 스타일 지원
8
+
9
+ ## 12.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - d57d122: DropdownMultiSelect 커스텀 maxHeight 주입 버그 수정
14
+
3
15
  ## 12.1.0
4
16
 
5
17
  ### Minor Changes
@@ -9,3 +9,4 @@ export declare const Disabled: Story;
9
9
  export declare const WithLink: Story;
10
10
  export declare const WithIcon: Story;
11
11
  export declare const OnlyIcon: Story;
12
+ export declare const CustomLink: Story;
@@ -6,7 +6,7 @@ export interface DropdownMultiSelect<OptionValue> extends Omit<DropdownProps<Opt
6
6
  options: DropdownChipLabelOption<OptionValue>[];
7
7
  /**
8
8
  * Dropdown OptionList maxHeight값
9
- * - size가 large일 경우 none, 그외에는 기본 값이 적용되며 사용처에서 재정의할 수 있습니다.
9
+ * - size가 large일 경우 default 높이는 none, 그외에는 기본 값이 적용되며 사용처에서 재정의할 수 있습니다.
10
10
  * @default DEFAULT_DROPDOWN_MULTI_SELECT_MAX_HEIGHT(408)
11
11
  */
12
12
  maxHeight?: number;