@bryntum/grid-vue 7.1.2 → 7.1.3
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/README.md +12 -6
- package/package.json +1 -1
- package/src/BryntumGrid.vue +6 -0
- package/src/BryntumGridBase.vue +6 -0
- package/src/BryntumTreeGrid.vue +6 -0
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<br>
|
|
2
|
+
<br>
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<a href="https://bryntum.com/" rel="noopener" target="_blank">
|
|
6
|
+
<img width="350" src="https://bryntum.com/resources/bryntum_logo_blue.svg" alt="Bryntum logo">
|
|
7
|
+
</a>
|
|
8
|
+
     
|
|
9
|
+
<img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/vue.svg" alt="Vue" width="100">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<br>
|
|
7
13
|
|
|
8
14
|
# Vue 2 wrapper for Bryntum Grid
|
|
9
15
|
|
package/package.json
CHANGED
package/src/BryntumGrid.vue
CHANGED
|
@@ -178,6 +178,7 @@ export default {
|
|
|
178
178
|
onBeforeCellEditStart : { type : Function },
|
|
179
179
|
onBeforeCellRangeDelete : { type : Function },
|
|
180
180
|
onBeforeCellRangeEdit : { type : Function },
|
|
181
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
181
182
|
onBeforeColumnDragStart : { type : Function },
|
|
182
183
|
onBeforeColumnDropFinalize : { type : Function },
|
|
183
184
|
onBeforeColumnResize : { type : Function },
|
|
@@ -218,6 +219,7 @@ export default {
|
|
|
218
219
|
onCellMouseOver : { type : Function },
|
|
219
220
|
onCollapse : { type : Function },
|
|
220
221
|
onCollapseNode : { type : Function },
|
|
222
|
+
onColumnCollapseToggle : { type : Function },
|
|
221
223
|
onColumnDrag : { type : Function },
|
|
222
224
|
onColumnDragStart : { type : Function },
|
|
223
225
|
onColumnDrop : { type : Function },
|
|
@@ -507,6 +509,7 @@ export default {
|
|
|
507
509
|
'onBeforeCellEditStart',
|
|
508
510
|
'onBeforeCellRangeDelete',
|
|
509
511
|
'onBeforeCellRangeEdit',
|
|
512
|
+
'onBeforeColumnCollapseToggle',
|
|
510
513
|
'onBeforeColumnDragStart',
|
|
511
514
|
'onBeforeColumnDropFinalize',
|
|
512
515
|
'onBeforeColumnResize',
|
|
@@ -547,6 +550,7 @@ export default {
|
|
|
547
550
|
'onCellMouseOver',
|
|
548
551
|
'onCollapse',
|
|
549
552
|
'onCollapseNode',
|
|
553
|
+
'onColumnCollapseToggle',
|
|
550
554
|
'onColumnDrag',
|
|
551
555
|
'onColumnDragStart',
|
|
552
556
|
'onColumnDrop',
|
|
@@ -656,6 +660,7 @@ export default {
|
|
|
656
660
|
'beforeCellEditStart',
|
|
657
661
|
'beforeCellRangeDelete',
|
|
658
662
|
'beforeCellRangeEdit',
|
|
663
|
+
'beforeColumnCollapseToggle',
|
|
659
664
|
'beforeColumnDragStart',
|
|
660
665
|
'beforeColumnDropFinalize',
|
|
661
666
|
'beforeColumnResize',
|
|
@@ -696,6 +701,7 @@ export default {
|
|
|
696
701
|
'cellMouseOver',
|
|
697
702
|
'collapse',
|
|
698
703
|
'collapseNode',
|
|
704
|
+
'columnCollapseToggle',
|
|
699
705
|
'columnDrag',
|
|
700
706
|
'columnDragStart',
|
|
701
707
|
'columnDrop',
|
package/src/BryntumGridBase.vue
CHANGED
|
@@ -177,6 +177,7 @@ export default {
|
|
|
177
177
|
onBeforeCellEditStart : { type : Function },
|
|
178
178
|
onBeforeCellRangeDelete : { type : Function },
|
|
179
179
|
onBeforeCellRangeEdit : { type : Function },
|
|
180
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
180
181
|
onBeforeColumnDragStart : { type : Function },
|
|
181
182
|
onBeforeColumnDropFinalize : { type : Function },
|
|
182
183
|
onBeforeColumnResize : { type : Function },
|
|
@@ -217,6 +218,7 @@ export default {
|
|
|
217
218
|
onCellMouseOver : { type : Function },
|
|
218
219
|
onCollapse : { type : Function },
|
|
219
220
|
onCollapseNode : { type : Function },
|
|
221
|
+
onColumnCollapseToggle : { type : Function },
|
|
220
222
|
onColumnDrag : { type : Function },
|
|
221
223
|
onColumnDragStart : { type : Function },
|
|
222
224
|
onColumnDrop : { type : Function },
|
|
@@ -504,6 +506,7 @@ export default {
|
|
|
504
506
|
'onBeforeCellEditStart',
|
|
505
507
|
'onBeforeCellRangeDelete',
|
|
506
508
|
'onBeforeCellRangeEdit',
|
|
509
|
+
'onBeforeColumnCollapseToggle',
|
|
507
510
|
'onBeforeColumnDragStart',
|
|
508
511
|
'onBeforeColumnDropFinalize',
|
|
509
512
|
'onBeforeColumnResize',
|
|
@@ -544,6 +547,7 @@ export default {
|
|
|
544
547
|
'onCellMouseOver',
|
|
545
548
|
'onCollapse',
|
|
546
549
|
'onCollapseNode',
|
|
550
|
+
'onColumnCollapseToggle',
|
|
547
551
|
'onColumnDrag',
|
|
548
552
|
'onColumnDragStart',
|
|
549
553
|
'onColumnDrop',
|
|
@@ -653,6 +657,7 @@ export default {
|
|
|
653
657
|
'beforeCellEditStart',
|
|
654
658
|
'beforeCellRangeDelete',
|
|
655
659
|
'beforeCellRangeEdit',
|
|
660
|
+
'beforeColumnCollapseToggle',
|
|
656
661
|
'beforeColumnDragStart',
|
|
657
662
|
'beforeColumnDropFinalize',
|
|
658
663
|
'beforeColumnResize',
|
|
@@ -693,6 +698,7 @@ export default {
|
|
|
693
698
|
'cellMouseOver',
|
|
694
699
|
'collapse',
|
|
695
700
|
'collapseNode',
|
|
701
|
+
'columnCollapseToggle',
|
|
696
702
|
'columnDrag',
|
|
697
703
|
'columnDragStart',
|
|
698
704
|
'columnDrop',
|
package/src/BryntumTreeGrid.vue
CHANGED
|
@@ -178,6 +178,7 @@ export default {
|
|
|
178
178
|
onBeforeCellEditStart : { type : Function },
|
|
179
179
|
onBeforeCellRangeDelete : { type : Function },
|
|
180
180
|
onBeforeCellRangeEdit : { type : Function },
|
|
181
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
181
182
|
onBeforeColumnDragStart : { type : Function },
|
|
182
183
|
onBeforeColumnDropFinalize : { type : Function },
|
|
183
184
|
onBeforeColumnResize : { type : Function },
|
|
@@ -218,6 +219,7 @@ export default {
|
|
|
218
219
|
onCellMouseOver : { type : Function },
|
|
219
220
|
onCollapse : { type : Function },
|
|
220
221
|
onCollapseNode : { type : Function },
|
|
222
|
+
onColumnCollapseToggle : { type : Function },
|
|
221
223
|
onColumnDrag : { type : Function },
|
|
222
224
|
onColumnDragStart : { type : Function },
|
|
223
225
|
onColumnDrop : { type : Function },
|
|
@@ -506,6 +508,7 @@ export default {
|
|
|
506
508
|
'onBeforeCellEditStart',
|
|
507
509
|
'onBeforeCellRangeDelete',
|
|
508
510
|
'onBeforeCellRangeEdit',
|
|
511
|
+
'onBeforeColumnCollapseToggle',
|
|
509
512
|
'onBeforeColumnDragStart',
|
|
510
513
|
'onBeforeColumnDropFinalize',
|
|
511
514
|
'onBeforeColumnResize',
|
|
@@ -546,6 +549,7 @@ export default {
|
|
|
546
549
|
'onCellMouseOver',
|
|
547
550
|
'onCollapse',
|
|
548
551
|
'onCollapseNode',
|
|
552
|
+
'onColumnCollapseToggle',
|
|
549
553
|
'onColumnDrag',
|
|
550
554
|
'onColumnDragStart',
|
|
551
555
|
'onColumnDrop',
|
|
@@ -655,6 +659,7 @@ export default {
|
|
|
655
659
|
'beforeCellEditStart',
|
|
656
660
|
'beforeCellRangeDelete',
|
|
657
661
|
'beforeCellRangeEdit',
|
|
662
|
+
'beforeColumnCollapseToggle',
|
|
658
663
|
'beforeColumnDragStart',
|
|
659
664
|
'beforeColumnDropFinalize',
|
|
660
665
|
'beforeColumnResize',
|
|
@@ -695,6 +700,7 @@ export default {
|
|
|
695
700
|
'cellMouseOver',
|
|
696
701
|
'collapse',
|
|
697
702
|
'collapseNode',
|
|
703
|
+
'columnCollapseToggle',
|
|
698
704
|
'columnDrag',
|
|
699
705
|
'columnDragStart',
|
|
700
706
|
'columnDrop',
|