@bryntum/schedulerpro-vue-3 7.2.3 → 7.2.4

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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bryntum/schedulerpro-vue-3",
3
- "version": "7.2.3",
3
+ "version": "7.2.4",
4
4
  "description": "Vue 3 wrappers for Bryntum Scheduler Pro JavaScript component",
5
5
  "keywords": [
6
6
  "bryntum",
@@ -1740,7 +1740,7 @@ const emit = defineEmits<{
1740
1740
  /**
1741
1741
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
1742
1742
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
1743
- * case records should be "manually" removed after confirmation:
1743
+ * case records should be "manually" removed after confirmation.
1744
1744
  * ...
1745
1745
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/ResourceHistogram#event-beforeAssignmentDelete)
1746
1746
  * @param {string} e Event name
@@ -1748,7 +1748,7 @@ const emit = defineEmits<{
1748
1748
  * @param {object} params.event Event object
1749
1749
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
1750
1750
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
1751
- * @param {object} params.event.context Additional removal context:
1751
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1752
1752
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1753
1753
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1754
1754
  */
@@ -1889,7 +1889,7 @@ const emit = defineEmits<{
1889
1889
  * @param {object} params.event Event object
1890
1890
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
1891
1891
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
1892
- * @param {object} params.event.context Additional removal context:
1892
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1893
1893
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1894
1894
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1895
1895
  */
@@ -1726,7 +1726,7 @@ const emit = defineEmits<{
1726
1726
  /**
1727
1727
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
1728
1728
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
1729
- * case records should be "manually" removed after confirmation:
1729
+ * case records should be "manually" removed after confirmation.
1730
1730
  * ...
1731
1731
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/ResourceUtilization#event-beforeAssignmentDelete)
1732
1732
  * @param {string} e Event name
@@ -1734,7 +1734,7 @@ const emit = defineEmits<{
1734
1734
  * @param {object} params.event Event object
1735
1735
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
1736
1736
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
1737
- * @param {object} params.event.context Additional removal context:
1737
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1738
1738
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1739
1739
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1740
1740
  */
@@ -1886,7 +1886,7 @@ const emit = defineEmits<{
1886
1886
  * @param {object} params.event Event object
1887
1887
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
1888
1888
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
1889
- * @param {object} params.event.context Additional removal context:
1889
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1890
1890
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1891
1891
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1892
1892
  */
@@ -2196,7 +2196,7 @@ const emit = defineEmits<{
2196
2196
  /**
2197
2197
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2198
2198
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2199
- * case records should be "manually" removed after confirmation:
2199
+ * case records should be "manually" removed after confirmation.
2200
2200
  * ...
2201
2201
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
2202
2202
  * @param {string} e Event name
@@ -2204,7 +2204,7 @@ const emit = defineEmits<{
2204
2204
  * @param {object} params.event Event object
2205
2205
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
2206
2206
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
2207
- * @param {object} params.event.context Additional removal context:
2207
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2208
2208
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2209
2209
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2210
2210
  */
@@ -2506,7 +2506,7 @@ const emit = defineEmits<{
2506
2506
  * @param {object} params.event Event object
2507
2507
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
2508
2508
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
2509
- * @param {object} params.event.context Additional removal context:
2509
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2510
2510
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2511
2511
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2512
2512
  */
@@ -2195,7 +2195,7 @@ const emit = defineEmits<{
2195
2195
  /**
2196
2196
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2197
2197
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2198
- * case records should be "manually" removed after confirmation:
2198
+ * case records should be "manually" removed after confirmation.
2199
2199
  * ...
2200
2200
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
2201
2201
  * @param {string} e Event name
@@ -2203,7 +2203,7 @@ const emit = defineEmits<{
2203
2203
  * @param {object} params.event Event object
2204
2204
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
2205
2205
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
2206
- * @param {object} params.event.context Additional removal context:
2206
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2207
2207
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2208
2208
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2209
2209
  */
@@ -2505,7 +2505,7 @@ const emit = defineEmits<{
2505
2505
  * @param {object} params.event Event object
2506
2506
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
2507
2507
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
2508
- * @param {object} params.event.context Additional removal context:
2508
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2509
2509
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2510
2510
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2511
2511
  */
@@ -2345,7 +2345,7 @@ const emit = defineEmits<{
2345
2345
  /**
2346
2346
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2347
2347
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2348
- * case records should be "manually" removed after confirmation:
2348
+ * case records should be "manually" removed after confirmation.
2349
2349
  * ...
2350
2350
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/SchedulerPro#event-beforeAssignmentDelete)
2351
2351
  * @param {string} e Event name
@@ -2353,7 +2353,7 @@ const emit = defineEmits<{
2353
2353
  * @param {object} params.event Event object
2354
2354
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
2355
2355
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
2356
- * @param {object} params.event.context Additional removal context:
2356
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2357
2357
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2358
2358
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2359
2359
  */
@@ -2655,7 +2655,7 @@ const emit = defineEmits<{
2655
2655
  * @param {object} params.event Event object
2656
2656
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
2657
2657
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
2658
- * @param {object} params.event.context Additional removal context:
2658
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2659
2659
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2660
2660
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2661
2661
  */
@@ -2344,7 +2344,7 @@ const emit = defineEmits<{
2344
2344
  /**
2345
2345
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2346
2346
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2347
- * case records should be "manually" removed after confirmation:
2347
+ * case records should be "manually" removed after confirmation.
2348
2348
  * ...
2349
2349
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/SchedulerProBase#event-beforeAssignmentDelete)
2350
2350
  * @param {string} e Event name
@@ -2352,7 +2352,7 @@ const emit = defineEmits<{
2352
2352
  * @param {object} params.event Event object
2353
2353
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
2354
2354
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
2355
- * @param {object} params.event.context Additional removal context:
2355
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2356
2356
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2357
2357
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2358
2358
  */
@@ -2654,7 +2654,7 @@ const emit = defineEmits<{
2654
2654
  * @param {object} params.event Event object
2655
2655
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
2656
2656
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
2657
- * @param {object} params.event.context Additional removal context:
2657
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2658
2658
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2659
2659
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2660
2660
  */
@@ -2161,7 +2161,7 @@ const emit = defineEmits<{
2161
2161
  /**
2162
2162
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2163
2163
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2164
- * case records should be "manually" removed after confirmation:
2164
+ * case records should be "manually" removed after confirmation.
2165
2165
  * ...
2166
2166
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/widget/Timeline#event-beforeAssignmentDelete)
2167
2167
  * @param {string} e Event name
@@ -2169,7 +2169,7 @@ const emit = defineEmits<{
2169
2169
  * @param {object} params.event Event object
2170
2170
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
2171
2171
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
2172
- * @param {object} params.event.context Additional removal context:
2172
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2173
2173
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2174
2174
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2175
2175
  */
@@ -2471,7 +2471,7 @@ const emit = defineEmits<{
2471
2471
  * @param {object} params.event Event object
2472
2472
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
2473
2473
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
2474
- * @param {object} params.event.context Additional removal context:
2474
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
2475
2475
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
2476
2476
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2477
2477
  */
@@ -1605,7 +1605,7 @@ const emit = defineEmits<{
1605
1605
  /**
1606
1606
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
1607
1607
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
1608
- * case records should be "manually" removed after confirmation:
1608
+ * case records should be "manually" removed after confirmation.
1609
1609
  * ...
1610
1610
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
1611
1611
  * @param {string} e Event name
@@ -1613,7 +1613,7 @@ const emit = defineEmits<{
1613
1613
  * @param {object} params.event Event object
1614
1614
  * @param {Scheduler.view.Scheduler} params.event.source The Scheduler instance
1615
1615
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.event.assignmentRecords The assignment records about to be deleted
1616
- * @param {object} params.event.context Additional removal context:
1616
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1617
1617
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1618
1618
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1619
1619
  */
@@ -1754,7 +1754,7 @@ const emit = defineEmits<{
1754
1754
  * @param {object} params.event Event object
1755
1755
  * @param {Scheduler.view.Scheduler,any} params.event.source The Scheduler instance
1756
1756
  * @param {Scheduler.model.SchedulerEventModel[]} params.event.eventRecords The records about to be deleted
1757
- * @param {object} params.event.context Additional removal context:
1757
+ * @param {object} params.event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
1758
1758
  * @param {Function} params.event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
1759
1759
  * @param {boolean} params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1760
1760
  */