@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.
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/global-styles/ToastStyles.d.ts +3 -0
- package/dist/cjs/types/global-styles/index.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/theme/ThemeTypes.d.ts +17 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/global-styles/ToastStyles.d.ts +3 -0
- package/dist/esm/types/global-styles/index.d.ts +1 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/esm/types/theme/ThemeTypes.d.ts +17 -0
- package/dist/index.d.ts +20 -1
- package/package.json +1 -1
|
@@ -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
|
};
|