@edu-tosel/design 1.0.272 → 1.0.274
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/layout/template/dashboard/Header.js +1 -1
- package/package.json +1 -1
- package/util/createSearch.js +25 -9
- package/version.txt +1 -1
|
@@ -51,7 +51,7 @@ export function Header({ title, logo, notification, menu, option, isOpen, }) {
|
|
|
51
51
|
], children: menu?.profile ? (_jsx(SVG.Profile, { onClick: () => {
|
|
52
52
|
setIsOwn(true);
|
|
53
53
|
return setView("menu");
|
|
54
|
-
}, color: iconColor })) : (_jsx(Label.Button, { title: "\
|
|
54
|
+
}, color: iconColor })) : (_jsx(Label.Button, { title: "\uB300\uC2DC\uBCF4\uB4DC", onClick: () => option?.onClick && option.onClick(), option: {
|
|
55
55
|
width: "sm",
|
|
56
56
|
height: "xs",
|
|
57
57
|
background: gradient.bg.greenToRed,
|
package/package.json
CHANGED
package/util/createSearch.js
CHANGED
|
@@ -2,7 +2,7 @@ import { getChoseong } from "es-hangul";
|
|
|
2
2
|
const defaultRecord = {
|
|
3
3
|
//소개 페이지
|
|
4
4
|
"/about": ["About TOSEL", "About", "토셀소개"],
|
|
5
|
-
"/about
|
|
5
|
+
"/about?content=leadership": [
|
|
6
6
|
"리더십",
|
|
7
7
|
"임원",
|
|
8
8
|
"위원장",
|
|
@@ -13,10 +13,17 @@ const defaultRecord = {
|
|
|
13
13
|
"leadership",
|
|
14
14
|
"board",
|
|
15
15
|
],
|
|
16
|
-
"/about
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
"/about?content=mission": [
|
|
17
|
+
"Our Mission",
|
|
18
|
+
"비전",
|
|
19
|
+
"목표",
|
|
20
|
+
"미션",
|
|
21
|
+
"철학",
|
|
22
|
+
"가치관",
|
|
23
|
+
],
|
|
24
|
+
"/about?content=history": ["연혁", "역사", "history", "설립연도"],
|
|
25
|
+
"/about?content=area": ["분야", "사업분야", "비즈니스", "bussiness"],
|
|
26
|
+
"/about?content=partner": [
|
|
20
27
|
"협업",
|
|
21
28
|
"파트너",
|
|
22
29
|
"인증",
|
|
@@ -28,7 +35,7 @@ const defaultRecord = {
|
|
|
28
35
|
"/about#media": ["보도자료", "미디어", "media", "뉴스", "언론 속의 토셀"],
|
|
29
36
|
//시험소개
|
|
30
37
|
"/exams": ["시험소개", "레벨", "TOSEL"],
|
|
31
|
-
"/exams
|
|
38
|
+
"/exams?content=evaluation": [
|
|
32
39
|
"평가방식",
|
|
33
40
|
"연령별 인지단계",
|
|
34
41
|
"평가 기준",
|
|
@@ -39,7 +46,7 @@ const defaultRecord = {
|
|
|
39
46
|
"레벨",
|
|
40
47
|
"Level",
|
|
41
48
|
],
|
|
42
|
-
"/exams
|
|
49
|
+
"/exams?content=offlineExam": [
|
|
43
50
|
"정기시험 안내",
|
|
44
51
|
"시험 구성",
|
|
45
52
|
"연간 일정",
|
|
@@ -60,7 +67,7 @@ const defaultRecord = {
|
|
|
60
67
|
"주니어",
|
|
61
68
|
"하이주니어",
|
|
62
69
|
],
|
|
63
|
-
"/exams
|
|
70
|
+
"/exams?content=types": [
|
|
64
71
|
"시험 종류",
|
|
65
72
|
"고사장시험",
|
|
66
73
|
"가정시험",
|
|
@@ -113,7 +120,7 @@ const defaultRecord = {
|
|
|
113
120
|
"https://smartstore.naver.com/tosel/category/19e0ceb5c1d84b09a3b4b8110edb1803?cp=1": ["굿즈", "책받침", "볼펜", "다이어리", "캘린더", "오답노트", "단어장"],
|
|
114
121
|
// 올림피아드 랜딩페이지
|
|
115
122
|
"/olympiad": ["올림피아드", "보카", "VOCA", "단어"],
|
|
116
|
-
"/olympiad
|
|
123
|
+
"/olympiad?content=features": [
|
|
117
124
|
"올림피아드 특징",
|
|
118
125
|
"특징",
|
|
119
126
|
"올림피아드",
|
|
@@ -158,6 +165,15 @@ const defaultRecord = {
|
|
|
158
165
|
],
|
|
159
166
|
"/dashboard/user/applications": ["접수하기", "정기시험"],
|
|
160
167
|
"http://localhost:5174/olympiad#features": ["올림피아드 안내"],
|
|
168
|
+
"https://honor.tosel.co.kr": [
|
|
169
|
+
"명예의 전당",
|
|
170
|
+
"Hall of Fame",
|
|
171
|
+
"명전",
|
|
172
|
+
"등재자",
|
|
173
|
+
"명예의 기관",
|
|
174
|
+
"인터뷰",
|
|
175
|
+
"트로피 신청",
|
|
176
|
+
],
|
|
161
177
|
};
|
|
162
178
|
function createSearch({ record, } = {}) {
|
|
163
179
|
record = record ?? defaultRecord;
|
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.274
|