classcard-ui 0.2.340 → 0.2.341
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/classcard-ui.common.js +57 -65
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +57 -65
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CMultiselect/CMultiselect.vue +4 -7
package/package.json
CHANGED
|
@@ -223,16 +223,13 @@ export default {
|
|
|
223
223
|
onClose() {
|
|
224
224
|
this.observer.disconnect();
|
|
225
225
|
},
|
|
226
|
-
async infiniteScroll([{ isIntersecting
|
|
226
|
+
async infiniteScroll([{ isIntersecting }]) {
|
|
227
227
|
if (isIntersecting) {
|
|
228
|
-
|
|
229
|
-
const scrollTop = target.offsetParent.scrollTop;
|
|
230
|
-
this.emitLoadNextPage(ul, scrollTop);
|
|
231
|
-
this.scrollTop = scrollTop;
|
|
228
|
+
this.emitLoadNextPage();
|
|
232
229
|
}
|
|
233
230
|
},
|
|
234
|
-
emitLoadNextPage: debounce(function (
|
|
235
|
-
this.$emit("loadNextPage"
|
|
231
|
+
emitLoadNextPage: debounce(function () {
|
|
232
|
+
this.$emit("loadNextPage");
|
|
236
233
|
}, 300),
|
|
237
234
|
},
|
|
238
235
|
watch: {
|