@shopito/design-system 2.0.50 → 2.0.52

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.
@@ -3,6 +3,6 @@ exports.__esModule = true;
3
3
  var tslib_1 = require("tslib");
4
4
  var react_1 = tslib_1.__importDefault(require("react"));
5
5
  var notistack_1 = require("notistack");
6
- var Notifications = function () { return react_1["default"].createElement(notistack_1.SnackbarProvider, { maxSnack: 3 }); };
6
+ var Notifications = function () { return react_1["default"].createElement(notistack_1.SnackbarProvider, { maxSnack: 1 }); };
7
7
  exports["default"] = Notifications;
8
8
  //# sourceMappingURL=Notifications.js.map
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const Basic: Story;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ exports.Basic = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var react_1 = tslib_1.__importDefault(require("react"));
6
+ var Button_1 = tslib_1.__importDefault(require("../Button"));
7
+ var alerts_1 = require("../../utils/alerts");
8
+ var Notifications_1 = tslib_1.__importDefault(require("./Notifications"));
9
+ var meta = {
10
+ title: 'Notifications',
11
+ parameters: {
12
+ layout: 'centered'
13
+ },
14
+ tags: ['autodocs']
15
+ };
16
+ exports["default"] = meta;
17
+ exports.Basic = {
18
+ render: function () { return (react_1["default"].createElement("div", { style: { display: 'flex', gap: '8px', flexWrap: 'wrap' } },
19
+ react_1["default"].createElement(Notifications_1["default"], null),
20
+ react_1["default"].createElement(Button_1["default"], { variant: "contained", color: "success", onClick: function () { return (0, alerts_1.displaySuccess)('Operation was successful!'); } }, "Success"),
21
+ react_1["default"].createElement(Button_1["default"], { variant: "contained", color: "error", onClick: function () { return (0, alerts_1.displayAlert)('Something went wrong!'); } }, "Error"),
22
+ react_1["default"].createElement(Button_1["default"], { variant: "contained", color: "warning", onClick: function () { return (0, alerts_1.displayWarning)('Please proceed with caution!'); } }, "Warning"),
23
+ react_1["default"].createElement(Button_1["default"], { variant: "contained", color: "info", onClick: function () { return (0, alerts_1.displayInfo)('Here is some useful information.'); } }, "Info"),
24
+ react_1["default"].createElement(Button_1["default"], { variant: "contained", color: "secondary", onClick: function () { return (0, alerts_1.displaySuccess)('Custom notification message!'); } }, "Custom"))); }
25
+ };
26
+ //# sourceMappingURL=Notifications.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Notifications.stories.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Notifications/Notifications.stories.tsx"],"names":[],"mappings":";;;;AAAA,wDAA0B;AAG1B,6DAA+B;AAC/B,6CAK4B;AAC5B,0EAA4C;AAE5C,IAAM,IAAI,GAAS;IACjB,KAAK,EAAE,eAAe;IACtB,UAAU,EAAE;QACV,MAAM,EAAE,UAAU;KACnB;IACD,IAAI,EAAE,CAAC,UAAU,CAAC;CACnB,CAAC;AAEF,qBAAe,IAAI,CAAC;AAIP,QAAA,KAAK,GAAU;IAC1B,MAAM,EAAE,cAAM,OAAA,CACZ,0CAAK,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE;QAC3D,iCAAC,0BAAa,OAAG;QACjB,iCAAC,mBAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,SAAS,EACf,OAAO,EAAE,cAAM,OAAA,IAAA,uBAAc,EAAC,2BAA2B,CAAC,EAA3C,CAA2C,cAGnD;QACT,iCAAC,mBAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,OAAO,EACb,OAAO,EAAE,cAAM,OAAA,IAAA,qBAAY,EAAC,uBAAuB,CAAC,EAArC,CAAqC,YAG7C;QACT,iCAAC,mBAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,SAAS,EACf,OAAO,EAAE,cAAM,OAAA,IAAA,uBAAc,EAAC,8BAA8B,CAAC,EAA9C,CAA8C,cAGtD;QACT,iCAAC,mBAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,MAAM,EACZ,OAAO,EAAE,cAAM,OAAA,IAAA,oBAAW,EAAC,kCAAkC,CAAC,EAA/C,CAA+C,WAGvD;QACT,iCAAC,mBAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,WAAW,EACjB,OAAO,EAAE,cAAM,OAAA,IAAA,uBAAc,EAAC,8BAA8B,CAAC,EAA9C,CAA8C,aAGtD,CACL,CACP,EAvCa,CAuCb;CACF,CAAC"}
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  interface BadgeProps {
3
3
  label: string;
4
+ color?: string;
4
5
  }
5
- declare const Badge: ({ label }: BadgeProps) => React.JSX.Element;
6
+ declare const Badge: ({ label, color }: BadgeProps) => React.JSX.Element;
6
7
  export default Badge;
@@ -4,14 +4,14 @@ var tslib_1 = require("tslib");
4
4
  var react_1 = tslib_1.__importDefault(require("react"));
5
5
  var material_1 = require("@mui/material");
6
6
  var Badge = function (_a) {
7
- var label = _a.label;
7
+ var label = _a.label, color = _a.color;
8
8
  return (react_1["default"].createElement(material_1.Chip, { label: label, sx: function (theme) { return ({
9
9
  fontWeight: theme.typography.fontWeightBold,
10
10
  height: '20px',
11
11
  position: 'absolute',
12
12
  right: '20px',
13
13
  top: '0',
14
- background: theme.sidebar.badge.background,
14
+ background: color || theme.sidebar.badge.background,
15
15
  zIndex: 1,
16
16
  '& span.MuiChip-label, & span.MuiChip-label:hover': {
17
17
  fontSize: '11px',
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Sidebar/components/Badge.tsx"],"names":[],"mappings":";;;AAAA,wDAA0B;AAC1B,0CAAqC;AAMrC,IAAM,KAAK,GAAG,UAAC,EAAqB;QAAnB,KAAK,WAAA;IACpB,OAAO,CACL,iCAAC,eAAI,IACH,KAAK,EAAE,KAAK,EACZ,EAAE,EAAE,UAAC,KAAU,IAAK,OAAA,CAAC;YACnB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;YAC3C,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,UAAU;YACpB,KAAK,EAAE,MAAM;YACb,GAAG,EAAE,GAAG;YACR,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU;YAC1C,MAAM,EAAE,CAAC;YACT,kDAAkD,EAAE;gBAClD,QAAQ,EAAE,MAAM;gBAChB,MAAM,EAAE,SAAS;gBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK;gBAChC,EAAE,EAAE,CAAC;aACN;SACF,CAAC,EAdkB,CAclB,eACQ,OAAO,GACjB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,qBAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"Badge.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Sidebar/components/Badge.tsx"],"names":[],"mappings":";;;AAAA,wDAA0B;AAC1B,0CAAqC;AAOrC,IAAM,KAAK,GAAG,UAAC,EAA4B;QAA1B,KAAK,WAAA,EAAE,KAAK,WAAA;IAC3B,OAAO,CACL,iCAAC,eAAI,IACH,KAAK,EAAE,KAAK,EACZ,EAAE,EAAE,UAAC,KAAU,IAAK,OAAA,CAAC;YACnB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;YAC3C,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,UAAU;YACpB,KAAK,EAAE,MAAM;YACb,GAAG,EAAE,GAAG;YACR,UAAU,EAAE,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU;YACnD,MAAM,EAAE,CAAC;YACT,kDAAkD,EAAE;gBAClD,QAAQ,EAAE,MAAM;gBAChB,MAAM,EAAE,SAAS;gBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK;gBAChC,EAAE,EAAE,CAAC;aACN;SACF,CAAC,EAdkB,CAclB,eACQ,OAAO,GACjB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,qBAAe,KAAK,CAAC"}
@@ -4,11 +4,13 @@ exports.displayInfo = exports.displayWarning = exports.displayAlert = exports.di
4
4
  var tslib_1 = require("tslib");
5
5
  var notistack_1 = require("notistack");
6
6
  var defaultOptions = {
7
- autoHideDuration: 4000,
7
+ autoHideDuration: 3000,
8
8
  anchorOrigin: {
9
9
  horizontal: 'right',
10
- vertical: 'top'
11
- }
10
+ vertical: 'bottom'
11
+ },
12
+ preventDuplicate: true,
13
+ maxSnack: 1
12
14
  };
13
15
  var displaySuccess = function (message) {
14
16
  (0, notistack_1.enqueueSnackbar)(message, tslib_1.__assign(tslib_1.__assign({}, defaultOptions), { variant: 'success' }));
@@ -1 +1 @@
1
- {"version":3,"file":"alerts.js","sourceRoot":"https://my-website.com/debug/source/","sources":["utils/alerts/alerts.ts"],"names":[],"mappings":";;;;AAAA,uCAA4D;AAE5D,IAAM,cAAc,GAAG;IACrB,gBAAgB,EAAE,IAAI;IACtB,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO;QACnB,QAAQ,EAAE,KAAK;KACE;CACpB,CAAC;AAEK,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,IAAA,2BAAe,EAAY,OAAO,wCAC7B,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,cAAc,kBAKzB;AAEK,IAAM,YAAY,GAAG,UAAC,OAAe;IAC1C,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,OAAO,IAChB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,YAAY,gBAKvB;AAEK,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,cAAc,kBAKzB;AAEK,IAAM,WAAW,GAAG,UAAC,OAAe;IACzC,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,MAAM,IACf,CAAC;AACL,CAAC,CAAC;AALW,QAAA,WAAW,eAKtB"}
1
+ {"version":3,"file":"alerts.js","sourceRoot":"https://my-website.com/debug/source/","sources":["utils/alerts/alerts.ts"],"names":[],"mappings":";;;;AAAA,uCAA4D;AAE5D,IAAM,cAAc,GAAG;IACrB,gBAAgB,EAAE,IAAI;IACtB,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO;QACnB,QAAQ,EAAE,QAAQ;KACD;IACnB,gBAAgB,EAAE,IAAI;IACtB,QAAQ,EAAE,CAAC;CACZ,CAAC;AAEK,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,IAAA,2BAAe,EAAY,OAAO,wCAC7B,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,cAAc,kBAKzB;AAEK,IAAM,YAAY,GAAG,UAAC,OAAe;IAC1C,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,OAAO,IAChB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,YAAY,gBAKvB;AAEK,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AALW,QAAA,cAAc,kBAKzB;AAEK,IAAM,WAAW,GAAG,UAAC,OAAe;IACzC,IAAA,2BAAe,EAAC,OAAO,wCAClB,cAAc,KACjB,OAAO,EAAE,MAAM,IACf,CAAC;AACL,CAAC,CAAC;AALW,QAAA,WAAW,eAKtB"}
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  import { SnackbarProvider } from 'notistack';
3
- var Notifications = function () { return React.createElement(SnackbarProvider, { maxSnack: 3 }); };
3
+ var Notifications = function () { return React.createElement(SnackbarProvider, { maxSnack: 1 }); };
4
4
  export default Notifications;
5
5
  //# sourceMappingURL=Notifications.js.map
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const Basic: Story;
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ import Button from '../Button';
3
+ import { displaySuccess, displayAlert, displayWarning, displayInfo, } from '../../utils/alerts';
4
+ import Notifications from './Notifications';
5
+ var meta = {
6
+ title: 'Notifications',
7
+ parameters: {
8
+ layout: 'centered'
9
+ },
10
+ tags: ['autodocs']
11
+ };
12
+ export default meta;
13
+ export var Basic = {
14
+ render: function () { return (React.createElement("div", { style: { display: 'flex', gap: '8px', flexWrap: 'wrap' } },
15
+ React.createElement(Notifications, null),
16
+ React.createElement(Button, { variant: "contained", color: "success", onClick: function () { return displaySuccess('Operation was successful!'); } }, "Success"),
17
+ React.createElement(Button, { variant: "contained", color: "error", onClick: function () { return displayAlert('Something went wrong!'); } }, "Error"),
18
+ React.createElement(Button, { variant: "contained", color: "warning", onClick: function () { return displayWarning('Please proceed with caution!'); } }, "Warning"),
19
+ React.createElement(Button, { variant: "contained", color: "info", onClick: function () { return displayInfo('Here is some useful information.'); } }, "Info"),
20
+ React.createElement(Button, { variant: "contained", color: "secondary", onClick: function () { return displaySuccess('Custom notification message!'); } }, "Custom"))); }
21
+ };
22
+ //# sourceMappingURL=Notifications.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Notifications.stories.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Notifications/Notifications.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,MAAM,MAAM,WAAW,CAAC;AAC/B,OAAO,EACL,cAAc,EACd,YAAY,EACZ,cAAc,EACd,WAAW,GACZ,MAAM,oBAAoB,CAAC;AAC5B,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAE5C,IAAM,IAAI,GAAS;IACjB,KAAK,EAAE,eAAe;IACtB,UAAU,EAAE;QACV,MAAM,EAAE,UAAU;KACnB;IACD,IAAI,EAAE,CAAC,UAAU,CAAC;CACnB,CAAC;AAEF,eAAe,IAAI,CAAC;AAIpB,MAAM,CAAC,IAAM,KAAK,GAAU;IAC1B,MAAM,EAAE,cAAM,OAAA,CACZ,6BAAK,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE;QAC3D,oBAAC,aAAa,OAAG;QACjB,oBAAC,MAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,SAAS,EACf,OAAO,EAAE,cAAM,OAAA,cAAc,CAAC,2BAA2B,CAAC,EAA3C,CAA2C,cAGnD;QACT,oBAAC,MAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,OAAO,EACb,OAAO,EAAE,cAAM,OAAA,YAAY,CAAC,uBAAuB,CAAC,EAArC,CAAqC,YAG7C;QACT,oBAAC,MAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,SAAS,EACf,OAAO,EAAE,cAAM,OAAA,cAAc,CAAC,8BAA8B,CAAC,EAA9C,CAA8C,cAGtD;QACT,oBAAC,MAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,MAAM,EACZ,OAAO,EAAE,cAAM,OAAA,WAAW,CAAC,kCAAkC,CAAC,EAA/C,CAA+C,WAGvD;QACT,oBAAC,MAAM,IACL,OAAO,EAAC,WAAW,EACnB,KAAK,EAAC,WAAW,EACjB,OAAO,EAAE,cAAM,OAAA,cAAc,CAAC,8BAA8B,CAAC,EAA9C,CAA8C,aAGtD,CACL,CACP,EAvCa,CAuCb;CACF,CAAC"}
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  interface BadgeProps {
3
3
  label: string;
4
+ color?: string;
4
5
  }
5
- declare const Badge: ({ label }: BadgeProps) => React.JSX.Element;
6
+ declare const Badge: ({ label, color }: BadgeProps) => React.JSX.Element;
6
7
  export default Badge;
@@ -1,14 +1,14 @@
1
1
  import React from 'react';
2
2
  import { Chip } from '@mui/material';
3
3
  var Badge = function (_a) {
4
- var label = _a.label;
4
+ var label = _a.label, color = _a.color;
5
5
  return (React.createElement(Chip, { label: label, sx: function (theme) { return ({
6
6
  fontWeight: theme.typography.fontWeightBold,
7
7
  height: '20px',
8
8
  position: 'absolute',
9
9
  right: '20px',
10
10
  top: '0',
11
- background: theme.sidebar.badge.background,
11
+ background: color || theme.sidebar.badge.background,
12
12
  zIndex: 1,
13
13
  '& span.MuiChip-label, & span.MuiChip-label:hover': {
14
14
  fontSize: '11px',
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Sidebar/components/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAMrC,IAAM,KAAK,GAAG,UAAC,EAAqB;QAAnB,KAAK,WAAA;IACpB,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE,KAAK,EACZ,EAAE,EAAE,UAAC,KAAU,IAAK,OAAA,CAAC;YACnB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;YAC3C,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,UAAU;YACpB,KAAK,EAAE,MAAM;YACb,GAAG,EAAE,GAAG;YACR,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU;YAC1C,MAAM,EAAE,CAAC;YACT,kDAAkD,EAAE;gBAClD,QAAQ,EAAE,MAAM;gBAChB,MAAM,EAAE,SAAS;gBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK;gBAChC,EAAE,EAAE,CAAC;aACN;SACF,CAAC,EAdkB,CAclB,eACQ,OAAO,GACjB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"Badge.js","sourceRoot":"https://my-website.com/debug/source/","sources":["components/Sidebar/components/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAOrC,IAAM,KAAK,GAAG,UAAC,EAA4B;QAA1B,KAAK,WAAA,EAAE,KAAK,WAAA;IAC3B,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE,KAAK,EACZ,EAAE,EAAE,UAAC,KAAU,IAAK,OAAA,CAAC;YACnB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;YAC3C,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,UAAU;YACpB,KAAK,EAAE,MAAM;YACb,GAAG,EAAE,GAAG;YACR,UAAU,EAAE,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU;YACnD,MAAM,EAAE,CAAC;YACT,kDAAkD,EAAE;gBAClD,QAAQ,EAAE,MAAM;gBAChB,MAAM,EAAE,SAAS;gBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK;gBAChC,EAAE,EAAE,CAAC;aACN;SACF,CAAC,EAdkB,CAclB,eACQ,OAAO,GACjB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,11 +1,13 @@
1
1
  import { __assign } from "tslib";
2
2
  import { enqueueSnackbar } from 'notistack';
3
3
  var defaultOptions = {
4
- autoHideDuration: 4000,
4
+ autoHideDuration: 3000,
5
5
  anchorOrigin: {
6
6
  horizontal: 'right',
7
- vertical: 'top'
8
- }
7
+ vertical: 'bottom'
8
+ },
9
+ preventDuplicate: true,
10
+ maxSnack: 1
9
11
  };
10
12
  export var displaySuccess = function (message) {
11
13
  enqueueSnackbar(message, __assign(__assign({}, defaultOptions), { variant: 'success' }));
@@ -1 +1 @@
1
- {"version":3,"file":"alerts.js","sourceRoot":"https://my-website.com/debug/source/","sources":["utils/alerts/alerts.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,eAAe,EAAkB,MAAM,WAAW,CAAC;AAE5D,IAAM,cAAc,GAAG;IACrB,gBAAgB,EAAE,IAAI;IACtB,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO;QACnB,QAAQ,EAAE,KAAK;KACE;CACpB,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,eAAe,CAAY,OAAO,wBAC7B,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,YAAY,GAAG,UAAC,OAAe;IAC1C,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,OAAO,IAChB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,WAAW,GAAG,UAAC,OAAe;IACzC,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,MAAM,IACf,CAAC;AACL,CAAC,CAAC"}
1
+ {"version":3,"file":"alerts.js","sourceRoot":"https://my-website.com/debug/source/","sources":["utils/alerts/alerts.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,eAAe,EAAkB,MAAM,WAAW,CAAC;AAE5D,IAAM,cAAc,GAAG;IACrB,gBAAgB,EAAE,IAAI;IACtB,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO;QACnB,QAAQ,EAAE,QAAQ;KACD;IACnB,gBAAgB,EAAE,IAAI;IACtB,QAAQ,EAAE,CAAC;CACZ,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,eAAe,CAAY,OAAO,wBAC7B,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,YAAY,GAAG,UAAC,OAAe;IAC1C,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,OAAO,IAChB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,GAAG,UAAC,OAAe;IAC5C,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,SAAS,IAClB,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,WAAW,GAAG,UAAC,OAAe;IACzC,eAAe,CAAC,OAAO,wBAClB,cAAc,KACjB,OAAO,EAAE,MAAM,IACf,CAAC;AACL,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopito/design-system",
3
- "version": "2.0.50",
3
+ "version": "2.0.52",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",