@nethru/ui 2.1.48 → 2.1.50

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/base/Snackbar.js CHANGED
@@ -9,6 +9,7 @@ const Snackbar = /*#__PURE__*/forwardRef(({
9
9
  subcontent,
10
10
  slideDirection = 'down',
11
11
  children,
12
+ alertProps,
12
13
  ...props
13
14
  }, ref) => {
14
15
  const Transition = useCallback(props => {
@@ -26,6 +27,7 @@ const Snackbar = /*#__PURE__*/forwardRef(({
26
27
  severity: severity,
27
28
  icon: icon,
28
29
  subcontent: subcontent,
30
+ ...alertProps,
29
31
  children: children
30
32
  })
31
33
  });
@@ -141,7 +141,7 @@ const styles = {
141
141
  flexGrow: 1,
142
142
  backgroundColor: blueGrey.frameBg,
143
143
  padding: '6px 16px 6px 10px',
144
- overflowX: 'hidden',
144
+ overflow: 'hidden',
145
145
  zIndex: 'var(--aside-zindex)'
146
146
  },
147
147
  resetButton: marginTop => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nethru/ui",
3
- "version": "2.1.48",
3
+ "version": "2.1.50",
4
4
  "main": "base/index.js",
5
5
  "files": [
6
6
  "/base"