@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 CHANGED
@@ -1,10 +1,10 @@
1
- import * as _nuxt_schema from '@nuxt/schema';
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: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
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 _nuxt_schema from '@nuxt/schema';
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: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
8
+ declare const _default: nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
9
9
 
10
10
  export { _default as default };
package/dist/module.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@antify/ui-module",
3
3
  "configKey": "uiModule",
4
- "version": "2.13.9",
4
+ "version": "2.13.13",
5
5
  "builder": {
6
- "@nuxt/module-builder": "0.8.4",
7
- "unbuild": "2.0.0"
6
+ "@nuxt/module-builder": "1.0.2",
7
+ "unbuild": "3.6.1"
8
8
  }
9
9
  }
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.js'
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.js'
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.9",
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.23",
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
@@ -1,5 +0,0 @@
1
- module.exports = function(...args) {
2
- return import('./module.mjs').then(m => m.default.call(this, ...args))
3
- }
4
- const _meta = module.exports.meta = require('./module.json')
5
- module.exports.getMeta = () => Promise.resolve(_meta)
package/dist/types.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import type { NuxtModule } from '@nuxt/schema'
2
-
3
- import type { default as Module } from './module'
4
-
5
- export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
6
-
7
- export { default } from './module'