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.
@@ -11225,7 +11225,7 @@ function MyAnswer(_ref) {
11225
11225
  });
11226
11226
  };
11227
11227
  var renderPrintQuestions = function renderPrintQuestions(questions) {
11228
- var chunkedQuestions = _.chunk(questions, 5);
11228
+ var chunkedQuestions = _.chunk(questions, 10);
11229
11229
  return chunkedQuestions.map(function (i, index) {
11230
11230
  return React.createElement("div", {
11231
11231
  key: index,
@@ -11434,7 +11434,7 @@ var CompareGrass = function CompareGrass(_ref) {
11434
11434
  });
11435
11435
  };
11436
11436
  var renderPrintTableBody = function renderPrintTableBody(effectSize) {
11437
- var chunkedEffectSizeQuestions = _.chunk(effectSize, 5);
11437
+ var chunkedEffectSizeQuestions = _.chunk(effectSize, 10);
11438
11438
  return chunkedEffectSizeQuestions.map(function (i, index) {
11439
11439
  return React.createElement("tbody", {
11440
11440
  key: index,
@@ -11803,7 +11803,7 @@ var GradesByTerritory = function GradesByTerritory(_ref) {
11803
11803
  });
11804
11804
  };
11805
11805
  var renderPrintCategories = function renderPrintCategories() {
11806
- var chunkedCategories = _.chunk(data, 5);
11806
+ var chunkedCategories = _.chunk(data, 10);
11807
11807
  return chunkedCategories.map(function (i, index) {
11808
11808
  return React.createElement("div", {
11809
11809
  key: index,
@@ -12408,12 +12408,16 @@ var ExamResultV2 = function ExamResultV2(_ref) {
12408
12408
  }, t("article_number"), " ", timelyOrderQuestion.article), React.createElement("div", {
12409
12409
  className: styles$4["compareChart"] + " " + PrintContentClassName
12410
12410
  }, React.createElement("div", {
12411
+ className: "" + styles$4["prevChart"]
12412
+ }), React.createElement("div", {
12411
12413
  className: styles$4["chart"] + " sr-line-chart"
12412
12414
  }, React.createElement("div", null, React.createElement(ReactApexChart, {
12413
12415
  height: 389,
12414
12416
  options: allChartOptions[index],
12415
12417
  series: allSeries[index]
12416
- })))));
12418
+ }))), React.createElement("div", {
12419
+ className: "" + styles$4["nextChart"]
12420
+ })));
12417
12421
  })), React.createElement(Stack, {
12418
12422
  display: "flex",
12419
12423
  flexDirection: "column",