erp-blocks 1.0.1 → 1.0.3
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 +1 -1
- package/dist/module.mjs +3 -5
- package/dist/runtime/assets/css/main.css +1 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineNuxtModule, createResolver, addTemplate, addComponentsDir, addLayout,
|
|
1
|
+
import { defineNuxtModule, createResolver, addTemplate, addComponentsDir, addLayout, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const module$1 = defineNuxtModule({
|
|
4
4
|
meta: {
|
|
@@ -8,7 +8,7 @@ const module$1 = defineNuxtModule({
|
|
|
8
8
|
defaults: {},
|
|
9
9
|
setup(_options, nuxt) {
|
|
10
10
|
const { resolve } = createResolver(import.meta.url);
|
|
11
|
-
nuxt.options.css.push(resolve("./assets/css/main.css"));
|
|
11
|
+
nuxt.options.css.push(resolve("./runtime/assets/css/main.css"));
|
|
12
12
|
nuxt.options.build.transpile.push(resolve("./runtime"));
|
|
13
13
|
addTemplate({
|
|
14
14
|
filename: "app.vue",
|
|
@@ -24,9 +24,7 @@ const module$1 = defineNuxtModule({
|
|
|
24
24
|
addLayout({
|
|
25
25
|
src: resolve("./runtime/layouts/dashboard-layout.vue")
|
|
26
26
|
}, "dashboard");
|
|
27
|
-
|
|
28
|
-
{ name: "useCountFetch", from: resolve("./runtime/composables/useCountFetch.ts") }
|
|
29
|
-
]);
|
|
27
|
+
addImportsDir(resolve("./runtime/composables"));
|
|
30
28
|
},
|
|
31
29
|
moduleDependencies: {
|
|
32
30
|
"@nuxt/ui": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "tailwindcss";@import "@nuxt/ui";@source "../../runtime/";@theme{--color-scn-secondary:#f5f5f5;--color-scn-sidebar:240 5.9% 10%;--color-scn-sidebar-border:#e5e5e5;--animate-collapsible-right:collapsible-right 200ms ease-out;--animate-collapsible-left:collapsible-left 200ms ease-in-out;@keyframes collapsible-right{0%{opacity:0;width:0}to{opacity:1;width:100%}}@keyframes collapsible-left{0%{opacity:1;width:100%}to{opacity:0;width:0}}}@variant dark{--color-scn-secondary:oklch(12.9% 0 0)}
|