vue-nt-toast 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +13 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  vue-nt-toast
2
2
  ================
3
+ ![Static Badge](https://img.shields.io/badge/vue_3-only-%234FC08D?style=for-the-badge)
4
+ ![Static Badge](https://img.shields.io/badge/javascript-%23F7DF1E?style=for-the-badge)
5
+ ![Static Badge](https://img.shields.io/badge/html-%23E34F26?style=for-the-badge&logo=html)
6
+ ![Static Badge](https://img.shields.io/badge/sass-%23CC6699?style=for-the-badge)
7
+ ![Static Badge](https://img.shields.io/badge/vite-bundler-%23646CFF?style=for-the-badge)
8
+ ![Static Badge](https://img.shields.io/badge/icon-font_awesome_4.7.0-%23528DD7?style=for-the-badge)
9
+ ![Static Badge](https://img.shields.io/badge/vue_plugin-user_custom_with_vue_3-%234FC08D?style=for-the-badge)
10
+
11
+ ![preview](https://github.com/noistommy/vue-nt-toast/assets/6008185/991fe4fc-1144-440d-8b20-de1ede57f0b7)
12
+
13
+
3
14
  `vue-nt-toast` is a JavaScript notification system library. It is made available through the installation of the plugin in the Vue project.
4
15
 
5
16
  It is designed to operate outside the application (the top layer) so as not to affect the application's layer system as much as possible, and provides status indications of "success", "risk", "information", "attention", and "important" depending on the type of content.
@@ -24,8 +35,8 @@ You can set multiple options across the system, including theme, location, and s
24
35
  Import { createApp } from “vue”;
25
36
  // import module
26
37
  import NtToast from “vue-nt-toast”;
27
- # import style css or use yours
28
- import “vue-nt-toast/toasr.css”;
38
+ // import style css or use yours
39
+ import “vue-nt-toast/toast.css”;
29
40
 
30
41
  const app = createApp(App)
31
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-nt-toast",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Toast system plugin with vue3",
5
5
  "author": "Minyoung Tommy Kim",
6
6
  "private": false,