@croquiscom/pds 16.7.0 → 16.7.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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 16.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - aa662df: DisabledTooltip className 추가
8
+
3
9
  ## 16.7.0
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,6 @@
1
1
  import React, { ReactNode } from 'react';
2
2
  interface DisabledTooltipProps {
3
+ className?: string;
3
4
  /**
4
5
  * disabled 상태일 때만 Tooltip이 동작하고 children 요소는 disabled 상태로 변경됩니다.
5
6
  */
@@ -18,5 +19,5 @@ interface DisabledTooltipProps {
18
19
  */
19
20
  children: React.ReactElement;
20
21
  }
21
- export declare const DisabledTooltip: ({ disabled, content, placement, children }: DisabledTooltipProps) => import("@emotion/react/jsx-runtime").JSX.Element;
22
+ export declare const DisabledTooltip: ({ className, disabled, content, placement, children, }: DisabledTooltipProps) => import("@emotion/react/jsx-runtime").JSX.Element;
22
23
  export {};