@antify/ui-module 2.13.9 → 2.13.13
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.d.mts +2 -2
- package/dist/module.d.ts +2 -2
- package/dist/module.json +3 -3
- package/dist/types.d.mts +4 -2
- package/package.json +3 -4
- package/dist/module.cjs +0 -5
- package/dist/types.d.ts +0 -7
package/dist/module.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as nuxt_schema from 'nuxt/schema';
|
|
2
2
|
export * from '../dist/runtime/types.js';
|
|
3
3
|
|
|
4
4
|
type ModuleOptions = {
|
|
5
5
|
tailwindCSSPath?: string;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
declare const _default:
|
|
8
|
+
declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
9
9
|
|
|
10
10
|
export { _default as default };
|
package/dist/module.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as nuxt_schema from 'nuxt/schema';
|
|
2
2
|
export * from '../dist/runtime/types.js';
|
|
3
3
|
|
|
4
4
|
type ModuleOptions = {
|
|
5
5
|
tailwindCSSPath?: string;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
declare const _default:
|
|
8
|
+
declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
9
9
|
|
|
10
10
|
export { _default as default };
|
package/dist/module.json
CHANGED
package/dist/types.d.mts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { NuxtModule } from '@nuxt/schema'
|
|
2
2
|
|
|
3
|
-
import type { default as Module } from './module.
|
|
3
|
+
import type { default as Module } from './module.mjs'
|
|
4
4
|
|
|
5
5
|
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
6
6
|
|
|
7
|
-
export { default } from './module.
|
|
7
|
+
export { default } from './module.mjs'
|
|
8
|
+
|
|
9
|
+
export * from '../dist/runtime/types.js'
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antify/ui-module",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.13.
|
|
4
|
+
"version": "2.13.13",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/module.d.ts",
|
|
11
|
-
"import": "./dist/module.mjs"
|
|
12
|
-
"require": "./dist/module.cjs"
|
|
11
|
+
"import": "./dist/module.mjs"
|
|
13
12
|
}
|
|
14
13
|
},
|
|
15
14
|
"main": "./dist/module.mjs",
|
|
@@ -18,7 +17,7 @@
|
|
|
18
17
|
"dist"
|
|
19
18
|
],
|
|
20
19
|
"dependencies": {
|
|
21
|
-
"@antify/ui": "3.1.
|
|
20
|
+
"@antify/ui": "3.1.24",
|
|
22
21
|
"@fortawesome/vue-fontawesome": "^3.0.8",
|
|
23
22
|
"@nuxt/kit": "^3.13.1",
|
|
24
23
|
"@tailwindcss/vite": "4.0.7",
|
package/dist/module.cjs
DELETED
package/dist/types.d.ts
DELETED