@nuxt/devtools-ui-kit 1.3.4 → 1.3.6

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/dist/module.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "devtools-ui-kit",
3
3
  "configKey": "devtoolsUIKit",
4
- "version": "1.3.4",
4
+ "version": "1.3.6",
5
5
  "builder": {
6
- "@nuxt/module-builder": "0.8.0",
6
+ "@nuxt/module-builder": "0.6.0",
7
7
  "unbuild": "2.0.0"
8
8
  }
9
9
  }
package/dist/types.d.mts CHANGED
@@ -1 +1,16 @@
1
- export { type unocssPreset } from './module.js'
1
+
2
+ import type { ModuleOptions } from './module.js'
3
+
4
+
5
+ declare module '@nuxt/schema' {
6
+ interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
7
+ interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
8
+ }
9
+
10
+ declare module 'nuxt/schema' {
11
+ interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
12
+ interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
13
+ }
14
+
15
+
16
+ export type { unocssPreset } from './module.js'
package/dist/types.d.ts CHANGED
@@ -1 +1,16 @@
1
- export { type unocssPreset } from './module'
1
+
2
+ import type { ModuleOptions } from './module'
3
+
4
+
5
+ declare module '@nuxt/schema' {
6
+ interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
7
+ interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
8
+ }
9
+
10
+ declare module 'nuxt/schema' {
11
+ interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
12
+ interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
13
+ }
14
+
15
+
16
+ export type { unocssPreset } from './module'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-ui-kit",
3
3
  "type": "module",
4
- "version": "1.3.4",
4
+ "version": "1.3.6",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/ui-kit",
7
7
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "dist"
29
29
  ],
30
30
  "peerDependencies": {
31
- "@nuxt/devtools": "1.3.4"
31
+ "@nuxt/devtools": "1.3.6"
32
32
  },
33
33
  "dependencies": {
34
34
  "@iconify-json/carbon": "^1.1.36",
@@ -50,11 +50,11 @@
50
50
  "splitpanes": "^3.1.5",
51
51
  "unocss": "^0.61.0",
52
52
  "v-lazy-show": "^0.2.4",
53
- "@nuxt/devtools-kit": "1.3.4"
53
+ "@nuxt/devtools-kit": "1.3.6"
54
54
  },
55
55
  "devDependencies": {
56
56
  "nuxt": "^3.12.2",
57
- "@nuxt/devtools": "1.3.4"
57
+ "@nuxt/devtools": "1.3.6"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
@@ -1,2 +0,0 @@
1
- import { useDevtoolsClient } from "@nuxt/devtools-kit/iframe-client";
2
- export const devToolsClient = useDevtoolsClient();