manolis-ui 1.0.7 → 1.0.8
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/CHANGELOG.md +1 -1
- package/dist/module.d.mts +2 -0
- package/dist/module.d.ts +2 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +9 -0
- package/dist/runtime/plugin.d.ts +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
- no changes- no changes- no changes- no changes- no changes
|
|
1
|
+
- no changes- no changes- no changes- no changes- no changes- no changes
|
package/dist/module.d.mts
CHANGED
|
@@ -7,6 +7,8 @@ interface ModuleOptions {
|
|
|
7
7
|
css: boolean;
|
|
8
8
|
theme?: ThemeOptions;
|
|
9
9
|
}
|
|
10
|
+
interface ModuleOptions {
|
|
11
|
+
}
|
|
10
12
|
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
11
13
|
|
|
12
14
|
export { type ModuleOptions, type ThemeOptions, _default as default };
|
package/dist/module.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ interface ModuleOptions {
|
|
|
7
7
|
css: boolean;
|
|
8
8
|
theme?: ThemeOptions;
|
|
9
9
|
}
|
|
10
|
+
interface ModuleOptions {
|
|
11
|
+
}
|
|
10
12
|
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
11
13
|
|
|
12
14
|
export { type ModuleOptions, type ThemeOptions, _default as default };
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -28,6 +28,15 @@ const module = defineNuxtModule({
|
|
|
28
28
|
prefix: "",
|
|
29
29
|
global: true
|
|
30
30
|
});
|
|
31
|
+
_nuxt.hook("nitro:config", async (nitroConfig) => {
|
|
32
|
+
nitroConfig.publicAssets ||= [];
|
|
33
|
+
nitroConfig.publicAssets.push({
|
|
34
|
+
dir: resolver.resolve("./runtime/assets"),
|
|
35
|
+
// path of assets
|
|
36
|
+
maxAge: 60 * 60 * 24 * 365
|
|
37
|
+
// cache assets for 1 year
|
|
38
|
+
});
|
|
39
|
+
});
|
|
31
40
|
}
|
|
32
41
|
});
|
|
33
42
|
|
package/dist/runtime/plugin.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "manolis-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A modern design system made for vue based on daisy UI",
|
|
5
5
|
"repository": "manolis-trading/manolis-ui",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,18 +18,17 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
21
|
+
"start": "NODE_OPTIONS='--no-experimental-require-module' nuxi",
|
|
22
|
+
"prepack": "nuxt-module-build",
|
|
23
|
+
"dev": "npm run dev-playground",
|
|
24
|
+
"dev-playground": "nuxi dev playground",
|
|
23
25
|
"dev:build": "nuxi build playground",
|
|
24
|
-
"dev:prepare": "nuxt-module-build
|
|
26
|
+
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|
|
25
27
|
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
26
28
|
"lint": "eslint .",
|
|
27
29
|
"test": "vitest run",
|
|
28
|
-
"test:watch": "vitest watch"
|
|
29
|
-
|
|
30
|
-
"storybook": "storybook dev -p 6006",
|
|
31
|
-
"build-storybook": "storybook build"
|
|
32
|
-
},
|
|
30
|
+
"test:watch": "vitest watch"
|
|
31
|
+
},
|
|
33
32
|
"dependencies": {
|
|
34
33
|
"@nuxt/kit": "^3.14.159",
|
|
35
34
|
"lucide-vue-next": "^0.460.0"
|