quasar-factory-lib 0.0.75 → 0.0.76
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/components/Table/Table.vue.d.ts +2 -1
- package/dist/layouts/PdaLayout.vue.d.ts +2 -1
- package/dist/pages/TablePage.vue.d.ts +2 -1
- package/dist/quasar-factory-lib.js +1078 -1072
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +5 -1
- package/src/pages/TablePage.vue +4 -1
package/package.json
CHANGED
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
:loading="loading"
|
|
30
30
|
pagination.sync="0"
|
|
31
31
|
:grid-header="showGridHeader"
|
|
32
|
+
@update:selected="(details) => {
|
|
33
|
+
$emit('onUpdateSelected', details)
|
|
34
|
+
}"
|
|
32
35
|
>
|
|
33
36
|
<template #top-right="props">
|
|
34
37
|
<q-separator />
|
|
@@ -201,7 +204,8 @@ export default defineComponent({
|
|
|
201
204
|
'pauseMaintenanceTicket',
|
|
202
205
|
'finishMaintenanceTicket',
|
|
203
206
|
'onRowClick',
|
|
204
|
-
'onClickIconToolTip'
|
|
207
|
+
'onClickIconToolTip',
|
|
208
|
+
'onUpdateSelected'
|
|
205
209
|
],
|
|
206
210
|
data () {
|
|
207
211
|
return {
|
package/src/pages/TablePage.vue
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:rows="rows"
|
|
14
14
|
:columns="columns"
|
|
15
15
|
:visible-columns="store.visiblecolumns"
|
|
16
|
-
:small-device="
|
|
16
|
+
:small-device="false"
|
|
17
17
|
:store="store"
|
|
18
18
|
:table-style="tableStyle"
|
|
19
19
|
:show-skeleton="showSkeleton"
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
@on-update-customized-checkbox-value="onUpdateCustomizedCheckboxValue"
|
|
30
30
|
@on-click-button="setItemNotFound"
|
|
31
31
|
@onClickIconToolTip="onClickIconToolTip"
|
|
32
|
+
@onUpdateSelected="(details) => {
|
|
33
|
+
console.log(details, 'details')
|
|
34
|
+
}"
|
|
32
35
|
|
|
33
36
|
/>
|
|
34
37
|
</div>
|