@croquiscom/pds 8.9.2 → 8.10.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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c227045: TextButton kind link인 경우에도 컬러 지정 가능하게 수정
8
+
3
9
  ## 8.9.2
4
10
 
5
11
  ### Patch Changes
@@ -9,8 +9,11 @@ export interface TextButtonProps extends Omit<ButtonProps, 'loading' | 'kind'> {
9
9
  /** @default medium */
10
10
  size?: TextButtonSize;
11
11
  /**
12
- * kind값이 link일 경우 고정 컬러(semantic_colors.content.primary)로 지정됩니다.
13
- * @default semantic_colors.content.primary
12
+ * @default
13
+ * kind='text'
14
+ * semantic_colors.content.primary
15
+ * kind='link'
16
+ * semantic_colors.accent.primary
14
17
  */
15
18
  color?: string;
16
19
  }