classcard-ui 0.2.849 → 0.2.850
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 +60 -54
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +60 -54
- 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/CTable/CTable.vue +7 -1
package/package.json
CHANGED
|
@@ -444,7 +444,6 @@ export default {
|
|
|
444
444
|
sortable.on("sortable:stop", (e) => this.rearrange(e.oldIndex, e.newIndex));
|
|
445
445
|
document.addEventListener("keydown", this.handleControlClick, true);
|
|
446
446
|
document.addEventListener("keyup", this.handleControlRelease, true);
|
|
447
|
-
this.$refs["my-table"].expandAll();
|
|
448
447
|
},
|
|
449
448
|
destroyed() {
|
|
450
449
|
//to remove the event listener
|
|
@@ -577,6 +576,13 @@ export default {
|
|
|
577
576
|
this.reorderedArray = newValue;
|
|
578
577
|
}
|
|
579
578
|
},
|
|
579
|
+
enableGrouping: {
|
|
580
|
+
handler(value) {
|
|
581
|
+
if (value == true) {
|
|
582
|
+
this.$refs["my-table"].expandAll();
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
},
|
|
580
586
|
},
|
|
581
587
|
};
|
|
582
588
|
</script>
|