@unocss/nuxt 0.11.3 → 0.12.0

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/dist/index.d.ts +2 -2
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { IconsOptions } from '@unocss/preset-icons';
5
5
  import { UserConfig } from '@unocss/core';
6
6
 
7
7
  declare type FilterPattern = ReadonlyArray<string | RegExp> | string | RegExp | null;
8
- interface PluginOptions<Theme extends {} = {}> extends UserConfig<Theme> {
8
+ interface PluginConfig<Theme extends {} = {}> extends UserConfig<Theme> {
9
9
  /**
10
10
  * Patterns that filter the files being extracted.
11
11
  */
@@ -16,7 +16,7 @@ interface PluginOptions<Theme extends {} = {}> extends UserConfig<Theme> {
16
16
  exclude?: FilterPattern;
17
17
  }
18
18
 
19
- interface UnocssNuxtOptions extends PluginOptions {
19
+ interface UnocssNuxtOptions extends PluginConfig {
20
20
  /**
21
21
  * Injecting `uno.css` entry
22
22
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/nuxt",
3
- "version": "0.11.3",
3
+ "version": "0.12.0",
4
4
  "description": "Nuxt module for UnoCSS",
5
5
  "keywords": [
6
6
  "unocss",
@@ -36,13 +36,13 @@
36
36
  "runtime"
37
37
  ],
38
38
  "dependencies": {
39
- "@unocss/core": "0.11.3",
40
- "@unocss/webpack": "0.11.3",
41
- "@unocss/vite": "0.11.3",
42
- "@unocss/reset": "0.11.3",
43
- "@unocss/preset-uno": "0.11.3",
44
- "@unocss/preset-attributify": "0.11.3",
45
- "@unocss/preset-icons": "0.11.3",
39
+ "@unocss/core": "0.12.0",
40
+ "@unocss/webpack": "0.12.0",
41
+ "@unocss/vite": "0.12.0",
42
+ "@unocss/reset": "0.12.0",
43
+ "@unocss/preset-uno": "0.12.0",
44
+ "@unocss/preset-attributify": "0.12.0",
45
+ "@unocss/preset-icons": "0.12.0",
46
46
  "@nuxt/kit": "npm:@nuxt/kit-edge@latest"
47
47
  },
48
48
  "scripts": {