@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,110 @@
1
+ declare const meta: {
2
+ title: string;
3
+ component: {
4
+ ({ className, labels, datasets, width, height, scaling, ...props }: import("components/RadarChart").RadarChartProps): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ parameters: {
8
+ layout: string;
9
+ themes: {
10
+ themeOverride: string;
11
+ };
12
+ docs: {
13
+ description: {
14
+ component: string;
15
+ };
16
+ };
17
+ };
18
+ tags: string[];
19
+ args: {
20
+ labels: string[];
21
+ datasets: {
22
+ label: string;
23
+ data: number[];
24
+ backgroundColor: string;
25
+ borderColor: string;
26
+ pointStyle: boolean;
27
+ }[];
28
+ };
29
+ argTypes: {
30
+ scaling: {
31
+ description: string;
32
+ table: {
33
+ category: string;
34
+ type: {
35
+ summary: string;
36
+ };
37
+ };
38
+ control: {
39
+ type: string;
40
+ };
41
+ options: import("types").IScaling[];
42
+ defaultValue: {
43
+ summary: string;
44
+ };
45
+ };
46
+ labels: {
47
+ name: string;
48
+ description: string;
49
+ table: {
50
+ category: string;
51
+ type: {
52
+ summary: string;
53
+ };
54
+ };
55
+ };
56
+ datasets: {
57
+ description: string;
58
+ table: {
59
+ category: string;
60
+ type: {
61
+ summary: string;
62
+ };
63
+ };
64
+ };
65
+ labelPosition: {
66
+ description: string;
67
+ table: {
68
+ category: string;
69
+ type: {
70
+ summary: string;
71
+ };
72
+ };
73
+ control: {
74
+ type: string;
75
+ };
76
+ options: string[];
77
+ defaultValue: {
78
+ summary: string;
79
+ };
80
+ };
81
+ className: {
82
+ table: {
83
+ disable: boolean;
84
+ };
85
+ };
86
+ width: {
87
+ table: {
88
+ disable: boolean;
89
+ };
90
+ };
91
+ height: {
92
+ table: {
93
+ disable: boolean;
94
+ };
95
+ };
96
+ };
97
+ };
98
+ export default meta;
99
+ export declare const Default: ({ ...args }: {
100
+ [x: string]: any;
101
+ }) => import("react/jsx-runtime").JSX.Element;
102
+ export declare const DotsRadarChart: ({ ...args }: {
103
+ [x: string]: any;
104
+ }) => import("react/jsx-runtime").JSX.Element;
105
+ export declare const MultiDatasets: ({ ...args }: {
106
+ [x: string]: any;
107
+ }) => import("react/jsx-runtime").JSX.Element;
108
+ export declare const LinesOnly: ({ ...args }: {
109
+ [x: string]: any;
110
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,201 @@
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 { RadarChart } from 'components/RadarChart';
25
+ import { commonArgTypes, labelPositionList } from '../../constants';
26
+ import { red, blue } from 'color/light';
27
+ import { redA, blueA } from 'color/alpha';
28
+ var FILL_FALSE = false;
29
+ var meta = {
30
+ title: 'Chart/RadarChart',
31
+ component: RadarChart,
32
+ parameters: {
33
+ layout: 'centered',
34
+ themes: {
35
+ themeOverride: 'dark',
36
+ },
37
+ docs: {
38
+ description: {
39
+ component: 'radar 차트 컴포넌트',
40
+ },
41
+ },
42
+ },
43
+ tags: ['autodocs'],
44
+ args: {
45
+ labels: ['January', 'Februar', 'March', 'April', 'May', 'June'],
46
+ datasets: [
47
+ {
48
+ label: 'Desktop',
49
+ data: [186, 205, 237, 213, 209, 214],
50
+ backgroundColor: red[3],
51
+ borderColor: red[6],
52
+ pointStyle: false,
53
+ },
54
+ ],
55
+ },
56
+ argTypes: {
57
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'radarChart 비율' }),
58
+ labels: {
59
+ name: 'labels',
60
+ description: '차트 위에 표시될 라벨들',
61
+ table: {
62
+ category: 'Props',
63
+ type: { summary: 'string[]' },
64
+ },
65
+ },
66
+ datasets: {
67
+ description: '차트에 사용할 데이터 세트',
68
+ table: {
69
+ category: 'Props',
70
+ type: { summary: 'object' },
71
+ },
72
+ },
73
+ labelPosition: {
74
+ description: '라벨 위치',
75
+ table: {
76
+ category: 'Props',
77
+ type: { summary: labelPositionList.join(' | ') },
78
+ },
79
+ control: { type: 'select' },
80
+ options: labelPositionList,
81
+ defaultValue: { summary: 'top' },
82
+ },
83
+ className: {
84
+ table: {
85
+ disable: true,
86
+ },
87
+ },
88
+ width: {
89
+ table: {
90
+ disable: true,
91
+ },
92
+ },
93
+ height: {
94
+ table: {
95
+ disable: true,
96
+ },
97
+ },
98
+ },
99
+ };
100
+ export default meta;
101
+ export var Default = function (_a) {
102
+ var args = __rest(_a, []);
103
+ var options = {
104
+ plugins: {
105
+ legend: {
106
+ position: args.labelPosition,
107
+ },
108
+ title: {
109
+ display: true,
110
+ text: 'Radar Chart',
111
+ },
112
+ },
113
+ };
114
+ return (_jsx(RadarChart, __assign({ width: 400, height: 300, labels: args.labels, datasets: args.datasets, options: options }, args)));
115
+ };
116
+ export var DotsRadarChart = function (_a) {
117
+ var args = __rest(_a, []);
118
+ var datasets = [
119
+ {
120
+ label: 'Desktop',
121
+ data: [186, 205, 237, 213, 209, 214],
122
+ backgroundColor: red[3],
123
+ borderColor: red[6],
124
+ pointBackgroundColor: red[9],
125
+ pointBorderColor: red[9],
126
+ pointBorderWidth: 3,
127
+ },
128
+ ];
129
+ var options = {
130
+ plugins: {
131
+ legend: {
132
+ display: false,
133
+ },
134
+ title: {
135
+ display: true,
136
+ text: 'Radar Chart - Dots',
137
+ },
138
+ },
139
+ };
140
+ return (_jsx(RadarChart, { width: 400, height: 300, labels: args.labels, datasets: datasets, options: options }));
141
+ };
142
+ export var MultiDatasets = function (_a) {
143
+ var args = __rest(_a, []);
144
+ var datasets = [
145
+ {
146
+ label: 'Desktop',
147
+ data: [186, 305, 237, 73, 209, 214],
148
+ backgroundColor: redA[3],
149
+ borderColor: red[6],
150
+ pointStyle: FILL_FALSE,
151
+ },
152
+ {
153
+ label: 'Mobile',
154
+ data: [80, 200, 120, 190, 130, 140],
155
+ backgroundColor: blueA[3],
156
+ borderColor: blue[6],
157
+ pointStyle: FILL_FALSE,
158
+ },
159
+ ];
160
+ var options = {
161
+ plugins: {
162
+ legend: {
163
+ display: false,
164
+ },
165
+ title: {
166
+ display: true,
167
+ text: 'Radar Chart - Multiple',
168
+ },
169
+ },
170
+ };
171
+ return (_jsx(RadarChart, { width: 400, height: 300, labels: args.labels, datasets: datasets, options: options }));
172
+ };
173
+ export var LinesOnly = function (_a) {
174
+ var args = __rest(_a, []);
175
+ var datasets = [
176
+ {
177
+ label: 'Desktop',
178
+ data: [186, 305, 237, 73, 209, 214],
179
+ fill: false,
180
+ pointStyle: FILL_FALSE,
181
+ },
182
+ {
183
+ label: 'Mobile',
184
+ data: [80, 200, 120, 190, 130, 140],
185
+ fill: false,
186
+ pointStyle: FILL_FALSE,
187
+ },
188
+ ];
189
+ var options = {
190
+ plugins: {
191
+ legend: {
192
+ display: false,
193
+ },
194
+ title: {
195
+ display: true,
196
+ text: 'Radar Chart - Lines Only',
197
+ },
198
+ },
199
+ };
200
+ return (_jsx(RadarChart, { width: 400, height: 300, labels: args.labels, datasets: datasets, options: options }));
201
+ };
@@ -0,0 +1,108 @@
1
+ /// <reference types="react" />
2
+ import { ISize } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes").RadioProps & import("react").RefAttributes<HTMLInputElement>, "ref"> & import("../../components/Radio/index").RadioProps & 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
+ 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
+ size: {
35
+ table: {
36
+ category: string;
37
+ type: {
38
+ summary: string;
39
+ };
40
+ };
41
+ options: ISize[];
42
+ description: string;
43
+ control: {
44
+ type: string;
45
+ };
46
+ defaultValue: {
47
+ summary: string;
48
+ };
49
+ };
50
+ scaling: {
51
+ description: string;
52
+ table: {
53
+ category: string;
54
+ type: {
55
+ summary: string;
56
+ };
57
+ };
58
+ control: {
59
+ type: string;
60
+ };
61
+ options: import("../../types").IScaling[];
62
+ defaultValue: {
63
+ summary: string;
64
+ };
65
+ };
66
+ color: {
67
+ description: string;
68
+ defaultValue: {
69
+ summary: string;
70
+ };
71
+ table: {
72
+ category: string;
73
+ type: {
74
+ summary: string;
75
+ };
76
+ };
77
+ options: import("../../types").IColor[];
78
+ control: {
79
+ type: string;
80
+ };
81
+ };
82
+ appearance: {
83
+ table: {
84
+ category: string;
85
+ type: {
86
+ summary: string;
87
+ };
88
+ };
89
+ control: {
90
+ type: string;
91
+ };
92
+ options: string[];
93
+ defaultValue: {
94
+ summary: string;
95
+ };
96
+ };
97
+ };
98
+ };
99
+ export default meta;
100
+ export declare const Default: ({ ...args }: {
101
+ [x: string]: any;
102
+ }) => import("react/jsx-runtime").JSX.Element;
103
+ export declare const Size: ({ ...args }: {
104
+ [x: string]: any;
105
+ }) => import("react/jsx-runtime").JSX.Element;
106
+ export declare const Appearance: ({ ...args }: {
107
+ [x: string]: any;
108
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,84 @@
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, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import { commonArgTypes, sizeOptions } from '../../constants';
25
+ import { Radio } from '../../components/Radio/index';
26
+ var meta = {
27
+ title: 'Component/Radio',
28
+ component: Radio,
29
+ parameters: {
30
+ layout: 'centered',
31
+ themes: {
32
+ themeOverride: 'dark',
33
+ },
34
+ docs: {
35
+ description: {
36
+ component: '선택지 중 한가지만 선택할 수 있는 기능',
37
+ },
38
+ },
39
+ },
40
+ tags: ['autodocs'],
41
+ argTypes: {
42
+ disabled: {
43
+ description: 'radio disabled',
44
+ defaultValue: { summary: 'false' },
45
+ table: {
46
+ category: 'Props',
47
+ type: { summary: 'boolean' },
48
+ },
49
+ control: { type: 'boolean' },
50
+ },
51
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
52
+ category: 'Props',
53
+ type: {
54
+ summary: sizeOptions
55
+ .filter(function (size) { return !['x-small', 'x-large'].includes(size); })
56
+ .join(' | '),
57
+ },
58
+ }, options: sizeOptions.filter(function (size) { return !['x-small', 'x-large'].includes(size); }), description: 'radio 크기' }),
59
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'radio scaling' }),
60
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'radio color', defaultValue: { summary: 'red' } }),
61
+ appearance: {
62
+ table: {
63
+ category: 'Props',
64
+ type: { summary: ['classic', 'soft', 'surface'].join(' | ') },
65
+ },
66
+ control: { type: 'select' },
67
+ options: ['classic', 'soft', 'surface'],
68
+ defaultValue: { summary: 'surface' },
69
+ },
70
+ },
71
+ };
72
+ export default meta;
73
+ export var Default = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsxs(_Fragment, { children: [_jsx(Radio, __assign({ value: '1', name: 'example' }, args, { children: "radio option1" })), _jsx(Radio, __assign({ value: '2', name: 'example' }, args, { children: "radio option2" }))] }));
76
+ };
77
+ export var Size = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex items-center space-x-4", children: ['small', 'medium', 'large'].map(function (size) { return (_jsx(Radio, __assign({ size: size, value: '1', name: 'size', defaultChecked: size === 'small' }, args), size)); }) }));
80
+ };
81
+ export var Appearance = function (_a) {
82
+ var args = __rest(_a, []);
83
+ return (_jsx("div", { className: "flex items-center space-x-4", children: ['classic', 'soft', 'surface'].map(function (appearance) { return (_jsx(Radio, __assign({ value: appearance, appearance: appearance, name: 'appearance', defaultChecked: appearance === 'classic' }, args), appearance)); }) }));
84
+ };
@@ -0,0 +1,127 @@
1
+ /// <reference types="react" />
2
+ import { ISize } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/radio-cards").RootProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("../../components/RadioCards").RadioCardsProps & 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
+ table: {
21
+ category: string;
22
+ type: {
23
+ summary: string;
24
+ };
25
+ };
26
+ options: import("../../types").IRadius[];
27
+ description: string;
28
+ control: {
29
+ type: string;
30
+ };
31
+ defaultValue: {
32
+ summary: string;
33
+ };
34
+ };
35
+ disabled: {
36
+ description: string;
37
+ defaultValue: {
38
+ summary: string;
39
+ };
40
+ table: {
41
+ category: string;
42
+ type: {
43
+ summary: string;
44
+ };
45
+ };
46
+ control: {
47
+ type: 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
+ defaultValue: {
85
+ summary: string;
86
+ };
87
+ table: {
88
+ category: string;
89
+ type: {
90
+ summary: string;
91
+ };
92
+ };
93
+ options: import("../../types").IColor[];
94
+ control: {
95
+ type: string;
96
+ };
97
+ };
98
+ appearance: {
99
+ table: {
100
+ category: string;
101
+ type: {
102
+ summary: string;
103
+ };
104
+ };
105
+ control: {
106
+ type: string;
107
+ };
108
+ options: string[];
109
+ defaultValue: {
110
+ summary: string;
111
+ };
112
+ };
113
+ };
114
+ };
115
+ export default meta;
116
+ export declare const Default: ({ ...args }: {
117
+ [x: string]: any;
118
+ }) => import("react/jsx-runtime").JSX.Element;
119
+ export declare const Radius: ({ ...args }: {
120
+ [x: string]: any;
121
+ }) => import("react/jsx-runtime").JSX.Element;
122
+ export declare const Size: ({ ...args }: {
123
+ [x: string]: any;
124
+ }) => import("react/jsx-runtime").JSX.Element;
125
+ export declare const States: ({ ...args }: {
126
+ [x: string]: any;
127
+ }) => import("react/jsx-runtime").JSX.Element;