@verifiedinc-public/shared-ui-elements 0.13.2-beta.3 → 0.13.2-beta.5
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.
@@ -19736,6 +19736,7 @@ const aM = Pi(
|
|
19736
19736
|
sx: {
|
19737
19737
|
alignItems: "center",
|
19738
19738
|
width: "320px",
|
19739
|
+
maxWidth: "320px",
|
19739
19740
|
...l
|
19740
19741
|
},
|
19741
19742
|
children: n
|
package/package.json
CHANGED
@@ -6,7 +6,6 @@ import {
|
|
6
6
|
IconButton,
|
7
7
|
type SxProps,
|
8
8
|
} from '@mui/material';
|
9
|
-
import { When } from '../When';
|
10
9
|
import {
|
11
10
|
closeSnackbar,
|
12
11
|
type CustomContentProps,
|
@@ -16,6 +15,7 @@ import {
|
|
16
15
|
SnackbarProvider,
|
17
16
|
} from 'notistack';
|
18
17
|
import { forwardRef } from 'react';
|
18
|
+
import { When } from '../When';
|
19
19
|
|
20
20
|
declare module 'notistack' {
|
21
21
|
interface VariantOverrides {
|
@@ -32,8 +32,8 @@ declare module 'notistack' {
|
|
32
32
|
}
|
33
33
|
}
|
34
34
|
|
35
|
-
export type { SnackbarKey };
|
36
35
|
export { SnackbarProvider };
|
36
|
+
export type { SnackbarKey };
|
37
37
|
|
38
38
|
interface AlertAction {
|
39
39
|
onAction?: (id: SnackbarKey) => void;
|
@@ -135,6 +135,7 @@ export const CustomAlertComponent = forwardRef<
|
|
135
135
|
sx={{
|
136
136
|
alignItems: 'center',
|
137
137
|
width: '320px',
|
138
|
+
maxWidth: '320px',
|
138
139
|
...sx,
|
139
140
|
}}
|
140
141
|
>
|