@hostlink/nuxt-light 1.8.7 → 1.8.9

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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.8.7"
4
+ "version": "1.8.9"
5
5
  }
@@ -1,7 +1,15 @@
1
1
  <script setup>
2
+ const model = defineModel();
3
+
4
+ const props=defineProps({
5
+ slots: Array
6
+ })
7
+
8
+
9
+
2
10
  </script>
3
11
  <template>
4
12
  <div>
5
- <slot></slot>
13
+ <component :is="slot" v-for="slot in slots" />
6
14
  </div>
7
15
  </template>
@@ -47,7 +47,6 @@ function getItems(containers) {
47
47
  const items = getItems(containers);
48
48
 
49
49
 
50
-
51
50
  </script>
52
51
  <template>
53
52
  <div>
@@ -517,7 +517,7 @@ const localSelected = computed({
517
517
  </div>
518
518
  </template>
519
519
 
520
- <q-table v-bind="attrs" :loading="loading" :rows="rows" ref="table" @request="onRequest" :columns="columns"
520
+ <q-table v-bind="attrs" :loading="loading" :rows="rows??[]" ref="table" @request="onRequest" :columns="columns"
521
521
  v-model:pagination="pagination" :filter="filter" v-model:selected="localSelected">
522
522
 
523
523
  <template #header="props">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.8.7",
3
+ "version": "1.8.9",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",
@@ -38,12 +38,12 @@
38
38
  "@hostlink/light": "^1.2.1",
39
39
  "@nuxt/kit": "^3.7.4",
40
40
  "@nuxt/module-builder": "^0.5.2",
41
- "@quasar/extras": "^1.16.6",
41
+ "@quasar/extras": "^1.16.11",
42
42
  "axios": "^1.5.0",
43
43
  "diff2html": "^3.4.47",
44
44
  "formkit-quasar": "^0.0.15",
45
45
  "json-to-graphql-query": "^2.2.5",
46
- "quasar": "^2.12.5",
46
+ "quasar": "^2.15.2",
47
47
  "vue-i18n": "^9.2.2",
48
48
  "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
49
49
  },