touchstudy-core 0.1.185 → 0.1.186
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/components/Questions/configs/fns.d.ts +1 -1
- package/dist/containers/ExamResult/components/Charts/HexagonChart.d.ts +1 -0
- package/dist/containers/ExamResult/components/OverallTabs/CategoriesOverallChartContainer.d.ts +11 -0
- package/dist/containers/ExamResult/components/OverallTabs/OverallChartContainer.d.ts +11 -0
- package/dist/containers/ExamResult/components/OverallTabs/OverallTab.d.ts +6 -0
- package/dist/containers/ExamResult/components/OverallTabs/OverallTabHeader.d.ts +6 -0
- package/dist/containers/ExamResult/components/OverallTabs/OverallTimeChartContainer.d.ts +11 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -12381,7 +12381,7 @@ var isSequentialQuestionGroups = function isSequentialQuestionGroups(questionGro
|
|
12381
12381
|
};
|
12382
12382
|
var getQuestionGroupsAfterQuestionCountChanged = function getQuestionGroupsAfterQuestionCountChanged(questionGroups, questionCount, index, checkSequential) {
|
12383
12383
|
var currentQuestionGroup = questionGroups[index];
|
12384
|
-
if (currentQuestionGroup.questionCount === questionCount) return;
|
12384
|
+
if (currentQuestionGroup.questionCount === questionCount) return questionGroups;
|
12385
12385
|
var prevQuestionGroups = index === 0 ? [] : questionGroups.slice(0, index);
|
12386
12386
|
var nextQuestionGroups = index === questionGroups.length - 1 ? [] : questionGroups.slice(index + 1);
|
12387
12387
|
var questions = currentQuestionGroup.questions;
|
@@ -15616,7 +15616,7 @@ var LessonTooltip = function LessonTooltip(_ref) {
|
|
15616
15616
|
fontSize: "14px",
|
15617
15617
|
fontWeight: "600"
|
15618
15618
|
}
|
15619
|
-
},
|
15619
|
+
}, utcToLocalTime(lesson === null || lesson === void 0 ? void 0 : lesson.date, t("date_format")))), React__default.createElement(Stack, {
|
15620
15620
|
display: "flex",
|
15621
15621
|
flexDirection: "row",
|
15622
15622
|
justifyContent: "space-between",
|