@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<import("@radix-ui/themes/dist/cjs/components/select").RootProps & import("../../components/Select/index").SelectProps & import("react").RefAttributes<never>>;
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
+ size: {
68
+ table: {
69
+ category: string;
70
+ type: {
71
+ summary: string;
72
+ };
73
+ };
74
+ control: {
75
+ type: string;
76
+ };
77
+ options: string[];
78
+ defaultValue: {
79
+ summary: string;
80
+ };
81
+ description: string;
82
+ };
83
+ appearance: {
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ };
90
+ control: {
91
+ type: string;
92
+ };
93
+ defaultValue: {
94
+ summary: string;
95
+ };
96
+ description: string;
97
+ options: 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 Appearance: ({ ...args }: {
109
+ [x: string]: any;
110
+ }) => import("react/jsx-runtime").JSX.Element;
111
+ export declare const Radius: ({ ...args }: {
112
+ [x: string]: any;
113
+ }) => import("react/jsx-runtime").JSX.Element;
114
+ export declare const WithIcon: ({ ...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 { Select, SelectContent, SelectItem, SelectTrigger } from '../../components/Select/index';
25
+ import { commonArgTypes, radiusOptions } from '../../constants';
26
+ import { MoonIcon, SunIcon } from '@radix-ui/react-icons';
27
+ var meta = {
28
+ title: 'Component/Select',
29
+ component: Select,
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: 'Select 크기' }),
44
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: 'Select 둥글기' }),
45
+ color: __assign(__assign({}, commonArgTypes.color), { description: 'Select 색상' }),
46
+ size: {
47
+ table: {
48
+ category: 'Props',
49
+ type: { summary: ['small', 'medium', 'large'].join(' | ') },
50
+ },
51
+ control: { type: 'select' },
52
+ options: ['small', 'medium', 'large'],
53
+ defaultValue: { summary: 'medium' },
54
+ description: 'Select 크기',
55
+ },
56
+ appearance: {
57
+ table: {
58
+ category: 'Props',
59
+ type: { summary: ['classic', 'soft', 'surface', 'ghost'].join(' | ') },
60
+ },
61
+ control: { type: 'select' },
62
+ defaultValue: { summary: 'surface' },
63
+ description: 'Select 스타일',
64
+ options: ['classic', 'soft', 'surface', 'ghost'],
65
+ },
66
+ },
67
+ };
68
+ export default meta;
69
+ export var Default = function (_a) {
70
+ var args = __rest(_a, []);
71
+ return (_jsxs(Select, __assign({}, args, { children: [_jsx(SelectTrigger, __assign({}, args, { placeholder: "Select..." })), _jsxs(SelectContent, __assign({}, args, { children: [_jsx(SelectItem, __assign({ value: "apple" }, args, { children: "Apple" })), _jsx(SelectItem, __assign({ value: "orange" }, args, { children: "Orange" }))] }))] })));
72
+ };
73
+ export var Size = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsx("div", { className: "flex gap-3", children: ['small', 'medium', 'large'].map(function (size) { return (_jsxs(Select, __assign({ size: size }, args, { children: [_jsx(SelectTrigger, __assign({}, args, { placeholder: "Select..." })), _jsxs(SelectContent, __assign({}, args, { children: [_jsx(SelectItem, __assign({ value: "apple" }, args, { children: "Apple" })), _jsx(SelectItem, __assign({ value: "orange" }, args, { children: "Orange" }))] }))] }), size)); }) }));
76
+ };
77
+ export var Appearance = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex gap-3", children: ['classic', 'surface', 'soft', 'ghost'].map(function (appearance) { return (_jsxs(Select, __assign({}, args, { children: [_jsx(SelectTrigger, __assign({ appearance: appearance }, args, { placeholder: "Select..." })), _jsxs(SelectContent, __assign({}, args, { children: [_jsx(SelectItem, __assign({ value: "apple" }, args, { children: "Apple" })), _jsx(SelectItem, __assign({ value: "orange" }, args, { children: "Orange" }))] }))] }), appearance)); }) }));
80
+ };
81
+ export var Radius = function (_a) {
82
+ var args = __rest(_a, []);
83
+ return (_jsx("div", { className: "flex gap-3", children: radiusOptions.map(function (radius) { return (_jsxs(Select, __assign({}, args, { children: [_jsx(SelectTrigger, __assign({ radius: radius }, args, { placeholder: "Select..." })), _jsxs(SelectContent, __assign({}, args, { children: [_jsx(SelectItem, __assign({ value: "apple" }, args, { children: "Apple" })), _jsx(SelectItem, __assign({ value: "orange" }, args, { children: "Orange" }))] }))] }), radius)); }) }));
84
+ };
85
+ export var WithIcon = function (_a) {
86
+ var args = __rest(_a, []);
87
+ return (_jsxs(Select, __assign({ defaultValue: "dark" }, args, { children: [_jsx(SelectTrigger, __assign({}, args)), _jsxs(SelectContent, __assign({}, args, { children: [_jsx(SelectItem, __assign({ value: "dark" }, args, { children: _jsxs("div", { className: "flex gap-2 items-center", children: [_jsx(MoonIcon, {}), _jsx("label", { children: "Dark" })] }) })), _jsx(SelectItem, __assign({ value: "light" }, args, { children: _jsxs("div", { className: "flex gap-2 items-center", children: [_jsx(SunIcon, {}), _jsx("label", { children: "Light" })] }) }))] }))] })));
88
+ };
@@ -0,0 +1,93 @@
1
+ /// <reference types="react" />
2
+ declare const meta: {
3
+ title: string;
4
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes").SeparatorProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("../../components/Separator/index").SeparatorProps & import("react").RefAttributes<HTMLSpanElement>>;
5
+ parameters: {
6
+ layout: string;
7
+ themes: {
8
+ themeOverride: string;
9
+ };
10
+ docs: {
11
+ description: {
12
+ component: string;
13
+ };
14
+ };
15
+ };
16
+ tags: string[];
17
+ argTypes: {
18
+ scaling: {
19
+ description: string;
20
+ table: {
21
+ category: string;
22
+ type: {
23
+ summary: string;
24
+ };
25
+ };
26
+ control: {
27
+ type: string;
28
+ };
29
+ options: import("types").IScaling[];
30
+ defaultValue: {
31
+ summary: string;
32
+ };
33
+ };
34
+ color: {
35
+ defaultValue: {
36
+ summary: string;
37
+ };
38
+ description: string;
39
+ table: {
40
+ category: string;
41
+ type: {
42
+ summary: string;
43
+ };
44
+ };
45
+ options: import("types").IColor[];
46
+ control: {
47
+ type: string;
48
+ };
49
+ };
50
+ orientation: {
51
+ table: {
52
+ category: string;
53
+ type: {
54
+ summary: string;
55
+ };
56
+ };
57
+ options: string[];
58
+ description: string;
59
+ defaultValue: {
60
+ summary: string;
61
+ };
62
+ };
63
+ size: {
64
+ table: {
65
+ category: string;
66
+ type: {
67
+ summary: string;
68
+ };
69
+ };
70
+ control: {
71
+ type: string;
72
+ };
73
+ options: string[];
74
+ defaultValue: {
75
+ summary: string;
76
+ };
77
+ description: string;
78
+ };
79
+ };
80
+ };
81
+ export default meta;
82
+ export declare const Default: ({ ...args }: {
83
+ [x: string]: any;
84
+ }) => import("react/jsx-runtime").JSX.Element;
85
+ export declare const Orientation: ({ ...args }: {
86
+ [x: string]: any;
87
+ }) => import("react/jsx-runtime").JSX.Element;
88
+ export declare const HorizontalSize: ({ ...args }: {
89
+ [x: string]: any;
90
+ }) => import("react/jsx-runtime").JSX.Element;
91
+ export declare const VerticalSize: ({ ...args }: {
92
+ [x: string]: any;
93
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,82 @@
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 { Separator } from '../../components/Separator/index';
25
+ import { commonArgTypes } from '../../constants';
26
+ var meta = {
27
+ title: 'Component/Separator',
28
+ component: Separator,
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
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Separator component 크기' }),
43
+ color: __assign(__assign({}, commonArgTypes.color), { defaultValue: { summary: 'slate' }, description: 'Separator component 색상' }),
44
+ orientation: {
45
+ table: {
46
+ category: 'Props',
47
+ type: { summary: ['horizontal', 'vertical'].join(' | ') },
48
+ },
49
+ options: ['horizontal', 'vertical'],
50
+ description: 'Separator component 방향',
51
+ defaultValue: { summary: 'horizontal' },
52
+ // control: { type: 'select' },
53
+ },
54
+ size: {
55
+ table: {
56
+ category: 'Props',
57
+ type: { summary: ['small', 'medium', 'large', 'fill-large'].join(' | ') },
58
+ },
59
+ control: { type: 'select' },
60
+ options: ['small', 'medium', 'large', 'fill-large'],
61
+ defaultValue: { summary: 'medium' },
62
+ description: 'Separator component 크기',
63
+ },
64
+ },
65
+ };
66
+ export default meta;
67
+ export var Default = function (_a) {
68
+ var args = __rest(_a, []);
69
+ return (_jsxs("div", { className: "text-slate-12 dark:text-slate-1 w-full max-w-[300px] mx-[15px]", children: ["Tools for building high-quality, accessible UI.", _jsx(Separator, __assign({ my: "3", size: "fill-large" }, args)), _jsxs("div", { className: "flex gap-3 text-slate-12 dark:text-slate-1 ", children: ["Themes", _jsx(Separator, __assign({ orientation: "vertical" }, args)), "Primitives", _jsx(Separator, __assign({ orientation: "vertical" }, args)), "Icons", _jsx(Separator, __assign({ orientation: "vertical" }, args)), "Colors"] })] }));
70
+ };
71
+ export var Orientation = function (_a) {
72
+ var args = __rest(_a, []);
73
+ return (_jsxs("div", { className: "grid grid-cols-2 gap-2", children: [_jsx(Separator, __assign({ orientation: 'horizontal' }, args)), _jsx(Separator, __assign({ orientation: 'vertical' }, args))] }));
74
+ };
75
+ export var HorizontalSize = function (_a) {
76
+ var args = __rest(_a, []);
77
+ return (_jsxs("div", { className: "w-96 grid gap-4", children: [_jsx(Separator, __assign({ orientation: 'horizontal', size: 'small' }, args)), _jsx(Separator, __assign({ orientation: 'horizontal', size: 'medium' }, args)), _jsx(Separator, __assign({ orientation: 'horizontal', size: 'large' }, args)), _jsx(Separator, __assign({ orientation: 'horizontal', size: 'fill-large' }, args))] }));
78
+ };
79
+ export var VerticalSize = function (_a) {
80
+ var args = __rest(_a, []);
81
+ return (_jsxs("div", { className: "h-60 grid grid-cols-4 gap-4", children: [_jsx(Separator, __assign({ orientation: 'vertical', size: 'small' }, args)), _jsx(Separator, __assign({ orientation: 'vertical', size: 'medium' }, args)), _jsx(Separator, __assign({ orientation: 'vertical', size: 'large' }, args)), _jsx(Separator, __assign({ orientation: 'vertical', size: 'fill-large' }, args))] }));
82
+ };
@@ -0,0 +1,88 @@
1
+ /// <reference types="react" />
2
+ import { IRadius } from 'types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & import("../../components/Skeleton/index").SkeletonProps & import("react").RefAttributes<HTMLSpanElement>>;
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
+ defaultValue: {
21
+ summary: string;
22
+ };
23
+ description: string;
24
+ table: {
25
+ category: string;
26
+ type: {
27
+ summary: string;
28
+ };
29
+ };
30
+ options: IRadius[];
31
+ control: {
32
+ type: string;
33
+ };
34
+ };
35
+ loading: {
36
+ table: {
37
+ category: string;
38
+ type: {
39
+ summary: string;
40
+ };
41
+ };
42
+ options: boolean[];
43
+ control: {
44
+ type: string;
45
+ };
46
+ description: string;
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ width: {
52
+ table: {
53
+ category: string;
54
+ };
55
+ control: {
56
+ type: string;
57
+ };
58
+ description: string;
59
+ defaultValue: {};
60
+ };
61
+ height: {
62
+ table: {
63
+ category: string;
64
+ };
65
+ control: {
66
+ type: string;
67
+ };
68
+ description: string;
69
+ defaultValue: {};
70
+ };
71
+ };
72
+ };
73
+ export default meta;
74
+ export declare const Default: ({ ...args }: {
75
+ [x: string]: any;
76
+ }) => import("react/jsx-runtime").JSX.Element;
77
+ export declare const Loading: ({ ...args }: {
78
+ [x: string]: any;
79
+ }) => import("react/jsx-runtime").JSX.Element;
80
+ export declare const WithChildren: ({ ...args }: {
81
+ [x: string]: any;
82
+ }) => import("react/jsx-runtime").JSX.Element;
83
+ export declare const Radius: ({ ...args }: {
84
+ [x: string]: any;
85
+ }) => import("react/jsx-runtime").JSX.Element;
86
+ export declare const Size: ({ ...args }: {
87
+ [x: string]: any;
88
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,92 @@
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 { Skeleton } from '../../components/Skeleton/index';
25
+ import { commonArgTypes, radiusOptions } from '../../constants';
26
+ import { ToggleSwitch } from '../../components/ToggleSwitch';
27
+ var meta = {
28
+ title: 'Component/Skeleton',
29
+ component: Skeleton,
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), { defaultValue: { summary: '' }, description: 'Skeleton 컴포넌트 둥글기' }),
44
+ loading: {
45
+ table: {
46
+ category: 'Props',
47
+ type: { summary: [true, false].join(' | ') },
48
+ },
49
+ options: [true, false],
50
+ control: { type: 'select' },
51
+ description: 'Skeleton 컴포넌트 visible',
52
+ defaultValue: { summary: 'true' },
53
+ },
54
+ width: {
55
+ table: {
56
+ category: 'Props',
57
+ },
58
+ control: { type: 'text' },
59
+ description: 'Skeleton 컴포넌트 가로길이',
60
+ defaultValue: {},
61
+ },
62
+ height: {
63
+ table: {
64
+ category: 'Props',
65
+ },
66
+ control: { type: 'text' },
67
+ description: 'Skeleton 컴포넌트 세로길이',
68
+ defaultValue: {},
69
+ },
70
+ },
71
+ };
72
+ export default meta;
73
+ export var Default = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsx(Skeleton, __assign({}, args, { children: _jsx("div", { children: "Component" }) })));
76
+ };
77
+ export var Loading = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsxs("div", { className: "", children: [_jsx(Skeleton, __assign({ loading: true }, args, { children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque felis tellus, efficitur id convallis a, viverra eget libero. Nam magna erat, fringilla sed commodo sed, aliquet nec magna." })), _jsx(Skeleton, __assign({ loading: false }, args, { children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque felis tellus, efficitur id convallis a, viverra eget libero. Nam magna erat, fringilla sed commodo sed, aliquet nec magna." }))] }));
80
+ };
81
+ export var WithChildren = function (_a) {
82
+ var args = __rest(_a, []);
83
+ return (_jsxs("div", { className: "grid gap-4 grid-cols-2", children: [_jsx(Skeleton, { loading: true, children: _jsx(ToggleSwitch, {}) }), _jsx(Skeleton, { loading: false, children: _jsx(ToggleSwitch, {}) })] }));
84
+ };
85
+ export var Radius = function (_a) {
86
+ var args = __rest(_a, []);
87
+ return (_jsx("div", { className: "grid gap-5", children: radiusOptions.map(function (radius) { return (_jsx("div", { children: _jsx(Skeleton, __assign({ loading: true, radius: radius }, args, { children: _jsx("div", { children: "Component" }) })) }, radius)); }) }));
88
+ };
89
+ export var Size = function (_a) {
90
+ var args = __rest(_a, []);
91
+ return (_jsx("div", { className: "", children: _jsx(Skeleton, __assign({ loading: true, width: "48px", height: "48px" }, args)) }));
92
+ };
@@ -0,0 +1,114 @@
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").SliderProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("../../components/Slider/index").SliderProps & import("react").RefAttributes<HTMLSpanElement>>;
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
+ color: string;
97
+ };
98
+ description: string;
99
+ };
100
+ };
101
+ };
102
+ export default meta;
103
+ export declare const Default: ({ ...args }: {
104
+ [x: string]: any;
105
+ }) => import("react/jsx-runtime").JSX.Element;
106
+ export declare const Size: ({ ...args }: {
107
+ [x: string]: any;
108
+ }) => import("react/jsx-runtime").JSX.Element;
109
+ export declare const Radius: ({ ...args }: {
110
+ [x: string]: any;
111
+ }) => import("react/jsx-runtime").JSX.Element;
112
+ export declare const Range: ({ ...args }: {
113
+ [x: string]: any;
114
+ }) => import("react/jsx-runtime").JSX.Element;