mario-education 2.4.15-beta → 2.4.16-beta
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.css +1 -1
- package/dist/index.js +28 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +28 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -20577,7 +20577,8 @@ var Dashboard = function Dashboard() {
|
|
|
20577
20577
|
children: React__default.createElement(TopLearningStrategy, {
|
|
20578
20578
|
data: topLearningStrategies
|
|
20579
20579
|
})
|
|
20580
|
-
}
|
|
20580
|
+
}];
|
|
20581
|
+
var listChartStudentLeft = [{
|
|
20581
20582
|
label: "Students by Grade",
|
|
20582
20583
|
children: React__default.createElement(StudentByGrade, {
|
|
20583
20584
|
data: studentByGrade
|
|
@@ -20630,7 +20631,8 @@ var Dashboard = function Dashboard() {
|
|
|
20630
20631
|
children: React__default.createElement(ReadinessToLearn, {
|
|
20631
20632
|
data: readinessToLearning
|
|
20632
20633
|
})
|
|
20633
|
-
}
|
|
20634
|
+
}];
|
|
20635
|
+
var listChartStudentRight = [{
|
|
20634
20636
|
label: "Students by Gender",
|
|
20635
20637
|
children: React__default.createElement(StudentByGender, {
|
|
20636
20638
|
data: studentByGender
|
|
@@ -20899,6 +20901,30 @@ var Dashboard = function Dashboard() {
|
|
|
20899
20901
|
});
|
|
20900
20902
|
})), React__default.createElement(reactstrap.Row, {
|
|
20901
20903
|
className: "my-2"
|
|
20904
|
+
}, React__default.createElement(reactstrap.Col, {
|
|
20905
|
+
xs: 12,
|
|
20906
|
+
xl: 8
|
|
20907
|
+
}, listChartStudentLeft.map(function (i) {
|
|
20908
|
+
return React__default.createElement(reactstrap.Col, {
|
|
20909
|
+
key: i.label,
|
|
20910
|
+
className: "mb-4 p-0"
|
|
20911
|
+
}, React__default.createElement(DashboardCard, {
|
|
20912
|
+
label: i.label,
|
|
20913
|
+
children: i.children
|
|
20914
|
+
}));
|
|
20915
|
+
})), React__default.createElement(reactstrap.Col, {
|
|
20916
|
+
xs: 12,
|
|
20917
|
+
xl: 4
|
|
20918
|
+
}, listChartStudentRight.map(function (i) {
|
|
20919
|
+
return React__default.createElement(reactstrap.Col, {
|
|
20920
|
+
key: i.label,
|
|
20921
|
+
className: "mb-4 p-0"
|
|
20922
|
+
}, React__default.createElement(DashboardCard, {
|
|
20923
|
+
label: i.label,
|
|
20924
|
+
children: i.children
|
|
20925
|
+
}));
|
|
20926
|
+
}))), React__default.createElement(reactstrap.Row, {
|
|
20927
|
+
className: "my-2"
|
|
20902
20928
|
}, listChartBottom.map(function (i, index) {
|
|
20903
20929
|
return React__default.createElement(reactstrap.Col, {
|
|
20904
20930
|
xs: 12,
|