@hostlink/nuxt-light 1.59.0 → 1.59.1
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
|
@@ -356,6 +356,9 @@ const module$1 = defineNuxtModule({
|
|
|
356
356
|
nuxt.options.vite.optimizeDeps.include.push("axios");
|
|
357
357
|
nuxt.options.vite.optimizeDeps.include.push("json-to-graphql-query");
|
|
358
358
|
nuxt.options.vite.optimizeDeps.include.push("collect.js");
|
|
359
|
+
nuxt.options.vite.resolve = nuxt.options.vite.resolve || {};
|
|
360
|
+
nuxt.options.vite.resolve.alias = nuxt.options.vite.resolve.alias || {};
|
|
361
|
+
nuxt.options.vite.resolve.alias["collect.js"] = "collect.js/dist/index.js";
|
|
359
362
|
nuxt.options.app.head.link = nuxt.options.app.head.link || [];
|
|
360
363
|
nuxt.options.app.head.link.push({
|
|
361
364
|
rel: "stylesheet",
|
|
@@ -32,7 +32,7 @@ const [parent, items] = useDragAndDrop(filteredItem, {
|
|
|
32
32
|
});
|
|
33
33
|
watch(items, () => {
|
|
34
34
|
model.value = items.value.map((item) => {
|
|
35
|
-
return item.props.name ?? Symbol();
|
|
35
|
+
return item.props.name ?? /* @__PURE__ */ Symbol();
|
|
36
36
|
});
|
|
37
37
|
group.exposed.updateModel(props.name, model.value);
|
|
38
38
|
});
|
|
@@ -3,7 +3,7 @@ import { useSlots } from "vue";
|
|
|
3
3
|
const model = defineModel();
|
|
4
4
|
const slots = useSlots().default();
|
|
5
5
|
const DragDropContainer = resolveComponent("l-drag-drop-container");
|
|
6
|
-
const group_name = Symbol();
|
|
6
|
+
const group_name = /* @__PURE__ */ Symbol();
|
|
7
7
|
defineExpose({
|
|
8
8
|
updateModel: (name, value) => {
|
|
9
9
|
model.value[name] = value;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hostlink/nuxt-light",
|
|
3
|
-
"version": "1.59.
|
|
3
|
+
"version": "1.59.1",
|
|
4
4
|
"description": "HostLink Nuxt Light Framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@nuxt/devtools": "latest",
|
|
52
52
|
"@nuxt/eslint-config": "^1.10.0",
|
|
53
|
-
"@nuxt/kit": "^4.2.
|
|
54
|
-
"@nuxt/schema": "^4.2.
|
|
53
|
+
"@nuxt/kit": "^4.2.2",
|
|
54
|
+
"@nuxt/schema": "^4.2.2",
|
|
55
55
|
"@nuxt/test-utils": "^3.17.2",
|
|
56
56
|
"@types/node": "^24.10.1",
|
|
57
57
|
"changelogen": "^0.5.7",
|
|
58
58
|
"eslint": "^9.39.1",
|
|
59
|
-
"nuxt": "^4.2.
|
|
59
|
+
"nuxt": "^4.2.2",
|
|
60
60
|
"typescript": "^5.9.2",
|
|
61
61
|
"vue-tsc": "^3.1.5"
|
|
62
62
|
}
|