@nuxt/devtools-ui-kit 0.8.2 → 0.8.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.
- package/README.md +1 -1
- package/dist/assets/styles.css +3 -3
- package/dist/module.d.mts +12 -0
- package/dist/module.d.ts +1 -1
- package/dist/module.json +1 -1
- package/dist/types.d.mts +15 -0
- package/dist/unocss.d.mts +7 -0
- package/dist/unocss.mjs +1 -1
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
|
|
7
7
|
UI kit for module authors to build embedded views for Nuxt DevTools.
|
|
8
8
|
|
|
9
|
-
Please refer to the [DevTools UI Kit](https://devtools.
|
|
9
|
+
Please refer to the [DevTools UI Kit](https://devtools.nuxt.com/module/ui-kit) for the full documentation.
|
package/dist/assets/styles.css
CHANGED
|
@@ -46,12 +46,12 @@ html.dark {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.shiki.diff .line-removed > span {
|
|
49
|
-
color: #
|
|
49
|
+
color: #d15547 !important;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.shiki .line-added:after {
|
|
53
53
|
content: "";
|
|
54
|
-
background-color: #
|
|
54
|
+
background-color: #43885420;
|
|
55
55
|
display: block;
|
|
56
56
|
position: absolute;
|
|
57
57
|
left: 0;
|
|
@@ -62,7 +62,7 @@ html.dark {
|
|
|
62
62
|
|
|
63
63
|
.shiki .line-removed:after {
|
|
64
64
|
content: "";
|
|
65
|
-
background-color: #
|
|
65
|
+
background-color: #8f4c3926;
|
|
66
66
|
display: block;
|
|
67
67
|
position: absolute;
|
|
68
68
|
left: 0;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
+
export { unocssPreset } from './unocss.mjs';
|
|
3
|
+
import '@unocss/core';
|
|
4
|
+
import '@unocss/nuxt';
|
|
5
|
+
|
|
6
|
+
interface ModuleOptions {
|
|
7
|
+
dev?: boolean;
|
|
8
|
+
preset?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
|
|
11
|
+
|
|
12
|
+
export { type ModuleOptions, _default as default };
|
package/dist/module.d.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/types.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
import { ModuleOptions } from './module'
|
|
3
|
+
|
|
4
|
+
declare module '@nuxt/schema' {
|
|
5
|
+
interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
|
|
6
|
+
interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare module 'nuxt/schema' {
|
|
10
|
+
interface NuxtConfig { ['devtoolsUIKit']?: Partial<ModuleOptions> }
|
|
11
|
+
interface NuxtOptions { ['devtoolsUIKit']?: ModuleOptions }
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export { unocssPreset } from './module'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Preset } from '@unocss/core';
|
|
2
|
+
import { UnocssNuxtOptions } from '@unocss/nuxt';
|
|
3
|
+
|
|
4
|
+
declare function unocssPreset(): Preset;
|
|
5
|
+
declare function extendUnocssOptions(user?: UnocssNuxtOptions): UnocssNuxtOptions;
|
|
6
|
+
|
|
7
|
+
export { extendUnocssOptions, unocssPreset };
|
package/dist/unocss.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-ui-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "nuxt/devtools",
|
|
7
7
|
"exports": {
|
|
@@ -23,33 +23,33 @@
|
|
|
23
23
|
"*.cjs"
|
|
24
24
|
],
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@nuxt/devtools": "0.8.
|
|
26
|
+
"@nuxt/devtools": "0.8.4"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@iconify-json/carbon": "^1.1.
|
|
30
|
-
"@iconify-json/logos": "^1.1.
|
|
29
|
+
"@iconify-json/carbon": "^1.1.21",
|
|
30
|
+
"@iconify-json/logos": "^1.1.37",
|
|
31
31
|
"@iconify-json/ri": "^1.1.12",
|
|
32
|
-
"@iconify-json/tabler": "^1.1.
|
|
33
|
-
"@nuxt/kit": "^3.7.
|
|
32
|
+
"@iconify-json/tabler": "^1.1.91",
|
|
33
|
+
"@nuxt/kit": "^3.7.3",
|
|
34
34
|
"@nuxtjs/color-mode": "^3.3.0",
|
|
35
|
-
"@unocss/core": "^0.
|
|
36
|
-
"@unocss/nuxt": "^0.
|
|
37
|
-
"@unocss/preset-attributify": "^0.
|
|
38
|
-
"@unocss/preset-icons": "^0.
|
|
39
|
-
"@unocss/preset-mini": "^0.
|
|
40
|
-
"@unocss/reset": "^0.
|
|
35
|
+
"@unocss/core": "^0.56.0",
|
|
36
|
+
"@unocss/nuxt": "^0.56.0",
|
|
37
|
+
"@unocss/preset-attributify": "^0.56.0",
|
|
38
|
+
"@unocss/preset-icons": "^0.56.0",
|
|
39
|
+
"@unocss/preset-mini": "^0.56.0",
|
|
40
|
+
"@unocss/reset": "^0.56.0",
|
|
41
41
|
"@vueuse/core": "^10.4.1",
|
|
42
42
|
"@vueuse/integrations": "^10.4.1",
|
|
43
43
|
"@vueuse/nuxt": "^10.4.1",
|
|
44
44
|
"defu": "^6.1.2",
|
|
45
45
|
"focus-trap": "^7.5.2",
|
|
46
|
-
"unocss": "^0.
|
|
46
|
+
"unocss": "^0.56.0",
|
|
47
47
|
"v-lazy-show": "^0.2.3",
|
|
48
|
-
"@nuxt/devtools": "0.8.
|
|
49
|
-
"@nuxt/devtools-kit": "0.8.2"
|
|
48
|
+
"@nuxt/devtools-kit": "0.8.4"
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
52
|
-
"nuxt": "^3.7.
|
|
51
|
+
"nuxt": "^3.7.3",
|
|
52
|
+
"@nuxt/devtools": "0.8.4"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|