@dotss/tictoccroc 0.0.5 → 0.0.7
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/shared/components/Scheduler/Scheduler.d.ts +2 -2
- package/dist/shared/components/Scheduler/Scheduler.mjs +164 -164
- package/dist/shared/components/Scheduler/Scheduler.utils.d.ts +13 -7
- package/dist/shared/components/Scheduler/Scheduler.utils.mjs +65 -54
- package/dist/teacher/profile/components/ActivityGallery/ActivityGallery.mjs +23 -24
- package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.d.ts +3 -3
- package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.mjs +3 -3
- package/dist/teacher/profile/components/CareerSection/CareerItem/CareerItem.d.ts +5 -2
- package/dist/teacher/profile/components/CareerSection/CareerItem/CareerItem.mjs +24 -24
- package/dist/teacher/profile/components/CareerSection/CareerSection.mjs +42 -41
- package/dist/teacher/profile/components/CertificationSection/CertificationItem/CertificationItem.d.ts +5 -2
- package/dist/teacher/profile/components/CertificationSection/CertificationItem/CertificationItem.mjs +27 -22
- package/dist/teacher/profile/components/CertificationSection/CertificationSection.mjs +41 -37
- package/dist/teacher/profile/components/EducationSection/EducationItem/EducationItem.d.ts +6 -3
- package/dist/teacher/profile/components/EducationSection/EducationItem/EducationItem.mjs +38 -30
- package/dist/teacher/profile/components/EducationSection/EducationSection.mjs +35 -34
- package/dist/teacher/profile/components/ParentReviewSection/ParentReviewSection.mjs +33 -31
- package/dist/teacher/profile/components/PreferredAgeGroup/PreferredAgeGroup.utils.mjs +4 -4
- package/dist/teacher/profile/utils/index.d.ts +1 -0
- package/dist/teacher/profile/utils/index.mjs +5 -0
- package/dist/teacher/profile/utils/sortItems/index.d.ts +3 -0
- package/dist/teacher/profile/utils/sortItems/index.mjs +6 -0
- package/dist/teacher/profile/utils/sortItems/sortItems.d.ts +9 -0
- package/dist/teacher/profile/utils/sortItems/sortItems.mjs +29 -0
- package/package.json +9 -1
|
@@ -20,13 +20,19 @@ export declare function getDayScheduleEvents(scheduleEvents: ScheduleEventWithRa
|
|
|
20
20
|
export declare function resolvePositionedScheduleEventsForDate(scheduleEvents: ScheduleEventWithRange[], date: Dayjs): PositionedScheduleEvent[];
|
|
21
21
|
export declare function assignColumnsToGroup(group: InternalScheduleEvent[]): PositionedScheduleEvent[];
|
|
22
22
|
export declare function getMinutesFromMidnight(date: string): number;
|
|
23
|
-
export declare function getAvailableDateRange(startDate: string | Date | Dayjs, endDate: string | Date | Dayjs, schedules: {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
23
|
+
export declare function getAvailableDateRange(startDate: string | Date | Dayjs, endDate: string | Date | Dayjs, { schedules, mergedTimeBlocks }: {
|
|
24
|
+
schedules: {
|
|
25
|
+
id: string | number;
|
|
26
|
+
startDate: string;
|
|
27
|
+
endDate: string;
|
|
28
|
+
startTime: number;
|
|
29
|
+
endTime: number;
|
|
30
|
+
weekDay: string | number;
|
|
31
|
+
oneDayDate: string | null;
|
|
32
|
+
}[];
|
|
33
|
+
mergedTimeBlocks: boolean;
|
|
34
|
+
}): {
|
|
35
|
+
id: string | number;
|
|
30
36
|
startDate: string;
|
|
31
37
|
endDate: string;
|
|
32
38
|
}[];
|
|
@@ -1,92 +1,103 @@
|
|
|
1
1
|
import s from "dayjs";
|
|
2
2
|
import g from "../../utils/getDateRange/getDateRange.mjs";
|
|
3
|
-
import
|
|
4
|
-
function
|
|
5
|
-
const
|
|
6
|
-
const
|
|
3
|
+
import y from "../../utils/getTimeRange/getTimeRange.mjs";
|
|
4
|
+
function M(u, n = []) {
|
|
5
|
+
const a = Array.from({ length: 7 }, (e, f) => u.add(f, "day")), i = u, o = u.add(6, "day").endOf("day"), m = n.map((e) => {
|
|
6
|
+
const f = s(e.startDate), t = s(e.endDate).endOf("day"), r = f.isBefore(i) ? i : f, c = t.isAfter(o) ? o : t, l = r.diff(i, "day"), p = c.diff(r, "day") + 1;
|
|
7
7
|
return {
|
|
8
8
|
...e,
|
|
9
|
-
start:
|
|
10
|
-
end:
|
|
9
|
+
start: l,
|
|
10
|
+
end: l + p - 1
|
|
11
11
|
};
|
|
12
12
|
}).filter((e) => e.start <= 6 && e.end >= 0);
|
|
13
|
-
return { days:
|
|
13
|
+
return { days: a.map((e) => e), scheduleEvents: m };
|
|
14
14
|
}
|
|
15
|
-
function
|
|
16
|
-
return
|
|
17
|
-
(
|
|
15
|
+
function _(u, n) {
|
|
16
|
+
return u.filter(
|
|
17
|
+
(a) => s(a.startDate).isBefore(n.endOf("day")) && s(a.endDate).isAfter(n.startOf("day"))
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
|
-
function
|
|
21
|
-
const
|
|
22
|
-
(t) => s(t.startDate).isBefore(
|
|
20
|
+
function Y(u, n) {
|
|
21
|
+
const a = n.startOf("day"), i = n.endOf("day"), m = [...u.filter(
|
|
22
|
+
(t) => s(t.startDate).isBefore(i) && s(t.endDate).isAfter(a)
|
|
23
23
|
).map((t) => ({
|
|
24
24
|
...t,
|
|
25
25
|
_start: Math.max(
|
|
26
26
|
s(t.startDate).minute() + s(t.startDate).hour() * 60,
|
|
27
|
-
|
|
27
|
+
a.minute() + a.hour() * 60
|
|
28
28
|
),
|
|
29
29
|
_end: Math.min(
|
|
30
30
|
s(t.endDate).minute() + s(t.endDate).hour() * 60,
|
|
31
|
-
|
|
31
|
+
i.minute() + i.hour() * 60
|
|
32
32
|
)
|
|
33
|
-
}))].sort((t,
|
|
34
|
-
let e = [],
|
|
35
|
-
for (const t of
|
|
36
|
-
e.length === 0 || t._start <
|
|
37
|
-
return e.length > 0 &&
|
|
33
|
+
}))].sort((t, r) => t._start - r._start), d = [];
|
|
34
|
+
let e = [], f = -1;
|
|
35
|
+
for (const t of m)
|
|
36
|
+
e.length === 0 || t._start < f ? (e.push(t), f = Math.max(f, t._end)) : (d.push(...D(e)), e = [t], f = t._end);
|
|
37
|
+
return e.length > 0 && d.push(...D(e)), d;
|
|
38
38
|
}
|
|
39
|
-
function
|
|
40
|
-
const n = [],
|
|
41
|
-
for (const
|
|
42
|
-
let
|
|
43
|
-
for (let
|
|
44
|
-
const e = n[
|
|
39
|
+
function D(u) {
|
|
40
|
+
const n = [], a = [];
|
|
41
|
+
for (const o of u) {
|
|
42
|
+
let m = !1;
|
|
43
|
+
for (let d = 0; d < n.length; d++) {
|
|
44
|
+
const e = n[d];
|
|
45
45
|
if (!e.some(
|
|
46
46
|
(t) => !(t._end <= t._start || t._end <= t._start)
|
|
47
47
|
)) {
|
|
48
|
-
e.push(
|
|
49
|
-
...
|
|
50
|
-
columnIndex:
|
|
48
|
+
e.push(o), a.push({
|
|
49
|
+
...o,
|
|
50
|
+
columnIndex: d,
|
|
51
51
|
totalColumns: 0
|
|
52
|
-
}),
|
|
52
|
+
}), m = !0;
|
|
53
53
|
break;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
|
-
|
|
57
|
-
...
|
|
56
|
+
m || (n.push([o]), a.push({
|
|
57
|
+
...o,
|
|
58
58
|
columnIndex: n.length - 1,
|
|
59
59
|
totalColumns: 0
|
|
60
60
|
}));
|
|
61
61
|
}
|
|
62
|
-
const
|
|
63
|
-
return
|
|
62
|
+
const i = n.length;
|
|
63
|
+
return a.forEach((o) => o.totalColumns = i), a;
|
|
64
64
|
}
|
|
65
|
-
function
|
|
66
|
-
const n = s(
|
|
65
|
+
function C(u) {
|
|
66
|
+
const n = s(u);
|
|
67
67
|
return n.hour() * 60 + n.minute();
|
|
68
68
|
}
|
|
69
|
-
function
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
69
|
+
function O(u, n, {
|
|
70
|
+
schedules: a,
|
|
71
|
+
mergedTimeBlocks: i = !1
|
|
72
|
+
}) {
|
|
73
|
+
return g(u, n).flatMap(({ value: o }, m) => {
|
|
74
|
+
const e = a.filter(({ startDate: r, endDate: c, weekDay: l }) => {
|
|
75
|
+
const p = s(r), h = s(c);
|
|
76
|
+
return p.isAfter(o) || h.isBefore(o) ? !1 : String(l) === o.getDay().toString();
|
|
77
|
+
}).filter(({ oneDayDate: r }) => r ? s(r).isSame(o, "date") : !0).flatMap(
|
|
78
|
+
({ id: r, startTime: c, endTime: l }) => y(Number(c), Number(l), {
|
|
79
|
+
step: i ? l - c : void 0,
|
|
80
|
+
pairs: !i
|
|
81
|
+
}).map(({ value: p, label: h }) => ({
|
|
82
|
+
id: r,
|
|
83
|
+
value: p,
|
|
84
|
+
label: h
|
|
85
|
+
}))
|
|
86
|
+
), f = 2, t = [];
|
|
87
|
+
for (let r = 0; r < e.length; r += f)
|
|
88
|
+
t.push(e.slice(r, r + f));
|
|
89
|
+
return t.map(([{ id: r, value: c }, { value: l }]) => ({
|
|
90
|
+
id: r || `${m}-${c}-${l}`,
|
|
91
|
+
startDate: s(o).hour(Math.floor(c)).minute(c % 1 * 60).format("YYYY-MM-DD HH:mm"),
|
|
81
92
|
endDate: s(o).hour(Math.floor(l)).minute(l % 1 * 60).format("YYYY-MM-DD HH:mm")
|
|
82
93
|
}));
|
|
83
94
|
});
|
|
84
95
|
}
|
|
85
96
|
export {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
97
|
+
D as assignColumnsToGroup,
|
|
98
|
+
M as generateWeek,
|
|
99
|
+
O as getAvailableDateRange,
|
|
100
|
+
_ as getDayScheduleEvents,
|
|
101
|
+
C as getMinutesFromMidnight,
|
|
102
|
+
Y as resolvePositionedScheduleEventsForDate
|
|
92
103
|
};
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { Children as
|
|
1
|
+
import { jsxs as y, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { Children as s, isValidElement as S, cloneElement as j } from "react";
|
|
3
3
|
import { Flexbox as a, Typography as E, Button as $, Icon as w } from "@dotss/ui";
|
|
4
4
|
import A from "../../../../shared/components/Masonry/Masonry.mjs";
|
|
5
5
|
import "../../../../shared/components/Masonry/MasonryBlock/MasonryBlock.mjs";
|
|
6
6
|
import B from "./ActivityGalleryItem/ActivityGalleryItem.mjs";
|
|
7
7
|
function T({
|
|
8
|
-
children:
|
|
8
|
+
children: p,
|
|
9
9
|
onClickViewAll: o,
|
|
10
10
|
action: m,
|
|
11
11
|
hideHeader: l = !1,
|
|
12
12
|
masonryProps: {
|
|
13
|
-
columnCount:
|
|
14
|
-
rowCount:
|
|
15
|
-
spacing:
|
|
16
|
-
edgeSpacing:
|
|
17
|
-
direction:
|
|
18
|
-
defaultContainerWidth:
|
|
13
|
+
columnCount: c = 2,
|
|
14
|
+
rowCount: f = 2,
|
|
15
|
+
spacing: g = 2,
|
|
16
|
+
edgeSpacing: h = 0,
|
|
17
|
+
direction: b = "horizontal",
|
|
18
|
+
defaultContainerWidth: u = 360,
|
|
19
19
|
defaultContainerHeight: d = 0,
|
|
20
|
-
...
|
|
20
|
+
...v
|
|
21
21
|
} = {},
|
|
22
22
|
...r
|
|
23
23
|
}) {
|
|
24
|
-
const n =
|
|
25
|
-
return /* @__PURE__ */
|
|
24
|
+
const n = s.toArray(p).filter(S).filter((t) => t.type === B), x = n.length > 0;
|
|
25
|
+
return /* @__PURE__ */ y(
|
|
26
26
|
a,
|
|
27
27
|
{
|
|
28
28
|
tag: "section",
|
|
@@ -36,7 +36,7 @@ function T({
|
|
|
36
36
|
...r == null ? void 0 : r.inlineCSS
|
|
37
37
|
},
|
|
38
38
|
children: [
|
|
39
|
-
!l && /* @__PURE__ */
|
|
39
|
+
!l && /* @__PURE__ */ y(a, { alignItems: "center", justifyContent: "space-between", gap: 2, children: [
|
|
40
40
|
/* @__PURE__ */ e(
|
|
41
41
|
E,
|
|
42
42
|
{
|
|
@@ -59,27 +59,26 @@ function T({
|
|
|
59
59
|
}
|
|
60
60
|
)
|
|
61
61
|
] }),
|
|
62
|
-
|
|
62
|
+
x && /* @__PURE__ */ e(
|
|
63
63
|
A,
|
|
64
64
|
{
|
|
65
|
-
rowCount:
|
|
66
|
-
columnCount:
|
|
67
|
-
spacing:
|
|
68
|
-
edgeSpacing:
|
|
69
|
-
direction:
|
|
70
|
-
defaultContainerWidth:
|
|
65
|
+
rowCount: f,
|
|
66
|
+
columnCount: c,
|
|
67
|
+
spacing: g,
|
|
68
|
+
edgeSpacing: h,
|
|
69
|
+
direction: b,
|
|
70
|
+
defaultContainerWidth: u,
|
|
71
71
|
defaultContainerHeight: d,
|
|
72
72
|
role: "group",
|
|
73
73
|
"aria-label": "콘텐츠 목록",
|
|
74
|
-
...
|
|
75
|
-
children:
|
|
74
|
+
...v,
|
|
75
|
+
children: s.map(n, (t, C) => {
|
|
76
76
|
let i = t.props.type === "VIDEO" || t.props.type === "VIMEO" || t.props.type === "YOUTUBE" ? "동영상" : "사진";
|
|
77
77
|
i = t.props.primary ? `대표 ${i}` : i;
|
|
78
|
-
const I = `${i} (${n.length}개 중 ${
|
|
78
|
+
const I = `${i} (${n.length}개 중 ${C + 1}번째)`;
|
|
79
79
|
return j(t, {
|
|
80
80
|
role: "button",
|
|
81
81
|
"aria-label": I,
|
|
82
|
-
index: y,
|
|
83
82
|
...t.props
|
|
84
83
|
});
|
|
85
84
|
})
|
package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { MasonryBlockProps } from '../../../../../shared/components/Masonry/MasonryBlock';
|
|
2
|
-
export interface ActivityGalleryItemProps extends MasonryBlockProps {
|
|
2
|
+
export interface ActivityGalleryItemProps extends Omit<MasonryBlockProps, 'id'> {
|
|
3
3
|
type: 'VIDEO' | 'VIMEO' | 'YOUTUBE' | 'IMAGE';
|
|
4
4
|
primary: boolean;
|
|
5
5
|
status: 'VERIFIED' | 'PENDING' | 'REJECTED' | 'DELETED';
|
|
6
|
-
|
|
6
|
+
id: string | number;
|
|
7
7
|
}
|
|
8
|
-
declare function ActivityGalleryItem({ children, type, primary, status,
|
|
8
|
+
declare function ActivityGalleryItem({ children, type, primary, status, id, ...props }: ActivityGalleryItemProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default ActivityGalleryItem;
|
package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.mjs
CHANGED
|
@@ -2,12 +2,12 @@ import { jsxs as r, jsx as e, Fragment as c } from "react/jsx-runtime";
|
|
|
2
2
|
import { Label as u, Flexbox as l, Icon as m, Typography as b } from "@dotss/ui";
|
|
3
3
|
import h from "@dotss/ui/core/useTheme";
|
|
4
4
|
import p from "../../../../../shared/components/Masonry/MasonryBlock/MasonryBlock.mjs";
|
|
5
|
-
function
|
|
5
|
+
function g({
|
|
6
6
|
children: n,
|
|
7
7
|
type: i,
|
|
8
8
|
primary: a = !1,
|
|
9
9
|
status: s,
|
|
10
|
-
|
|
10
|
+
id: o,
|
|
11
11
|
...t
|
|
12
12
|
}) {
|
|
13
13
|
const {
|
|
@@ -92,5 +92,5 @@ function x({
|
|
|
92
92
|
);
|
|
93
93
|
}
|
|
94
94
|
export {
|
|
95
|
-
|
|
95
|
+
g as default
|
|
96
96
|
};
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { FlexboxProps } from 'node_modules/@dotss/ui/Flexbox/Flexbox';
|
|
2
|
-
export interface CareerItemProps extends FlexboxProps {
|
|
2
|
+
export interface CareerItemProps extends Omit<FlexboxProps, 'id'> {
|
|
3
3
|
title: string;
|
|
4
4
|
status: 'VERIFIED' | 'PENDING' | 'REJECTED' | 'DELETED';
|
|
5
5
|
startDate: string;
|
|
6
6
|
endDate: string | null;
|
|
7
7
|
primary: boolean;
|
|
8
|
+
id: string | number;
|
|
9
|
+
regDatetime: string;
|
|
10
|
+
priority: number;
|
|
8
11
|
}
|
|
9
|
-
declare function CareerItem({ title, status, startDate, endDate, primary, ...props }: CareerItemProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare function CareerItem({ title, status, startDate, endDate, primary, id, ...props }: CareerItemProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
10
13
|
export default CareerItem;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { jsx as i, jsxs as e, Fragment as
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import p from "@dotss/ui/core/useTheme";
|
|
1
|
+
import { jsx as i, jsxs as e, Fragment as g } from "react/jsx-runtime";
|
|
2
|
+
import { Flexbox as t, Label as D, Typography as h, Icon as d } from "@dotss/ui";
|
|
3
|
+
import j from "@dotss/ui/core/useTheme";
|
|
5
4
|
import { useCheckHoverPossible as E } from "@dotss/ui/hooks";
|
|
6
5
|
import s from "dayjs";
|
|
7
|
-
function
|
|
6
|
+
function T({
|
|
8
7
|
title: v,
|
|
9
8
|
status: f,
|
|
10
9
|
startDate: y,
|
|
11
10
|
endDate: o,
|
|
12
11
|
primary: x = !1,
|
|
12
|
+
id: b,
|
|
13
13
|
...n
|
|
14
14
|
}) {
|
|
15
|
-
const
|
|
15
|
+
const { isHoverPossible: I } = E(), {
|
|
16
16
|
palette: { grey: a },
|
|
17
17
|
spacing: c
|
|
18
|
-
} =
|
|
18
|
+
} = j(), r = typeof n.onClick == "function", k = s(y), u = (o ? s(o) : s()).diff(k, "month"), m = Math.floor(u / 12), C = u % 12;
|
|
19
19
|
return /* @__PURE__ */ i("li", { children: /* @__PURE__ */ e(
|
|
20
20
|
t,
|
|
21
21
|
{
|
|
22
22
|
role: "button",
|
|
23
|
-
tabIndex:
|
|
23
|
+
tabIndex: r ? 0 : -1,
|
|
24
24
|
alignItems: "center",
|
|
25
25
|
gap: 4,
|
|
26
26
|
pt: 2,
|
|
@@ -29,20 +29,20 @@ function A({
|
|
|
29
29
|
pr: 4,
|
|
30
30
|
ml: -4,
|
|
31
31
|
mr: -4,
|
|
32
|
-
onKeyDown: (
|
|
32
|
+
onKeyDown: (l) => {
|
|
33
33
|
var S;
|
|
34
|
-
(
|
|
34
|
+
(l.key === "Enter" || l.key === " ") && (l.preventDefault(), l.currentTarget.click()), (S = n.onKeyDown) == null || S.call(n, l);
|
|
35
35
|
},
|
|
36
36
|
"aria-labelledby": `career-item-title-${b}`,
|
|
37
37
|
...n,
|
|
38
38
|
inlineCSS: {
|
|
39
|
-
cursor:
|
|
40
|
-
...
|
|
39
|
+
cursor: r ? "pointer" : "default",
|
|
40
|
+
...r && {
|
|
41
41
|
"&:active": {
|
|
42
42
|
backgroundColor: a[10]
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
...
|
|
45
|
+
...r && I ? {
|
|
46
46
|
"&:hover": {
|
|
47
47
|
backgroundColor: a[10]
|
|
48
48
|
}
|
|
@@ -53,7 +53,7 @@ function A({
|
|
|
53
53
|
/* @__PURE__ */ e(t, { flexDirection: "column", gap: 1, flexGrow: 1, children: [
|
|
54
54
|
/* @__PURE__ */ e(t, { alignItems: "center", gap: 1, children: [
|
|
55
55
|
x && /* @__PURE__ */ i(
|
|
56
|
-
|
|
56
|
+
D,
|
|
57
57
|
{
|
|
58
58
|
variant: "outlined",
|
|
59
59
|
size: "small",
|
|
@@ -64,11 +64,11 @@ function A({
|
|
|
64
64
|
children: "대표"
|
|
65
65
|
}
|
|
66
66
|
),
|
|
67
|
-
/* @__PURE__ */ e(
|
|
67
|
+
/* @__PURE__ */ e(h, { id: `career-item-title-${b}`, tag: "p", variant: "b2M", children: [
|
|
68
68
|
v,
|
|
69
69
|
f === "VERIFIED" && // TODO 아이콘 교체 필요
|
|
70
70
|
/* @__PURE__ */ i(
|
|
71
|
-
|
|
71
|
+
d,
|
|
72
72
|
{
|
|
73
73
|
name: "InfoFill",
|
|
74
74
|
size: "small",
|
|
@@ -82,7 +82,7 @@ function A({
|
|
|
82
82
|
}
|
|
83
83
|
),
|
|
84
84
|
f === "REJECTED" && /* @__PURE__ */ i(
|
|
85
|
-
|
|
85
|
+
d,
|
|
86
86
|
{
|
|
87
87
|
name: "AlertFill",
|
|
88
88
|
size: "small",
|
|
@@ -97,7 +97,7 @@ function A({
|
|
|
97
97
|
)
|
|
98
98
|
] })
|
|
99
99
|
] }),
|
|
100
|
-
/* @__PURE__ */ e(
|
|
100
|
+
/* @__PURE__ */ e(h, { tag: "p", variant: "b5R", color: "grey.50", children: [
|
|
101
101
|
y,
|
|
102
102
|
" ~ ",
|
|
103
103
|
o ?? "현재"
|
|
@@ -105,7 +105,7 @@ function A({
|
|
|
105
105
|
] }),
|
|
106
106
|
/* @__PURE__ */ e(t, { alignItems: "center", gap: 2, children: [
|
|
107
107
|
/* @__PURE__ */ e(
|
|
108
|
-
|
|
108
|
+
h,
|
|
109
109
|
{
|
|
110
110
|
tag: "p",
|
|
111
111
|
variant: "h5R",
|
|
@@ -113,24 +113,24 @@ function A({
|
|
|
113
113
|
noWrap: !0,
|
|
114
114
|
inlineCSS: { "& strong": { color: a[100], fontWeight: 700 } },
|
|
115
115
|
children: [
|
|
116
|
-
m > 0 && /* @__PURE__ */ e(
|
|
116
|
+
m > 0 && /* @__PURE__ */ e(g, { children: [
|
|
117
117
|
/* @__PURE__ */ i("strong", { children: m }),
|
|
118
118
|
"년"
|
|
119
119
|
] }),
|
|
120
|
-
C > 0 && /* @__PURE__ */ e(
|
|
121
|
-
m > 0 && /* @__PURE__ */ i(
|
|
120
|
+
C > 0 && /* @__PURE__ */ e(g, { children: [
|
|
121
|
+
m > 0 && /* @__PURE__ */ i(g, { children: " " }),
|
|
122
122
|
/* @__PURE__ */ i("strong", { children: C }),
|
|
123
123
|
"개월"
|
|
124
124
|
] })
|
|
125
125
|
]
|
|
126
126
|
}
|
|
127
127
|
),
|
|
128
|
-
/* @__PURE__ */ i(
|
|
128
|
+
r && /* @__PURE__ */ i(d, { name: "ChevronRightLine", size: "xSmall", color: "grey.50" })
|
|
129
129
|
] })
|
|
130
130
|
]
|
|
131
131
|
}
|
|
132
132
|
) });
|
|
133
133
|
}
|
|
134
134
|
export {
|
|
135
|
-
|
|
135
|
+
T as default
|
|
136
136
|
};
|