@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.
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +555 -381
- package/dist/index.esm.js.map +1 -1
- package/dist/src/assets/icons/basic/AssetManagementSVG.d.ts +2 -0
- package/dist/src/assets/icons/basic/MapPinSimpleAreaSVG.d.ts +2 -0
- package/dist/src/assets/icons/basic/MicrosoftTeamsLogoSVG.d.ts +2 -0
- package/dist/src/assets/icons/basic/index.d.ts +3 -0
- package/dist/src/components/button/types.d.ts +5 -1
- package/package.json +1 -1
|
@@ -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
|
}
|