@bryntum/scheduler-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
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 Scheduler
|
|
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/BryntumScheduler.vue
CHANGED
|
@@ -328,6 +328,7 @@ export default {
|
|
|
328
328
|
onBeforeCellEditStart : { type : Function },
|
|
329
329
|
onBeforeCellRangeDelete : { type : Function },
|
|
330
330
|
onBeforeCellRangeEdit : { type : Function },
|
|
331
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
331
332
|
onBeforeColumnDragStart : { type : Function },
|
|
332
333
|
onBeforeColumnDropFinalize : { type : Function },
|
|
333
334
|
onBeforeColumnResize : { type : Function },
|
|
@@ -393,6 +394,7 @@ export default {
|
|
|
393
394
|
onCellMouseOver : { type : Function },
|
|
394
395
|
onCollapse : { type : Function },
|
|
395
396
|
onCollapseNode : { type : Function },
|
|
397
|
+
onColumnCollapseToggle : { type : Function },
|
|
396
398
|
onColumnDrag : { type : Function },
|
|
397
399
|
onColumnDragStart : { type : Function },
|
|
398
400
|
onColumnDrop : { type : Function },
|
|
@@ -952,6 +954,7 @@ export default {
|
|
|
952
954
|
'onBeforeCellEditStart',
|
|
953
955
|
'onBeforeCellRangeDelete',
|
|
954
956
|
'onBeforeCellRangeEdit',
|
|
957
|
+
'onBeforeColumnCollapseToggle',
|
|
955
958
|
'onBeforeColumnDragStart',
|
|
956
959
|
'onBeforeColumnDropFinalize',
|
|
957
960
|
'onBeforeColumnResize',
|
|
@@ -1017,6 +1020,7 @@ export default {
|
|
|
1017
1020
|
'onCellMouseOver',
|
|
1018
1021
|
'onCollapse',
|
|
1019
1022
|
'onCollapseNode',
|
|
1023
|
+
'onColumnCollapseToggle',
|
|
1020
1024
|
'onColumnDrag',
|
|
1021
1025
|
'onColumnDragStart',
|
|
1022
1026
|
'onColumnDrop',
|
|
@@ -1277,6 +1281,7 @@ export default {
|
|
|
1277
1281
|
'beforeCellEditStart',
|
|
1278
1282
|
'beforeCellRangeDelete',
|
|
1279
1283
|
'beforeCellRangeEdit',
|
|
1284
|
+
'beforeColumnCollapseToggle',
|
|
1280
1285
|
'beforeColumnDragStart',
|
|
1281
1286
|
'beforeColumnDropFinalize',
|
|
1282
1287
|
'beforeColumnResize',
|
|
@@ -1342,6 +1347,7 @@ export default {
|
|
|
1342
1347
|
'cellMouseOver',
|
|
1343
1348
|
'collapse',
|
|
1344
1349
|
'collapseNode',
|
|
1350
|
+
'columnCollapseToggle',
|
|
1345
1351
|
'columnDrag',
|
|
1346
1352
|
'columnDragStart',
|
|
1347
1353
|
'columnDrop',
|
|
@@ -327,6 +327,7 @@ export default {
|
|
|
327
327
|
onBeforeCellEditStart : { type : Function },
|
|
328
328
|
onBeforeCellRangeDelete : { type : Function },
|
|
329
329
|
onBeforeCellRangeEdit : { type : Function },
|
|
330
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
330
331
|
onBeforeColumnDragStart : { type : Function },
|
|
331
332
|
onBeforeColumnDropFinalize : { type : Function },
|
|
332
333
|
onBeforeColumnResize : { type : Function },
|
|
@@ -392,6 +393,7 @@ export default {
|
|
|
392
393
|
onCellMouseOver : { type : Function },
|
|
393
394
|
onCollapse : { type : Function },
|
|
394
395
|
onCollapseNode : { type : Function },
|
|
396
|
+
onColumnCollapseToggle : { type : Function },
|
|
395
397
|
onColumnDrag : { type : Function },
|
|
396
398
|
onColumnDragStart : { type : Function },
|
|
397
399
|
onColumnDrop : { type : Function },
|
|
@@ -950,6 +952,7 @@ export default {
|
|
|
950
952
|
'onBeforeCellEditStart',
|
|
951
953
|
'onBeforeCellRangeDelete',
|
|
952
954
|
'onBeforeCellRangeEdit',
|
|
955
|
+
'onBeforeColumnCollapseToggle',
|
|
953
956
|
'onBeforeColumnDragStart',
|
|
954
957
|
'onBeforeColumnDropFinalize',
|
|
955
958
|
'onBeforeColumnResize',
|
|
@@ -1015,6 +1018,7 @@ export default {
|
|
|
1015
1018
|
'onCellMouseOver',
|
|
1016
1019
|
'onCollapse',
|
|
1017
1020
|
'onCollapseNode',
|
|
1021
|
+
'onColumnCollapseToggle',
|
|
1018
1022
|
'onColumnDrag',
|
|
1019
1023
|
'onColumnDragStart',
|
|
1020
1024
|
'onColumnDrop',
|
|
@@ -1275,6 +1279,7 @@ export default {
|
|
|
1275
1279
|
'beforeCellEditStart',
|
|
1276
1280
|
'beforeCellRangeDelete',
|
|
1277
1281
|
'beforeCellRangeEdit',
|
|
1282
|
+
'beforeColumnCollapseToggle',
|
|
1278
1283
|
'beforeColumnDragStart',
|
|
1279
1284
|
'beforeColumnDropFinalize',
|
|
1280
1285
|
'beforeColumnResize',
|
|
@@ -1340,6 +1345,7 @@ export default {
|
|
|
1340
1345
|
'cellMouseOver',
|
|
1341
1346
|
'collapse',
|
|
1342
1347
|
'collapseNode',
|
|
1348
|
+
'columnCollapseToggle',
|
|
1343
1349
|
'columnDrag',
|
|
1344
1350
|
'columnDragStart',
|
|
1345
1351
|
'columnDrop',
|
|
@@ -247,6 +247,7 @@ export default {
|
|
|
247
247
|
onBeforeCellEditStart : { type : Function },
|
|
248
248
|
onBeforeCellRangeDelete : { type : Function },
|
|
249
249
|
onBeforeCellRangeEdit : { type : Function },
|
|
250
|
+
onBeforeColumnCollapseToggle : { type : Function },
|
|
250
251
|
onBeforeColumnDragStart : { type : Function },
|
|
251
252
|
onBeforeColumnDropFinalize : { type : Function },
|
|
252
253
|
onBeforeColumnResize : { type : Function },
|
|
@@ -293,6 +294,7 @@ export default {
|
|
|
293
294
|
onCellMouseOver : { type : Function },
|
|
294
295
|
onCollapse : { type : Function },
|
|
295
296
|
onCollapseNode : { type : Function },
|
|
297
|
+
onColumnCollapseToggle : { type : Function },
|
|
296
298
|
onColumnDrag : { type : Function },
|
|
297
299
|
onColumnDragStart : { type : Function },
|
|
298
300
|
onColumnDrop : { type : Function },
|
|
@@ -681,6 +683,7 @@ export default {
|
|
|
681
683
|
'onBeforeCellEditStart',
|
|
682
684
|
'onBeforeCellRangeDelete',
|
|
683
685
|
'onBeforeCellRangeEdit',
|
|
686
|
+
'onBeforeColumnCollapseToggle',
|
|
684
687
|
'onBeforeColumnDragStart',
|
|
685
688
|
'onBeforeColumnDropFinalize',
|
|
686
689
|
'onBeforeColumnResize',
|
|
@@ -727,6 +730,7 @@ export default {
|
|
|
727
730
|
'onCellMouseOver',
|
|
728
731
|
'onCollapse',
|
|
729
732
|
'onCollapseNode',
|
|
733
|
+
'onColumnCollapseToggle',
|
|
730
734
|
'onColumnDrag',
|
|
731
735
|
'onColumnDragStart',
|
|
732
736
|
'onColumnDrop',
|
|
@@ -884,6 +888,7 @@ export default {
|
|
|
884
888
|
'beforeCellEditStart',
|
|
885
889
|
'beforeCellRangeDelete',
|
|
886
890
|
'beforeCellRangeEdit',
|
|
891
|
+
'beforeColumnCollapseToggle',
|
|
887
892
|
'beforeColumnDragStart',
|
|
888
893
|
'beforeColumnDropFinalize',
|
|
889
894
|
'beforeColumnResize',
|
|
@@ -930,6 +935,7 @@ export default {
|
|
|
930
935
|
'cellMouseOver',
|
|
931
936
|
'collapse',
|
|
932
937
|
'collapseNode',
|
|
938
|
+
'columnCollapseToggle',
|
|
933
939
|
'columnDrag',
|
|
934
940
|
'columnDragStart',
|
|
935
941
|
'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',
|