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.modern.js
CHANGED
@@ -1576,6 +1576,10 @@ var problem_solving_speed = "문제 풀이 속도";
|
|
1576
1576
|
var solution_sequence_efficiency = "풀이 순서 효율";
|
1577
1577
|
var questions_in_total_format = "총 {{total}}문제";
|
1578
1578
|
var view_details = "상세 보기";
|
1579
|
+
var recent_class_exams = "최근 수업 시험";
|
1580
|
+
var there_are_no_problems_you_were_working_on = "풀던 문제가 없습니다.";
|
1581
|
+
var incomplete_exam = "미참가";
|
1582
|
+
var completed_exam = "참가";
|
1579
1583
|
var lang_ko = {
|
1580
1584
|
problem_solving: problem_solving,
|
1581
1585
|
my_story: my_story,
|
@@ -2779,7 +2783,11 @@ var lang_ko = {
|
|
2779
2783
|
problem_solving_speed: problem_solving_speed,
|
2780
2784
|
solution_sequence_efficiency: solution_sequence_efficiency,
|
2781
2785
|
questions_in_total_format: questions_in_total_format,
|
2782
|
-
view_details: view_details
|
2786
|
+
view_details: view_details,
|
2787
|
+
recent_class_exams: recent_class_exams,
|
2788
|
+
there_are_no_problems_you_were_working_on: there_are_no_problems_you_were_working_on,
|
2789
|
+
incomplete_exam: incomplete_exam,
|
2790
|
+
completed_exam: completed_exam
|
2783
2791
|
};
|
2784
2792
|
|
2785
2793
|
var problem_solving$1 = "Problem Solving";
|
@@ -4010,6 +4018,10 @@ var problem_solving_speed$1 = "Problem solving speed";
|
|
4010
4018
|
var solution_sequence_efficiency$1 = "Solution sequence efficiency";
|
4011
4019
|
var questions_in_total_format$1 = "{{total}} question(s) in total";
|
4012
4020
|
var view_details$1 = "View details";
|
4021
|
+
var recent_class_exams$1 = "Recent Class Exams";
|
4022
|
+
var there_are_no_problems_you_were_working_on$1 = "There are no problems you were working on";
|
4023
|
+
var incomplete_exam$1 = "Incomplete";
|
4024
|
+
var completed_exam$1 = "Completed";
|
4013
4025
|
var lang_en = {
|
4014
4026
|
problem_solving: problem_solving$1,
|
4015
4027
|
my_story: my_story$1,
|
@@ -5215,7 +5227,11 @@ var lang_en = {
|
|
5215
5227
|
problem_solving_speed: problem_solving_speed$1,
|
5216
5228
|
solution_sequence_efficiency: solution_sequence_efficiency$1,
|
5217
5229
|
questions_in_total_format: questions_in_total_format$1,
|
5218
|
-
view_details: view_details$1
|
5230
|
+
view_details: view_details$1,
|
5231
|
+
recent_class_exams: recent_class_exams$1,
|
5232
|
+
there_are_no_problems_you_were_working_on: there_are_no_problems_you_were_working_on$1,
|
5233
|
+
incomplete_exam: incomplete_exam$1,
|
5234
|
+
completed_exam: completed_exam$1
|
5219
5235
|
};
|
5220
5236
|
|
5221
5237
|
i18n.use(initReactI18next).init({
|