@croquiscom/pds 11.9.0 → 11.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
+ ## 11.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7c17400: feat: Tooltip Default kind값 변경
8
+
9
+ ## 11.10.0
10
+
11
+ ### Minor Changes
12
+
13
+ - aee41cb: feat: PDS Tooltip 개선
14
+
3
15
  ## 11.9.0
4
16
 
5
17
  ### Minor Changes
@@ -4,6 +4,7 @@ declare const meta: Meta<typeof Tooltip>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof Tooltip>;
6
6
  export declare const Base: Story;
7
+ export declare const Color: Story;
7
8
  export declare const Placement: Story;
8
9
  export declare const MaxWidth: Story;
9
10
  export declare const Trigger: Story;
@@ -3,7 +3,10 @@ import { TooltipSize, TooltipKind } from './types';
3
3
  export interface TooltipBaseProps {
4
4
  /** @default medium */
5
5
  size?: TooltipSize;
6
- /** @default brand */
6
+ /**
7
+ * @default accent
8
+ * Primary, Brand는 삭제될 예정입니다.
9
+ */
7
10
  kind?: TooltipKind;
8
11
  }
9
12
  export declare const TooltipBase: import("@emotion/styled").StyledComponent<{
@@ -1,2 +1,10 @@
1
1
  export type TooltipSize = 'small' | 'medium' | 'large';
2
- export type TooltipKind = 'brand' | 'primary' | 'negative';
2
+ export type TooltipKind = 'neutral' | 'accent' | 'negative'
3
+ /**
4
+ * @deprecated accent를 대신 사용하세요.
5
+ */
6
+ | 'primary'
7
+ /**
8
+ * @deprecated 삭제될 예정입니다.
9
+ */
10
+ | 'brand';