touchstudy-core 0.1.41 → 0.1.42
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 +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -11223,7 +11223,7 @@ function MyAnswer(_ref) {
|
|
11223
11223
|
});
|
11224
11224
|
};
|
11225
11225
|
var renderPrintQuestions = function renderPrintQuestions(questions) {
|
11226
|
-
var chunkedQuestions = _.chunk(questions,
|
11226
|
+
var chunkedQuestions = _.chunk(questions, 10);
|
11227
11227
|
return chunkedQuestions.map(function (i, index) {
|
11228
11228
|
return React__default.createElement("div", {
|
11229
11229
|
key: index,
|
@@ -11432,7 +11432,7 @@ var CompareGrass = function CompareGrass(_ref) {
|
|
11432
11432
|
});
|
11433
11433
|
};
|
11434
11434
|
var renderPrintTableBody = function renderPrintTableBody(effectSize) {
|
11435
|
-
var chunkedEffectSizeQuestions = _.chunk(effectSize,
|
11435
|
+
var chunkedEffectSizeQuestions = _.chunk(effectSize, 10);
|
11436
11436
|
return chunkedEffectSizeQuestions.map(function (i, index) {
|
11437
11437
|
return React__default.createElement("tbody", {
|
11438
11438
|
key: index,
|
@@ -11801,7 +11801,7 @@ var GradesByTerritory = function GradesByTerritory(_ref) {
|
|
11801
11801
|
});
|
11802
11802
|
};
|
11803
11803
|
var renderPrintCategories = function renderPrintCategories() {
|
11804
|
-
var chunkedCategories = _.chunk(data,
|
11804
|
+
var chunkedCategories = _.chunk(data, 10);
|
11805
11805
|
return chunkedCategories.map(function (i, index) {
|
11806
11806
|
return React__default.createElement("div", {
|
11807
11807
|
key: index,
|
@@ -12406,12 +12406,16 @@ var ExamResultV2 = function ExamResultV2(_ref) {
|
|
12406
12406
|
}, t("article_number"), " ", timelyOrderQuestion.article), React__default.createElement("div", {
|
12407
12407
|
className: styles$4["compareChart"] + " " + PrintContentClassName
|
12408
12408
|
}, React__default.createElement("div", {
|
12409
|
+
className: "" + styles$4["prevChart"]
|
12410
|
+
}), React__default.createElement("div", {
|
12409
12411
|
className: styles$4["chart"] + " sr-line-chart"
|
12410
12412
|
}, React__default.createElement("div", null, React__default.createElement(ReactApexChart, {
|
12411
12413
|
height: 389,
|
12412
12414
|
options: allChartOptions[index],
|
12413
12415
|
series: allSeries[index]
|
12414
|
-
})))
|
12416
|
+
}))), React__default.createElement("div", {
|
12417
|
+
className: "" + styles$4["nextChart"]
|
12418
|
+
})));
|
12415
12419
|
})), React__default.createElement(material.Stack, {
|
12416
12420
|
display: "flex",
|
12417
12421
|
flexDirection: "column",
|