@bootstrap-vue-next/nuxt 0.28.5 → 0.29.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.
- package/dist/module.json +3 -3
- package/dist/types.d.mts +2 -2
- package/package.json +15 -17
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -35
- package/dist/types.d.ts +0 -7
package/dist/module.json
CHANGED
package/dist/types.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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'
|
package/package.json
CHANGED
|
@@ -1,48 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootstrap-vue-next/nuxt",
|
|
3
3
|
"description": "Nuxt Module for BootstrapVueNext",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.29.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Issayah",
|
|
8
8
|
"url": "https://github.com/VividLemon"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
-
"main": "./dist/module.
|
|
11
|
+
"main": "./dist/module.mjs",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"types": "./dist/types.d.
|
|
15
|
-
"import": "./dist/module.mjs"
|
|
16
|
-
"require": "./dist/module.cjs"
|
|
14
|
+
"types": "./dist/types.d.mts",
|
|
15
|
+
"import": "./dist/module.mjs"
|
|
17
16
|
}
|
|
18
17
|
},
|
|
19
18
|
"files": [
|
|
20
19
|
"dist"
|
|
21
20
|
],
|
|
22
|
-
"types": "./dist/types.d.ts",
|
|
23
21
|
"peerDependencies": {
|
|
24
|
-
"bootstrap-vue-next": "
|
|
22
|
+
"bootstrap-vue-next": "0.29.0"
|
|
25
23
|
},
|
|
26
24
|
"dependencies": {
|
|
27
|
-
"@nuxt/kit": "^3.
|
|
25
|
+
"@nuxt/kit": "^3.17.1"
|
|
28
26
|
},
|
|
29
27
|
"devDependencies": {
|
|
30
|
-
"@nuxt/devtools": "^2.
|
|
28
|
+
"@nuxt/devtools": "^2.4.0",
|
|
31
29
|
"@nuxt/eslint-config": "^1.2.0",
|
|
32
|
-
"@nuxt/module-builder": "^0.
|
|
33
|
-
"@nuxt/schema": "^3.
|
|
30
|
+
"@nuxt/module-builder": "^1.0.1",
|
|
31
|
+
"@nuxt/schema": "^3.17.1",
|
|
34
32
|
"@nuxt/test-utils": "^3.17.2",
|
|
35
33
|
"@rushstack/eslint-patch": "^1.11.0",
|
|
36
|
-
"@types/node": "^22.
|
|
34
|
+
"@types/node": "^22.15.3",
|
|
37
35
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
38
|
-
"eslint": "^9.
|
|
36
|
+
"eslint": "^9.25.1",
|
|
39
37
|
"eslint-define-config": "^2.1.0",
|
|
40
|
-
"nuxt": "^3.
|
|
38
|
+
"nuxt": "^3.17.1",
|
|
41
39
|
"prettier": "^3.5.3",
|
|
42
|
-
"typescript": "~5.
|
|
43
|
-
"unimport": "^
|
|
40
|
+
"typescript": "~5.8.3",
|
|
41
|
+
"unimport": "^5.0.0",
|
|
44
42
|
"vue": "^3.5.13",
|
|
45
|
-
"bootstrap-vue-next": "^0.
|
|
43
|
+
"bootstrap-vue-next": "^0.29.0"
|
|
46
44
|
},
|
|
47
45
|
"repository": {
|
|
48
46
|
"type": "git",
|
package/dist/module.cjs
DELETED
package/dist/module.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
-
import { Composables, Directives, BootstrapVueOptions } from 'bootstrap-vue-next';
|
|
3
|
-
|
|
4
|
-
type ConfigurationOption<T extends string> = Partial<Record<T, boolean>> & {
|
|
5
|
-
all: boolean;
|
|
6
|
-
};
|
|
7
|
-
type ConfigurationValue<T extends string> = boolean | ConfigurationOption<T>;
|
|
8
|
-
interface ModuleOptions {
|
|
9
|
-
/**
|
|
10
|
-
* There would be no reason to disable this, beyond conflicting auto imports. This should probably be left true
|
|
11
|
-
*
|
|
12
|
-
* @default true
|
|
13
|
-
*/
|
|
14
|
-
composables: ConfigurationValue<keyof typeof Composables>;
|
|
15
|
-
/**
|
|
16
|
-
* There would be no reason to disable this, beyond conflicting auto imports. This should probably be left true
|
|
17
|
-
*
|
|
18
|
-
* @default true
|
|
19
|
-
*/
|
|
20
|
-
directives: ConfigurationValue<keyof typeof Directives>;
|
|
21
|
-
/**
|
|
22
|
-
* Manages the inclusion of the module's CSS. It is recommended to leave this enabled unless there are conflicts with other styles.
|
|
23
|
-
*
|
|
24
|
-
* @default true
|
|
25
|
-
*/
|
|
26
|
-
css: boolean;
|
|
27
|
-
/**
|
|
28
|
-
* @default {}
|
|
29
|
-
*/
|
|
30
|
-
plugin: Omit<Exclude<BootstrapVueOptions, undefined>, 'id'>;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
34
|
-
|
|
35
|
-
export { _default as default };
|
package/dist/types.d.ts
DELETED