touchstudy-core 0.1.190 → 0.1.191
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/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +18 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/TimerCountItem.d.ts +1 -0
- package/dist/layouts/TimerDialog.d.ts +9 -0
- package/dist/layouts/configs/constants.d.ts +12 -0
- package/dist/layouts/hooks/useCountDownTimer.d.ts +9 -0
- package/dist/layouts/partials/AlarmClock.d.ts +10 -0
- package/dist/layouts/partials/AlarmClockPanel.d.ts +10 -0
- package/dist/layouts/partials/AlarmClockTab.d.ts +10 -0
- package/dist/layouts/partials/CircularTimer/index.d.ts +11 -0
- package/dist/layouts/partials/CircularTimer/tick.d.ts +8 -0
- package/dist/layouts/partials/CircularTimer.d.ts +11 -0
- package/dist/layouts/partials/StudyTimerTab.d.ts +12 -0
- package/dist/layouts/partials/TimerCountItem.d.ts +10 -0
- package/dist/layouts/partials/TimerItem.d.ts +11 -0
- package/dist/layouts/partials/TimerTabPanel.d.ts +8 -0
- package/dist/layouts/partials/TimerTabs.d.ts +7 -0
- package/dist/utils/enums/subject.d.ts +3 -2
- package/dist/utils/types/subjects.d.ts +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1572,6 +1572,10 @@ var problem_solving_speed = "문제 풀이 속도";
|
|
1572
1572
|
var solution_sequence_efficiency = "풀이 순서 효율";
|
1573
1573
|
var questions_in_total_format = "총 {{total}}문제";
|
1574
1574
|
var view_details = "상세 보기";
|
1575
|
+
var recent_class_exams = "최근 수업 시험";
|
1576
|
+
var there_are_no_problems_you_were_working_on = "풀던 문제가 없습니다.";
|
1577
|
+
var incomplete_exam = "미참가";
|
1578
|
+
var completed_exam = "참가";
|
1575
1579
|
var lang_ko = {
|
1576
1580
|
problem_solving: problem_solving,
|
1577
1581
|
my_story: my_story,
|
@@ -2775,7 +2779,11 @@ var lang_ko = {
|
|
2775
2779
|
problem_solving_speed: problem_solving_speed,
|
2776
2780
|
solution_sequence_efficiency: solution_sequence_efficiency,
|
2777
2781
|
questions_in_total_format: questions_in_total_format,
|
2778
|
-
view_details: view_details
|
2782
|
+
view_details: view_details,
|
2783
|
+
recent_class_exams: recent_class_exams,
|
2784
|
+
there_are_no_problems_you_were_working_on: there_are_no_problems_you_were_working_on,
|
2785
|
+
incomplete_exam: incomplete_exam,
|
2786
|
+
completed_exam: completed_exam
|
2779
2787
|
};
|
2780
2788
|
|
2781
2789
|
var problem_solving$1 = "Problem Solving";
|
@@ -4006,6 +4014,10 @@ var problem_solving_speed$1 = "Problem solving speed";
|
|
4006
4014
|
var solution_sequence_efficiency$1 = "Solution sequence efficiency";
|
4007
4015
|
var questions_in_total_format$1 = "{{total}} question(s) in total";
|
4008
4016
|
var view_details$1 = "View details";
|
4017
|
+
var recent_class_exams$1 = "Recent Class Exams";
|
4018
|
+
var there_are_no_problems_you_were_working_on$1 = "There are no problems you were working on";
|
4019
|
+
var incomplete_exam$1 = "Incomplete";
|
4020
|
+
var completed_exam$1 = "Completed";
|
4009
4021
|
var lang_en = {
|
4010
4022
|
problem_solving: problem_solving$1,
|
4011
4023
|
my_story: my_story$1,
|
@@ -5211,7 +5223,11 @@ var lang_en = {
|
|
5211
5223
|
problem_solving_speed: problem_solving_speed$1,
|
5212
5224
|
solution_sequence_efficiency: solution_sequence_efficiency$1,
|
5213
5225
|
questions_in_total_format: questions_in_total_format$1,
|
5214
|
-
view_details: view_details$1
|
5226
|
+
view_details: view_details$1,
|
5227
|
+
recent_class_exams: recent_class_exams$1,
|
5228
|
+
there_are_no_problems_you_were_working_on: there_are_no_problems_you_were_working_on$1,
|
5229
|
+
incomplete_exam: incomplete_exam$1,
|
5230
|
+
completed_exam: completed_exam$1
|
5215
5231
|
};
|
5216
5232
|
|
5217
5233
|
i18n__default.use(reactI18next.initReactI18next).init({
|