@fluix-ui/vue 0.0.2 → 0.0.4

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 +21 -0
  2. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @fluix-ui/vue
2
+
3
+ Vue 3 adapter for Fluix UI components.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @fluix-ui/vue @fluix-ui/css
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import { Toaster, fluix } from "@fluix-ui/vue";
15
+ import "@fluix-ui/css";
16
+ ```
17
+
18
+ ## Docs
19
+
20
+ - Official docs: https://fluix.ivanlopezdev.es
21
+ - Source code: https://github.com/ivanlhz/fluix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluix-ui/vue",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Vue 3 adapter for Fluix UI components.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,14 +25,14 @@
25
25
  "sideEffects": false,
26
26
  "peerDependencies": {
27
27
  "vue": ">=3.3",
28
- "@fluix-ui/core": "0.0.2",
29
- "@fluix-ui/css": "0.0.2"
28
+ "@fluix-ui/core": "0.0.4",
29
+ "@fluix-ui/css": "0.0.4"
30
30
  },
31
31
  "devDependencies": {
32
32
  "tsup": "^8.3.0",
33
33
  "typescript": "^5.7.0",
34
34
  "vue": "^3.5.0",
35
- "@fluix-ui/core": "0.0.2"
35
+ "@fluix-ui/core": "0.0.4"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup",