andoncloud-sdk 1.7.28 → 1.7.29
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 +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ import { PropTypes } from "prop-types";
|
|
|
19
19
|
import i18n from "i18next";
|
|
20
20
|
import Cookies from "js-cookie";
|
|
21
21
|
import LanguageDetector from "i18next-browser-languagedetector";
|
|
22
|
-
import HelpOutlineIcon from "@mui/icons-material/
|
|
22
|
+
import HelpOutlineIcon from "@mui/icons-material/HelpOutlined";
|
|
23
23
|
import { Box as Box$1, styled as styled$2 } from "@mui/system";
|
|
24
24
|
import "inter-ui/inter.css";
|
|
25
25
|
import Dialog$1 from "@mui/material/Dialog";
|
|
@@ -44,7 +44,6 @@ import Typography$1 from "@mui/material/Typography";
|
|
|
44
44
|
import useMediaQuery from "@mui/material/useMediaQuery";
|
|
45
45
|
import { deepmerge } from "@mui/utils";
|
|
46
46
|
import CloseIcon from "@mui/icons-material/Close";
|
|
47
|
-
import HelpOutlineIcon$1 from "@mui/icons-material/HelpOutlined";
|
|
48
47
|
//#region src/utils/text.js
|
|
49
48
|
const toCamelCase = (str) => str.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase());
|
|
50
49
|
//#endregion
|
|
@@ -4250,7 +4249,7 @@ async function authFetch(url, options = {}) {
|
|
|
4250
4249
|
toast$1.error(createElement(Fragment, null, createElement(Typography, { mr: textResponse ? 2 : 0 }, i18n_default.t("somethingWentWrongMessage")), textResponse && createElement(Tooltip, {
|
|
4251
4250
|
title: textResponse,
|
|
4252
4251
|
arrow: true,
|
|
4253
|
-
children: createElement(HelpOutlineIcon
|
|
4252
|
+
children: createElement(HelpOutlineIcon)
|
|
4254
4253
|
})));
|
|
4255
4254
|
break;
|
|
4256
4255
|
default: break;
|