mario-education 2.4.501-feedback → 2.4.503-feedback
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 +10 -12
- package/dist/index.js +11 -9
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -9
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -866,7 +866,7 @@ tbody._b-AXV tr {
|
|
|
866
866
|
display: flex;
|
|
867
867
|
flex-direction: row;
|
|
868
868
|
align-items: flex-start;
|
|
869
|
-
margin: 0 20px;
|
|
869
|
+
/* margin: 0 20px; */
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
._1ymYy ._RykFp {
|
|
@@ -882,12 +882,16 @@ tbody._b-AXV tr {
|
|
|
882
882
|
margin-right: 20px;
|
|
883
883
|
}
|
|
884
884
|
|
|
885
|
-
.
|
|
885
|
+
._3uC79 {
|
|
886
886
|
font-size: 14px;
|
|
887
887
|
font-weight: bold;
|
|
888
|
-
line-height:
|
|
888
|
+
line-height: 26px;
|
|
889
889
|
margin-bottom: 0px;
|
|
890
|
-
|
|
890
|
+
margin-top: 10px;
|
|
891
|
+
max-width: 200px;
|
|
892
|
+
width: -webkit-fit-content;
|
|
893
|
+
width: -moz-fit-content;
|
|
894
|
+
width: fit-content;
|
|
891
895
|
font-family: 'Poppins-Regular' !important;
|
|
892
896
|
}
|
|
893
897
|
|
|
@@ -1249,8 +1253,8 @@ tbody._b-AXV tr {
|
|
|
1249
1253
|
margin: 0;
|
|
1250
1254
|
}
|
|
1251
1255
|
|
|
1252
|
-
.
|
|
1253
|
-
width:
|
|
1256
|
+
._3uC79 {
|
|
1257
|
+
max-width: 150px;
|
|
1254
1258
|
padding-top: 0;
|
|
1255
1259
|
font-size: 12px;
|
|
1256
1260
|
}
|
|
@@ -1339,12 +1343,6 @@ tbody._b-AXV tr {
|
|
|
1339
1343
|
}
|
|
1340
1344
|
}
|
|
1341
1345
|
|
|
1342
|
-
@media (min-width: 1024px) {
|
|
1343
|
-
._1ymYy {
|
|
1344
|
-
margin: 0 20px;
|
|
1345
|
-
}
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
1346
|
@media (max-width: 600px) {
|
|
1349
1347
|
._2Bp8v ._2lIqc {
|
|
1350
1348
|
padding: 10px 30px;
|
package/dist/index.js
CHANGED
|
@@ -55669,11 +55669,9 @@ var SliderSurveyComponent = function SliderSurveyComponent(_ref) {
|
|
|
55669
55669
|
}
|
|
55670
55670
|
}
|
|
55671
55671
|
})(core$1.Slider);
|
|
55672
|
-
return React__default.createElement("div", {
|
|
55672
|
+
return React__default.createElement("div", null, React__default.createElement("div", {
|
|
55673
55673
|
className: styles["box-slider"]
|
|
55674
|
-
}, React__default.createElement(
|
|
55675
|
-
className: styles["slider-text"] + " " + styles["margin-right"]
|
|
55676
|
-
}, minText), React__default.createElement(PrettoSlider, {
|
|
55674
|
+
}, React__default.createElement(PrettoSlider, {
|
|
55677
55675
|
valueLabelDisplay: "auto",
|
|
55678
55676
|
"aria-label": "pretto slider",
|
|
55679
55677
|
onChangeCommitted: function onChangeCommitted(_e, value) {
|
|
@@ -55685,16 +55683,20 @@ var SliderSurveyComponent = function SliderSurveyComponent(_ref) {
|
|
|
55685
55683
|
valueLabelFormat: function valueLabelFormat() {
|
|
55686
55684
|
return !!avatar ? _valueLabelFormat(marioCore.getFileUrl(avatar)) : React__default.createElement("div", null, valueText);
|
|
55687
55685
|
}
|
|
55688
|
-
}), React__default.createElement(
|
|
55686
|
+
}), (isPageSessionResult || isTeacher && isBeforeSession && val - (averageOtherRatings || 0) != 0) && React__default.createElement(ChipImage, {
|
|
55687
|
+
label: result + "%",
|
|
55688
|
+
checkIncrease: checkIncrease
|
|
55689
|
+
})), React__default.createElement("div", {
|
|
55690
|
+
className: "d-flex align-items-center justify-content-between"
|
|
55691
|
+
}, React__default.createElement("p", {
|
|
55692
|
+
className: styles["slider-text"] + " " + styles["margin-right"]
|
|
55693
|
+
}, minText), React__default.createElement("p", {
|
|
55689
55694
|
className: styles["slider-text"],
|
|
55690
55695
|
style: {
|
|
55691
55696
|
marginRight: "10px",
|
|
55692
55697
|
marginLeft: "10px"
|
|
55693
55698
|
}
|
|
55694
|
-
}, maxText)
|
|
55695
|
-
label: result + "%",
|
|
55696
|
-
checkIncrease: checkIncrease
|
|
55697
|
-
}));
|
|
55699
|
+
}, maxText)));
|
|
55698
55700
|
};
|
|
55699
55701
|
|
|
55700
55702
|
var useStyles$7 = core$1.makeStyles(function (theme) {
|