andoncloud-sdk 1.7.26 → 1.7.28

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 CHANGED
@@ -44,6 +44,7 @@ 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";
47
48
  //#region src/utils/text.js
48
49
  const toCamelCase = (str) => str.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase());
49
50
  //#endregion
@@ -4095,8 +4096,8 @@ App.defaultProps = {
4095
4096
  };
4096
4097
  var app_default = Sentry.withProfiler(App);
4097
4098
  //#endregion
4098
- //#region src/core/ui/Checkbox/constants.ts
4099
- const CHECK_ICON = "data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22Check%22%3E%3Cpath%20id%3D%22Vector%22%20d%3D%22M17.6758%203.92578L6.875%2014.7266L2.32422%2010.1758L1.42578%2011.0742L6.42578%2016.0742L6.875%2016.5039L7.32422%2016.0742L18.5742%204.82422L17.6758%203.92578Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E";
4099
+ //#region src/assets/check.svg
4100
+ var check_default = "data:image/svg+xml,<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g id=\"Check\">%0A<path id=\"Vector\" d=\"M17.6758 3.92578L6.875 14.7266L2.32422 10.1758L1.42578 11.0742L6.42578 16.0742L6.875 16.5039L7.32422 16.0742L18.5742 4.82422L17.6758 3.92578Z\" fill=\"white\"/>%0A</g>%0A</svg>%0A";
4100
4101
  //#endregion
4101
4102
  //#region src/core/ui/Checkbox/styled.ts
4102
4103
  const UncheckedIcon$1 = styled$1("span")(({ theme }) => ({
@@ -4119,7 +4120,7 @@ const CheckedIcon$1 = styled$1(UncheckedIcon$1)(({ theme }) => ({
4119
4120
  height: "16px",
4120
4121
  top: 0,
4121
4122
  left: 0,
4122
- background: `url(${CHECK_ICON}) no-repeat center`,
4123
+ background: `url(${check_default}) no-repeat center`,
4123
4124
  backgroundSize: "80%"
4124
4125
  }
4125
4126
  }));
@@ -4249,7 +4250,7 @@ async function authFetch(url, options = {}) {
4249
4250
  toast$1.error(createElement(Fragment, null, createElement(Typography, { mr: textResponse ? 2 : 0 }, i18n_default.t("somethingWentWrongMessage")), textResponse && createElement(Tooltip, {
4250
4251
  title: textResponse,
4251
4252
  arrow: true,
4252
- children: createElement(HelpOutlineIcon)
4253
+ children: createElement(HelpOutlineIcon$1)
4253
4254
  })));
4254
4255
  break;
4255
4256
  default: break;