@bryntum/scheduler-trial 7.3.2 → 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 +22 -0
- package/package.json +1 -1
- package/scheduler.css +1 -1
- package/scheduler.d.ts +922 -585
- package/scheduler.module.js +45 -45
- package/scheduler.thin.d.ts +357 -155
- package/scheduler.umd.js +57 -57
package/scheduler.thin.d.ts
CHANGED
|
@@ -80,6 +80,62 @@ type CrudManagerStoreDescriptor = {
|
|
|
80
80
|
writeAllFields?: boolean
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
+
/**
|
|
84
|
+
* State object passed to the resolve/reject handlers of the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load)
|
|
85
|
+
* Promise.
|
|
86
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#typedef-CrudManagerLoadResult)
|
|
87
|
+
*/
|
|
88
|
+
type CrudManagerLoadResult = {
|
|
89
|
+
/**
|
|
90
|
+
* Processed response in form of object.
|
|
91
|
+
*/
|
|
92
|
+
response: object
|
|
93
|
+
/**
|
|
94
|
+
* The native `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
95
|
+
*/
|
|
96
|
+
rawResponse: Response
|
|
97
|
+
/**
|
|
98
|
+
* Raw response text as String from the request.
|
|
99
|
+
*/
|
|
100
|
+
responseText: string
|
|
101
|
+
/**
|
|
102
|
+
* The request descriptor object.
|
|
103
|
+
*/
|
|
104
|
+
request: object
|
|
105
|
+
/**
|
|
106
|
+
* Present (and `true`) when the promise was rejected because the request was cancelled.
|
|
107
|
+
*/
|
|
108
|
+
cancelled?: boolean
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* State object passed to the resolve/reject handlers of the [sync](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync)
|
|
113
|
+
* Promise.
|
|
114
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#typedef-CrudManagerSyncResult)
|
|
115
|
+
*/
|
|
116
|
+
type CrudManagerSyncResult = {
|
|
117
|
+
/**
|
|
118
|
+
* Processed response in form of object.
|
|
119
|
+
*/
|
|
120
|
+
response: object
|
|
121
|
+
/**
|
|
122
|
+
* The native `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
123
|
+
*/
|
|
124
|
+
rawResponse: Response
|
|
125
|
+
/**
|
|
126
|
+
* Raw response text as String from the request.
|
|
127
|
+
*/
|
|
128
|
+
responseText: string
|
|
129
|
+
/**
|
|
130
|
+
* The request descriptor object.
|
|
131
|
+
*/
|
|
132
|
+
request: object
|
|
133
|
+
/**
|
|
134
|
+
* Present (and `true`) when the promise was rejected because the request was cancelled.
|
|
135
|
+
*/
|
|
136
|
+
cancelled?: boolean
|
|
137
|
+
}
|
|
138
|
+
|
|
83
139
|
/**
|
|
84
140
|
* An object containing details about the requested data
|
|
85
141
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/mixin/LazyLoadCrudManager#typedef-LazyLoadCrudManagerRequestParams)
|
|
@@ -775,7 +831,7 @@ type DurationColumnConfig = {
|
|
|
775
831
|
*/
|
|
776
832
|
alwaysClearCell?: boolean
|
|
777
833
|
/**
|
|
778
|
-
* The `aria-label` to use for this Column
|
|
834
|
+
* The `aria-label` to use for this Column's header element
|
|
779
835
|
*/
|
|
780
836
|
ariaLabel?: string
|
|
781
837
|
/**
|
|
@@ -1497,7 +1553,7 @@ type EventColorColumnConfig = {
|
|
|
1497
1553
|
*/
|
|
1498
1554
|
alwaysClearCell?: boolean
|
|
1499
1555
|
/**
|
|
1500
|
-
* The `aria-label` to use for this Column
|
|
1556
|
+
* The `aria-label` to use for this Column's header element
|
|
1501
1557
|
*/
|
|
1502
1558
|
ariaLabel?: string
|
|
1503
1559
|
/**
|
|
@@ -2173,7 +2229,7 @@ type ResourceCollapseColumnConfig = {
|
|
|
2173
2229
|
*/
|
|
2174
2230
|
applyResourceRowHeightOnCollapse?: boolean
|
|
2175
2231
|
/**
|
|
2176
|
-
* The `aria-label` to use for this Column
|
|
2232
|
+
* The `aria-label` to use for this Column's header element
|
|
2177
2233
|
*/
|
|
2178
2234
|
ariaLabel?: string
|
|
2179
2235
|
/**
|
|
@@ -2833,7 +2889,7 @@ type ResourceInfoColumnConfig = {
|
|
|
2833
2889
|
*/
|
|
2834
2890
|
alwaysClearCell?: boolean
|
|
2835
2891
|
/**
|
|
2836
|
-
* The `aria-label` to use for this Column
|
|
2892
|
+
* The `aria-label` to use for this Column's header element
|
|
2837
2893
|
*/
|
|
2838
2894
|
ariaLabel?: string
|
|
2839
2895
|
/**
|
|
@@ -3546,7 +3602,7 @@ type ScaleColumnConfig = {
|
|
|
3546
3602
|
*/
|
|
3547
3603
|
alwaysClearCell?: boolean
|
|
3548
3604
|
/**
|
|
3549
|
-
* The `aria-label` to use for this Column
|
|
3605
|
+
* The `aria-label` to use for this Column's header element
|
|
3550
3606
|
*/
|
|
3551
3607
|
ariaLabel?: string
|
|
3552
3608
|
/**
|
|
@@ -4237,7 +4293,7 @@ type TimeAxisColumnConfig = {
|
|
|
4237
4293
|
*/
|
|
4238
4294
|
alwaysClearCell?: boolean
|
|
4239
4295
|
/**
|
|
4240
|
-
* The `aria-label` to use for this Column
|
|
4296
|
+
* The `aria-label` to use for this Column's header element
|
|
4241
4297
|
*/
|
|
4242
4298
|
ariaLabel?: string
|
|
4243
4299
|
/**
|
|
@@ -4935,7 +4991,7 @@ type VerticalTimeAxisColumnConfig = {
|
|
|
4935
4991
|
*/
|
|
4936
4992
|
alwaysClearCell?: boolean
|
|
4937
4993
|
/**
|
|
4938
|
-
* The `aria-label` to use for this Column
|
|
4994
|
+
* The `aria-label` to use for this Column's header element
|
|
4939
4995
|
*/
|
|
4940
4996
|
ariaLabel?: string
|
|
4941
4997
|
/**
|
|
@@ -6527,7 +6583,7 @@ export abstract class AbstractCrudManager extends Base {
|
|
|
6527
6583
|
* @param {string} [options.request.failure.rawResponse] `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
6528
6584
|
* @param {object} [options.request.thisObj] `this` reference for the above `success` and `failure` functions.
|
|
6529
6585
|
*/
|
|
6530
|
-
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<
|
|
6586
|
+
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<CrudManagerLoadResult>;
|
|
6531
6587
|
/**
|
|
6532
6588
|
* Loads data to the Crud Manager
|
|
6533
6589
|
* @param {object} response A simple object representing the data. The object structure matches the decoded `load` response structure: ```javascript // load static data into crudManager crudManager.loadCrudManagerData({ success : true, resources : { rows : [ { id : 1, name : 'John' }, { id : 2, name : 'Abby' } ] } }); ```
|
|
@@ -6613,6 +6669,7 @@ export abstract class AbstractCrudManager extends Base {
|
|
|
6613
6669
|
suspendAutoSync(): void;
|
|
6614
6670
|
/**
|
|
6615
6671
|
* Suspends [hasChanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#event-hasChanges) and [noChanges](#Scheduler/crud/AbstractCrudManagerMixin#event-noChanges) events.
|
|
6672
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManager#function-suspendChangeTracking)
|
|
6616
6673
|
*/
|
|
6617
6674
|
suspendChangeTracking(): void;
|
|
6618
6675
|
/**
|
|
@@ -6626,7 +6683,7 @@ export abstract class AbstractCrudManager extends Base {
|
|
|
6626
6683
|
* Usage:
|
|
6627
6684
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManager#function-sync)
|
|
6628
6685
|
*/
|
|
6629
|
-
sync(): Promise<
|
|
6686
|
+
sync(): Promise<CrudManagerSyncResult>;
|
|
6630
6687
|
/**
|
|
6631
6688
|
* Returns the data from all CrudManager `crudStores` in a format that can be consumed by `inlineData`.
|
|
6632
6689
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManager#function-toJSON)
|
|
@@ -7673,7 +7730,7 @@ export abstract class AbstractCrudManagerMixinClass {
|
|
|
7673
7730
|
* @param {string} [options.request.failure.rawResponse] `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
7674
7731
|
* @param {object} [options.request.thisObj] `this` reference for the above `success` and `failure` functions.
|
|
7675
7732
|
*/
|
|
7676
|
-
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<
|
|
7733
|
+
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<CrudManagerLoadResult>;
|
|
7677
7734
|
/**
|
|
7678
7735
|
* Loads data to the Crud Manager
|
|
7679
7736
|
* @param {object} response A simple object representing the data. The object structure matches the decoded `load` response structure: ```javascript // load static data into crudManager crudManager.loadCrudManagerData({ success : true, resources : { rows : [ { id : 1, name : 'John' }, { id : 2, name : 'Abby' } ] } }); ```
|
|
@@ -7759,6 +7816,7 @@ export abstract class AbstractCrudManagerMixinClass {
|
|
|
7759
7816
|
suspendAutoSync(): void;
|
|
7760
7817
|
/**
|
|
7761
7818
|
* Suspends [hasChanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#event-hasChanges) and [noChanges](#Scheduler/crud/AbstractCrudManagerMixin#event-noChanges) events.
|
|
7819
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-suspendChangeTracking)
|
|
7762
7820
|
*/
|
|
7763
7821
|
suspendChangeTracking(): void;
|
|
7764
7822
|
/**
|
|
@@ -7772,7 +7830,7 @@ export abstract class AbstractCrudManagerMixinClass {
|
|
|
7772
7830
|
* Usage:
|
|
7773
7831
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync)
|
|
7774
7832
|
*/
|
|
7775
|
-
sync(): Promise<
|
|
7833
|
+
sync(): Promise<CrudManagerSyncResult>;
|
|
7776
7834
|
/**
|
|
7777
7835
|
* Triggers an event, calling all registered listeners with the supplied arguments. Returning false from any listener
|
|
7778
7836
|
* makes function return false.
|
|
@@ -8945,6 +9003,22 @@ type AssignmentStoreConfig = {
|
|
|
8945
9003
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-dontRelayToMaster)
|
|
8946
9004
|
*/
|
|
8947
9005
|
dontRelayToMaster?: string
|
|
9006
|
+
/**
|
|
9007
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
9008
|
+
* any filters to the server upon load.
|
|
9009
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-encodeFilterParams)
|
|
9010
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
9011
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
9012
|
+
*/
|
|
9013
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
9014
|
+
/**
|
|
9015
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
9016
|
+
* any sorters to the server upon load.
|
|
9017
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-encodeSorterParams)
|
|
9018
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
9019
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
9020
|
+
*/
|
|
9021
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
8948
9022
|
/**
|
|
8949
9023
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
8950
9024
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-excludeCollapsedRecords)
|
|
@@ -9294,7 +9368,7 @@ type AssignmentStoreConfig = {
|
|
|
9294
9368
|
*/
|
|
9295
9369
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
9296
9370
|
/**
|
|
9297
|
-
* Set to
|
|
9371
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
9298
9372
|
*/
|
|
9299
9373
|
useRestfulMethods?: boolean
|
|
9300
9374
|
/**
|
|
@@ -11247,7 +11321,7 @@ export class CrudManager extends AbstractCrudManager {
|
|
|
11247
11321
|
* @param {string} [options.request.failure.rawResponse] `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
11248
11322
|
* @param {object} [options.request.thisObj] `this` reference for the above `success` and `failure` functions.
|
|
11249
11323
|
*/
|
|
11250
|
-
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<
|
|
11324
|
+
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<CrudManagerLoadResult>;
|
|
11251
11325
|
/**
|
|
11252
11326
|
* Loads data to the Crud Manager
|
|
11253
11327
|
* @param {object} response A simple object representing the data. The object structure matches the decoded `load` response structure: ```javascript // load static data into crudManager crudManager.loadCrudManagerData({ success : true, resources : { rows : [ { id : 1, name : 'John' }, { id : 2, name : 'Abby' } ] } }); ```
|
|
@@ -11335,6 +11409,7 @@ export class CrudManager extends AbstractCrudManager {
|
|
|
11335
11409
|
suspendAutoSync(): void;
|
|
11336
11410
|
/**
|
|
11337
11411
|
* Suspends [hasChanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#event-hasChanges) and [noChanges](#Scheduler/crud/AbstractCrudManagerMixin#event-noChanges) events.
|
|
11412
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/CrudManager#function-suspendChangeTracking)
|
|
11338
11413
|
*/
|
|
11339
11414
|
suspendChangeTracking(): void;
|
|
11340
11415
|
/**
|
|
@@ -11348,7 +11423,7 @@ export class CrudManager extends AbstractCrudManager {
|
|
|
11348
11423
|
* Usage:
|
|
11349
11424
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/CrudManager#function-sync)
|
|
11350
11425
|
*/
|
|
11351
|
-
sync(): Promise<
|
|
11426
|
+
sync(): Promise<CrudManagerSyncResult>;
|
|
11352
11427
|
/**
|
|
11353
11428
|
* Triggers an event, calling all registered listeners with the supplied arguments. Returning false from any listener
|
|
11354
11429
|
* makes function return false.
|
|
@@ -12235,6 +12310,22 @@ type DependencyStoreConfig = {
|
|
|
12235
12310
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-dontRelayToMaster)
|
|
12236
12311
|
*/
|
|
12237
12312
|
dontRelayToMaster?: string
|
|
12313
|
+
/**
|
|
12314
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
12315
|
+
* any filters to the server upon load.
|
|
12316
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-encodeFilterParams)
|
|
12317
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
12318
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
12319
|
+
*/
|
|
12320
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
12321
|
+
/**
|
|
12322
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
12323
|
+
* any sorters to the server upon load.
|
|
12324
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-encodeSorterParams)
|
|
12325
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
12326
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
12327
|
+
*/
|
|
12328
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
12238
12329
|
/**
|
|
12239
12330
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
12240
12331
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-excludeCollapsedRecords)
|
|
@@ -12577,7 +12668,7 @@ type DependencyStoreConfig = {
|
|
|
12577
12668
|
*/
|
|
12578
12669
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
12579
12670
|
/**
|
|
12580
|
-
* Set to
|
|
12671
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
12581
12672
|
*/
|
|
12582
12673
|
useRestfulMethods?: boolean
|
|
12583
12674
|
/**
|
|
@@ -14194,6 +14285,22 @@ type EventStoreConfig = {
|
|
|
14194
14285
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-dontRelayToMaster)
|
|
14195
14286
|
*/
|
|
14196
14287
|
dontRelayToMaster?: string
|
|
14288
|
+
/**
|
|
14289
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
14290
|
+
* any filters to the server upon load.
|
|
14291
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-encodeFilterParams)
|
|
14292
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
14293
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
14294
|
+
*/
|
|
14295
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
14296
|
+
/**
|
|
14297
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
14298
|
+
* any sorters to the server upon load.
|
|
14299
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-encodeSorterParams)
|
|
14300
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
14301
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
14302
|
+
*/
|
|
14303
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
14197
14304
|
/**
|
|
14198
14305
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
14199
14306
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-excludeCollapsedRecords)
|
|
@@ -14552,7 +14659,7 @@ type EventStoreConfig = {
|
|
|
14552
14659
|
*/
|
|
14553
14660
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
14554
14661
|
/**
|
|
14555
|
-
* Set to
|
|
14662
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
14556
14663
|
*/
|
|
14557
14664
|
useRestfulMethods?: boolean
|
|
14558
14665
|
/**
|
|
@@ -16347,6 +16454,22 @@ type ResourceStoreConfig = {
|
|
|
16347
16454
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-dontRelayToMaster)
|
|
16348
16455
|
*/
|
|
16349
16456
|
dontRelayToMaster?: string
|
|
16457
|
+
/**
|
|
16458
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
16459
|
+
* any filters to the server upon load.
|
|
16460
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-encodeFilterParams)
|
|
16461
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
16462
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
16463
|
+
*/
|
|
16464
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
16465
|
+
/**
|
|
16466
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
16467
|
+
* any sorters to the server upon load.
|
|
16468
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-encodeSorterParams)
|
|
16469
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
16470
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
16471
|
+
*/
|
|
16472
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
16350
16473
|
/**
|
|
16351
16474
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
16352
16475
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-excludeCollapsedRecords)
|
|
@@ -16696,7 +16819,7 @@ type ResourceStoreConfig = {
|
|
|
16696
16819
|
*/
|
|
16697
16820
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
16698
16821
|
/**
|
|
16699
|
-
* Set to
|
|
16822
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
16700
16823
|
*/
|
|
16701
16824
|
useRestfulMethods?: boolean
|
|
16702
16825
|
/**
|
|
@@ -18259,6 +18382,22 @@ type ResourceTimeRangeStoreConfig = {
|
|
|
18259
18382
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-dontRelayToMaster)
|
|
18260
18383
|
*/
|
|
18261
18384
|
dontRelayToMaster?: string
|
|
18385
|
+
/**
|
|
18386
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
18387
|
+
* any filters to the server upon load.
|
|
18388
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-encodeFilterParams)
|
|
18389
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
18390
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
18391
|
+
*/
|
|
18392
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
18393
|
+
/**
|
|
18394
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
18395
|
+
* any sorters to the server upon load.
|
|
18396
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-encodeSorterParams)
|
|
18397
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
18398
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
18399
|
+
*/
|
|
18400
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
18262
18401
|
/**
|
|
18263
18402
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
18264
18403
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-excludeCollapsedRecords)
|
|
@@ -18612,7 +18751,7 @@ type ResourceTimeRangeStoreConfig = {
|
|
|
18612
18751
|
*/
|
|
18613
18752
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
18614
18753
|
/**
|
|
18615
|
-
* Set to
|
|
18754
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
18616
18755
|
*/
|
|
18617
18756
|
useRestfulMethods?: boolean
|
|
18618
18757
|
/**
|
|
@@ -21780,6 +21919,22 @@ type TimeRangeStoreConfig = {
|
|
|
21780
21919
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-dontRelayToMaster)
|
|
21781
21920
|
*/
|
|
21782
21921
|
dontRelayToMaster?: string
|
|
21922
|
+
/**
|
|
21923
|
+
* A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
|
|
21924
|
+
* any filters to the server upon load.
|
|
21925
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-encodeFilterParams)
|
|
21926
|
+
* @param {Core.util.CollectionFilter[]} filters The filters to encode.
|
|
21927
|
+
* @returns {string} The encoded value for the filter parameter.
|
|
21928
|
+
*/
|
|
21929
|
+
encodeFilterParams?: (filters: CollectionFilter[]) => string
|
|
21930
|
+
/**
|
|
21931
|
+
* A provided function which creates an array of values for the {#config-sortParamName} to pass
|
|
21932
|
+
* any sorters to the server upon load.
|
|
21933
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-encodeSorterParams)
|
|
21934
|
+
* @param {Sorter[]} sorters The sorters to encode.
|
|
21935
|
+
* @returns {string} The encoded value for the sort parameter.
|
|
21936
|
+
*/
|
|
21937
|
+
encodeSorterParams?: (sorters: Sorter[]) => string
|
|
21783
21938
|
/**
|
|
21784
21939
|
* If `true`, collapsed records in original tree will be excluded from the chained store.
|
|
21785
21940
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-excludeCollapsedRecords)
|
|
@@ -22129,7 +22284,7 @@ type TimeRangeStoreConfig = {
|
|
|
22129
22284
|
*/
|
|
22130
22285
|
useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
|
|
22131
22286
|
/**
|
|
22132
|
-
* Set to
|
|
22287
|
+
* Set to `true` to use restful [httpMethods](https://bryntum.com/products/scheduler/docs/api/Core/data/AjaxStore#config-httpMethods)
|
|
22133
22288
|
*/
|
|
22134
22289
|
useRestfulMethods?: boolean
|
|
22135
22290
|
/**
|
|
@@ -24578,7 +24733,7 @@ export class ProjectCrudManagerClass {
|
|
|
24578
24733
|
* @param {string} [options.request.failure.rawResponse] `Response` object returned by the [fetch api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
|
|
24579
24734
|
* @param {object} [options.request.thisObj] `this` reference for the above `success` and `failure` functions.
|
|
24580
24735
|
*/
|
|
24581
|
-
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<
|
|
24736
|
+
load(options?: { request?: { type?: 'sync'|'load', url?: string, data?: string, params?: object, success?: (rawResponse?: string) => void, failure?: (rawResponse?: string) => void, thisObj?: object } }|string): Promise<CrudManagerLoadResult>;
|
|
24582
24737
|
/**
|
|
24583
24738
|
* Loads data to the Crud Manager
|
|
24584
24739
|
* @param {object} response A simple object representing the data. The object structure matches the decoded `load` response structure: ```javascript // load static data into crudManager crudManager.loadCrudManagerData({ success : true, resources : { rows : [ { id : 1, name : 'John' }, { id : 2, name : 'Abby' } ] } }); ```
|
|
@@ -24666,6 +24821,7 @@ export class ProjectCrudManagerClass {
|
|
|
24666
24821
|
suspendAutoSync(): void;
|
|
24667
24822
|
/**
|
|
24668
24823
|
* Suspends [hasChanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#event-hasChanges) and [noChanges](#Scheduler/crud/AbstractCrudManagerMixin#event-noChanges) events.
|
|
24824
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/mixin/ProjectCrudManager#function-suspendChangeTracking)
|
|
24669
24825
|
*/
|
|
24670
24826
|
suspendChangeTracking(): void;
|
|
24671
24827
|
/**
|
|
@@ -24679,7 +24835,7 @@ export class ProjectCrudManagerClass {
|
|
|
24679
24835
|
* Usage:
|
|
24680
24836
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/mixin/ProjectCrudManager#function-sync)
|
|
24681
24837
|
*/
|
|
24682
|
-
sync(): Promise<
|
|
24838
|
+
sync(): Promise<CrudManagerSyncResult>;
|
|
24683
24839
|
/**
|
|
24684
24840
|
* Triggers an event, calling all registered listeners with the supplied arguments. Returning false from any listener
|
|
24685
24841
|
* makes function return false.
|
|
@@ -27869,7 +28025,7 @@ type EventDragCreateConfig = {
|
|
|
27869
28025
|
*/
|
|
27870
28026
|
allowResizeToZero?: boolean
|
|
27871
28027
|
/**
|
|
27872
|
-
* Use bottom handle when resizing. Only applies when owning client's
|
|
28028
|
+
* Use bottom handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
27873
28029
|
*/
|
|
27874
28030
|
bottomHandle?: boolean
|
|
27875
28031
|
/**
|
|
@@ -27917,7 +28073,7 @@ type EventDragCreateConfig = {
|
|
|
27917
28073
|
*/
|
|
27918
28074
|
dynamicHandleSize?: boolean
|
|
27919
28075
|
/**
|
|
27920
|
-
* Use left handle when resizing. Only applies when owning client's
|
|
28076
|
+
* Use left handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
27921
28077
|
*/
|
|
27922
28078
|
leftHandle?: boolean
|
|
27923
28079
|
/**
|
|
@@ -27961,7 +28117,7 @@ type EventDragCreateConfig = {
|
|
|
27961
28117
|
*/
|
|
27962
28118
|
resizeSelected?: boolean
|
|
27963
28119
|
/**
|
|
27964
|
-
* Use right handle when resizing. Only applies when owning client's
|
|
28120
|
+
* Use right handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
27965
28121
|
*/
|
|
27966
28122
|
rightHandle?: boolean
|
|
27967
28123
|
/**
|
|
@@ -27990,7 +28146,7 @@ type EventDragCreateConfig = {
|
|
|
27990
28146
|
*/
|
|
27991
28147
|
tooltipTemplate?: (context: { startDate: Date, endDate: Date, record: TimeSpan, valid: boolean, startClockHtml: string, endClockHtml: string }) => string
|
|
27992
28148
|
/**
|
|
27993
|
-
* Use top handle when resizing. Only applies when owning client's direction
|
|
28149
|
+
* Use top handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
27994
28150
|
*/
|
|
27995
28151
|
topHandle?: boolean
|
|
27996
28152
|
/**
|
|
@@ -29497,7 +29653,7 @@ type EventResizeConfig = {
|
|
|
29497
29653
|
*/
|
|
29498
29654
|
allowResizeToZero?: boolean
|
|
29499
29655
|
/**
|
|
29500
|
-
* Use bottom handle when resizing. Only applies when owning client's
|
|
29656
|
+
* Use bottom handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
29501
29657
|
*/
|
|
29502
29658
|
bottomHandle?: boolean
|
|
29503
29659
|
/**
|
|
@@ -29541,7 +29697,7 @@ type EventResizeConfig = {
|
|
|
29541
29697
|
*/
|
|
29542
29698
|
dynamicHandleSize?: boolean
|
|
29543
29699
|
/**
|
|
29544
|
-
* Use left handle when resizing. Only applies when owning client's
|
|
29700
|
+
* Use left handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
29545
29701
|
*/
|
|
29546
29702
|
leftHandle?: boolean
|
|
29547
29703
|
/**
|
|
@@ -29585,7 +29741,7 @@ type EventResizeConfig = {
|
|
|
29585
29741
|
*/
|
|
29586
29742
|
resizeSelected?: boolean
|
|
29587
29743
|
/**
|
|
29588
|
-
* Use right handle when resizing. Only applies when owning client's
|
|
29744
|
+
* Use right handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
29589
29745
|
*/
|
|
29590
29746
|
rightHandle?: boolean
|
|
29591
29747
|
/**
|
|
@@ -29614,7 +29770,7 @@ type EventResizeConfig = {
|
|
|
29614
29770
|
*/
|
|
29615
29771
|
tooltipTemplate?: (context: { startDate: Date, endDate: Date, record: TimeSpan, valid: boolean, startClockHtml: string, endClockHtml: string }) => string
|
|
29616
29772
|
/**
|
|
29617
|
-
* Use top handle when resizing. Only applies when owning client's direction
|
|
29773
|
+
* Use top handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
29618
29774
|
*/
|
|
29619
29775
|
topHandle?: boolean
|
|
29620
29776
|
/**
|
|
@@ -29940,9 +30096,10 @@ type EventTooltipConfig = {
|
|
|
29940
30096
|
catchEventHandlerExceptions?: boolean
|
|
29941
30097
|
/**
|
|
29942
30098
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
29943
|
-
*
|
|
30099
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-centered)
|
|
30100
|
+
* @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.
|
|
29944
30101
|
*/
|
|
29945
|
-
centered?: boolean
|
|
30102
|
+
centered?: boolean|object
|
|
29946
30103
|
/**
|
|
29947
30104
|
* The widget which this plugin is to attach to.
|
|
29948
30105
|
*/
|
|
@@ -30247,7 +30404,7 @@ type EventTooltipConfig = {
|
|
|
30247
30404
|
*/
|
|
30248
30405
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
30249
30406
|
/**
|
|
30250
|
-
* Sets `labelWidth
|
|
30407
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
30251
30408
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-labelWidth)
|
|
30252
30409
|
*/
|
|
30253
30410
|
labelWidth?: number|null
|
|
@@ -37259,7 +37416,7 @@ type DragCreateBaseConfig = {
|
|
|
37259
37416
|
*/
|
|
37260
37417
|
allowResizeToZero?: boolean
|
|
37261
37418
|
/**
|
|
37262
|
-
* Use bottom handle when resizing. Only applies when owning client's
|
|
37419
|
+
* Use bottom handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
37263
37420
|
*/
|
|
37264
37421
|
bottomHandle?: boolean
|
|
37265
37422
|
/**
|
|
@@ -37307,7 +37464,7 @@ type DragCreateBaseConfig = {
|
|
|
37307
37464
|
*/
|
|
37308
37465
|
dynamicHandleSize?: boolean
|
|
37309
37466
|
/**
|
|
37310
|
-
* Use left handle when resizing. Only applies when owning client's
|
|
37467
|
+
* Use left handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
37311
37468
|
*/
|
|
37312
37469
|
leftHandle?: boolean
|
|
37313
37470
|
/**
|
|
@@ -37351,7 +37508,7 @@ type DragCreateBaseConfig = {
|
|
|
37351
37508
|
*/
|
|
37352
37509
|
resizeSelected?: boolean
|
|
37353
37510
|
/**
|
|
37354
|
-
* Use right handle when resizing. Only applies when owning client's
|
|
37511
|
+
* Use right handle when resizing. Only applies when owning client's direction is 'horizontal'
|
|
37355
37512
|
*/
|
|
37356
37513
|
rightHandle?: boolean
|
|
37357
37514
|
/**
|
|
@@ -37380,7 +37537,7 @@ type DragCreateBaseConfig = {
|
|
|
37380
37537
|
*/
|
|
37381
37538
|
tooltipTemplate?: (context: { startDate: Date, endDate: Date, record: TimeSpan, valid: boolean, startClockHtml: string, endClockHtml: string }) => string
|
|
37382
37539
|
/**
|
|
37383
|
-
* Use top handle when resizing. Only applies when owning client's direction
|
|
37540
|
+
* Use top handle when resizing. Only applies when owning client's direction is 'vertical'
|
|
37384
37541
|
*/
|
|
37385
37542
|
topHandle?: boolean
|
|
37386
37543
|
/**
|
|
@@ -38421,9 +38578,10 @@ type TooltipBaseConfig = {
|
|
|
38421
38578
|
catchEventHandlerExceptions?: boolean
|
|
38422
38579
|
/**
|
|
38423
38580
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
38424
|
-
*
|
|
38581
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-centered)
|
|
38582
|
+
* @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.
|
|
38425
38583
|
*/
|
|
38426
|
-
centered?: boolean
|
|
38584
|
+
centered?: boolean|object
|
|
38427
38585
|
/**
|
|
38428
38586
|
* The widget which this plugin is to attach to.
|
|
38429
38587
|
*/
|
|
@@ -38728,7 +38886,7 @@ type TooltipBaseConfig = {
|
|
|
38728
38886
|
*/
|
|
38729
38887
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
38730
38888
|
/**
|
|
38731
|
-
* Sets `labelWidth
|
|
38889
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
38732
38890
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-labelWidth)
|
|
38733
38891
|
*/
|
|
38734
38892
|
labelWidth?: number|null
|
|
@@ -38945,7 +39103,7 @@ type TooltipBaseConfig = {
|
|
|
38945
39103
|
rtl?: boolean
|
|
38946
39104
|
/**
|
|
38947
39105
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
38948
|
-
* Valid values:
|
|
39106
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
38949
39107
|
*/
|
|
38950
39108
|
scrollAction?: 'hide'|'realign'|null
|
|
38951
39109
|
/**
|
|
@@ -39634,8 +39792,8 @@ type PdfExportConfig = {
|
|
|
39634
39792
|
*/
|
|
39635
39793
|
fileName?: string
|
|
39636
39794
|
/**
|
|
39637
|
-
* A template function used to generate a page footer. It is passed an object with
|
|
39638
|
-
* `totalPages
|
|
39795
|
+
* A template function used to generate a page footer. It is passed an object with `currentPage` and
|
|
39796
|
+
* `totalPages` properties.
|
|
39639
39797
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/PdfExport#config-footerTpl)
|
|
39640
39798
|
* @param {object} data Data object
|
|
39641
39799
|
* @param {number} data.currentPage Current page number
|
|
@@ -39644,8 +39802,8 @@ type PdfExportConfig = {
|
|
|
39644
39802
|
*/
|
|
39645
39803
|
footerTpl?: (data: { currentPage: number, totalPages: number }) => string
|
|
39646
39804
|
/**
|
|
39647
|
-
* A template function used to generate a page header. It is passed an object with
|
|
39648
|
-
* `totalPages
|
|
39805
|
+
* A template function used to generate a page header. It is passed an object with `currentPage` and
|
|
39806
|
+
* `totalPages` properties.
|
|
39649
39807
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/PdfExport#config-headerTpl)
|
|
39650
39808
|
* @param {object} data Data object
|
|
39651
39809
|
* @param {number} data.currentPage Current page number
|
|
@@ -40003,8 +40161,8 @@ type PrintConfig = {
|
|
|
40003
40161
|
*/
|
|
40004
40162
|
exporters?: Exporter[]
|
|
40005
40163
|
/**
|
|
40006
|
-
* A template function used to generate a page footer. It is passed an object with
|
|
40007
|
-
* `totalPages
|
|
40164
|
+
* A template function used to generate a page footer. It is passed an object with `currentPage` and
|
|
40165
|
+
* `totalPages` properties.
|
|
40008
40166
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/Print#config-footerTpl)
|
|
40009
40167
|
* @param {object} data Data object
|
|
40010
40168
|
* @param {number} data.currentPage Current page number
|
|
@@ -40013,8 +40171,8 @@ type PrintConfig = {
|
|
|
40013
40171
|
*/
|
|
40014
40172
|
footerTpl?: (data: { currentPage: number, totalPages: number }) => string
|
|
40015
40173
|
/**
|
|
40016
|
-
* A template function used to generate a page header. It is passed an object with
|
|
40017
|
-
* `totalPages
|
|
40174
|
+
* A template function used to generate a page header. It is passed an object with `currentPage` and
|
|
40175
|
+
* `totalPages` properties.
|
|
40018
40176
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/Print#config-headerTpl)
|
|
40019
40177
|
* @param {object} data Data object
|
|
40020
40178
|
* @param {number} data.currentPage Current page number
|
|
@@ -43574,7 +43732,7 @@ export class ProjectModel extends Model {
|
|
|
43574
43732
|
*/
|
|
43575
43733
|
dependencyStore: DependencyStore
|
|
43576
43734
|
/**
|
|
43577
|
-
* Count all children (including sub-children) for a node (in its `firstStore
|
|
43735
|
+
* Count all children (including sub-children) for a node (in its `firstStore`)
|
|
43578
43736
|
*/
|
|
43579
43737
|
descendantCount: number
|
|
43580
43738
|
/**
|
|
@@ -44464,6 +44622,11 @@ export class RecurrenceModel extends Model {
|
|
|
44464
44622
|
* configured time zone.
|
|
44465
44623
|
*/
|
|
44466
44624
|
timeZone: string
|
|
44625
|
+
/**
|
|
44626
|
+
* Returns `true` if the recurrence has any non-default settings applied, meaning it has a repeat count or end
|
|
44627
|
+
* date, or a custom interval, or a custom set of days, months or monthDays.
|
|
44628
|
+
*/
|
|
44629
|
+
hasCustomizations(): boolean;
|
|
44467
44630
|
}
|
|
44468
44631
|
|
|
44469
44632
|
/**
|
|
@@ -44685,9 +44848,9 @@ export class ResourceModel extends GridRowModel {
|
|
|
44685
44848
|
imageUrl: string
|
|
44686
44849
|
/**
|
|
44687
44850
|
* Returns the initials (first letter of the first & last space-separated word in the name) or an empty string
|
|
44688
|
-
* if this resource has no name. You can override this
|
|
44851
|
+
* if this resource has no name. You can override this getter in a ResourceModel subclass to provide your own implementation.
|
|
44689
44852
|
*/
|
|
44690
|
-
|
|
44853
|
+
get initials(): string
|
|
44691
44854
|
/**
|
|
44692
44855
|
* Returns `true` if the resource can be persisted.
|
|
44693
44856
|
* In a flat store, a resource is always considered persistable. In a tree store, a resource is considered
|
|
@@ -44944,7 +45107,7 @@ export class ResourceTimeRangeModel extends TimeSpan {
|
|
|
44944
45107
|
/**
|
|
44945
45108
|
* The associated resource, retrieved using a relation to a ResourceStore determined by the value assigned
|
|
44946
45109
|
* to `resourceId`. The relation also lets you access all time ranges on a resource through
|
|
44947
|
-
* [timeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#property-timeRanges)
|
|
45110
|
+
* [timeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#property-timeRanges).
|
|
44948
45111
|
*/
|
|
44949
45112
|
resource: ResourceModel
|
|
44950
45113
|
/**
|
|
@@ -46441,9 +46604,9 @@ export class ResourceModelMixinClass {
|
|
|
46441
46604
|
imageUrl: string
|
|
46442
46605
|
/**
|
|
46443
46606
|
* Returns the initials (first letter of the first & last space-separated word in the name) or an empty string
|
|
46444
|
-
* if this resource has no name. You can override this
|
|
46607
|
+
* if this resource has no name. You can override this getter in a ResourceModel subclass to provide your own implementation.
|
|
46445
46608
|
*/
|
|
46446
|
-
|
|
46609
|
+
get initials(): string
|
|
46447
46610
|
/**
|
|
46448
46611
|
* Returns `true` if the resource can be persisted.
|
|
46449
46612
|
* In a flat store, a resource is always considered persistable. In a tree store, a resource is considered
|
|
@@ -49683,9 +49846,10 @@ type EventEditorConfig = {
|
|
|
49683
49846
|
catchEventHandlerExceptions?: boolean
|
|
49684
49847
|
/**
|
|
49685
49848
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
49686
|
-
*
|
|
49849
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/EventEditor#config-centered)
|
|
49850
|
+
* @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.
|
|
49687
49851
|
*/
|
|
49688
|
-
centered?: boolean
|
|
49852
|
+
centered?: boolean|object
|
|
49689
49853
|
/**
|
|
49690
49854
|
* Show a tool in the header to close this Popup.
|
|
49691
49855
|
* The tool is available in the [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools) object
|
|
@@ -49942,7 +50106,7 @@ type EventEditorConfig = {
|
|
|
49942
50106
|
*/
|
|
49943
50107
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
49944
50108
|
/**
|
|
49945
|
-
* Sets `labelWidth
|
|
50109
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
49946
50110
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/EventEditor#config-labelWidth)
|
|
49947
50111
|
*/
|
|
49948
50112
|
labelWidth?: number|null
|
|
@@ -50147,7 +50311,7 @@ type EventEditorConfig = {
|
|
|
50147
50311
|
rtl?: boolean
|
|
50148
50312
|
/**
|
|
50149
50313
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
50150
|
-
* Valid values:
|
|
50314
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
50151
50315
|
*/
|
|
50152
50316
|
scrollAction?: 'hide'|'realign'|null
|
|
50153
50317
|
/**
|
|
@@ -50809,9 +50973,10 @@ type ResourceHeaderConfig = {
|
|
|
50809
50973
|
catchEventHandlerExceptions?: boolean
|
|
50810
50974
|
/**
|
|
50811
50975
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
50812
|
-
*
|
|
50976
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader#config-centered)
|
|
50977
|
+
* @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.
|
|
50813
50978
|
*/
|
|
50814
|
-
centered?: boolean
|
|
50979
|
+
centered?: boolean|object
|
|
50815
50980
|
/**
|
|
50816
50981
|
* Custom CSS classes to add to element.
|
|
50817
50982
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -50889,7 +51054,7 @@ type ResourceHeaderConfig = {
|
|
|
50889
51054
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
50890
51055
|
/**
|
|
50891
51056
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
50892
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
51057
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
50893
51058
|
* property which controls when a drag should start.
|
|
50894
51059
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader#config-draggable)
|
|
50895
51060
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -50932,9 +51097,9 @@ type ResourceHeaderConfig = {
|
|
|
50932
51097
|
* @param {object} context Renderer context data
|
|
50933
51098
|
* @param {Scheduler.model.ResourceModel} context.resourceRecord Resource whose header is being rendered
|
|
50934
51099
|
* @param {DomConfig} context.elementConfig A config object used to create the element for the resource
|
|
50935
|
-
* @returns {string}
|
|
51100
|
+
* @returns {string,DomConfig,DomConfig[]} A simple string (remember to HTML encode your content!), a DomConfig (or array thereof), or a JSX element when using React
|
|
50936
51101
|
*/
|
|
50937
|
-
headerRenderer?: (context: { resourceRecord: ResourceModel, elementConfig: DomConfig }) => string
|
|
51102
|
+
headerRenderer?: (context: { resourceRecord: ResourceModel, elementConfig: DomConfig }) => string|DomConfig|DomConfig[]
|
|
50938
51103
|
/**
|
|
50939
51104
|
* Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
|
|
50940
51105
|
* which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
|
|
@@ -51120,7 +51285,7 @@ type ResourceHeaderConfig = {
|
|
|
51120
51285
|
rtl?: boolean
|
|
51121
51286
|
/**
|
|
51122
51287
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
51123
|
-
* Valid values:
|
|
51288
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
51124
51289
|
*/
|
|
51125
51290
|
scrollAction?: 'hide'|'realign'|null
|
|
51126
51291
|
/**
|
|
@@ -57272,7 +57437,7 @@ type SchedulerConfig = {
|
|
|
57272
57437
|
*/
|
|
57273
57438
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
57274
57439
|
/**
|
|
57275
|
-
* Sets `labelWidth
|
|
57440
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
57276
57441
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-labelWidth)
|
|
57277
57442
|
*/
|
|
57278
57443
|
labelWidth?: number|null
|
|
@@ -67128,7 +67293,7 @@ type SchedulerBaseConfig = {
|
|
|
67128
67293
|
*/
|
|
67129
67294
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
67130
67295
|
/**
|
|
67131
|
-
* Sets `labelWidth
|
|
67296
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
67132
67297
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-labelWidth)
|
|
67133
67298
|
*/
|
|
67134
67299
|
labelWidth?: number|null
|
|
@@ -70771,6 +70936,10 @@ export class SchedulerBase extends TimelineBase {
|
|
|
70771
70936
|
* Identifies an object as an instance of [Events](https://bryntum.com/products/scheduler/docs/api/Core/mixin/Events) class, or subclass thereof.
|
|
70772
70937
|
*/
|
|
70773
70938
|
readonly isEvents: boolean
|
|
70939
|
+
/**
|
|
70940
|
+
* Checks if scheduler is in horizontal mode
|
|
70941
|
+
*/
|
|
70942
|
+
readonly isHorizontal: boolean
|
|
70774
70943
|
/**
|
|
70775
70944
|
* Identifies an object as an instance of [LoadMaskable](https://bryntum.com/products/scheduler/docs/api/Core/mixin/LoadMaskable) class, or subclass thereof.
|
|
70776
70945
|
*/
|
|
@@ -70864,6 +71033,10 @@ export class SchedulerBase extends TimelineBase {
|
|
|
70864
71033
|
* Identifies an object as an instance of [TransactionalFeatureMixin](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TransactionalFeatureMixin) class, or subclass thereof.
|
|
70865
71034
|
*/
|
|
70866
71035
|
readonly isTransactionalFeatureMixin: boolean
|
|
71036
|
+
/**
|
|
71037
|
+
* Checks if scheduler is in vertical mode
|
|
71038
|
+
*/
|
|
71039
|
+
readonly isVertical: boolean
|
|
70867
71040
|
/**
|
|
70868
71041
|
* By default, when the `EventStore` (and similar stores) is lazy loading, a loading indicator will be displayed
|
|
70869
71042
|
* just below the timeline headers. Set this to `false` to prevent this indicator being shown.
|
|
@@ -72816,8 +72989,9 @@ export class SchedulerBase extends TimelineBase {
|
|
|
72816
72989
|
* @param {Date,number} date the date to query for (or a date as ms)
|
|
72817
72990
|
* @param {boolean,object} options `true` to return a coordinate local to the scheduler view element (defaults to true),
|
|
72818
72991
|
* @param {boolean} options.local `true` if coordinate should be local to the time axis, or false to be a page coordinate
|
|
72992
|
+
* @param {boolean} [options.ignoreRTL] `true` to keep the coordinate measured from the start of the time axis even in RTL mode (by default horizontal coordinates are flipped to be measured from the end in RTL)
|
|
72819
72993
|
*/
|
|
72820
|
-
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean }): number;
|
|
72994
|
+
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean, ignoreRTL?: boolean }): number;
|
|
72821
72995
|
/**
|
|
72822
72996
|
* Gets the date for an X or Y coordinate, either local to the view element or the page based on the 3rd argument.
|
|
72823
72997
|
* If the coordinate is not in the currently rendered view, null will be returned unless the `allowOutOfRange`
|
|
@@ -76264,7 +76438,7 @@ type TimelineBaseConfig = {
|
|
|
76264
76438
|
*/
|
|
76265
76439
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
76266
76440
|
/**
|
|
76267
|
-
* Sets `labelWidth
|
|
76441
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
76268
76442
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-labelWidth)
|
|
76269
76443
|
*/
|
|
76270
76444
|
labelWidth?: number|null
|
|
@@ -78613,8 +78787,9 @@ export abstract class TimelineBase extends Grid {
|
|
|
78613
78787
|
* @param {Date,number} date the date to query for (or a date as ms)
|
|
78614
78788
|
* @param {boolean,object} options `true` to return a coordinate local to the scheduler view element (defaults to true),
|
|
78615
78789
|
* @param {boolean} options.local `true` if coordinate should be local to the time axis, or false to be a page coordinate
|
|
78790
|
+
* @param {boolean} [options.ignoreRTL] `true` to keep the coordinate measured from the start of the time axis even in RTL mode (by default horizontal coordinates are flipped to be measured from the end in RTL)
|
|
78616
78791
|
*/
|
|
78617
|
-
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean }): number;
|
|
78792
|
+
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean, ignoreRTL?: boolean }): number;
|
|
78618
78793
|
/**
|
|
78619
78794
|
* Gets the date for an X or Y coordinate, either local to the view element or the page based on the 3rd argument.
|
|
78620
78795
|
* If the coordinate is not in the currently rendered view, null will be returned unless the `allowOutOfRange`
|
|
@@ -82363,7 +82538,7 @@ type TimelineHistogramConfig = {
|
|
|
82363
82538
|
*/
|
|
82364
82539
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
82365
82540
|
/**
|
|
82366
|
-
* Sets `labelWidth
|
|
82541
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
82367
82542
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-labelWidth)
|
|
82368
82543
|
*/
|
|
82369
82544
|
labelWidth?: number|null
|
|
@@ -84533,6 +84708,12 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
84533
84708
|
* An object providing the `record` and `column` for a widget embedded inside a [WidgetColumn](https://bryntum.com/products/scheduler/docs/api/Grid/column/WidgetColumn)
|
|
84534
84709
|
*/
|
|
84535
84710
|
readonly cellInfo: CellWidgetContext
|
|
84711
|
+
/**
|
|
84712
|
+
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
84713
|
+
*/
|
|
84714
|
+
centered: boolean|{
|
|
84715
|
+
once?: boolean
|
|
84716
|
+
}
|
|
84536
84717
|
/**
|
|
84537
84718
|
* Custom CSS classes to add to element.
|
|
84538
84719
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -84924,7 +85105,7 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
84924
85105
|
*/
|
|
84925
85106
|
labelPosition: 'before'|'above'|'align-before'|'auto'|null
|
|
84926
85107
|
/**
|
|
84927
|
-
* Sets `labelWidth
|
|
85108
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
84928
85109
|
*/
|
|
84929
85110
|
labelWidth: number|null
|
|
84930
85111
|
/**
|
|
@@ -86193,8 +86374,9 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
86193
86374
|
* @param {Date,number} date the date to query for (or a date as ms)
|
|
86194
86375
|
* @param {boolean,object} options `true` to return a coordinate local to the scheduler view element (defaults to true),
|
|
86195
86376
|
* @param {boolean} options.local `true` if coordinate should be local to the time axis, or false to be a page coordinate
|
|
86377
|
+
* @param {boolean} [options.ignoreRTL] `true` to keep the coordinate measured from the start of the time axis even in RTL mode (by default horizontal coordinates are flipped to be measured from the end in RTL)
|
|
86196
86378
|
*/
|
|
86197
|
-
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean }): number;
|
|
86379
|
+
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean, ignoreRTL?: boolean }): number;
|
|
86198
86380
|
/**
|
|
86199
86381
|
* Gets the date for an X or Y coordinate, either local to the view element or the page based on the 3rd argument.
|
|
86200
86382
|
* If the coordinate is not in the currently rendered view, null will be returned unless the `allowOutOfRange`
|
|
@@ -90096,7 +90278,7 @@ type TimelineHistogramBaseConfig = {
|
|
|
90096
90278
|
*/
|
|
90097
90279
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
90098
90280
|
/**
|
|
90099
|
-
* Sets `labelWidth
|
|
90281
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
90100
90282
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-labelWidth)
|
|
90101
90283
|
*/
|
|
90102
90284
|
labelWidth?: number|null
|
|
@@ -92698,9 +92880,10 @@ type SchedulerExportDialogConfig = {
|
|
|
92698
92880
|
catchEventHandlerExceptions?: boolean
|
|
92699
92881
|
/**
|
|
92700
92882
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
92701
|
-
*
|
|
92883
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/export/SchedulerExportDialog#config-centered)
|
|
92884
|
+
* @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.
|
|
92702
92885
|
*/
|
|
92703
|
-
centered?: boolean
|
|
92886
|
+
centered?: boolean|object
|
|
92704
92887
|
/**
|
|
92705
92888
|
* Grid instance to build export dialog for
|
|
92706
92889
|
*/
|
|
@@ -92965,7 +93148,7 @@ type SchedulerExportDialogConfig = {
|
|
|
92965
93148
|
*/
|
|
92966
93149
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
92967
93150
|
/**
|
|
92968
|
-
* Sets `labelWidth
|
|
93151
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
92969
93152
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/export/SchedulerExportDialog#config-labelWidth)
|
|
92970
93153
|
*/
|
|
92971
93154
|
labelWidth?: number|null
|
|
@@ -93170,7 +93353,7 @@ type SchedulerExportDialogConfig = {
|
|
|
93170
93353
|
rtl?: boolean
|
|
93171
93354
|
/**
|
|
93172
93355
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
93173
|
-
* Valid values:
|
|
93356
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
93174
93357
|
*/
|
|
93175
93358
|
scrollAction?: 'hide'|'realign'|null
|
|
93176
93359
|
/**
|
|
@@ -95274,8 +95457,9 @@ export class TimelineDateMapperClass {
|
|
|
95274
95457
|
* @param {Date,number} date the date to query for (or a date as ms)
|
|
95275
95458
|
* @param {boolean,object} options `true` to return a coordinate local to the scheduler view element (defaults to true),
|
|
95276
95459
|
* @param {boolean} options.local `true` if coordinate should be local to the time axis, or false to be a page coordinate
|
|
95460
|
+
* @param {boolean} [options.ignoreRTL] `true` to keep the coordinate measured from the start of the time axis even in RTL mode (by default horizontal coordinates are flipped to be measured from the end in RTL)
|
|
95277
95461
|
*/
|
|
95278
|
-
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean }): number;
|
|
95462
|
+
getCoordinateFromDate(date: Date|number, options?: boolean|{ local: boolean, ignoreRTL?: boolean }): number;
|
|
95279
95463
|
/**
|
|
95280
95464
|
* Gets the date for an X or Y coordinate, either local to the view element or the page based on the 3rd argument.
|
|
95281
95465
|
* If the coordinate is not in the currently rendered view, null will be returned unless the `allowOutOfRange`
|
|
@@ -98641,7 +98825,7 @@ type TimelineHistogramGroupingClassConfig = {
|
|
|
98641
98825
|
*/
|
|
98642
98826
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
98643
98827
|
/**
|
|
98644
|
-
* Sets `labelWidth
|
|
98828
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
98645
98829
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#config-labelWidth)
|
|
98646
98830
|
*/
|
|
98647
98831
|
labelWidth?: number|null
|
|
@@ -101840,9 +102024,10 @@ type RecurrenceConfirmationPopupConfig = {
|
|
|
101840
102024
|
catchEventHandlerExceptions?: boolean
|
|
101841
102025
|
/**
|
|
101842
102026
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
101843
|
-
*
|
|
102027
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceConfirmationPopup#config-centered)
|
|
102028
|
+
* @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.
|
|
101844
102029
|
*/
|
|
101845
|
-
centered?: boolean
|
|
102030
|
+
centered?: boolean|object
|
|
101846
102031
|
/**
|
|
101847
102032
|
* Show a tool in the header to close this Popup.
|
|
101848
102033
|
* The tool is available in the [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools) object
|
|
@@ -102099,7 +102284,7 @@ type RecurrenceConfirmationPopupConfig = {
|
|
|
102099
102284
|
*/
|
|
102100
102285
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
102101
102286
|
/**
|
|
102102
|
-
* Sets `labelWidth
|
|
102287
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
102103
102288
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceConfirmationPopup#config-labelWidth)
|
|
102104
102289
|
*/
|
|
102105
102290
|
labelWidth?: number|null
|
|
@@ -102304,7 +102489,7 @@ type RecurrenceConfirmationPopupConfig = {
|
|
|
102304
102489
|
rtl?: boolean
|
|
102305
102490
|
/**
|
|
102306
102491
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
102307
|
-
* Valid values:
|
|
102492
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
102308
102493
|
*/
|
|
102309
102494
|
scrollAction?: 'hide'|'realign'|null
|
|
102310
102495
|
/**
|
|
@@ -103140,9 +103325,10 @@ type RecurrenceEditorConfig = {
|
|
|
103140
103325
|
catchEventHandlerExceptions?: boolean
|
|
103141
103326
|
/**
|
|
103142
103327
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
103143
|
-
*
|
|
103328
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceEditor#config-centered)
|
|
103329
|
+
* @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.
|
|
103144
103330
|
*/
|
|
103145
|
-
centered?: boolean
|
|
103331
|
+
centered?: boolean|object
|
|
103146
103332
|
/**
|
|
103147
103333
|
* Show a tool in the header to close this Popup.
|
|
103148
103334
|
* The tool is available in the [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools) object
|
|
@@ -103399,7 +103585,7 @@ type RecurrenceEditorConfig = {
|
|
|
103399
103585
|
*/
|
|
103400
103586
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
103401
103587
|
/**
|
|
103402
|
-
* Sets `labelWidth
|
|
103588
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
103403
103589
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceEditor#config-labelWidth)
|
|
103404
103590
|
*/
|
|
103405
103591
|
labelWidth?: number|null
|
|
@@ -103604,7 +103790,7 @@ type RecurrenceEditorConfig = {
|
|
|
103604
103790
|
rtl?: boolean
|
|
103605
103791
|
/**
|
|
103606
103792
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
103607
|
-
* Valid values:
|
|
103793
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
103608
103794
|
*/
|
|
103609
103795
|
scrollAction?: 'hide'|'realign'|null
|
|
103610
103796
|
/**
|
|
@@ -104361,9 +104547,10 @@ type RecurrenceLegendButtonConfig = {
|
|
|
104361
104547
|
catchEventHandlerExceptions?: boolean
|
|
104362
104548
|
/**
|
|
104363
104549
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
104364
|
-
*
|
|
104550
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceLegendButton#config-centered)
|
|
104551
|
+
* @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.
|
|
104365
104552
|
*/
|
|
104366
|
-
centered?: boolean
|
|
104553
|
+
centered?: boolean|object
|
|
104367
104554
|
/**
|
|
104368
104555
|
* Custom CSS classes to add to element.
|
|
104369
104556
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -104436,7 +104623,7 @@ type RecurrenceLegendButtonConfig = {
|
|
|
104436
104623
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
104437
104624
|
/**
|
|
104438
104625
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
104439
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
104626
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
104440
104627
|
* property which controls when a drag should start.
|
|
104441
104628
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceLegendButton#config-draggable)
|
|
104442
104629
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -104692,7 +104879,7 @@ type RecurrenceLegendButtonConfig = {
|
|
|
104692
104879
|
rtl?: boolean
|
|
104693
104880
|
/**
|
|
104694
104881
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
104695
|
-
* Valid values:
|
|
104882
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
104696
104883
|
*/
|
|
104697
104884
|
scrollAction?: 'hide'|'realign'|null
|
|
104698
104885
|
/**
|
|
@@ -105428,9 +105615,10 @@ type RecurrenceComboConfig = {
|
|
|
105428
105615
|
catchEventHandlerExceptions?: boolean
|
|
105429
105616
|
/**
|
|
105430
105617
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
105431
|
-
*
|
|
105618
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceCombo#config-centered)
|
|
105619
|
+
* @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.
|
|
105432
105620
|
*/
|
|
105433
|
-
centered?: boolean
|
|
105621
|
+
centered?: boolean|object
|
|
105434
105622
|
/**
|
|
105435
105623
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
105436
105624
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -105565,7 +105753,7 @@ type RecurrenceComboConfig = {
|
|
|
105565
105753
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
105566
105754
|
/**
|
|
105567
105755
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
105568
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
105756
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
105569
105757
|
* property which controls when a drag should start.
|
|
105570
105758
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceCombo#config-draggable)
|
|
105571
105759
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -106011,7 +106199,7 @@ type RecurrenceComboConfig = {
|
|
|
106011
106199
|
rtl?: boolean
|
|
106012
106200
|
/**
|
|
106013
106201
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
106014
|
-
* Valid values:
|
|
106202
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
106015
106203
|
*/
|
|
106016
106204
|
scrollAction?: 'hide'|'realign'|null
|
|
106017
106205
|
/**
|
|
@@ -106758,9 +106946,10 @@ type RecurrenceDaysComboConfig = {
|
|
|
106758
106946
|
catchEventHandlerExceptions?: boolean
|
|
106759
106947
|
/**
|
|
106760
106948
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
106761
|
-
*
|
|
106949
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceDaysCombo#config-centered)
|
|
106950
|
+
* @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.
|
|
106762
106951
|
*/
|
|
106763
|
-
centered?: boolean
|
|
106952
|
+
centered?: boolean|object
|
|
106764
106953
|
/**
|
|
106765
106954
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
106766
106955
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -106895,7 +107084,7 @@ type RecurrenceDaysComboConfig = {
|
|
|
106895
107084
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
106896
107085
|
/**
|
|
106897
107086
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
106898
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
107087
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
106899
107088
|
* property which controls when a drag should start.
|
|
106900
107089
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceDaysCombo#config-draggable)
|
|
106901
107090
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -107341,7 +107530,7 @@ type RecurrenceDaysComboConfig = {
|
|
|
107341
107530
|
rtl?: boolean
|
|
107342
107531
|
/**
|
|
107343
107532
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
107344
|
-
* Valid values:
|
|
107533
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
107345
107534
|
*/
|
|
107346
107535
|
scrollAction?: 'hide'|'realign'|null
|
|
107347
107536
|
/**
|
|
@@ -108088,9 +108277,10 @@ type RecurrenceFrequencyComboConfig = {
|
|
|
108088
108277
|
catchEventHandlerExceptions?: boolean
|
|
108089
108278
|
/**
|
|
108090
108279
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
108091
|
-
*
|
|
108280
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceFrequencyCombo#config-centered)
|
|
108281
|
+
* @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.
|
|
108092
108282
|
*/
|
|
108093
|
-
centered?: boolean
|
|
108283
|
+
centered?: boolean|object
|
|
108094
108284
|
/**
|
|
108095
108285
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
108096
108286
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -108225,7 +108415,7 @@ type RecurrenceFrequencyComboConfig = {
|
|
|
108225
108415
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
108226
108416
|
/**
|
|
108227
108417
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
108228
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
108418
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
108229
108419
|
* property which controls when a drag should start.
|
|
108230
108420
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceFrequencyCombo#config-draggable)
|
|
108231
108421
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -108671,7 +108861,7 @@ type RecurrenceFrequencyComboConfig = {
|
|
|
108671
108861
|
rtl?: boolean
|
|
108672
108862
|
/**
|
|
108673
108863
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
108674
|
-
* Valid values:
|
|
108864
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
108675
108865
|
*/
|
|
108676
108866
|
scrollAction?: 'hide'|'realign'|null
|
|
108677
108867
|
/**
|
|
@@ -109418,9 +109608,10 @@ type RecurrencePositionsComboConfig = {
|
|
|
109418
109608
|
catchEventHandlerExceptions?: boolean
|
|
109419
109609
|
/**
|
|
109420
109610
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
109421
|
-
*
|
|
109611
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrencePositionsCombo#config-centered)
|
|
109612
|
+
* @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.
|
|
109422
109613
|
*/
|
|
109423
|
-
centered?: boolean
|
|
109614
|
+
centered?: boolean|object
|
|
109424
109615
|
/**
|
|
109425
109616
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
109426
109617
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -109555,7 +109746,7 @@ type RecurrencePositionsComboConfig = {
|
|
|
109555
109746
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
109556
109747
|
/**
|
|
109557
109748
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
109558
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
109749
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
109559
109750
|
* property which controls when a drag should start.
|
|
109560
109751
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrencePositionsCombo#config-draggable)
|
|
109561
109752
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -110001,7 +110192,7 @@ type RecurrencePositionsComboConfig = {
|
|
|
110001
110192
|
rtl?: boolean
|
|
110002
110193
|
/**
|
|
110003
110194
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
110004
|
-
* Valid values:
|
|
110195
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
110005
110196
|
*/
|
|
110006
110197
|
scrollAction?: 'hide'|'realign'|null
|
|
110007
110198
|
/**
|
|
@@ -110748,9 +110939,10 @@ type RecurrenceStopConditionComboConfig = {
|
|
|
110748
110939
|
catchEventHandlerExceptions?: boolean
|
|
110749
110940
|
/**
|
|
110750
110941
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
110751
|
-
*
|
|
110942
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceStopConditionCombo#config-centered)
|
|
110943
|
+
* @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.
|
|
110752
110944
|
*/
|
|
110753
|
-
centered?: boolean
|
|
110945
|
+
centered?: boolean|object
|
|
110754
110946
|
/**
|
|
110755
110947
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
110756
110948
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -110885,7 +111077,7 @@ type RecurrenceStopConditionComboConfig = {
|
|
|
110885
111077
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
110886
111078
|
/**
|
|
110887
111079
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
110888
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
111080
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
110889
111081
|
* property which controls when a drag should start.
|
|
110890
111082
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceStopConditionCombo#config-draggable)
|
|
110891
111083
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -111331,7 +111523,7 @@ type RecurrenceStopConditionComboConfig = {
|
|
|
111331
111523
|
rtl?: boolean
|
|
111332
111524
|
/**
|
|
111333
111525
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
111334
|
-
* Valid values:
|
|
111526
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
111335
111527
|
*/
|
|
111336
111528
|
scrollAction?: 'hide'|'realign'|null
|
|
111337
111529
|
/**
|
|
@@ -112028,9 +112220,10 @@ type DayButtonsConfig = {
|
|
|
112028
112220
|
catchEventHandlerExceptions?: boolean
|
|
112029
112221
|
/**
|
|
112030
112222
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
112031
|
-
*
|
|
112223
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-centered)
|
|
112224
|
+
* @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.
|
|
112032
112225
|
*/
|
|
112033
|
-
centered?: boolean
|
|
112226
|
+
centered?: boolean|object
|
|
112034
112227
|
/**
|
|
112035
112228
|
* Custom CSS class to add to element.
|
|
112036
112229
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-cls)
|
|
@@ -112116,7 +112309,7 @@ type DayButtonsConfig = {
|
|
|
112116
112309
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
112117
112310
|
/**
|
|
112118
112311
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
112119
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
112312
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
112120
112313
|
* property which controls when a drag should start.
|
|
112121
112314
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-draggable)
|
|
112122
112315
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -112217,7 +112410,7 @@ type DayButtonsConfig = {
|
|
|
112217
112410
|
*/
|
|
112218
112411
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
112219
112412
|
/**
|
|
112220
|
-
* Sets `labelWidth
|
|
112413
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
112221
112414
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-labelWidth)
|
|
112222
112415
|
*/
|
|
112223
112416
|
labelWidth?: number|null
|
|
@@ -112390,7 +112583,7 @@ type DayButtonsConfig = {
|
|
|
112390
112583
|
rtl?: boolean
|
|
112391
112584
|
/**
|
|
112392
112585
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
112393
|
-
* Valid values:
|
|
112586
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
112394
112587
|
*/
|
|
112395
112588
|
scrollAction?: 'hide'|'realign'|null
|
|
112396
112589
|
/**
|
|
@@ -113113,9 +113306,10 @@ type EventColorFieldConfig = {
|
|
|
113113
113306
|
catchEventHandlerExceptions?: boolean
|
|
113114
113307
|
/**
|
|
113115
113308
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
113116
|
-
*
|
|
113309
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-centered)
|
|
113310
|
+
* @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.
|
|
113117
113311
|
*/
|
|
113118
|
-
centered?: boolean
|
|
113312
|
+
centered?: boolean|object
|
|
113119
113313
|
/**
|
|
113120
113314
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
113121
113315
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -113212,7 +113406,7 @@ type EventColorFieldConfig = {
|
|
|
113212
113406
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
113213
113407
|
/**
|
|
113214
113408
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
113215
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
113409
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
113216
113410
|
* property which controls when a drag should start.
|
|
113217
113411
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-draggable)
|
|
113218
113412
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -113541,7 +113735,7 @@ type EventColorFieldConfig = {
|
|
|
113541
113735
|
rtl?: boolean
|
|
113542
113736
|
/**
|
|
113543
113737
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
113544
|
-
* Valid values:
|
|
113738
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
113545
113739
|
*/
|
|
113546
113740
|
scrollAction?: 'hide'|'realign'|null
|
|
113547
113741
|
/**
|
|
@@ -114230,9 +114424,10 @@ type EventColorPickerConfig = {
|
|
|
114230
114424
|
catchEventHandlerExceptions?: boolean
|
|
114231
114425
|
/**
|
|
114232
114426
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
114233
|
-
*
|
|
114427
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorPicker#config-centered)
|
|
114428
|
+
* @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.
|
|
114234
114429
|
*/
|
|
114235
|
-
centered?: boolean
|
|
114430
|
+
centered?: boolean|object
|
|
114236
114431
|
/**
|
|
114237
114432
|
* Configure as `true` to clear selection when clicking on empty space inside the List´s element.
|
|
114238
114433
|
*/
|
|
@@ -114330,7 +114525,7 @@ type EventColorPickerConfig = {
|
|
|
114330
114525
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
114331
114526
|
/**
|
|
114332
114527
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
114333
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
114528
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
114334
114529
|
* property which controls when a drag should start.
|
|
114335
114530
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorPicker#config-draggable)
|
|
114336
114531
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -114594,7 +114789,7 @@ type EventColorPickerConfig = {
|
|
|
114594
114789
|
rtl?: boolean
|
|
114595
114790
|
/**
|
|
114596
114791
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
114597
|
-
* Valid values:
|
|
114792
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
114598
114793
|
*/
|
|
114599
114794
|
scrollAction?: 'hide'|'realign'|null
|
|
114600
114795
|
/**
|
|
@@ -115325,9 +115520,10 @@ type ProjectComboConfig = {
|
|
|
115325
115520
|
catchEventHandlerExceptions?: boolean
|
|
115326
115521
|
/**
|
|
115327
115522
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
115328
|
-
*
|
|
115523
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-centered)
|
|
115524
|
+
* @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.
|
|
115329
115525
|
*/
|
|
115330
|
-
centered?: boolean
|
|
115526
|
+
centered?: boolean|object
|
|
115331
115527
|
/**
|
|
115332
115528
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
115333
115529
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -115462,7 +115658,7 @@ type ProjectComboConfig = {
|
|
|
115462
115658
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
115463
115659
|
/**
|
|
115464
115660
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
115465
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
115661
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
115466
115662
|
* property which controls when a drag should start.
|
|
115467
115663
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-draggable)
|
|
115468
115664
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -115912,7 +116108,7 @@ type ProjectComboConfig = {
|
|
|
115912
116108
|
rtl?: boolean
|
|
115913
116109
|
/**
|
|
115914
116110
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
115915
|
-
* Valid values:
|
|
116111
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
115916
116112
|
*/
|
|
115917
116113
|
scrollAction?: 'hide'|'realign'|null
|
|
115918
116114
|
/**
|
|
@@ -116661,9 +116857,10 @@ type ResourceComboConfig = {
|
|
|
116661
116857
|
catchEventHandlerExceptions?: boolean
|
|
116662
116858
|
/**
|
|
116663
116859
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
116664
|
-
*
|
|
116860
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-centered)
|
|
116861
|
+
* @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.
|
|
116665
116862
|
*/
|
|
116666
|
-
centered?: boolean
|
|
116863
|
+
centered?: boolean|object
|
|
116667
116864
|
/**
|
|
116668
116865
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
116669
116866
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -116798,7 +116995,7 @@ type ResourceComboConfig = {
|
|
|
116798
116995
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
116799
116996
|
/**
|
|
116800
116997
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
116801
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
116998
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
116802
116999
|
* property which controls when a drag should start.
|
|
116803
117000
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-draggable)
|
|
116804
117001
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -117244,7 +117441,7 @@ type ResourceComboConfig = {
|
|
|
117244
117441
|
rtl?: boolean
|
|
117245
117442
|
/**
|
|
117246
117443
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
117247
|
-
* Valid values:
|
|
117444
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
117248
117445
|
*/
|
|
117249
117446
|
scrollAction?: 'hide'|'realign'|null
|
|
117250
117447
|
/**
|
|
@@ -117980,9 +118177,10 @@ type ResourceFilterConfig = {
|
|
|
117980
118177
|
catchEventHandlerExceptions?: boolean
|
|
117981
118178
|
/**
|
|
117982
118179
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
117983
|
-
*
|
|
118180
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-centered)
|
|
118181
|
+
* @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.
|
|
117984
118182
|
*/
|
|
117985
|
-
centered?: boolean
|
|
118183
|
+
centered?: boolean|object
|
|
117986
118184
|
/**
|
|
117987
118185
|
* Configure as `true` to clear selection when clicking on empty space inside the List´s element.
|
|
117988
118186
|
*/
|
|
@@ -118067,7 +118265,7 @@ type ResourceFilterConfig = {
|
|
|
118067
118265
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
118068
118266
|
/**
|
|
118069
118267
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
118070
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
118268
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
118071
118269
|
* property which controls when a drag should start.
|
|
118072
118270
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-draggable)
|
|
118073
118271
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -118346,7 +118544,7 @@ type ResourceFilterConfig = {
|
|
|
118346
118544
|
rtl?: boolean
|
|
118347
118545
|
/**
|
|
118348
118546
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
118349
|
-
* Valid values:
|
|
118547
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
118350
118548
|
*/
|
|
118351
118549
|
scrollAction?: 'hide'|'realign'|null
|
|
118352
118550
|
/**
|
|
@@ -118434,7 +118632,7 @@ type ResourceFilterConfig = {
|
|
|
118434
118632
|
*/
|
|
118435
118633
|
ui?: string|object
|
|
118436
118634
|
/**
|
|
118437
|
-
* Configure as `false` to not use the Resource
|
|
118635
|
+
* Configure as `false` to not use the Resource's color field to style the checkbox
|
|
118438
118636
|
*/
|
|
118439
118637
|
useResourceColor?: boolean
|
|
118440
118638
|
/**
|
|
@@ -119208,9 +119406,10 @@ type SchedulerDatePickerConfig = {
|
|
|
119208
119406
|
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
|
|
119209
119407
|
/**
|
|
119210
119408
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
119211
|
-
*
|
|
119409
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-centered)
|
|
119410
|
+
* @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.
|
|
119212
119411
|
*/
|
|
119213
|
-
centered?: boolean
|
|
119412
|
+
centered?: boolean|object
|
|
119214
119413
|
/**
|
|
119215
119414
|
* Custom CSS classes to add to element.
|
|
119216
119415
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -119345,7 +119544,7 @@ type SchedulerDatePickerConfig = {
|
|
|
119345
119544
|
dragSelect?: boolean
|
|
119346
119545
|
/**
|
|
119347
119546
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
119348
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
119547
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
119349
119548
|
* property which controls when a drag should start.
|
|
119350
119549
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-draggable)
|
|
119351
119550
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -119529,7 +119728,7 @@ type SchedulerDatePickerConfig = {
|
|
|
119529
119728
|
*/
|
|
119530
119729
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
119531
119730
|
/**
|
|
119532
|
-
* Sets `labelWidth
|
|
119731
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
119533
119732
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-labelWidth)
|
|
119534
119733
|
*/
|
|
119535
119734
|
labelWidth?: number|null
|
|
@@ -119748,7 +119947,7 @@ type SchedulerDatePickerConfig = {
|
|
|
119748
119947
|
rtl?: boolean
|
|
119749
119948
|
/**
|
|
119750
119949
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
119751
|
-
* Valid values:
|
|
119950
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
119752
119951
|
*/
|
|
119753
119952
|
scrollAction?: 'hide'|'realign'|null
|
|
119754
119953
|
/**
|
|
@@ -120528,9 +120727,10 @@ type TimeZoomSliderConfig = {
|
|
|
120528
120727
|
catchEventHandlerExceptions?: boolean
|
|
120529
120728
|
/**
|
|
120530
120729
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
120531
|
-
*
|
|
120730
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-centered)
|
|
120731
|
+
* @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.
|
|
120532
120732
|
*/
|
|
120533
|
-
centered?: boolean
|
|
120733
|
+
centered?: boolean|object
|
|
120534
120734
|
/**
|
|
120535
120735
|
* The Scheduler, SchedulerPro or Gantt component instance to connect to. If not provided, the widget
|
|
120536
120736
|
* will attempt to find a timeline component by traversing up the widget hierarchy or querying for one.
|
|
@@ -120608,7 +120808,7 @@ type TimeZoomSliderConfig = {
|
|
|
120608
120808
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
120609
120809
|
/**
|
|
120610
120810
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
120611
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
120811
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
120612
120812
|
* property which controls when a drag should start.
|
|
120613
120813
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-draggable)
|
|
120614
120814
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -120845,7 +121045,7 @@ type TimeZoomSliderConfig = {
|
|
|
120845
121045
|
rtl?: boolean
|
|
120846
121046
|
/**
|
|
120847
121047
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
120848
|
-
* Valid values:
|
|
121048
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
120849
121049
|
*/
|
|
120850
121050
|
scrollAction?: 'hide'|'realign'|null
|
|
120851
121051
|
/**
|
|
@@ -121460,9 +121660,10 @@ type UndoRedoConfig = {
|
|
|
121460
121660
|
catchEventHandlerExceptions?: boolean
|
|
121461
121661
|
/**
|
|
121462
121662
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
121463
|
-
*
|
|
121663
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-centered)
|
|
121664
|
+
* @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.
|
|
121464
121665
|
*/
|
|
121465
|
-
centered?: boolean
|
|
121666
|
+
centered?: boolean|object
|
|
121466
121667
|
/**
|
|
121467
121668
|
* Custom CSS classes to add to element.
|
|
121468
121669
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -121545,7 +121746,7 @@ type UndoRedoConfig = {
|
|
|
121545
121746
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
121546
121747
|
/**
|
|
121547
121748
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
121548
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
121749
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
121549
121750
|
* property which controls when a drag should start.
|
|
121550
121751
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-draggable)
|
|
121551
121752
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -121652,7 +121853,7 @@ type UndoRedoConfig = {
|
|
|
121652
121853
|
*/
|
|
121653
121854
|
labelPosition?: 'before'|'above'|'align-before'|'auto'|null
|
|
121654
121855
|
/**
|
|
121655
|
-
* Sets `labelWidth
|
|
121856
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
121656
121857
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-labelWidth)
|
|
121657
121858
|
*/
|
|
121658
121859
|
labelWidth?: number|null
|
|
@@ -121833,7 +122034,7 @@ type UndoRedoConfig = {
|
|
|
121833
122034
|
scheduler?: Widget|string
|
|
121834
122035
|
/**
|
|
121835
122036
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
121836
|
-
* Valid values:
|
|
122037
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
121837
122038
|
*/
|
|
121838
122039
|
scrollAction?: 'hide'|'realign'|null
|
|
121839
122040
|
/**
|
|
@@ -122490,9 +122691,10 @@ type ViewPresetComboConfig = {
|
|
|
122490
122691
|
catchEventHandlerExceptions?: boolean
|
|
122491
122692
|
/**
|
|
122492
122693
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
122493
|
-
*
|
|
122694
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-centered)
|
|
122695
|
+
* @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.
|
|
122494
122696
|
*/
|
|
122495
|
-
centered?: boolean
|
|
122697
|
+
centered?: boolean|object
|
|
122496
122698
|
/**
|
|
122497
122699
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
122498
122700
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -122576,7 +122778,7 @@ type ViewPresetComboConfig = {
|
|
|
122576
122778
|
dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
122577
122779
|
/**
|
|
122578
122780
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*
|
|
122579
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
122781
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
122580
122782
|
* property which controls when a drag should start.
|
|
122581
122783
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-draggable)
|
|
122582
122784
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -122892,7 +123094,7 @@ type ViewPresetComboConfig = {
|
|
|
122892
123094
|
rtl?: boolean
|
|
122893
123095
|
/**
|
|
122894
123096
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
122895
|
-
* Valid values:
|
|
123097
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
122896
123098
|
*/
|
|
122897
123099
|
scrollAction?: 'hide'|'realign'|null
|
|
122898
123100
|
/**
|