n20-common-lib 2.6.34 → 2.6.36
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n20-common-lib",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.36",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vue-cli-service serve",
|
|
@@ -60,7 +60,6 @@
|
|
|
60
60
|
"qrcode": "*",
|
|
61
61
|
"resize-detector": "*",
|
|
62
62
|
"strip-json-comments": "*",
|
|
63
|
-
"v-viewer": "1.6.4",
|
|
64
63
|
"vuedraggable": "*"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|
|
@@ -119,6 +118,9 @@
|
|
|
119
118
|
"xlsx": "0.14.1",
|
|
120
119
|
"xlsx-style": "^0.8.13"
|
|
121
120
|
},
|
|
121
|
+
"peerDependencies": {
|
|
122
|
+
"v-viewer": "1.6.4"
|
|
123
|
+
},
|
|
122
124
|
"browserslist": [
|
|
123
125
|
"> 1%",
|
|
124
126
|
"last 2 versions",
|
|
@@ -188,7 +188,6 @@ export default {
|
|
|
188
188
|
break
|
|
189
189
|
case 'checkbox':
|
|
190
190
|
this.model[item.value] = []
|
|
191
|
-
|
|
192
191
|
break
|
|
193
192
|
case 'numberrange':
|
|
194
193
|
this.model[item.startValue] = null
|
|
@@ -200,6 +199,10 @@ export default {
|
|
|
200
199
|
this.model[item.startDate] = null
|
|
201
200
|
this.model[item.endDate] = null
|
|
202
201
|
break
|
|
202
|
+
case 'slot': {
|
|
203
|
+
this.model[item.value] = null
|
|
204
|
+
break
|
|
205
|
+
}
|
|
203
206
|
}
|
|
204
207
|
let data = this.GroupData.filter((s) => {
|
|
205
208
|
return s.id !== item.id
|
|
@@ -209,7 +212,7 @@ export default {
|
|
|
209
212
|
this.getFilterList()
|
|
210
213
|
}
|
|
211
214
|
})
|
|
212
|
-
this.$emit('
|
|
215
|
+
this.$emit('clean', this.model)
|
|
213
216
|
},
|
|
214
217
|
cleared() {
|
|
215
218
|
this.$emit('clear')
|