@bryntum/scheduler-vue-3-thin 7.1.1 → 7.1.2
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 +249 -24
- package/lib/chunks/{Dn-AUaFP.js → Cz79kyyi.js} +3 -3
- package/lib/chunks/{Dn-AUaFP.js.map → Cz79kyyi.js.map} +1 -1
- package/lib/chunks/{TLD_h-7S.js → DDnFIp_o.js} +3 -3
- package/lib/chunks/DDnFIp_o.js.map +1 -0
- package/lib/chunks/{C3RoJ41H.js → dnU2pCDo.js} +3 -3
- package/lib/chunks/{C3RoJ41H.js.map → dnU2pCDo.js.map} +1 -1
- package/lib/components/BryntumScheduler.js +1 -1
- package/lib/components/BryntumSchedulerBase.js +1 -1
- package/lib/components/BryntumTimelineHistogram.js +1 -1
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/components/BryntumScheduler.vue +10 -6
- package/src/components/BryntumSchedulerBase.vue +10 -6
- package/src/components/BryntumTimelineHistogram.vue +5 -5
- package/lib/chunks/TLD_h-7S.js.map +0 -1
package/lib/index.js
CHANGED
|
@@ -3,10 +3,10 @@ import { _ as m } from "./chunks/COu_0bRA.js";
|
|
|
3
3
|
import { _ as s } from "./chunks/BD-Hg3lY.js";
|
|
4
4
|
import { _ as n } from "./chunks/ga9EWphl.js";
|
|
5
5
|
import { _ as f } from "./chunks/fiUsZcET.js";
|
|
6
|
-
import { _ as x } from "./chunks/
|
|
7
|
-
import { _ } from "./chunks/
|
|
6
|
+
import { _ as x } from "./chunks/dnU2pCDo.js";
|
|
7
|
+
import { _ } from "./chunks/Cz79kyyi.js";
|
|
8
8
|
import { _ as l } from "./chunks/C8aIKZog.js";
|
|
9
|
-
import { _ as i } from "./chunks/
|
|
9
|
+
import { _ as i } from "./chunks/DDnFIp_o.js";
|
|
10
10
|
import { _ as C } from "./chunks/V0ER-Huj.js";
|
|
11
11
|
import { _ as S } from "./chunks/BIDAJ9KI.js";
|
|
12
12
|
export {
|
package/package.json
CHANGED
|
@@ -2797,9 +2797,9 @@ const emit = defineEmits<{
|
|
|
2797
2797
|
* @param {string} params.e Event name
|
|
2798
2798
|
* @param {object} params.params Event parameters
|
|
2799
2799
|
* @param {object} params.params.event Event object
|
|
2800
|
-
* @param {
|
|
2800
|
+
* @param {PdfExportConfig} params.params.event.config Export config
|
|
2801
2801
|
*/
|
|
2802
|
-
(e: 'beforePdfExport', params: ((event: { config:
|
|
2802
|
+
(e: 'beforePdfExport', params: ((event: { config: PdfExportConfig }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
|
|
2803
2803
|
/**
|
|
2804
2804
|
* Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.
|
|
2805
2805
|
* @param {string} e Event name
|
|
@@ -3487,8 +3487,10 @@ const emit = defineEmits<{
|
|
|
3487
3487
|
* @param {Scheduler.model.TimeSpan} params.params.event.source The source task
|
|
3488
3488
|
* @param {Scheduler.model.TimeSpan} params.params.event.target The target task
|
|
3489
3489
|
* @param {number} params.params.event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)
|
|
3490
|
+
* @param {'start','end','top','bottom'} params.params.event.fromSide The side of the source task where the dependency starts
|
|
3491
|
+
* @param {'start','end','top','bottom'} params.params.event.toSide The side of the target task where the dependency ends
|
|
3490
3492
|
*/
|
|
3491
|
-
(e: 'dependencyValidationComplete', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string): void
|
|
3493
|
+
(e: 'dependencyValidationComplete', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => void)|string): void
|
|
3492
3494
|
/**
|
|
3493
3495
|
* Fired on the owning Scheduler/Gantt when asynchronous dependency validation starts
|
|
3494
3496
|
* @param {string} e Event name
|
|
@@ -3499,8 +3501,10 @@ const emit = defineEmits<{
|
|
|
3499
3501
|
* @param {Scheduler.model.TimeSpan} params.params.event.source The source task
|
|
3500
3502
|
* @param {Scheduler.model.TimeSpan} params.params.event.target The target task
|
|
3501
3503
|
* @param {number} params.params.event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)
|
|
3504
|
+
* @param {'start','end','top','bottom'} params.params.event.fromSide The side of the source task where the dependency starts
|
|
3505
|
+
* @param {'start','end','top','bottom'} params.params.event.toSide The side of the target task where the dependency ends
|
|
3502
3506
|
*/
|
|
3503
|
-
(e: 'dependencyValidationStart', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string): void
|
|
3507
|
+
(e: 'dependencyValidationStart', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => void)|string): void
|
|
3504
3508
|
/**
|
|
3505
3509
|
* Fires when an object is destroyed.
|
|
3506
3510
|
* @param {string} e Event name
|
|
@@ -5678,9 +5682,7 @@ const widgetData = {
|
|
|
5678
5682
|
'managedEventSizing',
|
|
5679
5683
|
'maskDefaults',
|
|
5680
5684
|
'masked',
|
|
5681
|
-
'maxDate',
|
|
5682
5685
|
'maxTimeAxisUnit',
|
|
5683
|
-
'minDate',
|
|
5684
5686
|
'mode',
|
|
5685
5687
|
'monitorResize',
|
|
5686
5688
|
'multiEventSelect',
|
|
@@ -5800,6 +5802,7 @@ const widgetData = {
|
|
|
5800
5802
|
'lazyLoadingIndicator',
|
|
5801
5803
|
'longPressTime',
|
|
5802
5804
|
'margin',
|
|
5805
|
+
'maxDate',
|
|
5803
5806
|
'maxHeight',
|
|
5804
5807
|
'maxWidth',
|
|
5805
5808
|
'maxZoomLevel',
|
|
@@ -5807,6 +5810,7 @@ const widgetData = {
|
|
|
5807
5810
|
'milestoneCharWidth',
|
|
5808
5811
|
'milestoneLayoutMode',
|
|
5809
5812
|
'milestoneTextPosition',
|
|
5813
|
+
'minDate',
|
|
5810
5814
|
'minHeight',
|
|
5811
5815
|
'minPackSize',
|
|
5812
5816
|
'minWidth',
|
|
@@ -2796,9 +2796,9 @@ const emit = defineEmits<{
|
|
|
2796
2796
|
* @param {string} params.e Event name
|
|
2797
2797
|
* @param {object} params.params Event parameters
|
|
2798
2798
|
* @param {object} params.params.event Event object
|
|
2799
|
-
* @param {
|
|
2799
|
+
* @param {PdfExportConfig} params.params.event.config Export config
|
|
2800
2800
|
*/
|
|
2801
|
-
(e: 'beforePdfExport', params: ((event: { config:
|
|
2801
|
+
(e: 'beforePdfExport', params: ((event: { config: PdfExportConfig }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
|
|
2802
2802
|
/**
|
|
2803
2803
|
* Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.
|
|
2804
2804
|
* @param {string} e Event name
|
|
@@ -3486,8 +3486,10 @@ const emit = defineEmits<{
|
|
|
3486
3486
|
* @param {Scheduler.model.TimeSpan} params.params.event.source The source task
|
|
3487
3487
|
* @param {Scheduler.model.TimeSpan} params.params.event.target The target task
|
|
3488
3488
|
* @param {number} params.params.event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)
|
|
3489
|
+
* @param {'start','end','top','bottom'} params.params.event.fromSide The side of the source task where the dependency starts
|
|
3490
|
+
* @param {'start','end','top','bottom'} params.params.event.toSide The side of the target task where the dependency ends
|
|
3489
3491
|
*/
|
|
3490
|
-
(e: 'dependencyValidationComplete', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string): void
|
|
3492
|
+
(e: 'dependencyValidationComplete', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => void)|string): void
|
|
3491
3493
|
/**
|
|
3492
3494
|
* Fired on the owning Scheduler/Gantt when asynchronous dependency validation starts
|
|
3493
3495
|
* @param {string} e Event name
|
|
@@ -3498,8 +3500,10 @@ const emit = defineEmits<{
|
|
|
3498
3500
|
* @param {Scheduler.model.TimeSpan} params.params.event.source The source task
|
|
3499
3501
|
* @param {Scheduler.model.TimeSpan} params.params.event.target The target task
|
|
3500
3502
|
* @param {number} params.params.event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)
|
|
3503
|
+
* @param {'start','end','top','bottom'} params.params.event.fromSide The side of the source task where the dependency starts
|
|
3504
|
+
* @param {'start','end','top','bottom'} params.params.event.toSide The side of the target task where the dependency ends
|
|
3501
3505
|
*/
|
|
3502
|
-
(e: 'dependencyValidationStart', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string): void
|
|
3506
|
+
(e: 'dependencyValidationStart', params: ((event: { source: TimeSpan, target: TimeSpan, dependencyType: number, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => void)|string): void
|
|
3503
3507
|
/**
|
|
3504
3508
|
* Fires when an object is destroyed.
|
|
3505
3509
|
* @param {string} e Event name
|
|
@@ -5677,9 +5681,7 @@ const widgetData = {
|
|
|
5677
5681
|
'managedEventSizing',
|
|
5678
5682
|
'maskDefaults',
|
|
5679
5683
|
'masked',
|
|
5680
|
-
'maxDate',
|
|
5681
5684
|
'maxTimeAxisUnit',
|
|
5682
|
-
'minDate',
|
|
5683
5685
|
'mode',
|
|
5684
5686
|
'monitorResize',
|
|
5685
5687
|
'multiEventSelect',
|
|
@@ -5798,6 +5800,7 @@ const widgetData = {
|
|
|
5798
5800
|
'lazyLoadingIndicator',
|
|
5799
5801
|
'longPressTime',
|
|
5800
5802
|
'margin',
|
|
5803
|
+
'maxDate',
|
|
5801
5804
|
'maxHeight',
|
|
5802
5805
|
'maxWidth',
|
|
5803
5806
|
'maxZoomLevel',
|
|
@@ -5805,6 +5808,7 @@ const widgetData = {
|
|
|
5805
5808
|
'milestoneCharWidth',
|
|
5806
5809
|
'milestoneLayoutMode',
|
|
5807
5810
|
'milestoneTextPosition',
|
|
5811
|
+
'minDate',
|
|
5808
5812
|
'minHeight',
|
|
5809
5813
|
'minPackSize',
|
|
5810
5814
|
'minWidth',
|
|
@@ -35,7 +35,7 @@ import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, to
|
|
|
35
35
|
|
|
36
36
|
import type { AjaxStore, AjaxStoreConfig, Base, Container, DomConfig, DurationUnit, FormulaProviderConfig, Histogram, HistogramConfig, HistogramSeries, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, Tooltip, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
37
37
|
import type { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, EmptyTextDomConfig, ExcelExporter as GridExcelExporter, ExcelExporterConfig as GridExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, HeaderMenu, HeaderMenuConfig, LockRows as GridLockRows, LockRowsConfig as GridLockRowsConfig, MergeCells, MergeCellsConfig, PdfExport as GridPdfExport, PdfExportConfig as GridPdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print as GridPrint, PrintConfig as GridPrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowResize as GridRowResize, RowResizeConfig as GridRowResizeConfig, Search, SearchConfig, Sort, SortConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
38
|
-
import type { AssignmentModel, ColumnLines, ColumnLinesConfig, SchedulerContainerItemConfig, EventColor, EventModel, SchedulerColumnConfig, GroupSummary, GroupSummaryConfig, HeaderZoom, HeaderZoomConfig, HistogramRenderData, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceMenu, ResourceMenuConfig, ResourceModel, ResourceTimeRangeModel, ResourceTimeRanges, ResourceTimeRangesConfig, RowReorder, RowReorderConfig, ScaleColumnConfig, ScalePoint, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, Split, SplitConfig, Summary, SummaryConfig, TimeAxis, TimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSpan, TimelineBase, TimelineContext, TimelineHistogramListeners, VerticalTimeAxisColumn, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';
|
|
38
|
+
import type { AssignmentModel, ColumnLines, ColumnLinesConfig, SchedulerContainerItemConfig, EventColor, EventModel, SchedulerColumnConfig, GroupSummary, GroupSummaryConfig, HeaderZoom, HeaderZoomConfig, HistogramRenderData, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PdfExportConfig, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceMenu, ResourceMenuConfig, ResourceModel, ResourceTimeRangeModel, ResourceTimeRanges, ResourceTimeRangesConfig, RowReorder, RowReorderConfig, ScaleColumnConfig, ScalePoint, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, Split, SplitConfig, Summary, SummaryConfig, TimeAxis, TimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSpan, TimelineBase, TimelineContext, TimelineHistogramListeners, VerticalTimeAxisColumn, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';
|
|
39
39
|
import { TimelineHistogram } from '@bryntum/scheduler-thin';
|
|
40
40
|
|
|
41
41
|
import { WrapperHelper } from '../helper/WrapperHelper';
|
|
@@ -1874,9 +1874,9 @@ const emit = defineEmits<{
|
|
|
1874
1874
|
* @param {string} params.e Event name
|
|
1875
1875
|
* @param {object} params.params Event parameters
|
|
1876
1876
|
* @param {object} params.params.event Event object
|
|
1877
|
-
* @param {
|
|
1877
|
+
* @param {PdfExportConfig} params.params.event.config Export config
|
|
1878
1878
|
*/
|
|
1879
|
-
(e: 'beforePdfExport', params: ((event: { config:
|
|
1879
|
+
(e: 'beforePdfExport', params: ((event: { config: PdfExportConfig }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
|
|
1880
1880
|
/**
|
|
1881
1881
|
* Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.
|
|
1882
1882
|
* @param {string} e Event name
|
|
@@ -3699,9 +3699,7 @@ const widgetData = {
|
|
|
3699
3699
|
'managedEventSizing',
|
|
3700
3700
|
'maskDefaults',
|
|
3701
3701
|
'masked',
|
|
3702
|
-
'maxDate',
|
|
3703
3702
|
'maxTimeAxisUnit',
|
|
3704
|
-
'minDate',
|
|
3705
3703
|
'monitorResize',
|
|
3706
3704
|
'owner',
|
|
3707
3705
|
'partner',
|
|
@@ -3786,9 +3784,11 @@ const widgetData = {
|
|
|
3786
3784
|
'labelPosition',
|
|
3787
3785
|
'longPressTime',
|
|
3788
3786
|
'margin',
|
|
3787
|
+
'maxDate',
|
|
3789
3788
|
'maxHeight',
|
|
3790
3789
|
'maxWidth',
|
|
3791
3790
|
'maxZoomLevel',
|
|
3791
|
+
'minDate',
|
|
3792
3792
|
'minHeight',
|
|
3793
3793
|
'minWidth',
|
|
3794
3794
|
'minZoomLevel',
|