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