@jk-core/components 1.1.17 → 1.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/README.md +73 -73
  2. package/dist/index.js +1299 -997
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.umd.cjs +8 -8
  5. package/dist/index.umd.cjs.map +1 -1
  6. package/dist/src/common/Carousel/index.d.ts +15 -0
  7. package/dist/src/common/RollingBanner/index.d.ts +11 -0
  8. package/dist/src/index.d.ts +3 -1
  9. package/dist/src/utils/ts/formatMoney.d.ts +1 -1
  10. package/package.json +99 -99
  11. package/src/Calendar/Calendar.module.scss +213 -213
  12. package/src/Calendar/RangeCalendar.tsx +125 -125
  13. package/src/Calendar/ScrollCalendar.module.scss +214 -214
  14. package/src/Calendar/ScrollCalendar.tsx +124 -124
  15. package/src/Calendar/SingleCalendar.tsx +121 -121
  16. package/src/Calendar/components/DateLabel/DateLabel.module.scss +89 -89
  17. package/src/Calendar/components/DateLabel/index.tsx +91 -91
  18. package/src/Calendar/components/DayTile/DayTile.module.scss +117 -117
  19. package/src/Calendar/components/DayTile/index.tsx +108 -108
  20. package/src/Calendar/components/MonthTile/MonthTile.module.scss +59 -59
  21. package/src/Calendar/components/MonthTile/index.tsx +50 -50
  22. package/src/Calendar/components/ViewSelector/ViewSelector.module.scss +48 -48
  23. package/src/Calendar/components/ViewSelector/index.tsx +49 -49
  24. package/src/Calendar/components/YearTile/YearTile.module.scss +85 -85
  25. package/src/Calendar/components/YearTile/index.tsx +65 -65
  26. package/src/Calendar/hooks/useCalendarNav.ts +83 -83
  27. package/src/Calendar/hooks/useDateSelect.ts +54 -54
  28. package/src/Calendar/index.scss +189 -189
  29. package/src/Calendar/index.tsx +66 -66
  30. package/src/Calendar/type.ts +3 -3
  31. package/src/Calendar/utils/getWeeksInMonth.ts +45 -45
  32. package/src/Calendar/utils/isInRange.ts +8 -8
  33. package/src/Calendar/utils/isSameDay.ts +21 -21
  34. package/src/assets/arrow.svg +11 -11
  35. package/src/assets/close.svg +15 -15
  36. package/src/assets/drop-arrow.svg +3 -3
  37. package/src/common/Accordion/Accordion.module.scss +53 -53
  38. package/src/common/Accordion/arrow-down.svg +3 -3
  39. package/src/common/Accordion/arrow-up.svg +3 -3
  40. package/src/common/Accordion/index.tsx +54 -54
  41. package/src/common/Breadcrumbs/Breadcrumbs.module.scss +46 -46
  42. package/src/common/Breadcrumbs/home.svg +5 -5
  43. package/src/common/Breadcrumbs/index.tsx +82 -82
  44. package/src/common/Button/Button.module.scss +127 -127
  45. package/src/common/Button/index.tsx +60 -60
  46. package/src/common/Card/Card.module.scss +28 -28
  47. package/src/common/Card/index.tsx +19 -19
  48. package/src/common/Carousel/Carousel.module.scss +222 -0
  49. package/src/common/Carousel/index.tsx +411 -0
  50. package/src/common/Divider/Divider.module.scss +101 -101
  51. package/src/common/Divider/index.tsx +24 -24
  52. package/src/common/DropDown/DropDown.module.scss +135 -135
  53. package/src/common/DropDown/List.tsx +156 -156
  54. package/src/common/DropDown/arrow-down.svg +3 -3
  55. package/src/common/DropDown/index.tsx +108 -108
  56. package/src/common/DropDown/search.svg +4 -4
  57. package/src/common/Pagination/Pagination.module.scss +210 -210
  58. package/src/common/Pagination/arrow-left.svg +11 -11
  59. package/src/common/Pagination/arrow-right.svg +11 -11
  60. package/src/common/Pagination/index.tsx +156 -156
  61. package/src/common/RollingBanner/RollingBanner.module.scss +126 -0
  62. package/src/common/RollingBanner/index.tsx +140 -0
  63. package/src/common/SegmentButton/SegmentButton.module.scss +46 -45
  64. package/src/common/SegmentButton/index.tsx +79 -79
  65. package/src/common/Skeleton/Skeleton.module.scss +80 -80
  66. package/src/common/Skeleton/index.tsx +47 -47
  67. package/src/common/SwitchButton/SwitchButton.module.scss +65 -65
  68. package/src/common/SwitchButton/index.tsx +57 -57
  69. package/src/common/Table/Table.module.scss +70 -70
  70. package/src/common/Table/index.tsx +128 -128
  71. package/src/index.scss +1 -1
  72. package/src/index.tsx +24 -22
  73. package/src/styles/color.scss +346 -346
  74. package/src/styles/font-face.scss +18 -18
  75. package/src/styles/font.scss +49 -49
  76. package/src/styles/mediaQuery.scss +22 -22
  77. package/src/styles/scrollbar.scss +71 -71
  78. package/src/svg.d.ts +6 -6
  79. package/src/utils/styles/mediaQuery.scss +22 -22
  80. package/src/utils/ts/allowDecimal.ts +4 -4
  81. package/src/utils/ts/autoHypen.ts +33 -33
  82. package/src/utils/ts/calculateMax.ts +24 -24
  83. package/src/utils/ts/checkIsMobilePlatform.ts +15 -15
  84. package/src/utils/ts/formatFileSize.ts +16 -16
  85. package/src/utils/ts/formatMoney.ts +16 -16
  86. package/src/utils/ts/gradientRatio.ts +61 -61
  87. package/src/utils/ts/kiloToMega.ts +30 -30
  88. package/src/utils/ts/maskingPhone.ts +8 -8
  89. package/src/utils/ts/toQueryString.ts +7 -7
  90. package/src/utils/ts/valueAsNumber.ts +15 -15
  91. package/src/vite-env.d.ts +2 -2
@@ -1,57 +1,57 @@
1
- import { useState } from 'react';
2
- import { cn } from '@jk-core/utils';
3
- import styles from './SwitchButton.module.scss';
4
-
5
- interface SwitchButtonProps {
6
- /**
7
- * 스위치 버튼의 상태를 나타냅니다.
8
- * true이면 스위치가 켜진 상태, false이면 꺼진 상태입니다.
9
- * 기본값은 false로 설정되어 있습니다.
10
- */
11
- checked?: boolean,
12
- /**
13
- * 스위치 버튼의 상태가 변경될 때 호출되는 함수입니다.
14
- */
15
- onChange?: (value: boolean) => void
16
- }
17
-
18
- /**
19
- * SwitchButton 컴포넌트
20
- * 스위치 버튼을 표시하며, 클릭 시 상태가 변경됩니다.
21
- * checked 속성으로 초기 상태를 설정할 수 있으며, onChange 함수를 통해 상태 변경을 처리할 수 있습니다.
22
- */
23
- export default function SwitchButton({ checked = false, onChange = () => { } }: SwitchButtonProps) {
24
- const [isChecked, setIsChecked] = useState(checked);
25
-
26
- return (
27
- <button
28
- className={styles.button}
29
- type="button"
30
- onClick={(e) => {
31
- e.stopPropagation();
32
- setIsChecked(!isChecked);
33
- onChange(!isChecked);
34
- }}
35
- >
36
- <div
37
- className={cn({
38
- [styles.switch]: true,
39
- [styles.switch__off]: checked,
40
- })}
41
- >
42
- <div className={cn({
43
- [styles.switch__button]: true,
44
- [styles['switch__button--off']]: !checked,
45
- [styles['switch__button--on']]: checked,
46
- })}
47
- >
48
- <div className={cn({
49
- [styles['switch__button--circle']]: true,
50
- [styles['switch__button--circle-on']]: checked,
51
- })}
52
- />
53
- </div>
54
- </div>
55
- </button>
56
- );
57
- }
1
+ import { useState } from 'react';
2
+ import { cn } from '@jk-core/utils';
3
+ import styles from './SwitchButton.module.scss';
4
+
5
+ interface SwitchButtonProps {
6
+ /**
7
+ * 스위치 버튼의 상태를 나타냅니다.
8
+ * true이면 스위치가 켜진 상태, false이면 꺼진 상태입니다.
9
+ * 기본값은 false로 설정되어 있습니다.
10
+ */
11
+ checked?: boolean,
12
+ /**
13
+ * 스위치 버튼의 상태가 변경될 때 호출되는 함수입니다.
14
+ */
15
+ onChange?: (value: boolean) => void
16
+ }
17
+
18
+ /**
19
+ * SwitchButton 컴포넌트
20
+ * 스위치 버튼을 표시하며, 클릭 시 상태가 변경됩니다.
21
+ * checked 속성으로 초기 상태를 설정할 수 있으며, onChange 함수를 통해 상태 변경을 처리할 수 있습니다.
22
+ */
23
+ export default function SwitchButton({ checked = false, onChange = () => { } }: SwitchButtonProps) {
24
+ const [isChecked, setIsChecked] = useState(checked);
25
+
26
+ return (
27
+ <button
28
+ className={styles.button}
29
+ type="button"
30
+ onClick={(e) => {
31
+ e.stopPropagation();
32
+ setIsChecked(!isChecked);
33
+ onChange(!isChecked);
34
+ }}
35
+ >
36
+ <div
37
+ className={cn({
38
+ [styles.switch]: true,
39
+ [styles.switch__off]: checked,
40
+ })}
41
+ >
42
+ <div className={cn({
43
+ [styles.switch__button]: true,
44
+ [styles['switch__button--off']]: !checked,
45
+ [styles['switch__button--on']]: checked,
46
+ })}
47
+ >
48
+ <div className={cn({
49
+ [styles['switch__button--circle']]: true,
50
+ [styles['switch__button--circle-on']]: checked,
51
+ })}
52
+ />
53
+ </div>
54
+ </div>
55
+ </button>
56
+ );
57
+ }
@@ -1,70 +1,70 @@
1
- .wrapper {
2
- width: 100%;
3
- max-height: 60dvh;
4
- overflow: auto;
5
-
6
- &__rounded {
7
- border-radius: 10px;
8
- }
9
-
10
- &__border {
11
- border: 1px solid var(--G-30);
12
- }
13
- }
14
-
15
- .table {
16
- width: 100%;
17
- border-collapse: separate;
18
- border-spacing: 0;
19
- table-layout: fixed; // 이 줄을 추가하세요!
20
-
21
- thead {
22
- position: sticky;
23
- top: 0;
24
- z-index: 1;
25
- }
26
-
27
- tbody > tr > td:last-child {
28
- border-right: none;
29
- }
30
-
31
- th {
32
- flex-shrink: 0;
33
- background-color: var(--G-5);
34
- padding: 10px;
35
- font-size: 1em;
36
- font-weight: 600;
37
- color: var(--G-80);
38
- border-right: 1px solid var(--G-30);
39
- border-bottom: 1px solid var(--G-30);
40
- }
41
-
42
- tr {
43
- min-width: 100%;
44
- }
45
-
46
- tbody > tr > th {
47
- position: sticky;
48
- left: 0;
49
- white-space: pre-wrap;
50
- max-width: 200px;
51
- }
52
-
53
- td {
54
- padding: 10px;
55
- background-color: var(--white);
56
- word-break: break-all;
57
- color: var(--G-80);
58
- font-weight: 400;
59
- border-bottom: 1px solid var(--G-30);
60
- border-right: 1px solid var(--G-30);
61
- }
62
- }
63
-
64
- .fixed {
65
- position: sticky;
66
- left: 0;
67
- top: 0;
68
- background-color: var(--G-5);
69
- z-index: 1;
70
- }
1
+ .wrapper {
2
+ width: 100%;
3
+ max-height: 60dvh;
4
+ overflow: auto;
5
+
6
+ &__rounded {
7
+ border-radius: 10px;
8
+ }
9
+
10
+ &__border {
11
+ border: 1px solid var(--G-30);
12
+ }
13
+ }
14
+
15
+ .table {
16
+ width: 100%;
17
+ border-collapse: separate;
18
+ border-spacing: 0;
19
+ table-layout: fixed; // 이 줄을 추가하세요!
20
+
21
+ thead {
22
+ position: sticky;
23
+ top: 0;
24
+ z-index: 1;
25
+ }
26
+
27
+ tbody > tr > td:last-child {
28
+ border-right: none;
29
+ }
30
+
31
+ th {
32
+ flex-shrink: 0;
33
+ background-color: var(--G-5);
34
+ padding: 10px;
35
+ font-size: 1em;
36
+ font-weight: 600;
37
+ color: var(--G-80);
38
+ border-right: 1px solid var(--G-30);
39
+ border-bottom: 1px solid var(--G-30);
40
+ }
41
+
42
+ tr {
43
+ min-width: 100%;
44
+ }
45
+
46
+ tbody > tr > th {
47
+ position: sticky;
48
+ left: 0;
49
+ white-space: pre-wrap;
50
+ max-width: 200px;
51
+ }
52
+
53
+ td {
54
+ padding: 10px;
55
+ background-color: var(--white);
56
+ word-break: break-all;
57
+ color: var(--G-80);
58
+ font-weight: 400;
59
+ border-bottom: 1px solid var(--G-30);
60
+ border-right: 1px solid var(--G-30);
61
+ }
62
+ }
63
+
64
+ .fixed {
65
+ position: sticky;
66
+ left: 0;
67
+ top: 0;
68
+ background-color: var(--G-5);
69
+ z-index: 1;
70
+ }
@@ -1,128 +1,128 @@
1
- import { cn } from '@jk-core/utils';
2
- import styles from './Table.module.scss';
3
-
4
- interface TableLabelType{
5
- text: string | number;
6
- align?: 'left' | 'center' | 'right';
7
- }
8
- interface TableHeaderType {
9
- label: TableLabelType;
10
- width?: string;
11
- subWidth?: string[];
12
- subLabel?:TableLabelType[];
13
- }
14
-
15
- interface TableBodyType{
16
- head?: TableLabelType;
17
- labels: TableLabelType[];
18
- }
19
-
20
- interface TableProps {
21
- /**
22
- * 테이블 헤더 설정
23
- * - `label`: 헤더의 라벨 텍스트, text와 align 속성을 포함한 객체
24
- * - `width`: 헤더의 너비, subWidth가 있을 경우 무시됨 (선택적)
25
- * - `subWidth`: 서브 헤더의 너비 배열 (선택적)
26
- * - `subLabel`: 서브 헤더의 라벨, text와 align 속성을 포함한 객체 배열 (선택적)
27
- */
28
- header: TableHeaderType[];
29
- /**
30
- * 테이블 바디 설정
31
- * - `head`: 바디의 헤더 텍스트, text와 align 속성을 포함한 객체 (선택적)
32
- * - `labels`: 각 행의 라벨 배열, text와 align 속성을 포함한 객체 배열
33
- */
34
- body: TableBodyType[];
35
- /**
36
- * 테이블의 모서리를 둥글게 처리할지 여부
37
- * - `rounded`: true일 경우 모서리가 둥글게 처리됨
38
- */
39
- rounded?: boolean;
40
- /**
41
- * 테이블의 테두리 표시 여부
42
- * - `border`: true일 경우 테이블에 테두리가 표시됨
43
- */
44
- border?: boolean;
45
- }
46
-
47
- /**
48
- * 테이블 컴포넌트
49
- * 헤더와 바디를 설정하여 테이블을 렌더링합니다.
50
- * - `header`: 테이블의 헤더 설정
51
- * - `body`: 테이블의 바디 설정
52
- * - `rounded`: 테이블의 모서리를 둥글게 처리할지 여부
53
- * - `border`: 테이블에 테두리를 표시할지 여부
54
- */
55
- export default function Table({ header, body, rounded, border }: TableProps) {
56
- const subLabels = header.flatMap(col => col.subLabel || []);
57
- const isBodyWithHead = body.some(row => row.head);
58
-
59
- return (
60
- <div className={cn({
61
- [styles.wrapper]: true,
62
- [styles.wrapper__rounded]: !!rounded,
63
- [styles.wrapper__border]: !!border,
64
- })}
65
- >
66
-
67
- <table className={styles.table}>
68
- <colgroup>
69
- {isBodyWithHead && <col style={{ width: '100px' }} />}
70
- {header.map((col, colIndex) =>
71
- col.subLabel
72
- ? col.subLabel.map((_, subIndex) => (
73
- <col
74
- key={`col-${colIndex}-sub-${subIndex}`}
75
- style={{ width: col?.subWidth?.[subIndex] || 'auto' }}
76
- />
77
- ))
78
- : (
79
- <col
80
- key={`col-${colIndex}`}
81
- style={{ width: col.width || 'auto' }}
82
- />
83
- ),
84
- )}
85
-
86
- </colgroup>
87
- <thead>
88
- <tr>
89
- {body.some(row => row.head) && <th className={styles.fixed} rowSpan={2} />}
90
- {header.map((col, index) => (
91
- <th
92
- key={index}
93
- style={{ textAlign: col.label.align || 'left' }}
94
- rowSpan={col.subLabel ? 1 : 2}
95
- colSpan={col.subLabel ? col.subLabel.length : undefined}
96
- >
97
- {col.label.text}
98
- </th>
99
- ))}
100
- </tr>
101
- {subLabels.length > 0 && (
102
- <tr>
103
- {subLabels.map((subLabel, index) => (
104
- <th
105
- style={{ textAlign: subLabel.align || 'left' }}
106
- key={index}
107
- >{subLabel.text}
108
- </th>
109
- ))}
110
- </tr>
111
- )}
112
- </thead>
113
- <tbody>
114
- {body.map((row, rowIndex) => (
115
- <tr key={rowIndex}>
116
- {isBodyWithHead && <th style={{ textAlign: row?.head?.align || 'left' }}>{row?.head?.text || ''}</th>}
117
- {row.labels.map((col, colIndex) => (
118
- <td style={{ textAlign: col.align || 'left' }} key={colIndex}>
119
- {col.text}
120
- </td>
121
- ))}
122
- </tr>
123
- ))}
124
- </tbody>
125
- </table>
126
- </div>
127
- );
128
- }
1
+ import { cn } from '@jk-core/utils';
2
+ import styles from './Table.module.scss';
3
+
4
+ interface TableLabelType{
5
+ text: string | number;
6
+ align?: 'left' | 'center' | 'right';
7
+ }
8
+ interface TableHeaderType {
9
+ label: TableLabelType;
10
+ width?: string;
11
+ subWidth?: string[];
12
+ subLabel?:TableLabelType[];
13
+ }
14
+
15
+ interface TableBodyType{
16
+ head?: TableLabelType;
17
+ labels: TableLabelType[];
18
+ }
19
+
20
+ interface TableProps {
21
+ /**
22
+ * 테이블 헤더 설정
23
+ * - `label`: 헤더의 라벨 텍스트, text와 align 속성을 포함한 객체
24
+ * - `width`: 헤더의 너비, subWidth가 있을 경우 무시됨 (선택적)
25
+ * - `subWidth`: 서브 헤더의 너비 배열 (선택적)
26
+ * - `subLabel`: 서브 헤더의 라벨, text와 align 속성을 포함한 객체 배열 (선택적)
27
+ */
28
+ header: TableHeaderType[];
29
+ /**
30
+ * 테이블 바디 설정
31
+ * - `head`: 바디의 헤더 텍스트, text와 align 속성을 포함한 객체 (선택적)
32
+ * - `labels`: 각 행의 라벨 배열, text와 align 속성을 포함한 객체 배열
33
+ */
34
+ body: TableBodyType[];
35
+ /**
36
+ * 테이블의 모서리를 둥글게 처리할지 여부
37
+ * - `rounded`: true일 경우 모서리가 둥글게 처리됨
38
+ */
39
+ rounded?: boolean;
40
+ /**
41
+ * 테이블의 테두리 표시 여부
42
+ * - `border`: true일 경우 테이블에 테두리가 표시됨
43
+ */
44
+ border?: boolean;
45
+ }
46
+
47
+ /**
48
+ * 테이블 컴포넌트
49
+ * 헤더와 바디를 설정하여 테이블을 렌더링합니다.
50
+ * - `header`: 테이블의 헤더 설정
51
+ * - `body`: 테이블의 바디 설정
52
+ * - `rounded`: 테이블의 모서리를 둥글게 처리할지 여부
53
+ * - `border`: 테이블에 테두리를 표시할지 여부
54
+ */
55
+ export default function Table({ header, body, rounded, border }: TableProps) {
56
+ const subLabels = header.flatMap(col => col.subLabel || []);
57
+ const isBodyWithHead = body.some(row => row.head);
58
+
59
+ return (
60
+ <div className={cn({
61
+ [styles.wrapper]: true,
62
+ [styles.wrapper__rounded]: !!rounded,
63
+ [styles.wrapper__border]: !!border,
64
+ })}
65
+ >
66
+
67
+ <table className={styles.table}>
68
+ <colgroup>
69
+ {isBodyWithHead && <col style={{ width: '100px' }} />}
70
+ {header.map((col, colIndex) =>
71
+ col.subLabel
72
+ ? col.subLabel.map((_, subIndex) => (
73
+ <col
74
+ key={`col-${colIndex}-sub-${subIndex}`}
75
+ style={{ width: col?.subWidth?.[subIndex] || 'auto' }}
76
+ />
77
+ ))
78
+ : (
79
+ <col
80
+ key={`col-${colIndex}`}
81
+ style={{ width: col.width || 'auto' }}
82
+ />
83
+ ),
84
+ )}
85
+
86
+ </colgroup>
87
+ <thead>
88
+ <tr>
89
+ {body.some(row => row.head) && <th className={styles.fixed} rowSpan={2} />}
90
+ {header.map((col, index) => (
91
+ <th
92
+ key={index}
93
+ style={{ textAlign: col.label.align || 'left' }}
94
+ rowSpan={col.subLabel ? 1 : 2}
95
+ colSpan={col.subLabel ? col.subLabel.length : undefined}
96
+ >
97
+ {col.label.text}
98
+ </th>
99
+ ))}
100
+ </tr>
101
+ {subLabels.length > 0 && (
102
+ <tr>
103
+ {subLabels.map((subLabel, index) => (
104
+ <th
105
+ style={{ textAlign: subLabel.align || 'left' }}
106
+ key={index}
107
+ >{subLabel.text}
108
+ </th>
109
+ ))}
110
+ </tr>
111
+ )}
112
+ </thead>
113
+ <tbody>
114
+ {body.map((row, rowIndex) => (
115
+ <tr key={rowIndex}>
116
+ {isBodyWithHead && <th style={{ textAlign: row?.head?.align || 'left' }}>{row?.head?.text || ''}</th>}
117
+ {row.labels.map((col, colIndex) => (
118
+ <td style={{ textAlign: col.align || 'left' }} key={colIndex}>
119
+ {col.text}
120
+ </td>
121
+ ))}
122
+ </tr>
123
+ ))}
124
+ </tbody>
125
+ </table>
126
+ </div>
127
+ );
128
+ }
package/src/index.scss CHANGED
@@ -1 +1 @@
1
- @forward "@/styles/color";
1
+ @forward "@/styles/color";
package/src/index.tsx CHANGED
@@ -1,22 +1,24 @@
1
- import Breadcrumbs, { BreadcrumbsItem } from '@/common/Breadcrumbs';
2
- import Button from '@/common/Button';
3
- import Pagination from '@/common/Pagination';
4
- import Skeleton from '@/common/Skeleton';
5
- import SwitchButton from '@/common/SwitchButton';
6
- import Table from '@/common/Table';
7
- import Calendar from './Calendar';
8
- import { CalendarRange, CalendarView } from './Calendar/type';
9
- import Accordion from './common/Accordion';
10
- import Card from './common/Card';
11
- import DropDown from './common/DropDown';
12
- import SegmentButton from './common/SegmentButton';
13
-
14
- export {
15
- Calendar, Accordion, Breadcrumbs, Button,
16
- Pagination, Skeleton, SwitchButton,
17
- Card, DropDown, SegmentButton, BreadcrumbsItem, Table,
18
- };
19
-
20
- export type { CalendarView, CalendarRange };
21
-
22
- import './index.scss';
1
+ import Breadcrumbs, { BreadcrumbsItem } from '@/common/Breadcrumbs';
2
+ import Button from '@/common/Button';
3
+ import Pagination from '@/common/Pagination';
4
+ import RollingBanner from '@/common/RollingBanner';
5
+ import Skeleton from '@/common/Skeleton';
6
+ import SwitchButton from '@/common/SwitchButton';
7
+ import Table from '@/common/Table';
8
+ import Calendar from './Calendar';
9
+ import { CalendarRange, CalendarView } from './Calendar/type';
10
+ import Accordion from './common/Accordion';
11
+ import Card from './common/Card';
12
+ import Carousel from './common/Carousel';
13
+ import DropDown from './common/DropDown';
14
+ import SegmentButton from './common/SegmentButton';
15
+
16
+ export {
17
+ Calendar, Accordion, Breadcrumbs, Button,
18
+ Pagination, Skeleton, SwitchButton,
19
+ Card, DropDown, SegmentButton, BreadcrumbsItem, Table, Carousel, RollingBanner,
20
+ };
21
+
22
+ export type { CalendarView, CalendarRange };
23
+
24
+ import './index.scss';