@croquiscom/pds 8.9.2 → 8.10.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.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 4bf2502: Table TableCol 3번째 행부터 깨지는 이슈 수정
8
+
9
+ ## 8.10.0
10
+
11
+ ### Minor Changes
12
+
13
+ - c227045: TextButton kind link인 경우에도 컬러 지정 가능하게 수정
14
+
3
15
  ## 8.9.2
4
16
 
5
17
  ### 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
  }