@tipp/ui 2.0.2 → 2.0.3
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.
- package/dist/app/index.cjs +2 -7
- package/dist/app/index.cjs.map +1 -1
- package/dist/app/index.js +7 -7
- package/dist/app/platform/edit-coaching-time.cjs +2 -7
- package/dist/app/platform/edit-coaching-time.cjs.map +1 -1
- package/dist/app/platform/edit-coaching-time.js +4 -4
- package/dist/app/platform/edit-service-type.cjs +2 -7
- package/dist/app/platform/edit-service-type.cjs.map +1 -1
- package/dist/app/platform/edit-service-type.js +3 -3
- package/dist/app/platform/goal-manage-card-edit.cjs +2 -7
- package/dist/app/platform/goal-manage-card-edit.cjs.map +1 -1
- package/dist/app/platform/goal-manage-card-edit.js +4 -4
- package/dist/app/platform/on-offline-radio-card.cjs +2 -7
- package/dist/app/platform/on-offline-radio-card.cjs.map +1 -1
- package/dist/app/platform/on-offline-radio-card.js +3 -3
- package/dist/app/platform/reservation-card.cjs +2 -7
- package/dist/app/platform/reservation-card.cjs.map +1 -1
- package/dist/app/platform/reservation-card.js +4 -4
- package/dist/app/platform/session-card.cjs +2 -7
- package/dist/app/platform/session-card.cjs.map +1 -1
- package/dist/app/platform/session-card.js +5 -5
- package/dist/chunk-A2NYBAVH.js +281 -0
- package/dist/chunk-A2NYBAVH.js.map +1 -0
- package/dist/chunk-GLRDUHQR.js +63 -0
- package/dist/chunk-GLRDUHQR.js.map +1 -0
- package/dist/chunk-JPZNEPCW.js +144 -0
- package/dist/chunk-JPZNEPCW.js.map +1 -0
- package/dist/chunk-KDEUSAQW.js +145 -0
- package/dist/chunk-KDEUSAQW.js.map +1 -0
- package/dist/chunk-QOUGBWAQ.js +96 -0
- package/dist/chunk-QOUGBWAQ.js.map +1 -0
- package/dist/chunk-TF3Q4TQM.js +174 -0
- package/dist/chunk-TF3Q4TQM.js.map +1 -0
- package/dist/index.cjs +2 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -12
- package/dist/molecules/date-picker/date-picker-button.cjs +2 -7
- package/dist/molecules/date-picker/date-picker-button.cjs.map +1 -1
- package/dist/molecules/date-picker/date-picker-button.js +2 -2
- package/dist/molecules/date-picker/index.cjs +2 -7
- package/dist/molecules/date-picker/index.cjs.map +1 -1
- package/dist/molecules/date-picker/index.d.cts +2 -3
- package/dist/molecules/date-picker/index.d.ts +2 -3
- package/dist/molecules/date-picker/index.js +1 -1
- package/dist/molecules/index.cjs +2 -7
- package/dist/molecules/index.cjs.map +1 -1
- package/dist/molecules/index.js +5 -5
- package/package.json +1 -1
- package/src/molecules/date-picker/index.tsx +1 -10
package/dist/molecules/index.js
CHANGED
|
@@ -6,13 +6,10 @@ import {
|
|
|
6
6
|
import "../chunk-WDUSQ6HR.js";
|
|
7
7
|
import {
|
|
8
8
|
DatePickerButton
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-GLRDUHQR.js";
|
|
10
10
|
import {
|
|
11
11
|
DatePicker
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import {
|
|
14
|
-
LearningPost
|
|
15
|
-
} from "../chunk-BR6BA3US.js";
|
|
12
|
+
} from "../chunk-QOUGBWAQ.js";
|
|
16
13
|
import {
|
|
17
14
|
Navigation
|
|
18
15
|
} from "../chunk-45DIMUO4.js";
|
|
@@ -45,6 +42,9 @@ import {
|
|
|
45
42
|
import {
|
|
46
43
|
GhostPost
|
|
47
44
|
} from "../chunk-SMXAOGFW.js";
|
|
45
|
+
import {
|
|
46
|
+
LearningPost
|
|
47
|
+
} from "../chunk-BR6BA3US.js";
|
|
48
48
|
import "../chunk-RX5DC5KO.js";
|
|
49
49
|
import "../chunk-A6W2ZWYA.js";
|
|
50
50
|
import "../chunk-ECLZ3IGO.js";
|
package/package.json
CHANGED
|
@@ -3,26 +3,17 @@
|
|
|
3
3
|
import type { ElementRef } from 'react';
|
|
4
4
|
import React, { forwardRef } from 'react';
|
|
5
5
|
import type { DatePickerProps as ReactDatePickerProps } from 'react-datepicker';
|
|
6
|
-
import
|
|
7
|
-
import { registerLocale, setDefaultLocale } from 'react-datepicker';
|
|
8
|
-
import { ko as fnKo } from 'date-fns/locale';
|
|
6
|
+
import ReactDatePicker from 'react-datepicker';
|
|
9
7
|
import { IconButton } from '../../atoms/icon-button';
|
|
10
8
|
import { Flex } from '../../atoms/flex';
|
|
11
9
|
import { ChevronLeftIcon, ChevronRightIcon } from '../../icon';
|
|
12
10
|
import { Heading } from '../../atoms/heading';
|
|
13
11
|
|
|
14
|
-
registerLocale('ko', fnKo);
|
|
15
|
-
setDefaultLocale('ko');
|
|
16
|
-
|
|
17
12
|
export type DatePickerProps = ReactDatePickerProps & {
|
|
18
13
|
fullWidth?: boolean;
|
|
19
14
|
};
|
|
20
15
|
type DatePickerRef = ElementRef<typeof ReactDatePicker>;
|
|
21
16
|
|
|
22
|
-
const ReactDatePicker = ((RDP.default as any).default ||
|
|
23
|
-
(RDP.default as any) ||
|
|
24
|
-
(RDP as any)) as typeof RDP.default;
|
|
25
|
-
|
|
26
17
|
export const DatePicker = forwardRef<DatePickerRef, DatePickerProps>(
|
|
27
18
|
(props, ref): React.ReactNode => {
|
|
28
19
|
const { fullWidth, ...rest } = props;
|