@hostlink/nuxt-light 0.0.47 → 0.0.48
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
|
@@ -18,6 +18,7 @@ const props = defineProps({
|
|
|
18
18
|
sortable?: boolean,
|
|
19
19
|
searchable?: boolean,
|
|
20
20
|
searchType?: string,
|
|
21
|
+
searchOptions?: Array<any>,
|
|
21
22
|
field?: string | Object,
|
|
22
23
|
}>
|
|
23
24
|
},
|
|
@@ -25,10 +26,6 @@ const props = defineProps({
|
|
|
25
26
|
type: Array,
|
|
26
27
|
default: () => []
|
|
27
28
|
},
|
|
28
|
-
selection: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: "none"
|
|
31
|
-
},
|
|
32
29
|
sortBy: {
|
|
33
30
|
type: String,
|
|
34
31
|
default: null
|
|
@@ -377,17 +374,10 @@ const attrs = {
|
|
|
377
374
|
</div>
|
|
378
375
|
</template>
|
|
379
376
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
:flat="attrs.flat"
|
|
385
|
-
:dense="attrs.dense"
|
|
386
|
-
:bordered="attrs.bordered"
|
|
387
|
-
|
|
388
|
-
:loading="loading" :hide-bottom="hideBottom" v-model:pagination="pagination" ref="table"
|
|
389
|
-
@request="onRequest" :selection="selection" :rows="rows" :rows-per-page-label="t(props.rowsPerPageLabel)"
|
|
390
|
-
:columns="renderColumns" :rows-per-page-options="rowsPerPageOptions">
|
|
377
|
+
<q-table v-bind="$attrs" :flat="attrs.flat" :dense="attrs.dense" :bordered="attrs.bordered" :row-key="rowKey"
|
|
378
|
+
:loading="loading" :hide-bottom="hideBottom" v-model:pagination="pagination" ref="table" @request="onRequest"
|
|
379
|
+
:rows="rows" :rows-per-page-label="t(props.rowsPerPageLabel)" :columns="renderColumns"
|
|
380
|
+
:rows-per-page-options="rowsPerPageOptions">
|
|
391
381
|
|
|
392
382
|
<template v-for="s in ss" v-slot:[s]="props">
|
|
393
383
|
<slot :name="s" v-bind="props"></slot>
|