@verifiedinc-public/shared-ui-elements 0.13.2-beta.3 → 0.13.2-beta.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verifiedinc-public/shared-ui-elements",
3
- "version": "0.13.2-beta.3",
3
+ "version": "0.13.2-beta.4",
4
4
  "description": "A set of UI components, utilities that is shareable with the core apps.",
5
5
  "private": false,
6
6
  "keywords": [],
@@ -16,6 +16,7 @@ import {
16
16
  SnackbarProvider,
17
17
  } from 'notistack';
18
18
  import { forwardRef } from 'react';
19
+ import { FullWidthAlert } from '../Alert';
19
20
 
20
21
  declare module 'notistack' {
21
22
  interface VariantOverrides {
@@ -106,7 +107,7 @@ export const CustomAlertComponent = forwardRef<
106
107
  ) => {
107
108
  return (
108
109
  <SnackbarContent ref={ref} {...props}>
109
- <Alert
110
+ <FullWidthAlert
110
111
  severity={severity}
111
112
  action={
112
113
  <Box ml={1}>
@@ -139,7 +140,7 @@ export const CustomAlertComponent = forwardRef<
139
140
  }}
140
141
  >
141
142
  {message}
142
- </Alert>
143
+ </FullWidthAlert>
143
144
  </SnackbarContent>
144
145
  );
145
146
  },