quasar-factory-lib 0.0.93 → 0.0.95
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/quasar-factory-lib.js +8706 -7124
- package/dist/quasar-factory-lib.umd.cjs +16 -11
- package/package.json +2 -1
- package/src/components/Table/Table.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
3
|
"@quasar/extras": "^1.16.11",
|
|
4
|
+
"caroline-vue-draggable-plus": "^0.6.1",
|
|
4
5
|
"global": "^4.4.0",
|
|
5
6
|
"pinia": "^3.0.1",
|
|
6
7
|
"quasar": "^2.18.0",
|
|
@@ -97,6 +98,6 @@
|
|
|
97
98
|
"release": "standard-version"
|
|
98
99
|
},
|
|
99
100
|
"type": "module",
|
|
100
|
-
"version": "0.0.
|
|
101
|
+
"version": "0.0.95",
|
|
101
102
|
"author": ""
|
|
102
103
|
}
|
|
@@ -125,7 +125,7 @@ import TableSlotGrid from './components/TableSlotGrid.vue'
|
|
|
125
125
|
import TableFilter from './components/TableFilter.vue'
|
|
126
126
|
import TableSkeleton from './components/TableSkeleton.vue'
|
|
127
127
|
import CardListSkeleton from './components/CardListSkeleton.vue'
|
|
128
|
-
|
|
128
|
+
import {useDraggable} from 'caroline-vue-draggable-plus'
|
|
129
129
|
|
|
130
130
|
export default defineComponent({
|
|
131
131
|
components: {
|
|
@@ -298,7 +298,7 @@ export default defineComponent({
|
|
|
298
298
|
},
|
|
299
299
|
enableDragAndDrop (val): void {
|
|
300
300
|
if (val) {
|
|
301
|
-
|
|
301
|
+
this.enableDragAndDropFunc()
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
smallDevice (val): void {
|