@asd20/ui 3.2.492 → 3.2.494
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-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"*.scss",
|
|
6
6
|
"*.vue"
|
|
7
7
|
],
|
|
8
|
-
"version": "3.2.
|
|
8
|
+
"version": "3.2.494",
|
|
9
9
|
"private": false,
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"repository": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"vue-intersect": "^1.1.6",
|
|
45
45
|
"vue-lazyload": "^1.2.6",
|
|
46
46
|
"vue-mq": "^1.0.1",
|
|
47
|
-
"vue-multiselect": "
|
|
47
|
+
"vue-multiselect": "2.1.6",
|
|
48
48
|
"vue-observe-visibility": "^0.4.3",
|
|
49
49
|
"vue-promised": "^1.0.0",
|
|
50
50
|
"vue-recaptcha": "^1.2.0",
|
|
@@ -302,9 +302,9 @@ export default {
|
|
|
302
302
|
},
|
|
303
303
|
data: function() {
|
|
304
304
|
return {
|
|
305
|
-
numberToShow:
|
|
305
|
+
numberToShow: 25,
|
|
306
306
|
counter: 1,
|
|
307
|
-
counter2:
|
|
307
|
+
counter2: 25,
|
|
308
308
|
}
|
|
309
309
|
},
|
|
310
310
|
computed: {
|
|
@@ -343,13 +343,13 @@ export default {
|
|
|
343
343
|
// return this.categoryOptions
|
|
344
344
|
// },
|
|
345
345
|
},
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
346
|
+
watch: {
|
|
347
|
+
selectedCategories: function(newVal, oldVal) {
|
|
348
|
+
if (newVal !== oldVal) {
|
|
349
|
+
this.reset()
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
},
|
|
353
353
|
methods: {
|
|
354
354
|
nextSet() {
|
|
355
355
|
if (
|
|
@@ -306,9 +306,9 @@ export default {
|
|
|
306
306
|
},
|
|
307
307
|
data: function() {
|
|
308
308
|
return {
|
|
309
|
-
numberToShow:
|
|
309
|
+
numberToShow: 25,
|
|
310
310
|
counter: 1,
|
|
311
|
-
counter2:
|
|
311
|
+
counter2: 25,
|
|
312
312
|
}
|
|
313
313
|
},
|
|
314
314
|
computed: {
|
|
@@ -336,13 +336,13 @@ export default {
|
|
|
336
336
|
]
|
|
337
337
|
},
|
|
338
338
|
},
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
339
|
+
watch: {
|
|
340
|
+
selectedCategories: function(newVal, oldVal) {
|
|
341
|
+
if (newVal !== oldVal) {
|
|
342
|
+
this.reset()
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
346
|
methods: {
|
|
347
347
|
nextSet() {
|
|
348
348
|
if (
|
|
@@ -57,7 +57,7 @@ export default {
|
|
|
57
57
|
classes[`${this.kebabComponentName}--expanded`] = this.expanded
|
|
58
58
|
classes[`${this.kebabComponentName}--bordered`] = this.bordered
|
|
59
59
|
classes[`${this.kebabComponentName}--reversed`] = this.reversed
|
|
60
|
-
|
|
60
|
+
classes[`${this.kebabComponentName}--taggable`] = this.taggable
|
|
61
61
|
return classes
|
|
62
62
|
},
|
|
63
63
|
computedItems() {
|