demio-ui 2.1.33 → 2.1.34

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.
@@ -6,6 +6,7 @@ export type Props = {
6
6
  isLoading?: boolean;
7
7
  emptyStateIcon?: ReactNode;
8
8
  emptyStateText?: ReactNode;
9
+ shadowElevation?: number;
9
10
  };
10
11
  declare const Card: FC<Props>;
11
12
  export default Card;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ message?: string;
4
+ };
5
+ declare function Toast({ message, }: Props): React.JSX.Element;
6
+ export default Toast;
@@ -0,0 +1 @@
1
+ export { default } from './Toast';
package/dist/types.d.ts CHANGED
@@ -58,6 +58,7 @@ type Props$f = {
58
58
  isLoading?: boolean;
59
59
  emptyStateIcon?: ReactNode;
60
60
  emptyStateText?: ReactNode;
61
+ shadowElevation?: number;
61
62
  };
62
63
  declare const Card: FC<Props$f>;
63
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "demio-ui",
3
- "version": "2.1.33",
3
+ "version": "2.1.34",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",