@edu-tosel/design 1.0.165 → 1.0.167
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/interface/Data.d.ts +1 -0
- package/layout/design/Row.design/SelectRoll.js +1 -1
- package/layout/template/Event/One.js +3 -2
- package/layout/template/Legacy/Integrate.js +1 -2
- package/layout/template/Regexam/OfflineExam.d.ts +2 -0
- package/layout/template/Regexam/OfflineExam.js +125 -21
- package/package.json +1 -1
- package/version.txt +1 -1
package/interface/Data.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { useState } from "react";
|
|
|
3
3
|
import { cn } from "../../../util";
|
|
4
4
|
import { useActionStore } from "../../../store";
|
|
5
5
|
export default function SelectRoll({ item, entry, data, }) {
|
|
6
|
-
const { updateItem } = useActionStore();
|
|
6
|
+
const { items, updateItem } = useActionStore();
|
|
7
7
|
const { options } = data ?? {};
|
|
8
8
|
const [key, value] = entry;
|
|
9
9
|
const [isHover, setIsHover] = useState(false);
|
|
@@ -23,6 +23,7 @@ export default function One({ event }) {
|
|
|
23
23
|
// NOTE: let 쓰지 마세요 없어도 코드 짜는데 문제 없습니다. 스코프 이슈 생기면 답없습니다.
|
|
24
24
|
// NOTE: 컴포넌트 내부에서 if else 문 쓰지 마세요 가독성 떨어지고 버그납니다. 예외처리는 함수로 빼서 처리하세요.
|
|
25
25
|
// NOTE: 절대 같은 코드 복붙하지마세요. 성능떨어지고 보기 안좋습니다.
|
|
26
|
+
const lines = event.title.split("\n");
|
|
26
27
|
const countdownText = daysRemaining > 0
|
|
27
28
|
? `오픈까지 D-${daysRemaining}`
|
|
28
29
|
: `오픈까지 ${hoursRemaining
|
|
@@ -38,14 +39,14 @@ export default function One({ event }) {
|
|
|
38
39
|
? " bg-gray-light text-gray-medium"
|
|
39
40
|
: expiredAt && expiredAt > currentTime
|
|
40
41
|
? "bg-gray-light text-green-dark"
|
|
41
|
-
: "bg-gradient-to-l from-
|
|
42
|
+
: "bg-gradient-to-l from-crimson-burgundy to-green-dark text-white",
|
|
42
43
|
};
|
|
43
44
|
const buttonText = expiredAt && expiredAt < currentTime
|
|
44
45
|
? "종료된 이벤트입니다"
|
|
45
46
|
: startedAt && startedAt > currentTime
|
|
46
47
|
? countdownText
|
|
47
48
|
: event.button?.title;
|
|
48
|
-
return (_jsxs("div", { className: "flex flex-col mmd:flex-row", children: [_jsx("div", { className: "min-w-[320px] h-auto p-5 mmd:sticky mmd:top-20 mmd:self-start", children: _jsxs("div", { className: "w-full h-auto rounded-xl sm:flex mmd:flex-col", children: [_jsx("div", { className: "w-full mmd:h-50 overflow-hidden", children: _jsx("img", { src: event.thumbnail, alt:
|
|
49
|
+
return (_jsxs("div", { className: "flex flex-col mmd:flex-row", children: [_jsx("div", { className: "min-w-[320px] h-auto p-5 mmd:sticky mmd:top-20 mmd:self-start", children: _jsxs("div", { className: "w-full h-auto rounded-xl sm:flex mmd:flex-col", children: [_jsx("div", { className: "w-full mmd:h-50 overflow-hidden", children: _jsx("img", { src: event.thumbnail, alt: event.title, className: "rounded-xl h-full object-cover w-full" }) }), _jsxs("div", { className: "w-full h-auto pt-5 sm:p-5 mmd:p-0 mmd:pt-5 gap-3 flex flex-col", children: [_jsx("div", { className: "flex items-center", children: _jsx(StatusText, { event: event }) }), _jsx("div", { className: "text-sm font-bold text-gray-dark flex flex-col items-start mb-2", children: lines.map((line, index) => (_jsxs("span", { children: [line, _jsx("br", {})] }, index))) }), event.button && (_jsx("div", { className: cn(button), onClick: () => {
|
|
49
50
|
event.button?.onClick && event.button.onClick();
|
|
50
51
|
}, children: buttonText }))] })] }, event.id) }), _jsxs("div", { className: "flex-grow p-5", children: [_jsx("div", { children: isHTMLString(event.content) ? (_jsx("div", { dangerouslySetInnerHTML: { __html: event.content }, className: "w-full rounded-xl object-cover overflow-hidden max-w-[810px]" })) : (_jsx("div", { children: event.content })) }), _jsx("button", { onClick: () => history.back(), className: "mt-8 p-5 bg-green-dark/5 text-green-dark rounded-xl flex items-center justify-center hover:bg-green-dark/20 transition-all", children: "\uBAA9\uB85D\uC73C\uB85C \uB3CC\uC544\uAC00\uAE30" })] })] }));
|
|
51
52
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { cn } from "../../../util";
|
|
3
3
|
import { Input, Label } from "../../../widget";
|
|
4
|
-
var Button = Label.Button;
|
|
5
4
|
import Action from "../Action";
|
|
6
5
|
import { Loading } from "../../../interaction";
|
|
7
6
|
import { LineBreaks } from "../../../text";
|
|
@@ -32,7 +31,7 @@ export default function Integrate({ isLoading, isUser, usernameState: [oldUserna
|
|
|
32
31
|
text: "text-green-dark",
|
|
33
32
|
} }), _jsxs("div", { className: "flex w-full justify-between items-center mt-12", children: [_jsxs("div", { className: "flex pl-1.5 gap-x-3.5", children: [_jsx("button", { onClick: () => window.open("https://tosel.org/new/find_idpw"), className: "text-gray-medium", children: "(\uAD6C)\uACC4\uC815 \uCC3E\uAE30" }), _jsx("button", { onClick: () => {
|
|
34
33
|
alert("구 계정 관련 기타 문의는 tosel_cs@tosel.co.kr으로 메일 부탁드립니다.");
|
|
35
|
-
}, className: "text-gray-medium", children: "\uAE30\uD0C0 \uBB38\uC758" })] }), _jsx(Button, { title: "\uC5F0\uB3D9\uD558\uAE30", onClick: submit, option: {
|
|
34
|
+
}, className: "text-gray-medium", children: "\uAE30\uD0C0 \uBB38\uC758" })] }), _jsx(Label.Button, { title: "\uC5F0\uB3D9\uD558\uAE30", onClick: submit, option: {
|
|
36
35
|
width: "md",
|
|
37
36
|
height: "md",
|
|
38
37
|
text: "text-white",
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export default function OfflineExam(): import("react/jsx-runtime").JSX.Element;
|
|
2
2
|
export declare function TableComponent(): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function AnnualTableComponent(): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare function TimeTableComponent(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,11 +7,11 @@ import { useResponsive } from "../../../hook";
|
|
|
7
7
|
gsap.registerPlugin(ScrollTrigger);
|
|
8
8
|
export default function OfflineExam() {
|
|
9
9
|
const isMD = useResponsive("md");
|
|
10
|
-
const isXL = useResponsive("xl");
|
|
11
10
|
const scrollWrapperRef = useRef(null);
|
|
12
11
|
useEffect(() => {
|
|
12
|
+
//stop scroll action while mobile
|
|
13
13
|
if (!isMD)
|
|
14
|
-
return;
|
|
14
|
+
return;
|
|
15
15
|
const ctx = gsap.context(() => {
|
|
16
16
|
const scrollWrapper = scrollWrapperRef.current;
|
|
17
17
|
if (scrollWrapper) {
|
|
@@ -56,11 +56,27 @@ export default function OfflineExam() {
|
|
|
56
56
|
sizes: "w-full h-fit",
|
|
57
57
|
textStyles: "font-medium text-gray-medium text-sm md:text-base",
|
|
58
58
|
};
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
textstyles: "font-medium text-
|
|
59
|
+
//button styling
|
|
60
|
+
const AdvertButton = {
|
|
61
|
+
displays: "relative overflow-hidden flex justify-center items-center",
|
|
62
|
+
sizes: "h-fit w-full md:w-fit rounded-lg",
|
|
63
|
+
textstyles: "text-lg font-pretendard-medium text-center text-green-dark hover:text-white",
|
|
64
|
+
spacings: "px-3 py-2 md:mt-16 mt-10",
|
|
65
|
+
animations: "group duration-300",
|
|
66
|
+
};
|
|
67
|
+
//before hover gradient
|
|
68
|
+
const buttonBackground1 = {
|
|
69
|
+
displays: "absolute inset-0",
|
|
70
|
+
backgrounds: "bg-green-dark/10",
|
|
71
|
+
};
|
|
72
|
+
//after hover gradient
|
|
73
|
+
const buttonBackground2 = {
|
|
74
|
+
displays: "absolute inset-0",
|
|
75
|
+
backgrounds: "bg-gradient-to-r from-crimson-burgundy to-green-dark",
|
|
76
|
+
animation: "transition-opacity duration-300 opacity-0 group-hover:opacity-100",
|
|
77
|
+
};
|
|
78
|
+
const buttonText = {
|
|
79
|
+
textstyles: "text-lg font-pretendard-medium text-center relative z-10",
|
|
64
80
|
};
|
|
65
81
|
const scrollWrapper = {
|
|
66
82
|
displays: "flex flex-col flex-shrink-0",
|
|
@@ -77,23 +93,111 @@ export default function OfflineExam() {
|
|
|
77
93
|
};
|
|
78
94
|
const miniDivider = {
|
|
79
95
|
sizes: "w-full h-0.5 mt-1",
|
|
80
|
-
colors: "bg-gradient-to-r from-crimson-burgundy to-green-dark",
|
|
96
|
+
colors: "bg-gradient-to-r from-crimson-burgundy to-green-dark flex-shrink-0",
|
|
81
97
|
};
|
|
82
|
-
return (_jsx("div", { className: cn(container), children: _jsxs("div", { className: cn(mainWrapper), children: [_jsxs("div", { className: cn(titleWrapper), ref: scrollWrapperRef, children: [_jsx("div", { className: cn(sectionTitle), children: "\uC815\uAE30\uC2DC\uD5D8 \uC548\uB0B4" }), _jsx("div", { className: cn(sectionSubTitle), children: "\uC5F0 4\uD68C, \uC624\uD504\uB77C\uC778\uC73C\uB85C \uAC1C\uCD5C\uB418\uB294 \uD1A0\uC140 \uC815\uAE30\uC2DC\uD5D8\uC785\uB2C8\uB2E4." })] }), _jsxs("div", { className: cn(scrollWrapper), children: [_jsxs("div", { className: cn(miniBox), children: [_jsx("div", { className: cn(miniTitle), children: "\uC2DC\uD5D8\uAD6C\uC131" }), _jsx("div", { className: cn(miniDivider) }), _jsx("div", { className: "h-full w-full mt-5", children: _jsx(TableComponent, {}) })] }), _jsxs("div", { className: cn(miniBox), children: [_jsx("div", { className: cn(miniTitle), children: "\uC2DC\uD5D8\
|
|
98
|
+
return (_jsx("div", { className: cn(container), children: _jsxs("div", { className: cn(mainWrapper), children: [_jsxs("div", { className: cn(titleWrapper), ref: scrollWrapperRef, children: [_jsx("div", { className: cn(sectionTitle), children: "\uC815\uAE30\uC2DC\uD5D8 \uC548\uB0B4" }), _jsx("div", { className: cn(sectionSubTitle), children: "\uC5F0 4\uD68C, \uC624\uD504\uB77C\uC778\uC73C\uB85C \uAC1C\uCD5C\uB418\uB294 \uD1A0\uC140 \uC815\uAE30\uC2DC\uD5D8\uC785\uB2C8\uB2E4." }), isMD && (_jsxs("div", { onClick: () => (window.location.href = `https://olympiad.tosel.co.kr/dashboard`), className: cn(AdvertButton), children: [_jsx("div", { className: cn(buttonBackground1) }), _jsx("div", { className: cn(buttonBackground2) }), _jsx("div", { className: cn(buttonText), children: "\uC9C0\uAE08 \uC811\uC218\uD558\uAE30" })] }))] }), _jsxs("div", { className: cn(scrollWrapper), children: [_jsxs("div", { className: cn(miniBox), children: [_jsx("div", { className: cn(miniTitle), children: "\uC2DC\uD5D8\uAD6C\uC131" }), _jsx("div", { className: cn(miniDivider) }), _jsx("div", { className: "h-full w-full mt-5", children: _jsx(TableComponent, {}) })] }), _jsxs("div", { className: cn(miniBox), children: [_jsx("div", { className: cn(miniTitle), children: "\uC5F0\uAC04 \uC2DC\uD5D8 \uC77C\uC815" }), _jsx("div", { className: cn(miniDivider) }), _jsx("div", { className: "h-full w-full mt-5", children: _jsx(AnnualTableComponent, {}) })] }), _jsxs("div", { className: cn(miniBox), children: [_jsx("div", { className: cn(miniTitle), children: "\uB2F9\uC77C \uC138\uBD80\uC77C\uC815" }), _jsx("div", { className: cn(miniDivider) }), _jsx("div", { className: "h-full w-full mt-5", children: _jsx(TimeTableComponent, {}) }), _jsxs("div", { className: "flex flex-col mt-4", children: [_jsx("div", { className: "text-gray-medium font-medium text-sm", children: "*\uACE0\uC0AC\uC7A5 \uB0B4\uBD80\uC5D0\uB294 \uD559\uBD80\uBAA8\uC758 \uCD9C\uC785\uC774 \uC81C\uD55C\uB429\uB2C8\uB2E4." }), _jsx("div", { className: "text-gray-medium font-medium text-sm", children: "*\uC785\uC2E4\uB9C8\uAC10(13\uC2DC 10\uBD84)\uC2DC\uAC04\uC744 \uC900\uC218\uD574\uC8FC\uC2DC\uAE30 \uBC14\uB78D\uB2C8\uB2E4." })] })] })] }), !isMD && (_jsxs("div", { onClick: () => (window.location.href = `https://olympiad.tosel.co.kr/dashboard`), className: cn(AdvertButton), children: [_jsx("div", { className: cn(buttonBackground1) }), _jsx("div", { className: cn(buttonBackground2) }), _jsx("div", { className: cn(buttonText), children: "\uC9C0\uAE08 \uC811\uC218\uD558\uAE30" })] }))] }) }));
|
|
83
99
|
}
|
|
84
100
|
export function TableComponent() {
|
|
85
101
|
const data = [
|
|
86
|
-
{
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
102
|
+
{
|
|
103
|
+
id: 1,
|
|
104
|
+
level: "Cocon",
|
|
105
|
+
age: "미취학 아동, 5-7세",
|
|
106
|
+
info1: "Section1: 15문항/15분",
|
|
107
|
+
info2: "Section2: 15문항/15분",
|
|
108
|
+
totalScore: "100점",
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
id: 2,
|
|
112
|
+
level: "Pre-Starter",
|
|
113
|
+
age: "초등학교 1-2학년",
|
|
114
|
+
info1: "Section1: 15문항/15분",
|
|
115
|
+
info2: "Section2: 20문항/25분",
|
|
116
|
+
totalScore: "100점",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: 3,
|
|
120
|
+
level: "Starter",
|
|
121
|
+
age: "초등학교 3-4학년",
|
|
122
|
+
info1: "Section1: 20문항/15분",
|
|
123
|
+
info2: "Section2: 20문항/25분",
|
|
124
|
+
totalScore: "100점",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
id: 4,
|
|
128
|
+
level: "Basic",
|
|
129
|
+
age: "초등학교 5-6학년",
|
|
130
|
+
info1: "Section1: 30문항/20분",
|
|
131
|
+
info2: "Section2: 30문항/30분",
|
|
132
|
+
totalScore: "100점",
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
id: 5,
|
|
136
|
+
level: "Junior",
|
|
137
|
+
age: "중학생",
|
|
138
|
+
info1: "Section1: 30문항/20분",
|
|
139
|
+
info2: "Section2: 30문항/30분",
|
|
140
|
+
totalScore: "100점",
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
id: 6,
|
|
144
|
+
level: "High Junior",
|
|
145
|
+
age: "고등학생",
|
|
146
|
+
info1: "Section1: 30문항/25분",
|
|
147
|
+
info2: "Section2: 35문항/35분",
|
|
148
|
+
totalScore: "100점",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
id: 7,
|
|
152
|
+
level: "Advanced",
|
|
153
|
+
age: "대학생 및 성인",
|
|
154
|
+
info1: "Section1: 70문항/45분",
|
|
155
|
+
info2: "Section2: 70문항/55분",
|
|
156
|
+
totalScore: "990점",
|
|
157
|
+
},
|
|
93
158
|
];
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
159
|
+
return (_jsx("div", { className: "overflow-auto w-full scrollbar-hidden rounded-lg", children: _jsxs("div", { className: "min-w-[640px] w-full", children: [_jsxs("div", { className: "flex bg-gradient-to-r from-green-dark to-crimson-burgundy text-white font-semibold text-sm", children: [_jsx("div", { className: "sticky left-0 bg-green-dark p-2 flex-[1] shadow-main", children: "\uB808\uBCA8" }), _jsx("div", { className: "p-2 flex-[2]", children: "\uCD9C\uC81C\uC218\uC900" }), _jsx("div", { className: "p-2 flex-[3]", children: "\uBB38\uD56D \uC218, \uC2DC\uAC04" }), _jsx("div", { className: "p-2 flex-[1]", children: "\uCD1D\uC810" })] }), data.map((item) => (_jsxs("div", { className: "flex bg-white/60 font-medium text-sm text-gray-medium ", children: [_jsx("div", { className: "sticky left-0 bg-white/90 p-2 flex-[1] text-gray-dark border-green-dark border-r-1", children: item.level }), _jsx("div", { className: "p-2 flex-[2]", children: item.age }), _jsxs("div", { className: "p-2 flex-[3] flex-col", children: [_jsx("div", { children: item.info1 }), _jsx("div", { children: item.info2 })] }), _jsx("div", { className: "p-2 flex-[1]", children: item.totalScore })] }, item.id)))] }) }));
|
|
160
|
+
}
|
|
161
|
+
export function AnnualTableComponent() {
|
|
162
|
+
const data = [
|
|
163
|
+
{
|
|
164
|
+
examNumber: "86",
|
|
165
|
+
dDay: "24.11.16",
|
|
166
|
+
regStartDay: "24.08.19",
|
|
167
|
+
regEndDay: "24.10.22",
|
|
168
|
+
resultDay: "24.12.05",
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
examNumber: "87",
|
|
172
|
+
dDay: "25.02.15",
|
|
173
|
+
regStartDay: "24.11.18",
|
|
174
|
+
regEndDay: "25.01.21",
|
|
175
|
+
resultDay: "24.03.06",
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
examNumber: "88",
|
|
179
|
+
dDay: "25.05.17",
|
|
180
|
+
regStartDay: "25.02.17",
|
|
181
|
+
regEndDay: "25.04.22",
|
|
182
|
+
resultDay: "24.06.05",
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
examNumber: "89",
|
|
186
|
+
dDay: "25.08.23",
|
|
187
|
+
regStartDay: "25.05.19",
|
|
188
|
+
regEndDay: "25.07.22",
|
|
189
|
+
resultDay: "24.09.04",
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
examNumber: "90",
|
|
193
|
+
dDay: "25.11.15",
|
|
194
|
+
regStartDay: "25.08.25",
|
|
195
|
+
regEndDay: "25.10.21",
|
|
196
|
+
resultDay: "24.12.04",
|
|
197
|
+
},
|
|
198
|
+
];
|
|
199
|
+
return (_jsx("div", { className: "overflow-auto w-full scrollbar-hidden rounded-lg", children: _jsxs("div", { className: "min-w-[480px] w-full", children: [_jsxs("div", { className: "flex bg-gradient-to-r from-green-dark to-crimson-burgundy text-white font-semibold text-sm", children: [_jsx("div", { className: "sticky left-0 bg-green-dark p-2 flex-[1] shadow-main", children: "\uD68C\uCC28" }), _jsx("div", { className: "p-2 flex-[2]", children: "\uC2DC\uD5D8\uC77C\uC790" }), _jsx("div", { className: "p-2 flex-[3]", children: "\uC811\uC218\uAE30\uAC04" }), _jsx("div", { className: "p-2 flex-[2]", children: "\uC131\uC801\uBC1C\uD45C" })] }), data.map((item) => (_jsxs("div", { className: "flex bg-white/60 font-medium text-sm text-gray-medium ", children: [_jsxs("div", { className: "sticky left-0 bg-white/90 p-2 flex-[1] text-gray-dark border-green-dark border-r-1", children: [item.examNumber, "\uD68C"] }), _jsx("div", { className: "p-2 flex-[2] text-green-dark font-bold", children: item.dDay }), _jsxs("div", { className: "p-2 flex-[3] flex-col", children: [item.regStartDay, " ~ ", item.regEndDay] }), _jsx("div", { className: "p-2 flex-[2]", children: item.resultDay })] }, item.examNumber)))] }) }));
|
|
200
|
+
}
|
|
201
|
+
export function TimeTableComponent() {
|
|
202
|
+
return (_jsx("div", { className: "overflow-auto w-full scrollbar-hidden", children: _jsxs("div", { className: "min-w-[600px] w-full", children: [_jsxs("div", { className: "flex text-green-dark font-bold text-xs", children: [_jsx("div", { className: "sticky left-0 rounded-md p-2 flex-[2] text-xs" }), _jsx("div", { className: "p-2 flex-[1]" }), _jsx("div", { className: "p-2 flex-[4]", children: "13:10" }), _jsx("div", { className: "p-2 flex-[1]", children: "13:35" }), _jsx("div", { className: "p-2 flex-[2]", children: "13:40" }), _jsx("div", { className: "p-2 flex-[1]", children: "14:20" })] }), _jsxs("div", { className: "flex bg-white/50 text-gray-dark font-semibold text-xs rounded-md", children: [_jsxs("div", { className: "sticky left-0 bg-white/90 rounded-md p-2 flex-[2]", children: ["Pre-Starter ", _jsx("br", {}), " Starter"] }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uC785\uC2E4" }), _jsx("div", { className: "p-2 flex-[4] border-green-dark border-r-1 border-dashed", children: "\uC2DC\uD5D8\uC9C0 \uBC30\uBD80" }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uB300\uAE30" }), _jsx("div", { className: "p-2 flex-[2] border-green-dark border-r-1 border-dashed bg-green-light text-green-dark", children: "\uC2DC\uD5D8\uC9C4\uD589 / 40\uBD84" }), _jsx("div", { className: "p-2 flex-[1]" })] }), _jsxs("div", { className: "flex text-green-dark font-bold text-xs mt-4", children: [_jsx("div", { className: "sticky left-0 rounded-md p-2 flex-[2] text-lg" }), _jsx("div", { className: "p-2 flex-[1]" }), _jsx("div", { className: "p-2 flex-[2]", children: "13:10" }), _jsx("div", { className: "p-2 flex-[1]", children: "13:25" }), _jsx("div", { className: "p-2 flex-[4]", children: "13:30" }), _jsx("div", { className: "p-2 flex-[1]", children: "14:20" })] }), _jsxs("div", { className: "flex bg-white/50 text-gray-dark font-semibold text-xs rounded-md", children: [_jsxs("div", { className: "sticky left-0 bg-white/90 rounded-md p-2 flex-[2]", children: ["Pre-Starter ", _jsx("br", {}), " Starter"] }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uC785\uC2E4" }), _jsx("div", { className: "p-2 flex-[2] border-green-dark border-r-1 border-dashed", children: "\uC2DC\uD5D8\uC9C0 \uBC30\uBD80" }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uB300\uAE30" }), _jsx("div", { className: "p-2 flex-[4] border-green-dark border-r-1 border-dashed bg-green-light text-green-dark", children: "\uC2DC\uD5D8\uC9C4\uD589 / 50\uBD84" }), _jsx("div", { className: "p-2 flex-[1] bg" })] }), _jsxs("div", { className: "flex text-green-dark font-bold text-xs mt-4", children: [_jsx("div", { className: "sticky left-0 rounded-md p-2 flex-[2] text-lg" }), _jsx("div", { className: "p-2 flex-[1]" }), _jsx("div", { className: "p-2 flex-[2]", children: "13:10" }), _jsx("div", { className: "p-2 flex-[1]", children: "13:25" }), _jsx("div", { className: "p-2 flex-[4]", children: "13:30" }), _jsx("div", { className: "p-2 flex-[1] text-right", children: "14:30" })] }), _jsxs("div", { className: "flex bg-white/50 text-gray-dark font-semibold text-xs rounded-md", children: [_jsx("div", { className: "sticky left-0 bg-white/90 rounded-md p-2 flex-[2]", children: "High-Junior" }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uC785\uC2E4" }), _jsx("div", { className: "p-2 flex-[2] border-green-dark border-r-1 border-dashed", children: "\uC2DC\uD5D8\uC9C0 \uBC30\uBD80" }), _jsx("div", { className: "p-2 flex-[1] border-green-dark border-r-1 border-dashed", children: "\uB300\uAE30" }), _jsx("div", { className: "p-2 flex-[4] bg-green-light text-green-dark", children: "\uC2DC\uD5D8\uC9C4\uD589 / 60\uBD84" }), _jsx("div", { className: "p-2 flex-[1] bg-green-light border-green-dark border-r-1 border-dashed" })] })] }) }));
|
|
99
203
|
}
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.167
|