@croquiscom/pds 13.5.0 → 14.0.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
+ ## 14.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 20d9bdb: Topbar 버튼 요소 수정
8
+
3
9
  ## 13.5.0
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,4 @@
1
1
  import { CSSProperties } from 'react';
2
- import { Typography } from '../../foundation';
3
2
  import { CSSValueWithLength } from '../../styles';
4
3
  export declare const TopBar: {
5
4
  Container: import("@emotion/styled").StyledComponent<{
@@ -17,10 +16,20 @@ export declare const TopBar: {
17
16
  theme?: import("@emotion/react").Theme;
18
17
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>;
19
18
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
20
- ActionButton: import("@emotion/styled").StyledComponent<{
19
+ ActionButton: import("@emotion/styled").StyledComponent<import("../../components").TextButtonProps & import("react").RefAttributes<HTMLButtonElement> & {
20
+ theme?: import("@emotion/react").Theme;
21
+ }, {}, {}>;
22
+ ActionIconButton: import("@emotion/styled").StyledComponent<{
21
23
  theme?: import("@emotion/react").Theme;
22
24
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>;
23
- } & {
24
- kind?: Typography;
25
25
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
26
+ NumberIcon: import("@emotion/styled").StyledComponent<{
27
+ theme?: import("@emotion/react").Theme;
28
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>;
29
+ } & import("../../components").HStackProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
30
+ theme?: import("@emotion/react").Theme;
31
+ } & {
32
+ size?: 'large' | 'medium';
33
+ value: number;
34
+ }, {}, {}>;
26
35
  };
@@ -3,4 +3,6 @@ declare const meta: Meta;
3
3
  export default meta;
4
4
  type Story = StoryObj;
5
5
  export declare const Base: Story;
6
+ export declare const ToManyNotificationDesktop: Story;
6
7
  export declare const Mobile: Story;
8
+ export declare const ToManyNotificationMobile: Story;