una-nuxt-module 2.1.39 → 2.1.40
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
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -173,7 +173,7 @@ function addTemplates() {
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
const name = "una-nuxt-module";
|
|
176
|
-
const version = "2.1.
|
|
176
|
+
const version = "2.1.40";
|
|
177
177
|
|
|
178
178
|
const module = defineNuxtModule({
|
|
179
179
|
meta: {
|
|
@@ -193,6 +193,7 @@ const module = defineNuxtModule({
|
|
|
193
193
|
async setup(options, nuxt) {
|
|
194
194
|
const logger = useLogger(name);
|
|
195
195
|
const { resolve } = createResolver(import.meta.url);
|
|
196
|
+
options = defu(nuxt.options.runtimeConfig.public.unaNuxtModule, options);
|
|
196
197
|
nuxt.options.alias["#unaxt"] = resolve("./runtime");
|
|
197
198
|
function setupAutoImports() {
|
|
198
199
|
addImportsDir(
|
|
@@ -4,7 +4,7 @@ type __VLS_Props = StepperItemProps & {
|
|
|
4
4
|
class?: HTMLAttributes["class"];
|
|
5
5
|
};
|
|
6
6
|
declare var __VLS_7: {
|
|
7
|
-
state: "
|
|
7
|
+
state: "inactive" | "active" | "completed";
|
|
8
8
|
};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
10
|
default?: (props: typeof __VLS_7) => any;
|
|
@@ -4,7 +4,7 @@ type __VLS_Props = StepperItemProps & {
|
|
|
4
4
|
class?: HTMLAttributes["class"];
|
|
5
5
|
};
|
|
6
6
|
declare var __VLS_7: {
|
|
7
|
-
state: "
|
|
7
|
+
state: "inactive" | "active" | "completed";
|
|
8
8
|
};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
10
|
default?: (props: typeof __VLS_7) => any;
|