@lotte-innovate/ui-component-test 0.0.7 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. package/README.md +163 -163
  2. package/dist/Typography/Header/index.d.ts +1 -1
  3. package/dist/Typography/index.d.ts +2 -2
  4. package/dist/Typography/index.js +3 -3
  5. package/dist/app/layout.d.ts +7 -0
  6. package/dist/app/layout.js +12 -0
  7. package/dist/app/page.d.ts +1 -0
  8. package/dist/app/page.js +25 -0
  9. package/dist/app/template/badgeTemplate.d.ts +11 -0
  10. package/dist/app/template/badgeTemplate.js +11 -0
  11. package/dist/app/template/buttonTemplate.d.ts +11 -0
  12. package/dist/app/template/buttonTemplate.js +11 -0
  13. package/dist/app/template/colorPicker.d.ts +6 -0
  14. package/dist/app/template/colorPicker.js +14 -0
  15. package/dist/app/template/textTemplate.d.ts +10 -0
  16. package/dist/app/template/textTemplate.js +23 -0
  17. package/dist/app/template/theme.d.ts +12 -0
  18. package/dist/app/template/theme.js +12 -0
  19. package/dist/color/alpha.d.ts +784 -0
  20. package/dist/color/alpha.js +784 -0
  21. package/dist/color/constants.d.ts +20 -0
  22. package/dist/color/constants.js +200 -0
  23. package/dist/color/dark.d.ts +392 -0
  24. package/dist/color/dark.js +392 -0
  25. package/dist/color/krdsColors.d.ts +309 -0
  26. package/dist/color/krdsColors.js +309 -0
  27. package/dist/color/light.d.ts +392 -0
  28. package/dist/color/light.js +393 -0
  29. package/dist/components/Tooltip/index.d.ts +1 -1
  30. package/dist/components/index.d.ts +2 -0
  31. package/dist/constants.d.ts +185 -0
  32. package/dist/constants.js +569 -0
  33. package/dist/index.d.ts +5 -0
  34. package/dist/index.js +3 -0
  35. package/dist/stories/Welcome.d.ts +2 -0
  36. package/dist/stories/Welcome.js +30 -0
  37. package/dist/stories/accordion/Accordion.stories.d.ts +71 -0
  38. package/dist/stories/accordion/Accordion.stories.js +61 -0
  39. package/dist/stories/alert-dialog/AlertDialog.stories.d.ts +107 -0
  40. package/dist/stories/alert-dialog/AlertDialog.stories.js +60 -0
  41. package/dist/stories/aspect-ratio/AspectRatio.stories.d.ts +68 -0
  42. package/dist/stories/aspect-ratio/AspectRatio.stories.js +78 -0
  43. package/dist/stories/avatar/Avatar.stories.d.ts +127 -0
  44. package/dist/stories/avatar/Avatar.stories.js +94 -0
  45. package/dist/stories/badge/Badge.stories.d.ts +133 -0
  46. package/dist/stories/badge/Badge.stories.js +86 -0
  47. package/dist/stories/bubble-chart/BubbleChart.stories.d.ts +102 -0
  48. package/dist/stories/bubble-chart/BubbleChart.stories.js +168 -0
  49. package/dist/stories/button/Button.stories.d.ts +148 -0
  50. package/dist/stories/button/Button.stories.js +65 -0
  51. package/dist/stories/button/IconButton.stories.d.ts +125 -0
  52. package/dist/stories/button/IconButton.stories.js +80 -0
  53. package/dist/stories/callout/Callout.stories.d.ts +129 -0
  54. package/dist/stories/callout/Callout.stories.js +104 -0
  55. package/dist/stories/card/Card.stories.d.ts +100 -0
  56. package/dist/stories/card/Card.stories.js +84 -0
  57. package/dist/stories/checkbox/Checkbox.stories.d.ts +147 -0
  58. package/dist/stories/checkbox/Checkbox.stories.js +110 -0
  59. package/dist/stories/checkbox/CheckboxCard.stories.d.ts +129 -0
  60. package/dist/stories/checkbox/CheckboxCard.stories.js +90 -0
  61. package/dist/stories/checkbox/CheckboxGroup.stories.d.ts +91 -0
  62. package/dist/stories/checkbox/CheckboxGroup.stories.js +72 -0
  63. package/dist/stories/context-menu/ContextMenu.stories.d.ts +113 -0
  64. package/dist/stories/context-menu/ContextMenu.stories.js +86 -0
  65. package/dist/stories/data-list/DataList.stories.d.ts +97 -0
  66. package/dist/stories/data-list/DataList.stories.js +87 -0
  67. package/dist/{components/Input/Input.stories.d.ts → stories/dialog/Dialog.stories.d.ts} +39 -28
  68. package/dist/stories/dialog/Dialog.stories.js +59 -0
  69. package/dist/stories/doughnut-chart/DoughnutChart.stories.d.ts +180 -0
  70. package/dist/stories/doughnut-chart/DoughnutChart.stories.js +228 -0
  71. package/dist/stories/dropdown-menu/DropdownMenu.stories.d.ts +112 -0
  72. package/dist/stories/dropdown-menu/DropdownMenu.stories.js +75 -0
  73. package/dist/stories/header/Header.stories.d.ts +112 -0
  74. package/dist/stories/header/Header.stories.js +97 -0
  75. package/dist/stories/hover-card/HoverCard.stories.d.ts +107 -0
  76. package/dist/stories/hover-card/HoverCard.stories.js +71 -0
  77. package/dist/stories/inset/Inset.stories.d.ts +58 -0
  78. package/dist/stories/inset/Inset.stories.js +64 -0
  79. package/dist/stories/label/Label.stories.d.ts +94 -0
  80. package/dist/stories/label/Label.stories.js +91 -0
  81. package/dist/stories/menubar/Menubar.stories.d.ts +119 -0
  82. package/dist/stories/menubar/Menubar.stories.js +98 -0
  83. package/dist/stories/navigation-menu/NavigationMenu.stories.d.ts +385 -0
  84. package/dist/stories/navigation-menu/NavigationMenu.stories.js +79 -0
  85. package/dist/stories/pie-chart/PieChart.stories.d.ts +185 -0
  86. package/dist/stories/pie-chart/PieChart.stories.js +281 -0
  87. package/dist/stories/popover/Popover.stories.d.ts +78 -0
  88. package/dist/stories/popover/Popover.stories.js +74 -0
  89. package/dist/stories/progress/Progress.stories.d.ts +113 -0
  90. package/dist/stories/progress/Progress.stories.js +77 -0
  91. package/dist/stories/radar-chart/RadarChart.stories.d.ts +110 -0
  92. package/dist/stories/radar-chart/RadarChart.stories.js +201 -0
  93. package/dist/stories/radio/Radio.stories.d.ts +108 -0
  94. package/dist/stories/radio/Radio.stories.js +84 -0
  95. package/dist/stories/radio/RadioCards.stories.d.ts +127 -0
  96. package/dist/stories/radio/RadioCards.stories.js +94 -0
  97. package/dist/stories/radio/RadioGroup.stories.d.ts +111 -0
  98. package/dist/stories/radio/RadioGroup.stories.js +88 -0
  99. package/dist/stories/scroll-area/ScrollArea.stories.d.ts +59 -0
  100. package/dist/stories/scroll-area/ScrollArea.stories.js +63 -0
  101. package/dist/stories/segmented-control/SegmentedControl.stories.d.ts +97 -0
  102. package/dist/stories/segmented-control/SegmentedControl.stories.js +80 -0
  103. package/dist/stories/select/Select.stories.d.ts +116 -0
  104. package/dist/stories/select/Select.stories.js +88 -0
  105. package/dist/stories/separator/Separator.stories.d.ts +93 -0
  106. package/dist/stories/separator/Separator.stories.js +82 -0
  107. package/dist/stories/skeleton/Skeleton.stories.d.ts +88 -0
  108. package/dist/stories/skeleton/Skeleton.stories.js +92 -0
  109. package/dist/stories/slider/Slider.stories.d.ts +114 -0
  110. package/dist/stories/slider/Slider.stories.js +83 -0
  111. package/dist/stories/spinner/Spinner.stories.d.ts +83 -0
  112. package/dist/stories/spinner/Spinner.stories.js +87 -0
  113. package/dist/stories/switch/Switch.stories.d.ts +146 -0
  114. package/dist/stories/switch/Switch.stories.js +108 -0
  115. package/dist/stories/tab-nav/TabNav.stories.d.ts +55 -0
  116. package/dist/stories/tab-nav/TabNav.stories.js +59 -0
  117. package/dist/stories/table/Table.stories.d.ts +87 -0
  118. package/dist/stories/table/Table.stories.js +79 -0
  119. package/dist/stories/tabs/Tabs.stories.d.ts +55 -0
  120. package/dist/stories/tabs/Tabs.stories.js +59 -0
  121. package/dist/stories/text/Text.stories.d.ts +74 -0
  122. package/dist/stories/text/Text.stories.js +76 -0
  123. package/dist/stories/textArea/TextArea.stories.d.ts +117 -0
  124. package/dist/stories/textArea/TextArea.stories.js +96 -0
  125. package/dist/stories/textfield/TextField.stories.d.ts +116 -0
  126. package/dist/stories/textfield/TextField.stories.js +88 -0
  127. package/dist/stories/toast/Toast.stories.d.ts +138 -0
  128. package/dist/stories/toast/Toast.stories.js +104 -0
  129. package/dist/stories/toggle/Toggle.stories.d.ts +115 -0
  130. package/dist/stories/toggle/Toggle.stories.js +89 -0
  131. package/dist/stories/toggle/ToggleGroup.stories.d.ts +103 -0
  132. package/dist/stories/toggle/ToggleGroup.stories.js +94 -0
  133. package/dist/stories/tooltip/Tooltip.stories.d.ts +93 -0
  134. package/dist/stories/tooltip/Tooltip.stories.js +78 -0
  135. package/dist/tsconfig.tsbuildinfo +1 -0
  136. package/dist/types.d.ts +11 -0
  137. package/dist/types.js +1 -0
  138. package/dist/utils/utils.d.ts +3 -0
  139. package/dist/utils/utils.js +27 -0
  140. package/package.json +118 -120
  141. package/dist/components/Input/Input.stories.js +0 -74
  142. package/dist/components/Input/index.d.ts +0 -14
  143. package/dist/components/Input/index.js +0 -53
@@ -0,0 +1,65 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import { fn } from '@storybook/test';
14
+ import { radiusOptions, scalingOptions, weightOptions, commonArgTypes, appearanceOptions, sizeOptions, } from '../../../src/constants';
15
+ import Button from 'components/Button';
16
+ import { BookmarkIcon, ArrowRightIcon } from '@radix-ui/react-icons';
17
+ var meta = {
18
+ title: 'Component/Button',
19
+ component: Button,
20
+ parameters: {
21
+ layout: 'centered',
22
+ themes: {
23
+ themeOverride: 'dark',
24
+ },
25
+ docs: {
26
+ description: {
27
+ component: '어떤 기능이나 동작을 실행하거나 기능을 사용하기 위한 상태로 변경하는 요소.',
28
+ },
29
+ },
30
+ },
31
+ tags: ['autodocs'],
32
+ argTypes: {
33
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: '버튼 둥글기' }),
34
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: '버튼 비율' }),
35
+ size: __assign(__assign({}, commonArgTypes.size), { description: '버튼 크기' }),
36
+ weight: __assign(__assign({}, commonArgTypes.weight), { description: '버튼 폰트 두께' }),
37
+ onClick: {
38
+ table: {
39
+ category: 'EVENT HANDLER',
40
+ },
41
+ },
42
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'Button 메인 색' }),
43
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { description: 'Button 스타일', options: appearanceOptions }),
44
+ disabled: {
45
+ description: '버튼 disabled 기본 속성',
46
+ defaultValue: { summary: 'false' },
47
+ table: {
48
+ category: 'Props',
49
+ type: { summary: 'boolean' },
50
+ },
51
+ control: { type: 'boolean' },
52
+ },
53
+ },
54
+ args: {
55
+ onClick: fn(),
56
+ },
57
+ };
58
+ export default meta;
59
+ export var Default = function (args) { return _jsx(Button, __assign({}, args, { children: "\uBC84\uD2BC" })); };
60
+ export var Radius = function (args) { return (_jsx("div", { className: "flex space-x-2", children: radiusOptions.map(function (radius) { return (_jsx(Button, __assign({}, args, { radius: radius, children: radius }), radius)); }) })); };
61
+ export var Size = function (args) { return (_jsx("div", { className: "flex items-center space-x-3", children: sizeOptions.map(function (size) { return (_jsx(Button, __assign({}, args, { size: size, children: size }), "".concat(size, "-size"))); }) })); };
62
+ export var Scaling = function (args) { return (_jsx("div", { className: "flex items-center space-x-3", children: scalingOptions.map(function (scaling) { return (_jsx(Button, __assign({}, args, { scaling: scaling, children: scaling }), scaling)); }) })); };
63
+ export var Weight = function (args) { return (_jsx("div", { className: "flex items-center space-x-3", children: weightOptions.map(function (weight) { return (_jsx(Button, __assign({}, args, { weight: weight, children: weight }), weight)); }) })); };
64
+ export var Appearance = function (args) { return (_jsx("div", { className: "flex items-center space-x-3", children: appearanceOptions.map(function (appearance) { return (_jsx(Button, __assign({}, args, { appearance: appearance, children: appearance }), appearance)); }) })); };
65
+ export var WithIcon = function (args) { return (_jsxs("div", { className: "flex flex-col items-center space-y-3", children: [_jsx("div", { className: "flex items-center space-x-3", children: appearanceOptions.map(function (appearance) { return (_jsxs(Button, __assign({}, args, { appearance: appearance, children: [_jsx(BookmarkIcon, { className: "w-4 h-4 mr-2" }), "\uBD81\uB9C8\uD06C"] }), appearance)); }) }), _jsx("div", { className: "flex items-center space-x-3", children: appearanceOptions.map(function (appearance) { return (_jsxs(Button, __assign({}, args, { appearance: appearance, children: ["More", _jsx(ArrowRightIcon, { className: "w-4 h-4 ml-2" })] }), appearance)); }) })] })); };
@@ -0,0 +1,125 @@
1
+ /// <reference types="react" />
2
+ import { ISize, IRadius, IAppearance } from 'types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & import("../../components/IconButton").IconButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
6
+ parameters: {
7
+ layout: string;
8
+ themes: {
9
+ themeOverride: string;
10
+ };
11
+ docs: {
12
+ description: {
13
+ component: string;
14
+ };
15
+ };
16
+ };
17
+ tags: string[];
18
+ argTypes: {
19
+ disabled: {
20
+ description: string;
21
+ defaultValue: {
22
+ summary: string;
23
+ };
24
+ table: {
25
+ category: string;
26
+ type: {
27
+ summary: string;
28
+ };
29
+ };
30
+ control: {
31
+ type: string;
32
+ };
33
+ };
34
+ radius: {
35
+ description: string;
36
+ table: {
37
+ category: string;
38
+ type: {
39
+ summary: string;
40
+ };
41
+ };
42
+ options: IRadius[];
43
+ control: {
44
+ type: string;
45
+ };
46
+ defaultValue: {
47
+ summary: string;
48
+ };
49
+ };
50
+ size: {
51
+ table: {
52
+ category: string;
53
+ type: {
54
+ summary: string;
55
+ };
56
+ };
57
+ options: ISize[];
58
+ description: string;
59
+ control: {
60
+ type: string;
61
+ };
62
+ defaultValue: {
63
+ summary: string;
64
+ };
65
+ };
66
+ scaling: {
67
+ description: string;
68
+ table: {
69
+ category: string;
70
+ type: {
71
+ summary: string;
72
+ };
73
+ };
74
+ control: {
75
+ type: string;
76
+ };
77
+ options: import("types").IScaling[];
78
+ defaultValue: {
79
+ summary: string;
80
+ };
81
+ };
82
+ color: {
83
+ description: string;
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ };
90
+ options: import("types").IColor[];
91
+ control: {
92
+ type: string;
93
+ };
94
+ defaultValue: {
95
+ summary: string;
96
+ };
97
+ };
98
+ appearance: {
99
+ options: IAppearance[];
100
+ table: {
101
+ category: string;
102
+ type: {
103
+ summary: string;
104
+ };
105
+ };
106
+ control: {
107
+ type: string;
108
+ };
109
+ defaultValue: {
110
+ summary: string;
111
+ };
112
+ };
113
+ };
114
+ };
115
+ export default meta;
116
+ export declare const Default: ({ ...args }: any) => import("react/jsx-runtime").JSX.Element;
117
+ export declare const Size: ({ ...args }: {
118
+ [x: string]: any;
119
+ }) => import("react/jsx-runtime").JSX.Element;
120
+ export declare const Radius: ({ ...args }: {
121
+ [x: string]: any;
122
+ }) => import("react/jsx-runtime").JSX.Element;
123
+ export declare const Appearance: ({ ...args }: {
124
+ [x: string]: any;
125
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,80 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import { jsx as _jsx } from "react/jsx-runtime";
24
+ import { MagnifyingGlassIcon } from '@radix-ui/react-icons';
25
+ import { commonArgTypes, radiusOptions, sizeOptions, appearanceOptions } from '../../constants';
26
+ import { IconButton } from '../../components/IconButton';
27
+ var meta = {
28
+ title: 'Component/IconButton',
29
+ component: IconButton,
30
+ parameters: {
31
+ layout: 'centered',
32
+ themes: {
33
+ themeOverride: 'dark',
34
+ },
35
+ docs: {
36
+ description: {
37
+ component: '기호로 만든 시각 언어로 이루어진 형태로 기능이나 동작실행, 상태를 변경하는 요소로 사용',
38
+ },
39
+ },
40
+ },
41
+ tags: ['autodocs'],
42
+ argTypes: {
43
+ disabled: {
44
+ description: 'IconButton disabled',
45
+ defaultValue: { summary: 'false' },
46
+ table: {
47
+ category: 'Props',
48
+ type: { summary: 'boolean' },
49
+ },
50
+ control: { type: 'boolean' },
51
+ },
52
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'IconButton 둥글기' }),
53
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
54
+ category: 'Props',
55
+ type: {
56
+ summary: sizeOptions.join(' | '),
57
+ },
58
+ }, options: sizeOptions, description: 'IconButton 크기' }),
59
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'IconButton scaling' }),
60
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'IconButton color' }),
61
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { options: appearanceOptions }),
62
+ },
63
+ };
64
+ export default meta;
65
+ export var Default = function (_a) {
66
+ var args = __rest(_a, []);
67
+ return (_jsx(IconButton, __assign({}, args, { children: _jsx(MagnifyingGlassIcon, {}) })));
68
+ };
69
+ export var Size = function (_a) {
70
+ var args = __rest(_a, []);
71
+ return (_jsx("div", { className: "flex items-center space-x-4", children: sizeOptions.map(function (size) { return (_jsx(IconButton, __assign({}, args, { size: size, children: _jsx(MagnifyingGlassIcon, {}) }), size)); }) }));
72
+ };
73
+ export var Radius = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsx("div", { className: "flex items-center space-x-4", children: radiusOptions.map(function (radius) { return (_jsx(IconButton, __assign({}, args, { radius: radius, children: _jsx(MagnifyingGlassIcon, {}) }), radius)); }) }));
76
+ };
77
+ export var Appearance = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex items-center space-x-4", children: appearanceOptions.map(function (appearance) { return (_jsx(IconButton, __assign({}, args, { appearance: appearance, children: _jsx(MagnifyingGlassIcon, {}) }), appearance)); }) }));
80
+ };
@@ -0,0 +1,129 @@
1
+ /// <reference types="react" />
2
+ import { IRadius, IScaling } from 'types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("components/Callout").CalloutProps & import("react").RefAttributes<HTMLDivElement>>;
6
+ parameters: {
7
+ layout: string;
8
+ docs: {
9
+ description: {
10
+ component: string;
11
+ };
12
+ };
13
+ };
14
+ tags: string[];
15
+ argTypes: {
16
+ radius: {
17
+ description: string;
18
+ table: {
19
+ category: string;
20
+ type: {
21
+ summary: string;
22
+ };
23
+ };
24
+ options: IRadius[];
25
+ control: {
26
+ type: string;
27
+ };
28
+ defaultValue: {
29
+ summary: string;
30
+ };
31
+ };
32
+ size: {
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ };
39
+ options: import("types").ISize[];
40
+ description: string;
41
+ control: {
42
+ type: string;
43
+ };
44
+ defaultValue: {
45
+ summary: string;
46
+ };
47
+ };
48
+ scaling: {
49
+ description: string;
50
+ table: {
51
+ category: string;
52
+ type: {
53
+ summary: string;
54
+ };
55
+ };
56
+ control: {
57
+ type: string;
58
+ };
59
+ options: IScaling[];
60
+ defaultValue: {
61
+ summary: string;
62
+ };
63
+ };
64
+ color: {
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ };
71
+ options: string[];
72
+ control: {
73
+ type: string;
74
+ };
75
+ defaultValue: {
76
+ summary: string;
77
+ };
78
+ description: string;
79
+ };
80
+ contentText: {
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ };
88
+ control: string;
89
+ };
90
+ appearance: {
91
+ table: {
92
+ category: string;
93
+ type: {
94
+ summary: string;
95
+ };
96
+ };
97
+ description: string;
98
+ options: import("types").IAppearance[];
99
+ control: {
100
+ type: string;
101
+ };
102
+ defaultValue: {
103
+ summary: string;
104
+ };
105
+ };
106
+ };
107
+ };
108
+ export default meta;
109
+ export declare const Default: ({ ...args }: {
110
+ [x: string]: any;
111
+ }) => import("react/jsx-runtime").JSX.Element;
112
+ export declare const Radius: ({ ...args }: {
113
+ [x: string]: any;
114
+ }) => import("react/jsx-runtime").JSX.Element;
115
+ export declare const Size: ({ ...args }: {
116
+ [x: string]: any;
117
+ }) => import("react/jsx-runtime").JSX.Element;
118
+ export declare const Color: ({ ...args }: {
119
+ [x: string]: any;
120
+ }) => import("react/jsx-runtime").JSX.Element;
121
+ export declare const Appearance: ({ ...args }: {
122
+ [x: string]: any;
123
+ }) => import("react/jsx-runtime").JSX.Element;
124
+ export declare const Scaling: ({ ...args }: {
125
+ [x: string]: any;
126
+ }) => import("react/jsx-runtime").JSX.Element;
127
+ export declare const IconTypes: ({ ...args }: {
128
+ [x: string]: any;
129
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,104 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import { createElement as _createElement } from "react";
24
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
25
+ import { Callout, CalloutIcon, CalloutText } from 'components/Callout';
26
+ import { Text } from 'Typography/Text';
27
+ import { radiusOptions, scalingOptions, commonArgTypes, sizeOptions, appearanceOptions, } from '../../constants';
28
+ var meta = {
29
+ title: 'Component/Callout',
30
+ component: Callout,
31
+ parameters: {
32
+ layout: 'centered',
33
+ docs: {
34
+ description: {
35
+ component: '중요한 정보나 경고를 강조하기 위해 사용되는 알림 박스 컴포넌트',
36
+ },
37
+ },
38
+ },
39
+ tags: ['autodocs'],
40
+ argTypes: {
41
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'Callout border 둥굴기' }),
42
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
43
+ category: 'Props',
44
+ type: {
45
+ summary: sizeOptions
46
+ .filter(function (option) { return option !== 'x-small' && option !== 'x-large'; })
47
+ .join(' | '),
48
+ },
49
+ }, options: sizeOptions.filter(function (option) { return option !== 'x-small' && option !== 'x-large'; }), description: 'Callout 크기' }),
50
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Callout 비율' }),
51
+ color: {
52
+ table: {
53
+ category: 'Props',
54
+ type: { summary: ['danger', 'warning', 'success', 'information'].join(' | ') },
55
+ },
56
+ options: ['danger', 'warning', 'success', 'information'],
57
+ control: { type: 'select' },
58
+ defaultValue: { summary: 'information' },
59
+ description: 'Toast 색',
60
+ },
61
+ contentText: __assign(__assign({}, commonArgTypes.basicText), { description: 'Callout 안에 들어가는 텍스트' }),
62
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { table: {
63
+ category: 'Props',
64
+ type: {
65
+ summary: appearanceOptions
66
+ .filter(function (option) { return option !== 'classic' && option !== 'ghost' && option !== 'solid'; })
67
+ .join(' | '),
68
+ },
69
+ }, description: 'Callout 스타일', options: appearanceOptions.filter(function (option) { return option !== 'classic' && option !== 'ghost' && option !== 'solid'; }) }),
70
+ },
71
+ };
72
+ export default meta;
73
+ export var Default = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsxs(Callout, __assign({}, args, { children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC2DC\uC2A4\uD15C \uC810\uAC80\uC774 \uC608\uC815\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4." }))] })));
76
+ };
77
+ export var Radius = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: radiusOptions.map(function (radius) { return (_createElement(Callout, __assign({}, args, { radius: radius, key: radius }),
80
+ _jsx(CalloutIcon, __assign({}, args, { iconType: "information" })),
81
+ _jsx(CalloutText, __assign({}, args, { children: "\uC2DC\uC2A4\uD15C \uC810\uAC80\uC774 \uC608\uC815\uB418\uC5B4 \uC788\uC2B5\uB2C8\uB2E4." })))); }) }));
82
+ };
83
+ export var Size = function (_a) {
84
+ var args = __rest(_a, []);
85
+ return (_jsxs("div", { className: "flex flex-col space-y-5", children: [_jsxs(Callout, __assign({}, args, { size: 'small', children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. \uCD5C\uC2E0 \uBC84\uC804\uC744 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uC5EC \uC0AC\uC6A9\uD574 \uC8FC\uC138\uC694." }))] })), _jsxs(Callout, __assign({}, args, { children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. \uCD5C\uC2E0 \uBC84\uC804\uC744 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uC5EC \uC0AC\uC6A9\uD574 \uC8FC\uC138\uC694." }))] })), _jsxs(Callout, __assign({}, args, { size: "large", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. \uCD5C\uC2E0 \uBC84\uC804\uC744 \uB2E4\uC6B4\uB85C\uB4DC\uD558\uC5EC \uC0AC\uC6A9\uD574 \uC8FC\uC138\uC694." }))] }))] }));
86
+ };
87
+ export var Color = function (_a) {
88
+ var args = __rest(_a, []);
89
+ return (_jsxs("div", { className: "flex space-x-5", children: [_jsxs(Callout, __assign({}, args, { color: "information", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC815\uBCF4 \uBA54\uC138\uC9C0" }))] })), _jsxs(Callout, __assign({}, args, { color: "danger", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "danger" })), _jsx(CalloutText, __assign({}, args, { children: "\uC704\uD5D8 \uBA54\uC138\uC9C0" }))] })), _jsxs(Callout, __assign({}, args, { color: "warning", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "warning" })), _jsx(CalloutText, __assign({}, args, { children: "\uACBD\uACE0 \uBA54\uC138\uC9C0" }))] })), _jsxs(Callout, __assign({}, args, { color: "success", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "success" })), _jsx(CalloutText, __assign({}, args, { children: "\uC131\uACF5 \uBA54\uC138\uC9C0" }))] }))] }));
90
+ };
91
+ export var Appearance = function (_a) {
92
+ var args = __rest(_a, []);
93
+ return (_jsxs("div", { className: "flex space-x-5", children: [_jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Soft(\uAE30\uC900)" }), _jsxs(Callout, __assign({}, args, { appearance: "soft", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. " }))] }))] }), _jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Surface" }), _jsxs(Callout, __assign({}, args, { appearance: "surface", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. " }))] }))] }), _jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Outline" }), _jsxs(Callout, __assign({}, args, { appearance: "outline", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC0C8\uB85C\uC6B4 \uC5C5\uB370\uC774\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4. " }))] }))] })] }));
94
+ };
95
+ export var Scaling = function (_a) {
96
+ var args = __rest(_a, []);
97
+ return (_jsx("div", { className: "flex flex-col space-y-5", children: scalingOptions.map(function (scaling) { return (_createElement(Callout, __assign({}, args, { scaling: scaling, key: scaling }),
98
+ _jsx(CalloutIcon, __assign({}, args, { iconType: "information" })),
99
+ _jsx(CalloutText, __assign({}, args, { children: "\uAD00\uB9AC\uC790\uC5D0\uAC8C \uBB38\uC758\uD558\uC138\uC694." })))); }) }));
100
+ };
101
+ export var IconTypes = function (_a) {
102
+ var args = __rest(_a, []);
103
+ return (_jsxs("div", { className: "flex space-x-5", children: [_jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Danger" }), _jsxs(Callout, __assign({}, args, { color: "danger", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "danger", color: "danger" })), _jsx(CalloutText, __assign({}, args, { color: "danger", children: "\uC704\uD5D8 \uC544\uC774\uCF58" }))] }))] }), _jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Warning" }), _jsxs(Callout, __assign({}, args, { color: "warning", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "warning" })), _jsx(CalloutText, __assign({}, args, { children: "\uACBD\uACE0 \uC544\uC774\uCF58" }))] }))] }), _jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Success" }), _jsxs(Callout, __assign({}, args, { color: "success", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "success" })), _jsx(CalloutText, __assign({}, args, { children: "\uC131\uACF5 \uC544\uC774\uCF58" }))] }))] }), _jsxs("div", { className: "flex flex-col space-y-1", children: [_jsx(Text, { children: "Info" }), _jsxs(Callout, __assign({}, args, { color: "information", children: [_jsx(CalloutIcon, __assign({}, args, { iconType: "information" })), _jsx(CalloutText, __assign({}, args, { children: "\uC815\uBCF4 \uC544\uC774\uCF58" }))] }))] })] }));
104
+ };
@@ -0,0 +1,100 @@
1
+ /// <reference types="react" />
2
+ import { IRadius, IScaling } from 'types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("components/Card").CardProps & import("react").RefAttributes<HTMLDivElement>>;
6
+ parameters: {
7
+ layout: string;
8
+ themes: {
9
+ themeOverride: string;
10
+ };
11
+ docs: {
12
+ description: {
13
+ component: string;
14
+ };
15
+ };
16
+ };
17
+ tags: string[];
18
+ argTypes: {
19
+ radius: {
20
+ description: string;
21
+ table: {
22
+ category: string;
23
+ type: {
24
+ summary: string;
25
+ };
26
+ };
27
+ options: IRadius[];
28
+ control: {
29
+ type: string;
30
+ };
31
+ defaultValue: {
32
+ summary: string;
33
+ };
34
+ };
35
+ scaling: {
36
+ description: string;
37
+ table: {
38
+ category: string;
39
+ type: {
40
+ summary: string;
41
+ };
42
+ };
43
+ control: {
44
+ type: string;
45
+ };
46
+ options: IScaling[];
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ size: {
52
+ table: {
53
+ category: string;
54
+ type: {
55
+ summary: string;
56
+ };
57
+ };
58
+ options: import("types").ISize[];
59
+ description: string;
60
+ control: {
61
+ type: string;
62
+ };
63
+ defaultValue: {
64
+ summary: string;
65
+ };
66
+ };
67
+ appearance: {
68
+ table: {
69
+ category: string;
70
+ type: {
71
+ summary: string;
72
+ };
73
+ };
74
+ description: string;
75
+ options: import("types").IAppearance[];
76
+ defaultValue: {
77
+ summary: string;
78
+ };
79
+ control: {
80
+ type: string;
81
+ };
82
+ };
83
+ };
84
+ };
85
+ export default meta;
86
+ export declare const Default: ({ ...args }: {
87
+ [x: string]: any;
88
+ }) => import("react/jsx-runtime").JSX.Element;
89
+ export declare const NoAvatar: ({ ...args }: {
90
+ [x: string]: any;
91
+ }) => import("react/jsx-runtime").JSX.Element;
92
+ export declare const Appearance: ({ ...args }: {
93
+ [x: string]: any;
94
+ }) => import("react/jsx-runtime").JSX.Element;
95
+ export declare const Scaling: ({ ...args }: {
96
+ [x: string]: any;
97
+ }) => import("react/jsx-runtime").JSX.Element;
98
+ export declare const Radius: ({ ...args }: {
99
+ [x: string]: any;
100
+ }) => import("react/jsx-runtime").JSX.Element;