mario-core 2.9.152-level → 2.9.154-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 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -703,6 +703,7 @@ var red_flags = "Red flags";
|
|
|
703
703
|
var show_by = "Show by";
|
|
704
704
|
var survey_overview = "Survey Overview";
|
|
705
705
|
var share_note = "Share Note";
|
|
706
|
+
var survey_summary = "Survey Summary";
|
|
706
707
|
var lang_us = {
|
|
707
708
|
dashboard: dashboard,
|
|
708
709
|
user: user,
|
|
@@ -1382,7 +1383,8 @@ var lang_us = {
|
|
|
1382
1383
|
red_flags: red_flags,
|
|
1383
1384
|
show_by: show_by,
|
|
1384
1385
|
survey_overview: survey_overview,
|
|
1385
|
-
share_note: share_note
|
|
1386
|
+
share_note: share_note,
|
|
1387
|
+
survey_summary: survey_summary
|
|
1386
1388
|
};
|
|
1387
1389
|
|
|
1388
1390
|
var dashboard$1 = "Dashboard";
|
|
@@ -2054,6 +2056,7 @@ var red_flags$1 = "Red flags";
|
|
|
2054
2056
|
var show_by$1 = "Show by";
|
|
2055
2057
|
var survey_overview$1 = "Survey Overview";
|
|
2056
2058
|
var share_note$1 = "Share Note";
|
|
2059
|
+
var survey_summary$1 = "Survey Summary";
|
|
2057
2060
|
var lang_uk = {
|
|
2058
2061
|
dashboard: dashboard$1,
|
|
2059
2062
|
user: user$1,
|
|
@@ -2733,7 +2736,8 @@ var lang_uk = {
|
|
|
2733
2736
|
red_flags: red_flags$1,
|
|
2734
2737
|
show_by: show_by$1,
|
|
2735
2738
|
survey_overview: survey_overview$1,
|
|
2736
|
-
share_note: share_note$1
|
|
2739
|
+
share_note: share_note$1,
|
|
2740
|
+
survey_summary: survey_summary$1
|
|
2737
2741
|
};
|
|
2738
2742
|
|
|
2739
2743
|
var DEFAULT_LANGUAGE = localStorage.getItem("language") !== null ? localStorage.getItem("language") : "uk";
|
|
@@ -2819,6 +2823,7 @@ var PasswordInput = function PasswordInput(_ref) {
|
|
|
2819
2823
|
name: "password",
|
|
2820
2824
|
onChange: onChange,
|
|
2821
2825
|
placeholder: "Password",
|
|
2826
|
+
autocomplete: "password",
|
|
2822
2827
|
required: true
|
|
2823
2828
|
}), React__default.createElement("i", {
|
|
2824
2829
|
className: "far " + (isShowPassword ? "fa-eye-slash" : "fa-eye") + " mx-2 cursor-pointer",
|
|
@@ -3607,7 +3612,6 @@ var BlockLogin = function BlockLogin(_ref) {
|
|
|
3607
3612
|
};
|
|
3608
3613
|
return React__default.createElement(React__default.Fragment, null, React__default.createElement(formik.Formik, {
|
|
3609
3614
|
initialValues: defaultInfo,
|
|
3610
|
-
enableReinitialize: true,
|
|
3611
3615
|
validationSchema: schema,
|
|
3612
3616
|
onSubmit: function (values) {
|
|
3613
3617
|
try {
|
|
@@ -3634,6 +3638,9 @@ var BlockLogin = function BlockLogin(_ref) {
|
|
|
3634
3638
|
setFieldValue = formikProps.setFieldValue;
|
|
3635
3639
|
var emailError = touched.email && errors.email;
|
|
3636
3640
|
var passwordError = touched.password && errors.password;
|
|
3641
|
+
console.log({
|
|
3642
|
+
values: values
|
|
3643
|
+
});
|
|
3637
3644
|
return React__default.createElement(reactstrap.Row, {
|
|
3638
3645
|
className: "" + styles["box-login"]
|
|
3639
3646
|
}, React__default.createElement(reactstrap.Col, {
|
|
@@ -3656,6 +3663,7 @@ var BlockLogin = function BlockLogin(_ref) {
|
|
|
3656
3663
|
placeholder: "Email",
|
|
3657
3664
|
value: values.email,
|
|
3658
3665
|
onChange: handleChange,
|
|
3666
|
+
autocomplete: "email",
|
|
3659
3667
|
onBlur: handleBlur("email"),
|
|
3660
3668
|
required: true
|
|
3661
3669
|
}), emailError && React__default.createElement(ErrorHandler, {
|