@bryntum/schedulerpro-vue-3-thin 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-thin",
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",
@@ -1743,7 +1743,7 @@ const emit = defineEmits<{
1743
1743
  /**
1744
1744
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
1745
1745
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
1746
- * case records should be "manually" removed after confirmation:
1746
+ * case records should be "manually" removed after confirmation.
1747
1747
  * ...
1748
1748
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/ResourceHistogram#event-beforeAssignmentDelete)
1749
1749
  * @param {string} e Event name
@@ -1753,7 +1753,7 @@ const emit = defineEmits<{
1753
1753
  * @param {object} params.params.event Event object
1754
1754
  * @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
1755
1755
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
1756
- * @param {object} params.params.event.context Additional removal context:
1756
+ * @param {object} params.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.
1757
1757
  * @param {Function} params.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.
1758
1758
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1759
1759
  */
@@ -1920,7 +1920,7 @@ const emit = defineEmits<{
1920
1920
  * @param {object} params.params.event Event object
1921
1921
  * @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
1922
1922
  * @param {Scheduler.model.SchedulerEventModel[]} params.params.event.eventRecords The records about to be deleted
1923
- * @param {object} params.params.event.context Additional removal context:
1923
+ * @param {object} params.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.
1924
1924
  * @param {Function} params.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.
1925
1925
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1926
1926
  */
@@ -1729,7 +1729,7 @@ const emit = defineEmits<{
1729
1729
  /**
1730
1730
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
1731
1731
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
1732
- * case records should be "manually" removed after confirmation:
1732
+ * case records should be "manually" removed after confirmation.
1733
1733
  * ...
1734
1734
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/ResourceUtilization#event-beforeAssignmentDelete)
1735
1735
  * @param {string} e Event name
@@ -1739,7 +1739,7 @@ const emit = defineEmits<{
1739
1739
  * @param {object} params.params.event Event object
1740
1740
  * @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
1741
1741
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
1742
- * @param {object} params.params.event.context Additional removal context:
1742
+ * @param {object} params.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.
1743
1743
  * @param {Function} params.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.
1744
1744
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1745
1745
  */
@@ -1919,7 +1919,7 @@ const emit = defineEmits<{
1919
1919
  * @param {object} params.params.event Event object
1920
1920
  * @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
1921
1921
  * @param {Scheduler.model.SchedulerEventModel[]} params.params.event.eventRecords The records about to be deleted
1922
- * @param {object} params.params.event.context Additional removal context:
1922
+ * @param {object} params.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.
1923
1923
  * @param {Function} params.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.
1924
1924
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
1925
1925
  */
@@ -2370,7 +2370,7 @@ const emit = defineEmits<{
2370
2370
  /**
2371
2371
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2372
2372
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2373
- * case records should be "manually" removed after confirmation:
2373
+ * case records should be "manually" removed after confirmation.
2374
2374
  * ...
2375
2375
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/SchedulerPro#event-beforeAssignmentDelete)
2376
2376
  * @param {string} e Event name
@@ -2380,7 +2380,7 @@ const emit = defineEmits<{
2380
2380
  * @param {object} params.params.event Event object
2381
2381
  * @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
2382
2382
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
2383
- * @param {object} params.params.event.context Additional removal context:
2383
+ * @param {object} params.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.
2384
2384
  * @param {Function} params.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.
2385
2385
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2386
2386
  */
@@ -2734,7 +2734,7 @@ const emit = defineEmits<{
2734
2734
  * @param {object} params.params.event Event object
2735
2735
  * @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
2736
2736
  * @param {Scheduler.model.SchedulerEventModel[]} params.params.event.eventRecords The records about to be deleted
2737
- * @param {object} params.params.event.context Additional removal context:
2737
+ * @param {object} params.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.
2738
2738
  * @param {Function} params.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.
2739
2739
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2740
2740
  */
@@ -2369,7 +2369,7 @@ const emit = defineEmits<{
2369
2369
  /**
2370
2370
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2371
2371
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2372
- * case records should be "manually" removed after confirmation:
2372
+ * case records should be "manually" removed after confirmation.
2373
2373
  * ...
2374
2374
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/view/SchedulerProBase#event-beforeAssignmentDelete)
2375
2375
  * @param {string} e Event name
@@ -2379,7 +2379,7 @@ const emit = defineEmits<{
2379
2379
  * @param {object} params.params.event Event object
2380
2380
  * @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
2381
2381
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
2382
- * @param {object} params.params.event.context Additional removal context:
2382
+ * @param {object} params.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.
2383
2383
  * @param {Function} params.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.
2384
2384
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2385
2385
  */
@@ -2733,7 +2733,7 @@ const emit = defineEmits<{
2733
2733
  * @param {object} params.params.event Event object
2734
2734
  * @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
2735
2735
  * @param {Scheduler.model.SchedulerEventModel[]} params.params.event.eventRecords The records about to be deleted
2736
- * @param {object} params.params.event.context Additional removal context:
2736
+ * @param {object} params.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.
2737
2737
  * @param {Function} params.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.
2738
2738
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2739
2739
  */
@@ -2180,7 +2180,7 @@ const emit = defineEmits<{
2180
2180
  /**
2181
2181
  * Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
2182
2182
  * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
2183
- * case records should be "manually" removed after confirmation:
2183
+ * case records should be "manually" removed after confirmation.
2184
2184
  * ...
2185
2185
  * [View online docs...](https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/widget/Timeline#event-beforeAssignmentDelete)
2186
2186
  * @param {string} e Event name
@@ -2190,7 +2190,7 @@ const emit = defineEmits<{
2190
2190
  * @param {object} params.params.event Event object
2191
2191
  * @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
2192
2192
  * @param {Scheduler.model.SchedulerAssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
2193
- * @param {object} params.params.event.context Additional removal context:
2193
+ * @param {object} params.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.
2194
2194
  * @param {Function} params.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.
2195
2195
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2196
2196
  */
@@ -2544,7 +2544,7 @@ const emit = defineEmits<{
2544
2544
  * @param {object} params.params.event Event object
2545
2545
  * @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
2546
2546
  * @param {Scheduler.model.SchedulerEventModel[]} params.params.event.eventRecords The records about to be deleted
2547
- * @param {object} params.params.event.context Additional removal context:
2547
+ * @param {object} params.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.
2548
2548
  * @param {Function} params.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.
2549
2549
  * @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
2550
2550
  */