@wavv/ui 1.1.0 → 1.2.0

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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ToastStyles: () => JSX.Element;
3
+ export default ToastStyles;
@@ -1,2 +1,3 @@
1
1
  export { default as ScrollbarStyles } from './ScrollbarStyles';
2
2
  export { default as ResetStyles } from './ResetStyles';
3
+ export { default as ToastStyles } from './ToastStyles';
@@ -26,6 +26,7 @@ export { default as Progress } from './components/Progress';
26
26
  export { default as Radio } from './components/Radio';
27
27
  export { default as ResetStyles } from './global-styles/ResetStyles';
28
28
  export { default as ScrollbarStyles } from './global-styles/ScrollbarStyles';
29
+ export { default as ToastStyles } from './global-styles/ToastStyles';
29
30
  export { default as Slider } from './components/Slider';
30
31
  export { default as Spacer } from './components/Spacer';
31
32
  export { default as Spinner } from './components/Spinner';
@@ -260,6 +260,23 @@ export interface ITheme {
260
260
  };
261
261
  borderColor: string;
262
262
  };
263
+ toast: {
264
+ color: string;
265
+ background: {
266
+ deafult: string;
267
+ info: string;
268
+ success: string;
269
+ warning: string;
270
+ error: string;
271
+ };
272
+ border: {
273
+ deafult: string;
274
+ info: string;
275
+ success: string;
276
+ warning: string;
277
+ error: string;
278
+ };
279
+ };
263
280
  toggle: {
264
281
  slider: string;
265
282
  };