@bryntum/scheduler-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/README.md +6 -6
- package/lib/chunks/C7ZFK2B7.js.map +1 -1
- package/lib/chunks/DerP_qo7.js.map +1 -1
- package/lib/chunks/DmQj0tBi.js.map +1 -1
- package/package.json +1 -1
- package/src/components/BryntumScheduler.vue +3 -3
- package/src/components/BryntumSchedulerBase.vue +3 -3
- package/src/components/BryntumTimelineHistogram.vue +3 -3
package/package.json
CHANGED
|
@@ -2214,7 +2214,7 @@ const emit = defineEmits<{
|
|
|
2214
2214
|
/**
|
|
2215
2215
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
2216
2216
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
2217
|
-
* case records should be "manually" removed after confirmation
|
|
2217
|
+
* case records should be "manually" removed after confirmation.
|
|
2218
2218
|
* ...
|
|
2219
2219
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
|
|
2220
2220
|
* @param {string} e Event name
|
|
@@ -2224,7 +2224,7 @@ const emit = defineEmits<{
|
|
|
2224
2224
|
* @param {object} params.params.event Event object
|
|
2225
2225
|
* @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
|
|
2226
2226
|
* @param {Scheduler.model.AssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
|
|
2227
|
-
* @param {object} params.params.event.context Additional removal context
|
|
2227
|
+
* @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.
|
|
2228
2228
|
* @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.
|
|
2229
2229
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
2230
2230
|
*/
|
|
@@ -2578,7 +2578,7 @@ const emit = defineEmits<{
|
|
|
2578
2578
|
* @param {object} params.params.event Event object
|
|
2579
2579
|
* @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
|
|
2580
2580
|
* @param {Scheduler.model.EventModel[]} params.params.event.eventRecords The records about to be deleted
|
|
2581
|
-
* @param {object} params.params.event.context Additional removal context
|
|
2581
|
+
* @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.
|
|
2582
2582
|
* @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.
|
|
2583
2583
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
2584
2584
|
*/
|
|
@@ -2213,7 +2213,7 @@ const emit = defineEmits<{
|
|
|
2213
2213
|
/**
|
|
2214
2214
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
2215
2215
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
2216
|
-
* case records should be "manually" removed after confirmation
|
|
2216
|
+
* case records should be "manually" removed after confirmation.
|
|
2217
2217
|
* ...
|
|
2218
2218
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
|
|
2219
2219
|
* @param {string} e Event name
|
|
@@ -2223,7 +2223,7 @@ const emit = defineEmits<{
|
|
|
2223
2223
|
* @param {object} params.params.event Event object
|
|
2224
2224
|
* @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
|
|
2225
2225
|
* @param {Scheduler.model.AssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
|
|
2226
|
-
* @param {object} params.params.event.context Additional removal context
|
|
2226
|
+
* @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.
|
|
2227
2227
|
* @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.
|
|
2228
2228
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
2229
2229
|
*/
|
|
@@ -2577,7 +2577,7 @@ const emit = defineEmits<{
|
|
|
2577
2577
|
* @param {object} params.params.event Event object
|
|
2578
2578
|
* @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
|
|
2579
2579
|
* @param {Scheduler.model.EventModel[]} params.params.event.eventRecords The records about to be deleted
|
|
2580
|
-
* @param {object} params.params.event.context Additional removal context
|
|
2580
|
+
* @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.
|
|
2581
2581
|
* @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.
|
|
2582
2582
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
2583
2583
|
*/
|
|
@@ -1607,7 +1607,7 @@ const emit = defineEmits<{
|
|
|
1607
1607
|
/**
|
|
1608
1608
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
1609
1609
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
1610
|
-
* case records should be "manually" removed after confirmation
|
|
1610
|
+
* case records should be "manually" removed after confirmation.
|
|
1611
1611
|
* ...
|
|
1612
1612
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
|
|
1613
1613
|
* @param {string} e Event name
|
|
@@ -1617,7 +1617,7 @@ const emit = defineEmits<{
|
|
|
1617
1617
|
* @param {object} params.params.event Event object
|
|
1618
1618
|
* @param {Scheduler.view.Scheduler} params.params.event.source The Scheduler instance
|
|
1619
1619
|
* @param {Scheduler.model.AssignmentModel[]} params.params.event.assignmentRecords The assignment records about to be deleted
|
|
1620
|
-
* @param {object} params.params.event.context Additional removal context
|
|
1620
|
+
* @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.
|
|
1621
1621
|
* @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.
|
|
1622
1622
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
1623
1623
|
*/
|
|
@@ -1784,7 +1784,7 @@ const emit = defineEmits<{
|
|
|
1784
1784
|
* @param {object} params.params.event Event object
|
|
1785
1785
|
* @param {Scheduler.view.Scheduler,any} params.params.event.source The Scheduler instance
|
|
1786
1786
|
* @param {Scheduler.model.EventModel[]} params.params.event.eventRecords The records about to be deleted
|
|
1787
|
-
* @param {object} params.params.event.context Additional removal context
|
|
1787
|
+
* @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.
|
|
1788
1788
|
* @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.
|
|
1789
1789
|
* @param {boolean} params.params.event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
1790
1790
|
*/
|