@samline/notify 0.1.1 → 0.1.7
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/README.md +9 -7
- package/docs/browser.md +4 -4
- package/package.json +9 -7
- package/CHANGELOG.md +0 -13
- package/dist/core/index.d.ts +0 -47
- package/dist/core/index.test.d.ts +0 -1
- package/dist/notifications.umd.js +0 -1133
- package/dist/react/Toaster.d.ts +0 -6
- package/dist/react/index.d.ts +0 -10
- package/dist/samline.notifications.umd.js +0 -1131
- package/dist/svelte/store.d.ts +0 -3
- package/dist/vanilla/index.d.ts +0 -13
- package/dist/vanilla/toasterManager.d.ts +0 -6
- package/dist/vue/index.d.ts +0 -20
- package/examples/no-bundler/index.html +0 -25
- package/src/core/index.test.ts +0 -26
- package/src/core/index.ts +0 -122
- package/src/react/Toaster.tsx +0 -67
- package/src/react/index.ts +0 -13
- package/src/styles/sileo.css +0 -49
- package/src/svelte/Toaster.svelte +0 -69
- package/src/svelte/store.ts +0 -9
- package/src/vanilla/index.ts +0 -22
- package/src/vanilla/toasterManager.ts +0 -132
- package/src/vue/index.ts +0 -61
- package/test/smoke/no-bundler.test.ts +0 -10
- package/test/smoke/svelte.test.ts +0 -12
- package/tsconfig.json +0 -16
- /package/{rollup.config.js → rollup.config.mjs} +0 -0
package/dist/react/Toaster.d.ts
DELETED
package/dist/react/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export { notify, sileo } from '../core/index';
|
|
2
|
-
export { Toaster } from './Toaster';
|
|
3
|
-
import { notify as coreNotify, sileo as coreSileo } from '../core/index';
|
|
4
|
-
type ReactAPI = {
|
|
5
|
-
notify: typeof coreNotify;
|
|
6
|
-
sileo: typeof coreSileo;
|
|
7
|
-
Toaster?: any;
|
|
8
|
-
};
|
|
9
|
-
declare const defaultExport: ReactAPI;
|
|
10
|
-
export default defaultExport;
|