@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,94 @@
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 { commonArgTypes, radiusOptions, sizeOptions } from '../../constants';
25
+ import { RadioCards, RadioCardsItem } from '../../components/RadioCards';
26
+ var meta = {
27
+ title: 'Component/RadioCards',
28
+ component: RadioCards,
29
+ parameters: {
30
+ layout: 'centered',
31
+ themes: {
32
+ themeOverride: 'dark',
33
+ },
34
+ docs: {
35
+ description: {
36
+ component: '선택 가능한 Radio가 카드 형식으로 구성되어 있다.',
37
+ },
38
+ },
39
+ },
40
+ tags: ['autodocs'],
41
+ argTypes: {
42
+ radius: __assign(__assign({}, commonArgTypes.radius), { table: {
43
+ category: 'Theme Props',
44
+ type: {
45
+ summary: radiusOptions.join(' | '),
46
+ },
47
+ }, options: radiusOptions, description: 'radioCards 둥글기' }),
48
+ disabled: {
49
+ description: 'radioCards disabled',
50
+ defaultValue: { summary: 'false' },
51
+ table: {
52
+ category: 'Props',
53
+ type: { summary: 'boolean' },
54
+ },
55
+ control: { type: 'boolean' },
56
+ },
57
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
58
+ category: 'Props',
59
+ type: {
60
+ summary: sizeOptions
61
+ .filter(function (size) { return !['x-small', 'x-large'].includes(size); })
62
+ .join(' | '),
63
+ },
64
+ }, options: sizeOptions.filter(function (size) { return !['x-small', 'x-large'].includes(size); }), description: 'radioCards 크기' }),
65
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'radioCards scaling' }),
66
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'radioCards 테두리 color', defaultValue: { summary: 'red' } }),
67
+ appearance: {
68
+ table: {
69
+ category: 'Props',
70
+ type: { summary: ['classic', 'surface'].join(' | ') },
71
+ },
72
+ control: { type: 'select' },
73
+ options: ['classic', 'surface'],
74
+ defaultValue: { summary: 'surface' },
75
+ },
76
+ },
77
+ };
78
+ export default meta;
79
+ export var Default = function (_a) {
80
+ var args = __rest(_a, []);
81
+ return (_jsxs(RadioCards, __assign({}, args, { defaultValue: "1", children: [_jsx(RadioCardsItem, __assign({ value: "1" }, args, { children: "radioCard 1" })), _jsx(RadioCardsItem, __assign({ value: "2" }, args, { children: "radioCard 2" })), _jsx(RadioCardsItem, __assign({ value: "3" }, args, { children: "radioCard 3" }))] })));
82
+ };
83
+ export var Radius = function (_a) {
84
+ var args = __rest(_a, []);
85
+ return (_jsx("div", { className: "flex items-center space-x-4", children: _jsx("div", { className: "flex space-x-1", children: _jsxs(RadioCards, __assign({}, args, { defaultValue: "none", children: [_jsx(RadioCardsItem, __assign({ value: "none" }, args, { radius: 'none', children: "none" })), _jsx(RadioCardsItem, __assign({ value: "small" }, args, { radius: 'small', children: "small" })), _jsx(RadioCardsItem, __assign({ value: "medium" }, args, { radius: 'medium', children: "medium" })), _jsx(RadioCardsItem, __assign({ value: "large" }, args, { radius: 'large', children: "large" }))] })) }) }));
86
+ };
87
+ export var Size = function (_a) {
88
+ var args = __rest(_a, []);
89
+ return (_jsx("div", { className: "flex items-center space-x-4", children: _jsxs(RadioCards, __assign({ defaultValue: "small" }, args, { children: [_jsx(RadioCardsItem, __assign({ value: 'small' }, args, { size: 'small', children: "small" })), _jsx(RadioCardsItem, __assign({ value: 'medium' }, args, { size: 'medium', children: "medium" })), _jsx(RadioCardsItem, __assign({ value: 'large' }, args, { size: 'large', children: "large" }))] })) }));
90
+ };
91
+ export var States = function (_a) {
92
+ var args = __rest(_a, []);
93
+ return (_jsxs("div", { className: "space-y-2", children: [_jsx("div", { className: "flex items-center space-x-4", children: _jsxs(RadioCards, __assign({}, args, { defaultValue: "On", children: [_jsx(RadioCardsItem, __assign({ value: "Off" }, args, { children: "Off" })), _jsx(RadioCardsItem, __assign({ value: "On" }, args, { children: "On" }))] })) }), _jsx("div", { className: "flex items-center space-x-4", children: _jsxs(RadioCards, __assign({}, args, { defaultValue: "On", children: [_jsx(RadioCardsItem, __assign({ value: "Off" }, args, { disabled: true, children: "Off" })), _jsx(RadioCardsItem, __assign({ value: "On" }, args, { disabled: true, children: "On" }))] })) })] }));
94
+ };
@@ -0,0 +1,111 @@
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-group").RootProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("../../components/RadioGroup").RadioGroupProps & 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
+ 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;
109
+ export declare const Disabled: ({ ...args }: {
110
+ [x: string]: any;
111
+ }) => 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 { commonArgTypes, sizeOptions } from '../../constants';
25
+ import { RadioGroup, RadioGroupItem } from '../../components/RadioGroup';
26
+ var meta = {
27
+ title: 'Component/RadioGroup',
28
+ component: RadioGroup,
29
+ parameters: {
30
+ layout: 'centered',
31
+ themes: {
32
+ themeOverride: 'dark',
33
+ },
34
+ docs: {
35
+ description: {
36
+ component: '선택 가능한 Radio가 그룹으로 구성되어 있다.',
37
+ },
38
+ },
39
+ },
40
+ tags: ['autodocs'],
41
+ argTypes: {
42
+ disabled: {
43
+ description: 'radioGroup 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: 'radioGroup 크기' }),
59
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'radioGroup scaling' }),
60
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'radioGroup 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(RadioGroup, __assign({ defaultValue: '1', name: "example" }, args, { children: [_jsx(RadioGroupItem, __assign({ value: "1" }, args, { children: "Default" })), _jsx(RadioGroupItem, __assign({ value: "2" }, args, { children: "Comfortable" })), _jsx(RadioGroupItem, __assign({ value: "3" }, args, { children: "Compact" }))] })));
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 (_jsxs(RadioGroup, __assign({ defaultValue: '1', name: size }, args, { size: size, children: [_jsx(RadioGroupItem, __assign({ value: "1" }, args, { children: "Default" })), _jsx(RadioGroupItem, __assign({ value: "2" }, args, { children: "Comfortable" })), _jsx(RadioGroupItem, __assign({ value: "3" }, args, { children: "Compact" }))] }), 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 (_jsxs(RadioGroup, __assign({ defaultValue: '1', name: appearance }, args, { appearance: appearance, children: [_jsx(RadioGroupItem, __assign({ value: "1" }, args, { children: "Default" })), _jsx(RadioGroupItem, __assign({ value: "2" }, args, { children: "Comfortable" })), _jsx(RadioGroupItem, __assign({ value: "3" }, args, { children: "Compact" }))] }), appearance)); }) }));
84
+ };
85
+ export var Disabled = function (_a) {
86
+ var args = __rest(_a, []);
87
+ return (_jsxs("div", { className: "flex items-center space-x-4", children: [_jsx("div", { children: _jsxs(RadioGroup, __assign({ defaultValue: 'On' }, args, { children: [_jsx(RadioGroupItem, __assign({ value: "Off" }, args, { children: "Off" })), _jsx(RadioGroupItem, __assign({ value: "On" }, args, { children: "On" }))] })) }), _jsx("div", { children: _jsxs(RadioGroup, __assign({ defaultValue: 'On' }, args, { children: [_jsx(RadioGroupItem, __assign({ value: "Off" }, args, { disabled: true, children: "Off" })), _jsx(RadioGroupItem, __assign({ value: "On" }, args, { disabled: true, children: "On" }))] })) })] }));
88
+ };
@@ -0,0 +1,59 @@
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/react-scroll-area").ScrollAreaProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("../../components/ScrollArea").ScrollAreaProps & 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: import("../../types").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
+ };
52
+ };
53
+ export default meta;
54
+ export declare const Default: ({ ...args }: {
55
+ [x: string]: any;
56
+ }) => import("react/jsx-runtime").JSX.Element;
57
+ export declare const Type: ({ ...args }: {
58
+ [x: string]: any;
59
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,63 @@
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 { commonArgTypes, sizeOptions } from '../../constants';
25
+ import { ScrollArea } from '../../components/ScrollArea';
26
+ import { Header } from 'Typography/Header';
27
+ import { Text } from 'Typography/Text';
28
+ var meta = {
29
+ title: 'Component/ScrollArea',
30
+ component: ScrollArea,
31
+ parameters: {
32
+ layout: 'centered',
33
+ themes: {
34
+ themeOverride: 'dark',
35
+ },
36
+ docs: {
37
+ description: {
38
+ component: '스크롤 가능 영역',
39
+ },
40
+ },
41
+ },
42
+ tags: ['autodocs'],
43
+ argTypes: {
44
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'scrollArea 둥글기' }),
45
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
46
+ category: 'Props',
47
+ type: {
48
+ summary: sizeOptions
49
+ .filter(function (value) { return value != 'x-small' && value != 'x-large'; })
50
+ .join(' | '),
51
+ },
52
+ }, options: sizeOptions.filter(function (value) { return value != 'x-small' && value != 'x-large'; }), description: 'scrollArea 크기' }),
53
+ },
54
+ };
55
+ export default meta;
56
+ export var Default = function (_a) {
57
+ var args = __rest(_a, []);
58
+ return (_jsx(ScrollArea, __assign({ type: "always", scrollbars: "vertical", className: "h-[180px]" }, args, { children: _jsxs("div", { className: "p-2 pr-8", children: [_jsx(Header, { size: '4', mb: '2', trim: 'start', children: "Principles of the typographic craft" }), _jsxs("div", { className: "flex flex-col gap-4", children: [_jsx(Text, { as: "p", children: "Three fundamental aspects of typography are legibility, readability, and aesthetics. Although in a non-technical sense \u201Clegible\u201D and \u201Creadable\u201D are often used synonymously, typographically they are separate but related concepts." }), _jsx(Text, { as: "p", children: "Legibility describes how easily individual characters can be distinguished from one another. It is described by Walter Tracy as \u201Cthe quality of being decipherable and recognisable\u201D. For instance, if a \u201Cb\u201D and an \u201Ch\u201D, or a \u201C3\u201D and an \u201C8\u201D, are difficult to distinguish at small sizes, this is a problem of legibility." }), _jsx(Text, { as: "p", children: "Typographers are concerned with legibility insofar as it is their job to select the correct font to use. Brush Script is an example of a font containing many characters that might be difficult to distinguish. The selection of cases influences the legibility of typography because using only uppercase letters (all-caps) reduces legibility." })] })] }) })));
59
+ };
60
+ export var Type = function (_a) {
61
+ var args = __rest(_a, []);
62
+ return (_jsxs("div", { className: "grid grid-cols-2 gap-2", children: [_jsx(ScrollArea, __assign({ type: "always", scrollbars: "vertical", className: "h-[150px]" }, args, { children: _jsxs("div", { className: "flex flex-col p-2 pr-8 gap-4", children: [_jsx(Text, { size: "2", children: "Three fundamental aspects of typography are legibility, readability, and aesthetics. Although in a non-technical sense legible and readable are often used synonymously, typographically they are separate but related concepts." }), _jsx(Text, { size: "2", children: "Legibility describes how easily individual characters can be distinguished from one another. It is described by Walter Tracy as the quality of being decipherable and recognisable. For instance, if a b and an h, or a 3 and an 8, are difficult to distinguish at small sizes, this is a problem of legibility." })] }) })), _jsx(ScrollArea, __assign({ type: "always", scrollbars: "horizontal", className: "h-[150px]" }, args, { children: _jsxs("div", { className: "gap-4 p-2 w-[700px]", children: [_jsx(Text, { size: "2", children: "Three fundamental aspects of typography are legibility, readability, and aesthetics. Although in a non-technical sense legible and readable are often used synonymously, typographically they are separate but related concepts." }), _jsx(Text, { size: "2", children: "Legibility describes how easily individual characters can be distinguished from one another. It is described by Walter Tracy as the quality of being decipherable and recognisable. For instance, if a b and an h, or a 3 and an 8, are difficult to distinguish at small sizes, this is a problem of legibility." })] }) }))] }));
63
+ };
@@ -0,0 +1,97 @@
1
+ /// <reference types="react" />
2
+ import { ISize, IRadius } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/segmented-control").RootProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("../../components/SegmentedControl").SegmentedControlProps & 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
+ size: {
20
+ table: {
21
+ category: string;
22
+ type: {
23
+ summary: string;
24
+ };
25
+ };
26
+ options: ISize[];
27
+ description: string;
28
+ control: {
29
+ type: string;
30
+ };
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
+ 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
+ appearance: {
68
+ description: string;
69
+ table: {
70
+ category: string;
71
+ type: {
72
+ summary: string;
73
+ };
74
+ };
75
+ control: {
76
+ type: string;
77
+ };
78
+ options: string[];
79
+ defaultValue: {
80
+ summary: 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 Size: ({ ...args }: {
90
+ [x: string]: any;
91
+ }) => import("react/jsx-runtime").JSX.Element;
92
+ export declare const Radius: ({ ...args }: {
93
+ [x: string]: any;
94
+ }) => import("react/jsx-runtime").JSX.Element;
95
+ export declare const Variant: ({ ...args }: {
96
+ [x: string]: any;
97
+ }) => 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, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import { SegmentedControl, SegmentedControlItem } from '../../components/SegmentedControl';
25
+ import { commonArgTypes, radiusOptions, sizeOptions } from '../../constants';
26
+ var meta = {
27
+ title: 'Component/SegmentedControl',
28
+ component: SegmentedControl,
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
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
43
+ category: 'Props',
44
+ type: {
45
+ summary: sizeOptions
46
+ .filter(function (size) { return !['x-small', 'x-large'].includes(size); })
47
+ .join(' | '),
48
+ },
49
+ }, options: sizeOptions.filter(function (size) { return !['x-small', 'x-large'].includes(size); }), description: 'segmentedControl 크기' }),
50
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'segmentedControl 둥글기' }),
51
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'segmentedControl 비율' }),
52
+ appearance: {
53
+ description: 'segmentedControl 스타일',
54
+ table: {
55
+ category: 'Props',
56
+ type: { summary: ['surface', 'classic'].join(' | ') },
57
+ },
58
+ control: { type: 'select' },
59
+ options: ['surface', 'classic'],
60
+ defaultValue: { summary: 'surface' },
61
+ },
62
+ },
63
+ };
64
+ export default meta;
65
+ export var Default = function (_a) {
66
+ var args = __rest(_a, []);
67
+ return (_jsxs(SegmentedControl, __assign({}, args, { defaultValue: 'inbox', children: [_jsx(SegmentedControlItem, { value: 'inbox', children: "Inbox" }), _jsx(SegmentedControlItem, { value: 'drafts', children: "Drafts" }), _jsx(SegmentedControlItem, { value: 'sent', children: "Sent" })] })));
68
+ };
69
+ export var Size = function (_a) {
70
+ var args = __rest(_a, []);
71
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: ['small', 'medium', 'large'].map(function (size) { return (_jsxs(SegmentedControl, __assign({ defaultValue: 'inbox' }, args, { size: size, children: [_jsx(SegmentedControlItem, { value: 'inbox', children: "Inbox" }), _jsx(SegmentedControlItem, { value: 'drafts', children: "Drafts" }), _jsx(SegmentedControlItem, { value: 'sent', children: "Sent" })] }), size)); }) }));
72
+ };
73
+ export var Radius = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: radiusOptions.map(function (radius) { return (_jsxs(SegmentedControl, __assign({ defaultValue: 'inbox' }, args, { radius: radius, children: [_jsx(SegmentedControlItem, { value: 'inbox', children: "Inbox" }), _jsx(SegmentedControlItem, { value: 'drafts', children: "Drafts" }), _jsx(SegmentedControlItem, { value: 'sent', children: "Sent" })] }), radius)); }) }));
76
+ };
77
+ export var Variant = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: ['surface', 'classic'].map(function (appearance) { return (_jsxs(SegmentedControl, __assign({ defaultValue: 'inbox' }, args, { appearance: appearance, children: [_jsx(SegmentedControlItem, { value: 'inbox', children: "Inbox" }), _jsx(SegmentedControlItem, { value: 'drafts', children: "Drafts" }), _jsx(SegmentedControlItem, { value: 'sent', children: "Sent" })] }), appearance)); }) }));
80
+ };