@cookified/toastify 1.0.1 → 1.0.2
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 +4 -4
- package/lib/index.cjs +503 -178
- package/lib/index.css +312 -0
- package/lib/index.d.cts +5 -2
- package/lib/index.d.ts +5 -2
- package/lib/index.js +467 -118
- package/lib/styles.css +312 -0
- package/package.json +5 -9
package/README.md
CHANGED
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
# pnpm
|
|
33
|
-
pnpm add @cookified/toastify motion
|
|
33
|
+
pnpm add @cookified/toastify motion
|
|
34
34
|
|
|
35
35
|
# npm
|
|
36
|
-
npm install @cookified/toastify motion
|
|
36
|
+
npm install @cookified/toastify motion
|
|
37
37
|
|
|
38
38
|
# bun
|
|
39
|
-
bun add @cookified/toastify motion
|
|
39
|
+
bun add @cookified/toastify motion
|
|
40
40
|
|
|
41
41
|
# yarn
|
|
42
|
-
yarn add @cookified/toastify motion
|
|
42
|
+
yarn add @cookified/toastify motion
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
---
|