@bryntum/scheduler-vue-3-thin 7.3.1 → 7.3.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 +6 -6
- package/lib/chunks/{R69sJLmF.js → 5GdIc4FM.js} +2 -2
- package/lib/chunks/5GdIc4FM.js.map +1 -0
- package/lib/chunks/{COFzBhB8.js → B6aQqhFM.js} +2 -2
- package/lib/chunks/B6aQqhFM.js.map +1 -0
- package/lib/chunks/{eUISgYXE.js → BTLisl7r.js} +2 -2
- package/lib/chunks/BTLisl7r.js.map +1 -0
- package/lib/chunks/{LNqNYJck.js → BfjWO3kK.js} +2 -2
- package/lib/chunks/BfjWO3kK.js.map +1 -0
- package/lib/chunks/{BTSObfAz.js → CHeY7FaY.js} +2 -2
- package/lib/chunks/CHeY7FaY.js.map +1 -0
- package/lib/chunks/{t8aiH3XL.js → DDmSlw_T.js} +2 -2
- package/lib/chunks/DDmSlw_T.js.map +1 -0
- package/lib/chunks/{DJSlX0qP.js → DmIsgejh.js} +2 -1
- package/lib/chunks/DmIsgejh.js.map +1 -0
- package/lib/chunks/{WykRcMCN.js → LMHMtS2k.js} +2 -2
- package/lib/chunks/LMHMtS2k.js.map +1 -0
- package/lib/chunks/{CCTV8qn0.js → VDhd_o2j.js} +2 -1
- package/lib/chunks/VDhd_o2j.js.map +1 -0
- package/lib/chunks/{BXIuEgYD.js → i2tQo2S7.js} +2 -2
- package/lib/chunks/i2tQo2S7.js.map +1 -0
- package/lib/chunks/{DP61St-u.js → nAc8iihR.js} +2 -1
- package/lib/chunks/nAc8iihR.js.map +1 -0
- package/lib/components/BryntumEventColorField.js +1 -1
- package/lib/components/BryntumProjectCombo.js +1 -1
- package/lib/components/BryntumResourceCombo.js +1 -1
- package/lib/components/BryntumResourceFilter.js +1 -1
- package/lib/components/BryntumScheduler.js +1 -1
- package/lib/components/BryntumSchedulerBase.js +1 -1
- package/lib/components/BryntumSchedulerDatePicker.js +1 -1
- package/lib/components/BryntumTimeZoomSlider.js +1 -1
- package/lib/components/BryntumTimelineHistogram.js +1 -1
- package/lib/components/BryntumUndoRedo.js +1 -1
- package/lib/components/BryntumViewPresetCombo.js +1 -1
- package/lib/index.js +11 -11
- package/license.pdf +0 -0
- package/package.json +1 -1
- package/src/components/BryntumEventColorField.vue +12 -5
- package/src/components/BryntumEventColorFieldProps.ts +11 -4
- package/src/components/BryntumProjectCombo.vue +13 -6
- package/src/components/BryntumProjectComboProps.ts +12 -5
- package/src/components/BryntumResourceCombo.vue +12 -5
- package/src/components/BryntumResourceComboProps.ts +11 -4
- package/src/components/BryntumResourceFilter.vue +13 -6
- package/src/components/BryntumResourceFilterProps.ts +12 -5
- package/src/components/BryntumScheduler.vue +9 -2
- package/src/components/BryntumSchedulerBase.vue +9 -2
- package/src/components/BryntumSchedulerBaseProps.ts +8 -2
- package/src/components/BryntumSchedulerDatePicker.vue +13 -6
- package/src/components/BryntumSchedulerDatePickerProps.ts +12 -5
- package/src/components/BryntumSchedulerProps.ts +8 -2
- package/src/components/BryntumTimeZoomSlider.vue +12 -5
- package/src/components/BryntumTimeZoomSliderProps.ts +11 -4
- package/src/components/BryntumTimelineHistogram.vue +8 -1
- package/src/components/BryntumTimelineHistogramProps.ts +7 -1
- package/src/components/BryntumUndoRedo.vue +14 -7
- package/src/components/BryntumUndoRedoProps.ts +13 -6
- package/src/components/BryntumViewPresetCombo.vue +12 -5
- package/src/components/BryntumViewPresetComboProps.ts +11 -4
- package/lib/chunks/BTSObfAz.js.map +0 -1
- package/lib/chunks/BXIuEgYD.js.map +0 -1
- package/lib/chunks/CCTV8qn0.js.map +0 -1
- package/lib/chunks/COFzBhB8.js.map +0 -1
- package/lib/chunks/DJSlX0qP.js.map +0 -1
- package/lib/chunks/DP61St-u.js.map +0 -1
- package/lib/chunks/LNqNYJck.js.map +0 -1
- package/lib/chunks/R69sJLmF.js.map +0 -1
- package/lib/chunks/WykRcMCN.js.map +0 -1
- package/lib/chunks/eUISgYXE.js.map +0 -1
- package/lib/chunks/t8aiH3XL.js.map +0 -1
|
@@ -38,6 +38,8 @@ export declare type BryntumResourceFilterProps = {
|
|
|
38
38
|
/**
|
|
39
39
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
40
40
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
41
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-appendTo)
|
|
41
43
|
*/
|
|
42
44
|
appendTo ? : HTMLElement|string
|
|
43
45
|
/**
|
|
@@ -71,9 +73,10 @@ export declare type BryntumResourceFilterProps = {
|
|
|
71
73
|
catchEventHandlerExceptions ? : Boolean
|
|
72
74
|
/**
|
|
73
75
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
74
|
-
*
|
|
76
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-centered)
|
|
77
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
75
78
|
*/
|
|
76
|
-
centered ? : Boolean
|
|
79
|
+
centered ? : Boolean|object
|
|
77
80
|
/**
|
|
78
81
|
* Configure as `true` to clear selection when clicking on empty space inside the List´s element.
|
|
79
82
|
*/
|
|
@@ -159,7 +162,7 @@ export declare type BryntumResourceFilterProps = {
|
|
|
159
162
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
160
163
|
/**
|
|
161
164
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
162
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
165
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
163
166
|
* property which controls when a drag should start.
|
|
164
167
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-draggable)
|
|
165
168
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -259,10 +262,14 @@ export declare type BryntumResourceFilterProps = {
|
|
|
259
262
|
ignoreParentReadOnly ? : Boolean
|
|
260
263
|
/**
|
|
261
264
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
265
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
266
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertBefore)
|
|
262
267
|
*/
|
|
263
268
|
insertBefore ? : HTMLElement|string
|
|
264
269
|
/**
|
|
265
270
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
271
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
272
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertFirst)
|
|
266
273
|
*/
|
|
267
274
|
insertFirst ? : HTMLElement|string
|
|
268
275
|
/**
|
|
@@ -431,7 +438,7 @@ export declare type BryntumResourceFilterProps = {
|
|
|
431
438
|
scrollable ? : Boolean|ScrollerConfig|Scroller
|
|
432
439
|
/**
|
|
433
440
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
434
|
-
* Valid values:
|
|
441
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
435
442
|
*/
|
|
436
443
|
scrollAction ? : 'hide'|'realign'|null
|
|
437
444
|
/**
|
|
@@ -508,7 +515,7 @@ export declare type BryntumResourceFilterProps = {
|
|
|
508
515
|
*/
|
|
509
516
|
ui ? : string|object
|
|
510
517
|
/**
|
|
511
|
-
* Configure as `false` to not use the Resource
|
|
518
|
+
* Configure as `false` to not use the Resource's color field to style the checkbox
|
|
512
519
|
*/
|
|
513
520
|
useResourceColor ? : Boolean
|
|
514
521
|
/**
|
|
@@ -96,6 +96,8 @@ defineProps<{
|
|
|
96
96
|
/**
|
|
97
97
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98
98
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
99
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-appendTo)
|
|
99
101
|
*/
|
|
100
102
|
appendTo ? : HTMLElement|string
|
|
101
103
|
/**
|
|
@@ -703,10 +705,14 @@ defineProps<{
|
|
|
703
705
|
inputFieldAlign ? : 'start'|'end'
|
|
704
706
|
/**
|
|
705
707
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
708
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
709
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertBefore)
|
|
706
710
|
*/
|
|
707
711
|
insertBefore ? : HTMLElement|string
|
|
708
712
|
/**
|
|
709
713
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
714
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
715
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertFirst)
|
|
710
716
|
*/
|
|
711
717
|
insertFirst ? : HTMLElement|string
|
|
712
718
|
/**
|
|
@@ -726,7 +732,7 @@ defineProps<{
|
|
|
726
732
|
*/
|
|
727
733
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
728
734
|
/**
|
|
729
|
-
* Sets `labelWidth
|
|
735
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
730
736
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-labelWidth)
|
|
731
737
|
*/
|
|
732
738
|
labelWidth ? : number|null
|
|
@@ -959,7 +965,7 @@ defineProps<{
|
|
|
959
965
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
960
966
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-project)
|
|
961
967
|
*/
|
|
962
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
968
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
963
969
|
/**
|
|
964
970
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
965
971
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -5600,6 +5606,7 @@ const widgetData = {
|
|
|
5600
5606
|
'zoomFactor'
|
|
5601
5607
|
],
|
|
5602
5608
|
propertyNames : [
|
|
5609
|
+
'centered',
|
|
5603
5610
|
'originalStore',
|
|
5604
5611
|
'parent',
|
|
5605
5612
|
'scrollLeft',
|
|
@@ -96,6 +96,8 @@ defineProps<{
|
|
|
96
96
|
/**
|
|
97
97
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98
98
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
99
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-appendTo)
|
|
99
101
|
*/
|
|
100
102
|
appendTo ? : HTMLElement|string
|
|
101
103
|
/**
|
|
@@ -703,10 +705,14 @@ defineProps<{
|
|
|
703
705
|
inputFieldAlign ? : 'start'|'end'
|
|
704
706
|
/**
|
|
705
707
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
708
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
709
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertBefore)
|
|
706
710
|
*/
|
|
707
711
|
insertBefore ? : HTMLElement|string
|
|
708
712
|
/**
|
|
709
713
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
714
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
715
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertFirst)
|
|
710
716
|
*/
|
|
711
717
|
insertFirst ? : HTMLElement|string
|
|
712
718
|
/**
|
|
@@ -726,7 +732,7 @@ defineProps<{
|
|
|
726
732
|
*/
|
|
727
733
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
728
734
|
/**
|
|
729
|
-
* Sets `labelWidth
|
|
735
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
730
736
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-labelWidth)
|
|
731
737
|
*/
|
|
732
738
|
labelWidth ? : number|null
|
|
@@ -959,7 +965,7 @@ defineProps<{
|
|
|
959
965
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
960
966
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-project)
|
|
961
967
|
*/
|
|
962
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
968
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
963
969
|
/**
|
|
964
970
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
965
971
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -5598,6 +5604,7 @@ const widgetData = {
|
|
|
5598
5604
|
'zoomFactor'
|
|
5599
5605
|
],
|
|
5600
5606
|
propertyNames : [
|
|
5607
|
+
'centered',
|
|
5601
5608
|
'originalStore',
|
|
5602
5609
|
'parent',
|
|
5603
5610
|
'scrollLeft',
|
|
@@ -58,6 +58,8 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
58
58
|
/**
|
|
59
59
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60
60
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
61
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-appendTo)
|
|
61
63
|
*/
|
|
62
64
|
appendTo ? : HTMLElement|string
|
|
63
65
|
/**
|
|
@@ -665,10 +667,14 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
665
667
|
inputFieldAlign ? : 'start'|'end'
|
|
666
668
|
/**
|
|
667
669
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertBefore)
|
|
668
672
|
*/
|
|
669
673
|
insertBefore ? : HTMLElement|string
|
|
670
674
|
/**
|
|
671
675
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertFirst)
|
|
672
678
|
*/
|
|
673
679
|
insertFirst ? : HTMLElement|string
|
|
674
680
|
/**
|
|
@@ -688,7 +694,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
688
694
|
*/
|
|
689
695
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
690
696
|
/**
|
|
691
|
-
* Sets `labelWidth
|
|
697
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
692
698
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-labelWidth)
|
|
693
699
|
*/
|
|
694
700
|
labelWidth ? : number|null
|
|
@@ -921,7 +927,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
921
927
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
922
928
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-project)
|
|
923
929
|
*/
|
|
924
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
930
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
925
931
|
/**
|
|
926
932
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
927
933
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -56,6 +56,8 @@ defineProps<{
|
|
|
56
56
|
/**
|
|
57
57
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
58
58
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
59
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-appendTo)
|
|
59
61
|
*/
|
|
60
62
|
appendTo ? : HTMLElement|string
|
|
61
63
|
/**
|
|
@@ -126,9 +128,10 @@ defineProps<{
|
|
|
126
128
|
cellRenderer ? : ((renderData: { cell: HTMLElement, innerCell: HTMLElement, cellPayload: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string
|
|
127
129
|
/**
|
|
128
130
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
129
|
-
*
|
|
131
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-centered)
|
|
132
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
130
133
|
*/
|
|
131
|
-
centered ? : Boolean
|
|
134
|
+
centered ? : Boolean|object
|
|
132
135
|
/**
|
|
133
136
|
* Custom CSS classes to add to element.
|
|
134
137
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -258,7 +261,7 @@ defineProps<{
|
|
|
258
261
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
259
262
|
/**
|
|
260
263
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
261
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
264
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
262
265
|
* property which controls when a drag should start.
|
|
263
266
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-draggable)
|
|
264
267
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -416,10 +419,14 @@ defineProps<{
|
|
|
416
419
|
inputFieldAlign ? : 'start'|'end'
|
|
417
420
|
/**
|
|
418
421
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
422
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
423
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertBefore)
|
|
419
424
|
*/
|
|
420
425
|
insertBefore ? : HTMLElement|string
|
|
421
426
|
/**
|
|
422
427
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
428
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
429
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertFirst)
|
|
423
430
|
*/
|
|
424
431
|
insertFirst ? : HTMLElement|string
|
|
425
432
|
/**
|
|
@@ -445,7 +452,7 @@ defineProps<{
|
|
|
445
452
|
*/
|
|
446
453
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
447
454
|
/**
|
|
448
|
-
* Sets `labelWidth
|
|
455
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
449
456
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-labelWidth)
|
|
450
457
|
*/
|
|
451
458
|
labelWidth ? : number|null
|
|
@@ -660,7 +667,7 @@ defineProps<{
|
|
|
660
667
|
scrollable ? : Boolean|ScrollerConfig|Scroller
|
|
661
668
|
/**
|
|
662
669
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
663
|
-
* Valid values:
|
|
670
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
664
671
|
*/
|
|
665
672
|
scrollAction ? : 'hide'|'realign'|null
|
|
666
673
|
/**
|
|
@@ -1126,7 +1133,6 @@ const widgetData = {
|
|
|
1126
1133
|
'border',
|
|
1127
1134
|
'bubbleEvents',
|
|
1128
1135
|
'cellRenderer',
|
|
1129
|
-
'centered',
|
|
1130
1136
|
'collapsible',
|
|
1131
1137
|
'color',
|
|
1132
1138
|
'config',
|
|
@@ -1220,6 +1226,7 @@ const widgetData = {
|
|
|
1220
1226
|
'appendTo',
|
|
1221
1227
|
'callOnFunctions',
|
|
1222
1228
|
'catchEventHandlerExceptions',
|
|
1229
|
+
'centered',
|
|
1223
1230
|
'cls',
|
|
1224
1231
|
'collapsed',
|
|
1225
1232
|
'column',
|
|
@@ -41,6 +41,8 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
41
41
|
/**
|
|
42
42
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43
43
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
44
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-appendTo)
|
|
44
46
|
*/
|
|
45
47
|
appendTo ? : HTMLElement|string
|
|
46
48
|
/**
|
|
@@ -111,9 +113,10 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
111
113
|
cellRenderer ? : ((renderData: { cell: HTMLElement, innerCell: HTMLElement, cellPayload: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string
|
|
112
114
|
/**
|
|
113
115
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
114
|
-
*
|
|
116
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-centered)
|
|
117
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
115
118
|
*/
|
|
116
|
-
centered ? : Boolean
|
|
119
|
+
centered ? : Boolean|object
|
|
117
120
|
/**
|
|
118
121
|
* Custom CSS classes to add to element.
|
|
119
122
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -243,7 +246,7 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
243
246
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
244
247
|
/**
|
|
245
248
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
246
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
249
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
247
250
|
* property which controls when a drag should start.
|
|
248
251
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-draggable)
|
|
249
252
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -401,10 +404,14 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
401
404
|
inputFieldAlign ? : 'start'|'end'
|
|
402
405
|
/**
|
|
403
406
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
407
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
408
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertBefore)
|
|
404
409
|
*/
|
|
405
410
|
insertBefore ? : HTMLElement|string
|
|
406
411
|
/**
|
|
407
412
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
413
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
414
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertFirst)
|
|
408
415
|
*/
|
|
409
416
|
insertFirst ? : HTMLElement|string
|
|
410
417
|
/**
|
|
@@ -430,7 +437,7 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
430
437
|
*/
|
|
431
438
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
432
439
|
/**
|
|
433
|
-
* Sets `labelWidth
|
|
440
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
434
441
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-labelWidth)
|
|
435
442
|
*/
|
|
436
443
|
labelWidth ? : number|null
|
|
@@ -645,7 +652,7 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
645
652
|
scrollable ? : Boolean|ScrollerConfig|Scroller
|
|
646
653
|
/**
|
|
647
654
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
648
|
-
* Valid values:
|
|
655
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
649
656
|
*/
|
|
650
657
|
scrollAction ? : 'hide'|'realign'|null
|
|
651
658
|
/**
|
|
@@ -58,6 +58,8 @@ export declare type BryntumSchedulerProps = {
|
|
|
58
58
|
/**
|
|
59
59
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60
60
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
61
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-appendTo)
|
|
61
63
|
*/
|
|
62
64
|
appendTo ? : HTMLElement|string
|
|
63
65
|
/**
|
|
@@ -665,10 +667,14 @@ export declare type BryntumSchedulerProps = {
|
|
|
665
667
|
inputFieldAlign ? : 'start'|'end'
|
|
666
668
|
/**
|
|
667
669
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertBefore)
|
|
668
672
|
*/
|
|
669
673
|
insertBefore ? : HTMLElement|string
|
|
670
674
|
/**
|
|
671
675
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertFirst)
|
|
672
678
|
*/
|
|
673
679
|
insertFirst ? : HTMLElement|string
|
|
674
680
|
/**
|
|
@@ -688,7 +694,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
688
694
|
*/
|
|
689
695
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
690
696
|
/**
|
|
691
|
-
* Sets `labelWidth
|
|
697
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
692
698
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-labelWidth)
|
|
693
699
|
*/
|
|
694
700
|
labelWidth ? : number|null
|
|
@@ -921,7 +927,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
921
927
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
922
928
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-project)
|
|
923
929
|
*/
|
|
924
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
930
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
925
931
|
/**
|
|
926
932
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
927
933
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -43,6 +43,8 @@ defineProps<{
|
|
|
43
43
|
/**
|
|
44
44
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45
45
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-appendTo)
|
|
46
48
|
*/
|
|
47
49
|
appendTo ? : HTMLElement|string
|
|
48
50
|
/**
|
|
@@ -76,9 +78,10 @@ defineProps<{
|
|
|
76
78
|
catchEventHandlerExceptions ? : Boolean
|
|
77
79
|
/**
|
|
78
80
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
79
|
-
*
|
|
81
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-centered)
|
|
82
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
80
83
|
*/
|
|
81
|
-
centered ? : Boolean
|
|
84
|
+
centered ? : Boolean|object
|
|
82
85
|
/**
|
|
83
86
|
* The Scheduler, SchedulerPro or Gantt component instance to connect to. If not provided, the widget
|
|
84
87
|
* will attempt to find a timeline component by traversing up the widget hierarchy or querying for one.
|
|
@@ -157,7 +160,7 @@ defineProps<{
|
|
|
157
160
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
158
161
|
/**
|
|
159
162
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
160
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
163
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
161
164
|
* property which controls when a drag should start.
|
|
162
165
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-draggable)
|
|
163
166
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -219,10 +222,14 @@ defineProps<{
|
|
|
219
222
|
ignoreParentReadOnly ? : Boolean
|
|
220
223
|
/**
|
|
221
224
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
225
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
226
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertBefore)
|
|
222
227
|
*/
|
|
223
228
|
insertBefore ? : HTMLElement|string
|
|
224
229
|
/**
|
|
225
230
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
231
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
232
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertFirst)
|
|
226
233
|
*/
|
|
227
234
|
insertFirst ? : HTMLElement|string
|
|
228
235
|
/**
|
|
@@ -387,7 +394,7 @@ defineProps<{
|
|
|
387
394
|
scrollable ? : Boolean|ScrollerConfig|Scroller
|
|
388
395
|
/**
|
|
389
396
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
390
|
-
* Valid values:
|
|
397
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
391
398
|
*/
|
|
392
399
|
scrollAction ? : 'hide'|'realign'|null
|
|
393
400
|
/**
|
|
@@ -659,7 +666,6 @@ const widgetData = {
|
|
|
659
666
|
'ariaDescription',
|
|
660
667
|
'ariaLabel',
|
|
661
668
|
'bubbleEvents',
|
|
662
|
-
'centered',
|
|
663
669
|
'client',
|
|
664
670
|
'color',
|
|
665
671
|
'config',
|
|
@@ -710,6 +716,7 @@ const widgetData = {
|
|
|
710
716
|
'appendTo',
|
|
711
717
|
'callOnFunctions',
|
|
712
718
|
'catchEventHandlerExceptions',
|
|
719
|
+
'centered',
|
|
713
720
|
'cls',
|
|
714
721
|
'column',
|
|
715
722
|
'content',
|
|
@@ -28,6 +28,8 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30
30
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
31
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-appendTo)
|
|
31
33
|
*/
|
|
32
34
|
appendTo ? : HTMLElement|string
|
|
33
35
|
/**
|
|
@@ -61,9 +63,10 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
61
63
|
catchEventHandlerExceptions ? : Boolean
|
|
62
64
|
/**
|
|
63
65
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
64
|
-
*
|
|
66
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-centered)
|
|
67
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
65
68
|
*/
|
|
66
|
-
centered ? : Boolean
|
|
69
|
+
centered ? : Boolean|object
|
|
67
70
|
/**
|
|
68
71
|
* The Scheduler, SchedulerPro or Gantt component instance to connect to. If not provided, the widget
|
|
69
72
|
* will attempt to find a timeline component by traversing up the widget hierarchy or querying for one.
|
|
@@ -142,7 +145,7 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
142
145
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
143
146
|
/**
|
|
144
147
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
145
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
148
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
146
149
|
* property which controls when a drag should start.
|
|
147
150
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-draggable)
|
|
148
151
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -204,10 +207,14 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
204
207
|
ignoreParentReadOnly ? : Boolean
|
|
205
208
|
/**
|
|
206
209
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
210
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
211
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertBefore)
|
|
207
212
|
*/
|
|
208
213
|
insertBefore ? : HTMLElement|string
|
|
209
214
|
/**
|
|
210
215
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
216
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
217
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertFirst)
|
|
211
218
|
*/
|
|
212
219
|
insertFirst ? : HTMLElement|string
|
|
213
220
|
/**
|
|
@@ -372,7 +379,7 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
372
379
|
scrollable ? : Boolean|ScrollerConfig|Scroller
|
|
373
380
|
/**
|
|
374
381
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
375
|
-
* Valid values:
|
|
382
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
376
383
|
*/
|
|
377
384
|
scrollAction ? : 'hide'|'realign'|null
|
|
378
385
|
/**
|
|
@@ -90,6 +90,8 @@ defineProps<{
|
|
|
90
90
|
/**
|
|
91
91
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
92
92
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
93
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-appendTo)
|
|
93
95
|
*/
|
|
94
96
|
appendTo ? : HTMLElement|string
|
|
95
97
|
/**
|
|
@@ -619,10 +621,14 @@ defineProps<{
|
|
|
619
621
|
inputFieldAlign ? : 'start'|'end'
|
|
620
622
|
/**
|
|
621
623
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
624
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
625
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertBefore)
|
|
622
626
|
*/
|
|
623
627
|
insertBefore ? : HTMLElement|string
|
|
624
628
|
/**
|
|
625
629
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
630
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
631
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertFirst)
|
|
626
632
|
*/
|
|
627
633
|
insertFirst ? : HTMLElement|string
|
|
628
634
|
/**
|
|
@@ -635,7 +641,7 @@ defineProps<{
|
|
|
635
641
|
*/
|
|
636
642
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
637
643
|
/**
|
|
638
|
-
* Sets `labelWidth
|
|
644
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
639
645
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-labelWidth)
|
|
640
646
|
*/
|
|
641
647
|
labelWidth ? : number|null
|
|
@@ -3595,6 +3601,7 @@ const widgetData = {
|
|
|
3595
3601
|
'zoomFactor'
|
|
3596
3602
|
],
|
|
3597
3603
|
propertyNames : [
|
|
3604
|
+
'centered',
|
|
3598
3605
|
'originalStore',
|
|
3599
3606
|
'parent',
|
|
3600
3607
|
'scrollLeft',
|
|
@@ -52,6 +52,8 @@ export declare type BryntumTimelineHistogramProps = {
|
|
|
52
52
|
/**
|
|
53
53
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
54
54
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
55
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-appendTo)
|
|
55
57
|
*/
|
|
56
58
|
appendTo ? : HTMLElement|string
|
|
57
59
|
/**
|
|
@@ -581,10 +583,14 @@ export declare type BryntumTimelineHistogramProps = {
|
|
|
581
583
|
inputFieldAlign ? : 'start'|'end'
|
|
582
584
|
/**
|
|
583
585
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
586
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
587
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertBefore)
|
|
584
588
|
*/
|
|
585
589
|
insertBefore ? : HTMLElement|string
|
|
586
590
|
/**
|
|
587
591
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
592
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
593
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertFirst)
|
|
588
594
|
*/
|
|
589
595
|
insertFirst ? : HTMLElement|string
|
|
590
596
|
/**
|
|
@@ -597,7 +603,7 @@ export declare type BryntumTimelineHistogramProps = {
|
|
|
597
603
|
*/
|
|
598
604
|
labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
|
|
599
605
|
/**
|
|
600
|
-
* Sets `labelWidth
|
|
606
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
601
607
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-labelWidth)
|
|
602
608
|
*/
|
|
603
609
|
labelWidth ? : number|null
|