nuxt-unified-ui 0.4.3 → 0.4.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 (3) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +4 -0
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -7,7 +7,7 @@ A reuseable Nuxt layer which integrates Nuxt UI and some other useful libraries
7
7
  Make sure to install the dependencies:
8
8
 
9
9
  ```bash
10
- bun i
10
+ vp i
11
11
  ```
12
12
 
13
13
  ## Development Server
@@ -15,5 +15,5 @@ bun i
15
15
  Start the development server on http://localhost:8080
16
16
 
17
17
  ```bash
18
- bun dev
18
+ vpr serve
19
19
  ```
package/index.d.ts CHANGED
@@ -3,3 +3,7 @@
3
3
  declare module 'nuxt-unified-ui' {
4
4
  export function pathRelativeToBase(base: string, path: string): string;
5
5
  }
6
+
7
+ declare module 'unified-mongo-filter' {
8
+ export function matches(filter: object, target: any): boolean;
9
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-unified-ui",
3
3
  "type": "module",
4
- "version": "0.4.3",
4
+ "version": "0.4.4",
5
5
  "packageManager": "bun@1.3.13",
6
6
  "main": "./nuxt.config.ts",
7
7
  "types": "./index.d.ts",
@@ -20,16 +20,16 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@formkit/tempo": "1.1.0",
23
- "@iconify-json/lucide": "1.2.106",
24
- "@nuxt/kit": "4.4.4",
23
+ "@iconify-json/lucide": "1.2.107",
24
+ "@nuxt/kit": "4.4.5",
25
25
  "@nuxt/ui": "4.7.1",
26
26
  "@nuxtjs/i18n": "10.3.0",
27
27
  "@vueuse/core": "14.3.0",
28
28
  "@vueuse/nuxt": "14.3.0",
29
- "radashi": "12.9.0",
29
+ "radashi": "12.9.1",
30
30
  "unified-mongo-filter": "0.4.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "nuxt": ">=4.4.4"
33
+ "nuxt": ">=4.4.5"
34
34
  }
35
35
  }