mario-education 2.4.159-level → 2.4.161-level
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 +11 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -8
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -28510,7 +28510,6 @@ var learningStrategyChartOptions = function learningStrategyChartOptions(labelNa
|
|
|
28510
28510
|
},
|
|
28511
28511
|
chart: {
|
|
28512
28512
|
type: "bar",
|
|
28513
|
-
offsetX: !isMobileScreen ? 0 : -410,
|
|
28514
28513
|
toolbar: {
|
|
28515
28514
|
show: false
|
|
28516
28515
|
}
|
|
@@ -31023,18 +31022,22 @@ var TopLearningStrategy = function TopLearningStrategy(_ref2) {
|
|
|
31023
31022
|
className: "" + styles$1["description-chart"]
|
|
31024
31023
|
}, "The Effectiveness of Learning Strategies by Student's feedback"))), seriesLearningStrategy.some(function (i) {
|
|
31025
31024
|
return i.data;
|
|
31026
|
-
}) ? React__default.createElement("div",
|
|
31025
|
+
}) ? React__default.createElement("div", {
|
|
31026
|
+
style: {
|
|
31027
|
+
marginLeft: !isMobileScreen ? 0 : -410
|
|
31028
|
+
}
|
|
31029
|
+
}, React__default.createElement(Chart, {
|
|
31027
31030
|
options: learningStrategyChartOptions(!isMobileScreen ? wrapLabel : labelNames, usageCount, isMobileScreen),
|
|
31028
31031
|
series: !isMobileScreen ? seriesLearningStrategy : seriesLearningStrategyMobile,
|
|
31029
31032
|
type: "bar",
|
|
31030
|
-
width: !isMobileScreen ? "100%" : screenWidth +
|
|
31033
|
+
width: !isMobileScreen ? "100%" : screenWidth + 370,
|
|
31031
31034
|
height: !isMobileScreen ? 500 : 700
|
|
31032
|
-
})
|
|
31033
|
-
className: "" + styles$1["name-chart"]
|
|
31034
|
-
}, "Perceived Usefulness")) : React__default.createElement("img", {
|
|
31035
|
+
})) : React__default.createElement("img", {
|
|
31035
31036
|
className: styles$1["image-no-data"] + " " + styles$1["image-custom"],
|
|
31036
31037
|
src: "images/chart-top-learning.png"
|
|
31037
|
-
})
|
|
31038
|
+
}), React__default.createElement("p", {
|
|
31039
|
+
className: "" + styles$1["name-chart"]
|
|
31040
|
+
}, "Perceived Usefulness")), React__default.createElement(reactstrap.Col, {
|
|
31038
31041
|
md: 5,
|
|
31039
31042
|
className: "" + styles$1["box-top-5-most"]
|
|
31040
31043
|
}, React__default.createElement("div", {
|
|
@@ -31131,7 +31134,7 @@ var StudentPressureChart = function StudentPressureChart(_ref) {
|
|
|
31131
31134
|
var studentPressure = _ref.studentPressure,
|
|
31132
31135
|
width = _ref.width;
|
|
31133
31136
|
var svgRef = React.useRef(null);
|
|
31134
|
-
var innerWidth = window.innerWidth < 576 ? window.innerWidth -
|
|
31137
|
+
var innerWidth = window.innerWidth < 576 ? window.innerWidth - 20 : window.innerWidth - 340;
|
|
31135
31138
|
|
|
31136
31139
|
if (width) {
|
|
31137
31140
|
innerWidth = width;
|