@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,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, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import Card from 'components/Card';
25
+ import Avatar from 'components/Avatar';
26
+ import { Text } from 'Typography/Text';
27
+ import { radiusOptions, scalingOptions, commonArgTypes, sizeOptions, appearanceOptions, } from '../../constants';
28
+ var meta = {
29
+ title: 'Component/Card',
30
+ component: Card,
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: 'Card border 둥굴기' }),
45
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Card 비율' }),
46
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
47
+ category: 'Props',
48
+ type: {
49
+ summary: sizeOptions
50
+ .filter(function (option) { return option !== 'x-small' && option !== 'x-large'; })
51
+ .join(' | '),
52
+ },
53
+ }, options: sizeOptions.filter(function (option) { return option !== 'x-small' && option !== 'x-large'; }), description: 'Card 크기' }),
54
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { table: {
55
+ category: 'Props',
56
+ type: {
57
+ summary: appearanceOptions
58
+ .filter(function (option) { return option !== 'solid' && option !== 'outline' && option !== 'soft'; })
59
+ .join(' | '),
60
+ },
61
+ }, description: 'Card 스타일', options: appearanceOptions.filter(function (option) { return option !== 'solid' && option !== 'outline' && option !== 'soft'; }), defaultValue: { summary: 'surface' } }),
62
+ },
63
+ };
64
+ export default meta;
65
+ export var Default = function (_a) {
66
+ var args = __rest(_a, []);
67
+ return (_jsxs(Card, __assign({}, args, { children: [_jsx(Avatar, __assign({}, args, { size: args.size === 'small' ? '3' : args.size === 'large' ? '5' : '4', appearance: "solid", imagePath: "https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?&w=256&h=256&q=70&crop=focalpoint&fp-x=0.5&fp-y=0.3&fp-z=1&fit=crop" })), _jsxs("div", { className: "flex flex-col", children: [_jsx(Text, __assign({}, args, { weight: 'bold', size: args.size === 'small' ? '3' : args.size === 'large' ? '5' : '4', children: "Title" })), _jsx(Text, __assign({}, args, { size: args.size === 'small' ? '3' : args.size === 'large' ? '5' : '4', children: "Content" }))] })] })));
68
+ };
69
+ export var NoAvatar = function (_a) {
70
+ var args = __rest(_a, []);
71
+ return (_jsx(Card, __assign({}, args, { children: _jsxs("div", { className: "flex flex-col", children: [_jsx(Text, __assign({}, args, { weight: 'bold', children: "Typography" })), _jsx(Text, __assign({}, args, { children: "is the art and technique of arranging type to make written language legible, \n readable and appealing when displayed." }))] }) })));
72
+ };
73
+ export var Appearance = function (_a) {
74
+ var args = __rest(_a, []);
75
+ return (_jsxs("div", { className: "flex flex-col space-y-4", children: [_jsx(Card, __assign({}, args, { appearance: "surface", children: _jsx(Text, { children: "surface style card (default)" }) })), _jsx(Card, __assign({}, args, { appearance: "classic", children: _jsx(Text, { children: "classic style card" }) })), _jsx(Card, __assign({}, args, { appearance: "ghost", children: _jsx(Text, { children: " ghost style card" }) }))] }));
76
+ };
77
+ export var Scaling = function (_a) {
78
+ var args = __rest(_a, []);
79
+ return (_jsx("div", { className: "flex flex-col items-center space-y-4", children: scalingOptions.map(function (scaling) { return (_jsx("div", { children: _jsxs(Card, __assign({}, args, { scaling: scaling, children: [_jsx(Avatar, __assign({}, args, { radius: 'full', scaling: scaling, imagePath: "https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?&w=256&h=256&q=70&crop=focalpoint&fp-x=0.5&fp-y=0.3&fp-z=1&fit=crop" })), _jsxs("div", { className: "flex flex-col", children: [_jsx(Text, __assign({}, args, { weight: 'bold', children: "Title" })), _jsx(Text, __assign({}, args, { children: "Content" }))] })] })) }, scaling)); }) }));
80
+ };
81
+ export var Radius = function (_a) {
82
+ var args = __rest(_a, []);
83
+ return (_jsx("div", { className: "flex flex-col items-center space-y-3", children: radiusOptions.map(function (radius) { return (_jsx("div", { children: _jsxs(Card, __assign({}, args, { radius: radius, children: [_jsx(Avatar, __assign({}, args, { radius: radius, imagePath: "https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?&w=256&h=256&q=70&crop=focalpoint&fp-x=0.5&fp-y=0.3&fp-z=1&fit=crop" })), _jsxs("div", { className: "flex flex-col", children: [_jsx(Text, __assign({}, args, { weight: 'bold', children: "Title" })), _jsx(Text, __assign({}, args, { children: "Content" }))] })] })) }, radius)); }) }));
84
+ };
@@ -0,0 +1,147 @@
1
+ /// <reference types="react" />
2
+ import { IRadius, IScaling } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-checkbox").CheckboxProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("components/Checkbox").CheckboxProps & import("react").RefAttributes<HTMLButtonElement>>;
6
+ parameters: {
7
+ layout: string;
8
+ docs: {
9
+ description: {
10
+ component: string;
11
+ };
12
+ };
13
+ };
14
+ tags: string[];
15
+ argTypes: {
16
+ scaling: {
17
+ description: string;
18
+ table: {
19
+ category: string;
20
+ type: {
21
+ summary: string;
22
+ };
23
+ };
24
+ control: {
25
+ type: string;
26
+ };
27
+ options: IScaling[];
28
+ defaultValue: {
29
+ summary: string;
30
+ };
31
+ };
32
+ size: {
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ };
39
+ options: import("../../types").ISize[];
40
+ description: string;
41
+ control: {
42
+ type: string;
43
+ };
44
+ defaultValue: {
45
+ summary: string;
46
+ };
47
+ };
48
+ radius: {
49
+ description: string;
50
+ table: {
51
+ category: string;
52
+ type: {
53
+ summary: string;
54
+ };
55
+ };
56
+ options: IRadius[];
57
+ control: {
58
+ type: string;
59
+ };
60
+ defaultValue: {
61
+ summary: string;
62
+ };
63
+ };
64
+ color: {
65
+ description: string;
66
+ table: {
67
+ category: string;
68
+ type: {
69
+ summary: string;
70
+ };
71
+ };
72
+ options: import("../../types").IColor[];
73
+ control: {
74
+ type: string;
75
+ };
76
+ defaultValue: {
77
+ summary: string;
78
+ };
79
+ };
80
+ appearance: {
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ };
88
+ options: import("../../types").IAppearance[];
89
+ control: {
90
+ type: string;
91
+ };
92
+ defaultValue: {
93
+ summary: string;
94
+ };
95
+ };
96
+ disabled: {
97
+ description: string;
98
+ defaultValue: {
99
+ summary: string;
100
+ };
101
+ table: {
102
+ category: string;
103
+ type: {
104
+ summary: string;
105
+ };
106
+ };
107
+ control: {
108
+ type: string;
109
+ };
110
+ };
111
+ checked: {
112
+ table: {
113
+ disable: boolean;
114
+ };
115
+ };
116
+ defaultChecked: {
117
+ table: {
118
+ disable: boolean;
119
+ };
120
+ };
121
+ indeterminate: {
122
+ table: {
123
+ disable: boolean;
124
+ };
125
+ };
126
+ };
127
+ args: {};
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 Types: ({ ...args }: {
134
+ [x: string]: any;
135
+ }) => import("react/jsx-runtime").JSX.Element;
136
+ export declare const Size: ({ ...args }: {
137
+ [x: string]: any;
138
+ }) => import("react/jsx-runtime").JSX.Element;
139
+ export declare const Scaling: ({ ...args }: {
140
+ [x: string]: any;
141
+ }) => import("react/jsx-runtime").JSX.Element;
142
+ export declare const Radius: ({ ...args }: {
143
+ [x: string]: any;
144
+ }) => import("react/jsx-runtime").JSX.Element;
145
+ export declare const Appearance: ({ ...args }: {
146
+ [x: string]: any;
147
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,110 @@
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 Checkbox from 'components/Checkbox';
25
+ import { radiusOptions, scalingOptions, commonArgTypes, appearanceOptions, sizeOptions, } from '../../../src/constants';
26
+ import { Text } from 'Typography/Text';
27
+ var meta = {
28
+ title: 'Component/Checkbox',
29
+ component: Checkbox,
30
+ parameters: {
31
+ layout: 'centered',
32
+ docs: {
33
+ description: {
34
+ component: '옵션을 끄거나 켤 수 있는 입력 요소로 선택지 중 다중 선택할 수 있는 기능',
35
+ },
36
+ },
37
+ },
38
+ tags: ['autodocs'],
39
+ argTypes: {
40
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: '체크박스 비율' }),
41
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
42
+ category: 'Props',
43
+ type: {
44
+ summary: sizeOptions
45
+ .filter(function (option) { return option !== 'x-small' && option !== 'x-large'; })
46
+ .join(' | '),
47
+ },
48
+ }, options: sizeOptions.filter(function (option) { return option !== 'x-small' && option !== 'x-large'; }), description: '체크박스 크기' }),
49
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: '체크박스 둥글기' }),
50
+ color: __assign(__assign({}, commonArgTypes.color), { description: '체크박스 메인 색' }),
51
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { description: '체크박스 스타일', table: {
52
+ category: 'Props',
53
+ type: {
54
+ summary: appearanceOptions
55
+ .filter(function (option) { return option !== 'ghost' && option !== 'outline' && option !== 'solid'; })
56
+ .join(' | '),
57
+ },
58
+ }, options: appearanceOptions.filter(function (option) { return option !== 'ghost' && option !== 'outline' && option !== 'solid'; }) }),
59
+ disabled: {
60
+ description: '체크박스 disabled 기본 속성',
61
+ defaultValue: { summary: 'false' },
62
+ table: {
63
+ category: 'Props',
64
+ type: { summary: 'boolean' },
65
+ },
66
+ control: { type: 'boolean' },
67
+ },
68
+ checked: {
69
+ table: {
70
+ disable: true,
71
+ },
72
+ },
73
+ defaultChecked: {
74
+ table: {
75
+ disable: true,
76
+ },
77
+ },
78
+ indeterminate: {
79
+ table: {
80
+ disable: true,
81
+ },
82
+ },
83
+ },
84
+ args: {},
85
+ };
86
+ export default meta;
87
+ export var Default = function (_a) {
88
+ var args = __rest(_a, []);
89
+ return (_jsx(Checkbox, __assign({ id: "checkbox" }, args, { defaultChecked: true, children: "\uCCB4\uD06C\uBC15\uC2A4" })));
90
+ };
91
+ export var Types = function (_a) {
92
+ var args = __rest(_a, []);
93
+ return (_jsxs("div", { className: "flex flex-col space-y-3", children: [_jsx(Checkbox, __assign({ id: "defaultCheckbox" }, args, { defaultChecked: true, children: "default" })), _jsx(Checkbox, __assign({ id: "disabledCheckedCheckbox" }, args, { disabled: true, defaultChecked: true, children: "disabled" })), _jsx(Checkbox, __assign({ id: "indeterminate" }, args, { indeterminate: true, defaultChecked: true, children: "indeterminate" }))] }));
94
+ };
95
+ export var Size = function (_a) {
96
+ var args = __rest(_a, []);
97
+ return (_jsxs("div", { className: "flex space-x-5", children: [_jsx(Checkbox, __assign({ id: "size-s" }, args, { size: "small", defaultChecked: true, children: "small" })), _jsx(Checkbox, __assign({ id: "size-m" }, args, { size: "medium", defaultChecked: true, children: "medium" })), _jsx(Checkbox, __assign({ id: "size-l" }, args, { size: "large", defaultChecked: true, children: "large" }))] }));
98
+ };
99
+ export var Scaling = function (_a) {
100
+ var args = __rest(_a, []);
101
+ return (_jsx("div", { className: "flex space-x-5", children: scalingOptions.map(function (scaling) { return (_jsx(Checkbox, __assign({ id: scaling }, args, { scaling: scaling, defaultChecked: true, children: scaling }), scaling)); }) }));
102
+ };
103
+ export var Radius = function (_a) {
104
+ var args = __rest(_a, []);
105
+ return (_jsx("div", { className: "flex space-x-5", children: radiusOptions.map(function (radius) { return (_jsx(Checkbox, __assign({ id: radius }, args, { radius: radius, defaultChecked: true, children: radius }), radius)); }) }));
106
+ };
107
+ export var Appearance = function (_a) {
108
+ var args = __rest(_a, []);
109
+ return (_jsxs("div", { className: "flex flex-col space-y-3", children: [_jsxs("div", { className: "flex space-x-3", children: [_jsx("div", { className: "w-[60px]", children: _jsx(Text, { children: "Surface" }) }), _jsx(Checkbox, __assign({ id: 'uncheckedSurface' }, args, { appearance: 'surface' })), _jsx(Checkbox, __assign({ id: 'checkedSurface' }, args, { appearance: 'surface', defaultChecked: true })), _jsx(Checkbox, __assign({ id: 'checkedIndeterminate' }, args, { appearance: 'surface', indeterminate: true, defaultChecked: true }))] }), _jsxs("div", { className: "flex space-x-3", children: [_jsx("div", { className: "w-[60px]", children: _jsx(Text, { children: "Classic" }) }), _jsx(Checkbox, __assign({ id: 'uncheckedClassic' }, args, { appearance: 'classic' })), _jsx(Checkbox, __assign({ id: 'checkedClassic' }, args, { appearance: 'classic', defaultChecked: true })), _jsx(Checkbox, __assign({ id: 'indeterminateClassic' }, args, { appearance: 'classic', indeterminate: true, defaultChecked: true }))] }), _jsxs("div", { className: "flex space-x-3", children: [_jsx("div", { className: "w-[60px]", children: _jsx(Text, { children: "Soft" }) }), _jsx(Checkbox, __assign({ id: 'uncheckedSoft' }, args, { appearance: 'soft' })), _jsx(Checkbox, __assign({ id: 'checkedSoft' }, args, { appearance: 'soft', defaultChecked: true })), _jsx(Checkbox, __assign({ id: 'indeterminateSoft' }, args, { appearance: 'soft', indeterminate: true, defaultChecked: true }))] })] }));
110
+ };
@@ -0,0 +1,129 @@
1
+ /// <reference types="react" />
2
+ import { IRadius, IScaling } from '../../types';
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-checkbox").CheckboxProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("components/CheckboxCard").CheckboxCardProps & import("react").RefAttributes<HTMLButtonElement>>;
6
+ parameters: {
7
+ layout: string;
8
+ docs: {
9
+ description: {
10
+ component: string;
11
+ };
12
+ };
13
+ };
14
+ tags: string[];
15
+ argTypes: {
16
+ scaling: {
17
+ description: string;
18
+ table: {
19
+ category: string;
20
+ type: {
21
+ summary: string;
22
+ };
23
+ };
24
+ control: {
25
+ type: string;
26
+ };
27
+ options: IScaling[];
28
+ defaultValue: {
29
+ summary: string;
30
+ };
31
+ };
32
+ radius: {
33
+ description: string;
34
+ table: {
35
+ category: string;
36
+ type: {
37
+ summary: string;
38
+ };
39
+ };
40
+ options: IRadius[];
41
+ control: {
42
+ type: string;
43
+ };
44
+ defaultValue: {
45
+ summary: string;
46
+ };
47
+ };
48
+ color: {
49
+ description: string;
50
+ table: {
51
+ category: string;
52
+ type: {
53
+ summary: string;
54
+ };
55
+ };
56
+ options: import("../../types").IColor[];
57
+ control: {
58
+ type: string;
59
+ };
60
+ defaultValue: {
61
+ summary: string;
62
+ };
63
+ };
64
+ size: {
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ };
71
+ options: import("../../types").ISize[];
72
+ description: string;
73
+ control: {
74
+ type: string;
75
+ };
76
+ defaultValue: {
77
+ summary: string;
78
+ };
79
+ };
80
+ appearance: {
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ };
88
+ options: import("../../types").IAppearance[];
89
+ control: {
90
+ type: string;
91
+ };
92
+ defaultValue: {
93
+ summary: string;
94
+ };
95
+ };
96
+ disabled: {
97
+ description: string;
98
+ defaultValue: {
99
+ summary: string;
100
+ };
101
+ table: {
102
+ category: string;
103
+ type: {
104
+ summary: string;
105
+ };
106
+ };
107
+ control: {
108
+ type: string;
109
+ };
110
+ };
111
+ };
112
+ args: {};
113
+ };
114
+ export default meta;
115
+ export declare const Default: ({ ...args }: {
116
+ [x: string]: any;
117
+ }) => import("react/jsx-runtime").JSX.Element;
118
+ export declare const Scaling: ({ ...args }: {
119
+ [x: string]: any;
120
+ }) => import("react/jsx-runtime").JSX.Element;
121
+ export declare const Size: ({ ...args }: {
122
+ [x: string]: any;
123
+ }) => import("react/jsx-runtime").JSX.Element;
124
+ export declare const Radius: ({ ...args }: {
125
+ [x: string]: any;
126
+ }) => import("react/jsx-runtime").JSX.Element;
127
+ export declare const Appearance: ({ ...args }: {
128
+ [x: string]: any;
129
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,90 @@
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 { scalingOptions, commonArgTypes, appearanceOptions, radiusOptions, sizeOptions, } from '../../../src/constants';
25
+ import CheckboxCard from 'components/CheckboxCard';
26
+ var meta = {
27
+ title: 'Component/CheckboxCard',
28
+ component: CheckboxCard,
29
+ parameters: {
30
+ layout: 'centered',
31
+ docs: {
32
+ description: {
33
+ component: '선택 가능한 Checkbox가 카드 형식으로 구성되어 있는 컴포넌트',
34
+ },
35
+ },
36
+ },
37
+ tags: ['autodocs'],
38
+ argTypes: {
39
+ scaling: __assign(__assign({}, commonArgTypes.scaling), { description: '체크박스카드 크기' }),
40
+ radius: __assign(__assign({}, commonArgTypes.radius), { description: '체크박스카드 둥글기' }),
41
+ color: __assign(__assign({}, commonArgTypes.color), { description: '체크박스 메인 색' }),
42
+ size: __assign(__assign({}, commonArgTypes.size), { table: {
43
+ category: 'Props',
44
+ type: {
45
+ summary: sizeOptions
46
+ .filter(function (option) { return option !== 'x-small' && option !== 'x-large'; })
47
+ .join(' | '),
48
+ },
49
+ }, options: sizeOptions.filter(function (option) { return option !== 'x-small' && option !== 'x-large'; }), description: '체크박스 크기' }),
50
+ appearance: __assign(__assign({}, commonArgTypes.appearance), { description: '체크박스 스타일', table: {
51
+ category: 'Props',
52
+ type: {
53
+ summary: appearanceOptions
54
+ .filter(function (option) { return option === 'classic' || option === 'surface'; })
55
+ .join(' | '),
56
+ },
57
+ }, options: appearanceOptions.filter(function (option) { return option === 'classic' || option === 'surface'; }) }),
58
+ disabled: {
59
+ description: '체크박스 disabled 기본 속성',
60
+ defaultValue: { summary: 'false' },
61
+ table: {
62
+ category: 'Props',
63
+ type: { summary: 'boolean' },
64
+ },
65
+ control: { type: 'boolean' },
66
+ },
67
+ },
68
+ args: {},
69
+ };
70
+ export default meta;
71
+ export var Default = function (_a) {
72
+ var args = __rest(_a, []);
73
+ return (_jsxs("div", { className: "flex flex-col space-y-3", children: [_jsx(CheckboxCard, __assign({ id: "defaultCheckboxCard" }, args, { defaultChecked: true, children: "default" })), _jsx(CheckboxCard, __assign({ id: "disabledCheckboxCard" }, args, { disabled: true, defaultChecked: true, children: "disabled" }))] }));
74
+ };
75
+ export var Scaling = function (_a) {
76
+ var args = __rest(_a, []);
77
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: scalingOptions.map(function (scaling) { return (_jsx("div", { children: _jsx(CheckboxCard, __assign({ id: scaling }, args, { scaling: scaling, children: scaling })) }, scaling)); }) }));
78
+ };
79
+ export var Size = function (_a) {
80
+ var args = __rest(_a, []);
81
+ return (_jsxs("div", { className: "flex flex-col space-y-3", children: [_jsx(CheckboxCard, __assign({ id: "size-s" }, args, { size: "small", defaultChecked: true, children: "small" })), _jsx(CheckboxCard, __assign({ id: "size-m" }, args, { size: "medium", defaultChecked: true, children: "medium" })), _jsx(CheckboxCard, __assign({ id: "size-l" }, args, { size: "large", defaultChecked: true, children: "large" }))] }));
82
+ };
83
+ export var Radius = function (_a) {
84
+ var args = __rest(_a, []);
85
+ return (_jsx("div", { className: "flex flex-col space-y-3", children: radiusOptions.map(function (radius) { return (_jsx("div", { children: _jsx(CheckboxCard, __assign({ id: radius }, args, { radius: radius, children: radius })) }, radius)); }) }));
86
+ };
87
+ export var Appearance = function (_a) {
88
+ var args = __rest(_a, []);
89
+ return (_jsxs("div", { className: "flex space-x-4", children: [_jsx(CheckboxCard, __assign({ id: 'classic' }, args, { appearance: 'classic', children: "classic" })), _jsx(CheckboxCard, __assign({ id: 'surface' }, args, { appearance: 'surface', children: "surface" }))] }));
90
+ };
@@ -0,0 +1,91 @@
1
+ /// <reference types="react" />
2
+ declare const meta: {
3
+ title: string;
4
+ component: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-checkbox").CheckboxProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("components/Checkbox").CheckboxProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ parameters: {
6
+ layout: string;
7
+ docs: {
8
+ description: {
9
+ component: string;
10
+ };
11
+ };
12
+ };
13
+ tags: string[];
14
+ argTypes: {
15
+ size: {
16
+ table: {
17
+ category: string;
18
+ type: {
19
+ summary: string;
20
+ };
21
+ };
22
+ options: import("types").ISize[];
23
+ description: string;
24
+ control: {
25
+ type: string;
26
+ };
27
+ defaultValue: {
28
+ summary: string;
29
+ };
30
+ };
31
+ radius: {
32
+ description: string;
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ };
39
+ options: import("types").IRadius[];
40
+ control: {
41
+ type: string;
42
+ };
43
+ defaultValue: {
44
+ summary: string;
45
+ };
46
+ };
47
+ color: {
48
+ description: string;
49
+ table: {
50
+ category: string;
51
+ type: {
52
+ summary: string;
53
+ };
54
+ };
55
+ options: import("types").IColor[];
56
+ control: {
57
+ type: string;
58
+ };
59
+ defaultValue: {
60
+ summary: string;
61
+ };
62
+ };
63
+ appearance: {
64
+ description: string;
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ };
71
+ options: import("types").IAppearance[];
72
+ control: {
73
+ type: string;
74
+ };
75
+ defaultValue: {
76
+ summary: string;
77
+ };
78
+ };
79
+ };
80
+ args: {};
81
+ };
82
+ export default meta;
83
+ export declare const Default: ({ ...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;
89
+ export declare const Radius: ({ ...args }: {
90
+ [x: string]: any;
91
+ }) => import("react/jsx-runtime").JSX.Element;