quasar-factory-lib 0.0.91 → 0.0.93
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 +6908 -8503
- package/dist/quasar-factory-lib.umd.cjs +11 -16
- package/package.json +1 -2
- package/src/components/Table/Table.vue +5 -5
- package/src/layouts/PdaLayout.vue +0 -8
package/package.json
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
"pinia": "^3.0.1",
|
|
6
6
|
"quasar": "^2.18.0",
|
|
7
7
|
"vue": "^3.5.11",
|
|
8
|
-
"vue-draggable-plus": "^0.6.0",
|
|
9
8
|
"vue-i18n": "^10.0.4"
|
|
10
9
|
},
|
|
11
10
|
"description": "Quasar Library",
|
|
@@ -98,6 +97,6 @@
|
|
|
98
97
|
"release": "standard-version"
|
|
99
98
|
},
|
|
100
99
|
"type": "module",
|
|
101
|
-
"version": "0.0.
|
|
100
|
+
"version": "0.0.93",
|
|
102
101
|
"author": ""
|
|
103
102
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template lang="">
|
|
2
2
|
<div>
|
|
3
3
|
<q-table
|
|
4
|
-
v-
|
|
4
|
+
v-show="!showSkeleton"
|
|
5
5
|
ref="myTable"
|
|
6
6
|
v-model:selected="selected"
|
|
7
7
|
class="my-table"
|
|
@@ -107,11 +107,11 @@
|
|
|
107
107
|
</template>
|
|
108
108
|
</q-table>
|
|
109
109
|
<TableSkeleton
|
|
110
|
-
v-
|
|
110
|
+
v-show="getTableSkeletonVisibility"
|
|
111
111
|
id="tableSkeleton"
|
|
112
112
|
/>
|
|
113
113
|
<CardListSkeleton
|
|
114
|
-
v-
|
|
114
|
+
v-show="getGridSkeletonVisibility"
|
|
115
115
|
id="cardListSkeleton"
|
|
116
116
|
/>
|
|
117
117
|
</div>
|
|
@@ -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
|
-
import {useDraggable} from 'vue-draggable-plus'
|
|
128
|
+
// import {useDraggable} from '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
|
-
this.enableDragAndDropFunc()
|
|
301
|
+
// this.enableDragAndDropFunc()
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
smallDevice (val): void {
|
|
@@ -101,14 +101,6 @@ export default {
|
|
|
101
101
|
store: tableStore(),
|
|
102
102
|
tableStyle: '',
|
|
103
103
|
columns: [
|
|
104
|
-
{
|
|
105
|
-
name: 'drag-and-drop',
|
|
106
|
-
required: true,
|
|
107
|
-
label: 'Drag and drop',
|
|
108
|
-
align: 'left',
|
|
109
|
-
sortable: true,
|
|
110
|
-
type: 'string',
|
|
111
|
-
},
|
|
112
104
|
{
|
|
113
105
|
name: 'name',
|
|
114
106
|
required: true,
|