@gongsaero/design-system 0.2.61 → 0.2.63

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.
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const AssetManagementSVG: ({ size, color, ...props }: SVGProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const MapPinSimpleAreaSvg: ({ size, color, ...props }: SVGProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const MicrosoftTeamsLogoSvg: ({ size, color, ...props }: SVGProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  export { AnimatedPlusSVG } from './AnimatedPlusSVG';
2
2
  export { ArrowDownSVG } from './ArrowDownSVG';
3
3
  export { ArrowUpSVG } from './ArrowUpSVG';
4
+ export { AssetManagementSVG } from './AssetManagementSVG';
4
5
  export { BagOpenSVG } from './BagOpenSVG';
5
6
  export { BasketSVG } from './BasketSVG';
6
7
  export { BellRingingSVG } from './BellRingingSVG';
@@ -38,8 +39,10 @@ export { LogoFilledSVG } from './LogoFilledSVG';
38
39
  export { LogoSVG } from './LogoSVG';
39
40
  export { LogoutSVG } from './LogoutSVG';
40
41
  export { ManualSVG } from './ManualSVG';
42
+ export { MapPinSimpleAreaSvg } from './MapPinSimpleAreaSVG';
41
43
  export { MapTrifoldSVG } from './MapTrifoldSVG';
42
44
  export { MenuSVG } from './MenuSVG';
45
+ export { MicrosoftTeamsLogoSvg } from './MicrosoftTeamsLogoSVG';
43
46
  export { MinusSVG } from './MinusSVG';
44
47
  export { MoreNextSVG } from './MoreNextSVG';
45
48
  export { MorePrevSVG } from './MorePrevSVG';
@@ -1,4 +1,4 @@
1
- import { CSSProperties, MouseEvent, ReactNode } from 'react';
1
+ import { CSSProperties, MouseEvent, ReactNode, RefObject } from 'react';
2
2
  import { SIZE, TYPE } from '../../constants/styles';
3
3
  export type ButtonSize = (typeof SIZE.BUTTON)[keyof typeof SIZE.BUTTON];
4
4
  export type ButtonTypeSolid = (typeof TYPE.BUTTON.SOLID)[keyof typeof TYPE.BUTTON.SOLID];
@@ -79,4 +79,8 @@ export interface ButtonProps {
79
79
  * 링크 타겟
80
80
  */
81
81
  target?: string;
82
+ /**
83
+ * 버튼 요소에 대한 ref
84
+ */
85
+ ref?: RefObject<HTMLButtonElement>;
82
86
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gongsaero/design-system",
3
- "version": "0.2.61",
3
+ "version": "0.2.63",
4
4
  "description": "공새로 디자인 시스템",
5
5
  "author": "sungwoo",
6
6
  "license": "MIT",