@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,116 @@
1
+ /// <reference types="react" />
2
+ import { IRadius } from 'types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/text-field").RootProps & import("react").RefAttributes<HTMLInputElement>, "ref"> & import("../../components/TextField/index").TextFieldProps & import("react").RefAttributes<HTMLInputElement>>;
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
+ scaling: {
20
+ description: string;
21
+ table: {
22
+ category: string;
23
+ type: {
24
+ summary: string;
25
+ };
26
+ };
27
+ control: {
28
+ type: string;
29
+ };
30
+ options: import("types").IScaling[];
31
+ defaultValue: {
32
+ summary: string;
33
+ };
34
+ };
35
+ radius: {
36
+ description: string;
37
+ table: {
38
+ category: string;
39
+ type: {
40
+ summary: string;
41
+ };
42
+ };
43
+ options: IRadius[];
44
+ control: {
45
+ type: string;
46
+ };
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ color: {
52
+ description: string;
53
+ table: {
54
+ category: string;
55
+ type: {
56
+ summary: string;
57
+ };
58
+ };
59
+ options: import("types").IColor[];
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
+ control: {
75
+ type: string;
76
+ };
77
+ defaultValue: {
78
+ summary: string;
79
+ };
80
+ description: string;
81
+ options: string[];
82
+ };
83
+ size: {
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ };
90
+ control: {
91
+ type: string;
92
+ };
93
+ options: string[];
94
+ defaultValue: {
95
+ summary: string;
96
+ };
97
+ description: string;
98
+ };
99
+ };
100
+ };
101
+ export default meta;
102
+ export declare const Default: ({ ...args }: {
103
+ [x: string]: any;
104
+ }) => import("react/jsx-runtime").JSX.Element;
105
+ export declare const Size: ({ ...args }: {
106
+ [x: string]: any;
107
+ }) => import("react/jsx-runtime").JSX.Element;
108
+ export declare const Radius: ({ ...args }: {
109
+ [x: string]: any;
110
+ }) => import("react/jsx-runtime").JSX.Element;
111
+ export declare const Appearance: ({ ...args }: {
112
+ [x: string]: any;
113
+ }) => import("react/jsx-runtime").JSX.Element;
114
+ export declare const States: ({ ...args }: {
115
+ [x: string]: any;
116
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,88 @@
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, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import { TextField, TextFieldSlot } from '../../components/TextField/index';
25
+ import { commonArgTypes, radiusOptions } from '../../constants';
26
+ import { DotsHorizontalIcon, MagnifyingGlassIcon } from '@radix-ui/react-icons';
27
+ var meta = {
28
+ title: 'Component/TextField',
29
+ component: TextField,
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
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'TextField 길이' }),
44
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'TextField 둥글기' }),
45
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'TextField 색상' }),
46
+ appearance: {
47
+ table: {
48
+ category: 'Props',
49
+ type: { summary: ['classic', 'soft', 'surface'].join(' | ') },
50
+ },
51
+ control: { type: 'select' },
52
+ defaultValue: { summary: 'surface' },
53
+ description: 'TextField 스타일',
54
+ options: ['classic', 'soft', 'surface'],
55
+ },
56
+ size: {
57
+ table: {
58
+ category: 'Props',
59
+ type: { summary: ['small', 'medium', 'large'].join(' | ') },
60
+ },
61
+ control: { type: 'select' },
62
+ options: ['small', 'medium', 'large'],
63
+ defaultValue: { summary: 'medium' },
64
+ description: 'TextField 크기',
65
+ },
66
+ },
67
+ };
68
+ export default meta;
69
+ export var Default = function (_a) {
70
+ var args = __rest(_a, []);
71
+ return _jsx(TextField, __assign({ placeholder: "Search the docs..." }, args));
72
+ };
73
+ export var Size = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsxs("div", { className: "flex items-center gap-3", children: [_jsx(TextField, __assign({ placeholder: "Search the docs..." }, args, { size: 'small' })), _jsx(TextField, __assign({ placeholder: "Search the docs..." }, args, { size: 'medium' })), _jsx(TextField, __assign({ placeholder: "Search the docs..." }, args, { size: 'large' }))] }));
76
+ };
77
+ export var Radius = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { children: radiusOptions.map(function (radius) { return (_jsx("div", { className: "pb-1", children: _jsx(TextField, __assign({ placeholder: "Search the docs...", radius: radius }, args), radius) }, radius)); }) }));
80
+ };
81
+ export var Appearance = function (_a) {
82
+ var args = __rest(_a, []);
83
+ return (_jsx("div", { children: ['classic', 'soft', 'surface'].map(function (appearance) { return (_jsx("div", { className: "pb-1", children: _jsx(TextField, __assign({ placeholder: "Search the docs...", appearance: appearance }, args), appearance) }, appearance)); }) }));
84
+ };
85
+ export var States = function (_a) {
86
+ var args = __rest(_a, []);
87
+ return (_jsxs("div", { className: "flex items-center gap-3", children: [_jsx(TextField, __assign({ placeholder: "Search the docs..." }, args, { children: _jsx(TextFieldSlot, { children: _jsx(MagnifyingGlassIcon, { height: "16", width: "16" }) }) })), _jsx(TextField, __assign({ placeholder: "Search the docs..." }, args, { children: _jsx(TextFieldSlot, { side: 'right', children: _jsx(DotsHorizontalIcon, { height: "14", width: "14" }) }) })), _jsxs(TextField, __assign({}, args, { children: [_jsx(TextFieldSlot, { children: _jsx(MagnifyingGlassIcon, { height: "16", width: "16" }) }), _jsx(TextFieldSlot, { children: _jsx(DotsHorizontalIcon, { height: "14", width: "14" }) })] }))] }));
88
+ };
@@ -0,0 +1,138 @@
1
+ /// <reference types="react" />
2
+ declare const meta: {
3
+ title: string;
4
+ component: import("react").ForwardRefExoticComponent<import("@radix-ui/react-toast").ToastProviderProps & import("components/Toast").ToastProps & import("react").RefAttributes<never>>;
5
+ parameters: {
6
+ layout: string;
7
+ docs: {
8
+ description: {
9
+ component: string;
10
+ };
11
+ };
12
+ };
13
+ tags: string[];
14
+ argTypes: {
15
+ radius: {
16
+ description: string;
17
+ table: {
18
+ category: string;
19
+ type: {
20
+ summary: string;
21
+ };
22
+ };
23
+ options: import("types").IRadius[];
24
+ control: {
25
+ type: string;
26
+ };
27
+ defaultValue: {
28
+ summary: string;
29
+ };
30
+ };
31
+ scaling: {
32
+ description: string;
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ };
39
+ control: {
40
+ type: string;
41
+ };
42
+ options: import("types").IScaling[];
43
+ defaultValue: {
44
+ summary: string;
45
+ };
46
+ };
47
+ size: {
48
+ table: {
49
+ category: string;
50
+ type: {
51
+ summary: string;
52
+ };
53
+ };
54
+ options: import("types").ISize[];
55
+ description: string;
56
+ control: {
57
+ type: string;
58
+ };
59
+ defaultValue: {
60
+ summary: string;
61
+ };
62
+ };
63
+ color: {
64
+ table: {
65
+ category: string;
66
+ type: {
67
+ summary: string;
68
+ };
69
+ };
70
+ options: string[];
71
+ control: {
72
+ type: string;
73
+ };
74
+ defaultValue: {
75
+ summary: string;
76
+ };
77
+ description: string;
78
+ };
79
+ titleText: {
80
+ description: string;
81
+ table: {
82
+ category: string;
83
+ type: {
84
+ summary: string;
85
+ };
86
+ };
87
+ control: string;
88
+ };
89
+ contentText: {
90
+ description: string;
91
+ table: {
92
+ category: string;
93
+ type: {
94
+ summary: string;
95
+ };
96
+ };
97
+ control: string;
98
+ };
99
+ duration: {
100
+ table: {
101
+ category: string;
102
+ type: {
103
+ summary: string;
104
+ };
105
+ };
106
+ control: string;
107
+ description: string;
108
+ defaultValue: {
109
+ summary: number;
110
+ };
111
+ };
112
+ toastPosition: {
113
+ table: {
114
+ category: string;
115
+ type: {
116
+ summary: string;
117
+ };
118
+ };
119
+ options: string[];
120
+ control: {
121
+ type: string;
122
+ };
123
+ defaultValue: {
124
+ summary: string;
125
+ };
126
+ };
127
+ };
128
+ };
129
+ export default meta;
130
+ export declare const Default: ({ ...args }: {
131
+ [x: string]: any;
132
+ }) => import("react/jsx-runtime").JSX.Element;
133
+ export declare const NoTitleToast: ({ ...args }: {
134
+ [x: string]: any;
135
+ }) => import("react/jsx-runtime").JSX.Element;
136
+ export declare const NoButtonToast: ({ ...args }: {
137
+ [x: string]: any;
138
+ }) => 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 { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import { useState } from 'react';
25
+ import { commonArgTypes, sizeOptions } from '../../constants';
26
+ import { Toast, ToastDescription, ToastTitle, ToastActionButton } from 'components/Toast';
27
+ import Button from 'components/Button';
28
+ var toastPositionOption = [
29
+ 'top_center',
30
+ 'top_left',
31
+ 'top_right',
32
+ 'bottom_center',
33
+ 'bottom_left',
34
+ 'bottom_right',
35
+ ];
36
+ var meta = {
37
+ title: 'Component/Toast',
38
+ component: Toast,
39
+ parameters: {
40
+ layout: 'centered',
41
+ docs: {
42
+ description: {
43
+ component: '팝업 UI형태로 화면 하단에 일시적으로 노출되는 메시지 창',
44
+ },
45
+ },
46
+ },
47
+ tags: ['autodocs'],
48
+ argTypes: {
49
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'Toast border 둥굴기' }),
50
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Toast 비율' }),
51
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
52
+ category: 'Props',
53
+ type: {
54
+ summary: sizeOptions.filter(function (option) { return option !== 'x-small'; }).join(' | '),
55
+ },
56
+ }, options: sizeOptions.filter(function (option) { return option !== 'x-small'; }), description: 'Toast 크기' }),
57
+ color: {
58
+ table: {
59
+ category: 'Props',
60
+ type: { summary: ['danger', 'warning', 'success', 'information'].join(' | ') },
61
+ },
62
+ options: ['danger', 'warning', 'success', 'information'],
63
+ control: { type: 'select' },
64
+ defaultValue: { summary: 'none' },
65
+ description: 'Toast 색',
66
+ },
67
+ titleText: __assign(__assign({}, commonArgTypes.basicText), { description: 'Toast 타이틀 text' }),
68
+ contentText: __assign(__assign({}, commonArgTypes.basicText), { description: 'Toast 내용 text' }),
69
+ duration: {
70
+ table: {
71
+ category: 'Props',
72
+ type: { summary: 'number' },
73
+ },
74
+ control: 'number',
75
+ description: 'Toast duration (ms)',
76
+ defaultValue: { summary: 3000 },
77
+ },
78
+ toastPosition: {
79
+ table: {
80
+ category: 'Props',
81
+ type: { summary: toastPositionOption.join(' | ') },
82
+ },
83
+ options: toastPositionOption,
84
+ control: { type: 'select' },
85
+ defaultValue: { summary: 'top_right' },
86
+ },
87
+ },
88
+ };
89
+ export default meta;
90
+ export var Default = function (_a) {
91
+ var args = __rest(_a, []);
92
+ var _b = useState(false), open = _b[0], setOpen = _b[1];
93
+ return (_jsxs("div", { children: [_jsx(Button, { onClick: function () { return setOpen(true); }, children: "\uD1A0\uC2A4\uD2B8 \uBA54\uC138\uC9C0 \uD638\uCD9C" }), _jsxs(Toast, __assign({ openToast: open, setOpenToast: setOpen }, args, { children: [_jsx(ToastTitle, { titleText: args.titleText, children: "\uD1A0\uC2A4\uD2B8 \uD0C0\uC774\uD2C0" }), _jsx(ToastDescription, { contentText: args.contentText, children: "\uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4" }), _jsx(ToastActionButton, { altText: "\uC561\uC158\uBC84\uD2BC", children: "Action" })] }))] }));
94
+ };
95
+ export var NoTitleToast = function (_a) {
96
+ var args = __rest(_a, []);
97
+ var _b = useState(false), open = _b[0], setOpen = _b[1];
98
+ return (_jsxs("div", { children: [_jsx(Button, { onClick: function () { return setOpen(true); }, children: "\uD0C0\uC774\uD2C0 \uC5C6\uC74C" }), _jsxs(Toast, __assign({ openToast: open, setOpenToast: setOpen }, args, { children: [_jsx(ToastDescription, { children: "\uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4" }), _jsx(ToastActionButton, { altText: "\uC561\uC158\uBC84\uD2BC", children: "\uB2EB\uAE30" })] }))] }));
99
+ };
100
+ export var NoButtonToast = function (_a) {
101
+ var args = __rest(_a, []);
102
+ var _b = useState(false), open = _b[0], setOpen = _b[1];
103
+ return (_jsxs("div", { children: [_jsx(Button, { onClick: function () { return setOpen(true); }, children: "\uBC84\uD2BC \uC5C6\uC74C" }), _jsxs(Toast, __assign({ openToast: open, setOpenToast: setOpen }, args, { children: [_jsx(ToastTitle, { children: "\uD1A0\uC2A4\uD2B8 \uD0C0\uC774\uD2C0" }), _jsx(ToastDescription, { children: "\uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4" })] }))] }));
104
+ };
@@ -0,0 +1,115 @@
1
+ /// <reference types="react" />
2
+ import { IRadius, ISize, IAppearance } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-toggle").ToggleProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("../../components/Toggle").ToggleProps & 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
+ 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
+ size: {
36
+ table: {
37
+ category: string;
38
+ type: {
39
+ summary: string;
40
+ };
41
+ };
42
+ options: ISize[];
43
+ description: string;
44
+ control: {
45
+ type: string;
46
+ };
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ scaling: {
52
+ description: string;
53
+ table: {
54
+ category: string;
55
+ type: {
56
+ summary: string;
57
+ };
58
+ };
59
+ control: {
60
+ type: string;
61
+ };
62
+ options: import("../../types").IScaling[];
63
+ defaultValue: {
64
+ summary: string;
65
+ };
66
+ };
67
+ color: {
68
+ description: string;
69
+ table: {
70
+ category: string;
71
+ type: {
72
+ summary: string;
73
+ };
74
+ };
75
+ options: import("../../types").IColor[];
76
+ control: {
77
+ type: string;
78
+ };
79
+ defaultValue: {
80
+ summary: string;
81
+ };
82
+ };
83
+ appearance: {
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ };
90
+ control: {
91
+ type: string;
92
+ };
93
+ options: IAppearance[];
94
+ defaultValue: {
95
+ summary: string;
96
+ };
97
+ };
98
+ };
99
+ };
100
+ export default meta;
101
+ export declare const Default: ({ ...args }: {
102
+ [x: string]: any;
103
+ }) => import("react/jsx-runtime").JSX.Element;
104
+ export declare const Radius: ({ ...args }: {
105
+ [x: string]: any;
106
+ }) => import("react/jsx-runtime").JSX.Element;
107
+ export declare const Size: ({ ...args }: {
108
+ [x: string]: any;
109
+ }) => import("react/jsx-runtime").JSX.Element;
110
+ export declare const WithText: ({ ...args }: {
111
+ [x: string]: any;
112
+ }) => import("react/jsx-runtime").JSX.Element;
113
+ export declare const Appearance: ({ ...args }: {
114
+ [x: string]: any;
115
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,89 @@
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 { commonArgTypes, radiusOptions, sizeOptions, appearanceOptions } from '../../constants';
25
+ import { FontBoldIcon } from '@radix-ui/react-icons';
26
+ import { Toggle, ToggleWithText } from '../../components/Toggle';
27
+ var meta = {
28
+ title: 'Component/Toggle',
29
+ component: Toggle,
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
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'toggle 둥글기' }),
44
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
45
+ category: 'Props',
46
+ type: {
47
+ summary: sizeOptions
48
+ .filter(function (size) { return !['x-small', 'x-large'].includes(size); })
49
+ .join(' | '),
50
+ },
51
+ }, options: sizeOptions.filter(function (size) { return !['x-small', 'x-large'].includes(size); }), description: 'toggle 크기' }),
52
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'toggle scaling' }),
53
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'toggle color' }),
54
+ appearance: {
55
+ table: {
56
+ category: 'Props',
57
+ type: {
58
+ summary: appearanceOptions
59
+ .filter(function (appearance) { return !['classic', 'solid'].includes(appearance); })
60
+ .join(' | '),
61
+ },
62
+ },
63
+ control: { type: 'select' },
64
+ options: appearanceOptions.filter(function (appearance) { return !['classic', 'solid'].includes(appearance); }),
65
+ defaultValue: { summary: 'surface' },
66
+ },
67
+ },
68
+ };
69
+ export default meta;
70
+ export var Default = function (_a) {
71
+ var args = __rest(_a, []);
72
+ return (_jsx("div", { className: "flex items-center space-x-4", children: _jsx(Toggle, __assign({}, args, { "aria-label": "Toggle italic", children: _jsx(FontBoldIcon, {}) })) }));
73
+ };
74
+ export var Radius = function (_a) {
75
+ var args = __rest(_a, []);
76
+ return (_jsx("div", { className: "flex items-center space-x-4", children: radiusOptions.map(function (radius) { return (_jsx(Toggle, __assign({ "aria-label": "Toggle italic" }, args, { radius: radius, children: _jsx(FontBoldIcon, {}) }), radius)); }) }));
77
+ };
78
+ export var Size = function (_a) {
79
+ var args = __rest(_a, []);
80
+ return (_jsx("div", { className: "flex items-center space-x-4", children: ['small', 'medium', 'large'].map(function (size) { return (_jsx(Toggle, __assign({ "aria-label": "Toggle italic" }, args, { size: size, children: _jsx(FontBoldIcon, {}) }), size)); }) }));
81
+ };
82
+ export var WithText = function (_a) {
83
+ var args = __rest(_a, []);
84
+ return (_jsx(ToggleWithText, __assign({}, args, { "aria-label": "Toggle italic", text: 'Bold', children: _jsx(FontBoldIcon, {}) })));
85
+ };
86
+ export var Appearance = function (_a) {
87
+ var args = __rest(_a, []);
88
+ return (_jsx("div", { className: "flex items-center space-x-4", children: ['ghost', 'soft', 'surface', 'outline'].map(function (appearance) { return (_jsx(Toggle, __assign({ "aria-label": "Toggle italic" }, args, { appearance: appearance, children: _jsx(FontBoldIcon, {}) }), appearance)); }) }));
89
+ };