@bryntum/grid-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/grid.d.ts CHANGED
@@ -688,6 +688,28 @@ type FetchOptions = {
688
688
  abortController?: AbortController
689
689
  }
690
690
 
691
+ /**
692
+ * A `Response` type which extends the native [`Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response)
693
+ * with Bryntum properties.
694
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-AjaxResponse)
695
+ */
696
+ type AjaxResponse = Response & {
697
+ /**
698
+ * The parsed JSON response body. Set when the `parseJson` option was passed to the request.
699
+ * Will be `null` if the body could not be parsed as JSON.
700
+ */
701
+ parsedJson?: any
702
+ /**
703
+ * The error thrown while parsing the JSON body, set when JSON parsing failed.
704
+ */
705
+ error?: Error
706
+ /**
707
+ * The response body as text. Set on responses produced by
708
+ * [mocked URLs](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-mockUrl-static).
709
+ */
710
+ responseText?: string
711
+ }
712
+
691
713
  /**
692
714
  * A string defining a duration unit. Valid values are:
693
715
  * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#typedef-DurationUnit)
@@ -1284,6 +1306,22 @@ type HintActions = {
1284
1306
  fn?: () => void
1285
1307
  }
1286
1308
 
1309
+ /**
1310
+ * Result object yielded by the [prompt](https://bryntum.com/products/grid/docs/api/Core/widget/MessageDialog#function-prompt) Promise.
1311
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MessageDialog#typedef-MessageDialogPromptResult)
1312
+ */
1313
+ type MessageDialogPromptResult = {
1314
+ /**
1315
+ * The identifier of the button that was pressed
1316
+ * ([okButton](https://bryntum.com/products/grid/docs/api/Core/widget/MessageDialog#property-okButton) or [cancelButton](#Core/widget/MessageDialog#property-cancelButton)).
1317
+ */
1318
+ button: number
1319
+ /**
1320
+ * The text entered by the user in the text field.
1321
+ */
1322
+ text: string
1323
+ }
1324
+
1287
1325
  /**
1288
1326
  * An object that describes a Panel's header.
1289
1327
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#typedef-PanelHeader)
@@ -3501,6 +3539,22 @@ type AjaxStoreConfig = {
3501
3539
  * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-dontRelayToMaster)
3502
3540
  */
3503
3541
  dontRelayToMaster?: string
3542
+ /**
3543
+ * A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
3544
+ * any filters to the server upon load.
3545
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-encodeFilterParams)
3546
+ * @param {Core.util.CollectionFilter[]} filters The filters to encode.
3547
+ * @returns {string} The encoded value for the filter parameter.
3548
+ */
3549
+ encodeFilterParams?: (filters: CollectionFilter[]) => string
3550
+ /**
3551
+ * A provided function which creates an array of values for the {#config-sortParamName} to pass
3552
+ * any sorters to the server upon load.
3553
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-encodeSorterParams)
3554
+ * @param {Sorter[]} sorters The sorters to encode.
3555
+ * @returns {string} The encoded value for the sort parameter.
3556
+ */
3557
+ encodeSorterParams?: (sorters: Sorter[]) => string
3504
3558
  /**
3505
3559
  * If `true`, collapsed records in original tree will be excluded from the chained store.
3506
3560
  * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-excludeCollapsedRecords)
@@ -3850,7 +3904,7 @@ type AjaxStoreConfig = {
3850
3904
  */
3851
3905
  useRawData?: boolean|{ disableDuplicateIdCheck?: boolean, disableDefaultValue?: boolean, disableTypeConversion?: boolean }
3852
3906
  /**
3853
- * Set to ´true´ to use restful [httpMethods](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-httpMethods)
3907
+ * Set to `true` to use restful [httpMethods](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-httpMethods)
3854
3908
  */
3855
3909
  useRestfulMethods?: boolean
3856
3910
  /**
@@ -4577,27 +4631,13 @@ export class AjaxStore extends Store {
4577
4631
  * [updateUrl](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-updateUrl) and [deleteUrl](#Core/data/AjaxStore#config-deleteUrl))
4578
4632
  */
4579
4633
  commit(): Promise<any|boolean>;
4580
- /**
4581
- * A provided function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-filterParamName) to pass
4582
- * any filters to the server upon load.
4583
- * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#function-encodeFilterParams)
4584
- * @param {Core.util.CollectionFilter[]} filters The filters to encode.
4585
- */
4586
- encodeFilterParams(filters: CollectionFilter[]): void;
4587
- /**
4588
- * A provided function which creates an array of values for the {#config-sortParamName} to pass
4589
- * any sorters to the server upon load.
4590
- * [More...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#function-encodeSorterParams)
4591
- * @param {Sorter[]} sorters The sorters to encode.
4592
- */
4593
- encodeSorterParams(sorters: Sorter[]): void;
4594
4634
  /**
4595
4635
  * Load data from the [readUrl](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-readUrl). If configured as [lazyLoad](#Core/data/AjaxStore#config-lazyLoad), this will load 1 chunk of
4596
4636
  * records starting from index 0. If the store has previously been loaded, it will first be cleared of all records
4597
4637
  * and all lazy load cache.
4598
4638
  * @param {object} [params] A hash of parameters to append to querystring (will also append Store#params)
4599
4639
  */
4600
- load(params?: object): Promise<any>;
4640
+ load(params?: object): Promise<object>;
4601
4641
  /**
4602
4642
  * Loads children into specified parent record. Parent records id is sent as a param (param name configured with
4603
4643
  * [parentIdParamName](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-parentIdParamName).
@@ -5063,7 +5103,7 @@ export class Model extends Base {
5063
5103
  */
5064
5104
  readonly copyOf: Model
5065
5105
  /**
5066
- * Count all children (including sub-children) for a node (in its `firstStore´)
5106
+ * Count all children (including sub-children) for a node (in its `firstStore`)
5067
5107
  */
5068
5108
  descendantCount: number
5069
5109
  /**
@@ -6798,7 +6838,7 @@ type StoreConfig = {
6798
6838
 
6799
6839
  /**
6800
6840
  * The Store represents a data container which holds flat data or tree structures. An item in the Store is often called
6801
- * a ´record´ and it is simply an instance of the [Model](https://bryntum.com/products/grid/docs/api/Core/data/Model) (or any subclass thereof).
6841
+ * a `record` and it is simply an instance of the [Model](https://bryntum.com/products/grid/docs/api/Core/data/Model) (or any subclass thereof).
6802
6842
  * [More...](https://bryntum.com/products/grid/docs/api/Core/data/Store)
6803
6843
  */
6804
6844
  export class Store extends Base {
@@ -8027,7 +8067,7 @@ export class Wbs {
8027
8067
  */
8028
8068
  readonly value: string
8029
8069
  /**
8030
- * Compares two WBS values, returning 0 if equal, -1 if `lhs` is less than `rhs, or 1 if `lhs`is greater than`rhs`.
8070
+ * Compares two WBS values, returning 0 if equal, -1 if `lhs` is less than `rhs`, or 1 if `lhs` is greater than `rhs`.
8031
8071
  * @param {string,Core.data.Wbs} lhs
8032
8072
  * @param {string,Core.data.Wbs} rhs
8033
8073
  */
@@ -10849,7 +10889,7 @@ export class TreeNodeClass {
10849
10889
  */
10850
10890
  readonly children: boolean|object[]|Model[]|ModelConfig[]
10851
10891
  /**
10852
- * Count all children (including sub-children) for a node (in its `firstStore´)
10892
+ * Count all children (including sub-children) for a node (in its `firstStore`)
10853
10893
  */
10854
10894
  descendantCount: number
10855
10895
  /**
@@ -11553,11 +11593,11 @@ export class StateTrackingManager extends Base {
11553
11593
  * Redoes current undo/redo transaction.
11554
11594
  * @param {number} [steps]
11555
11595
  */
11556
- redo(steps?: number): Promise<any>;
11596
+ redo(steps?: number): Promise<void>;
11557
11597
  /**
11558
11598
  * Redoes all transactions.
11559
11599
  */
11560
- redoAll(): Promise<any>;
11600
+ redoAll(): Promise<void>;
11561
11601
  /**
11562
11602
  * Rejects currently recorded transaction.
11563
11603
  */
@@ -11639,11 +11679,11 @@ export class StateTrackingManager extends Base {
11639
11679
  * Undoes current undo/redo transaction.
11640
11680
  * @param {number} [steps]
11641
11681
  */
11642
- undo(steps?: number): Promise<any>;
11682
+ undo(steps?: number): Promise<void>;
11643
11683
  /**
11644
11684
  * Undoes all transactions.
11645
11685
  */
11646
- undoAll(): Promise<any>;
11686
+ undoAll(): Promise<void>;
11647
11687
  }
11648
11688
 
11649
11689
  /**
@@ -13761,20 +13801,25 @@ export class AjaxHelper {
13761
13801
  */
13762
13802
  static DEFAULT_FETCH_OPTIONS: FetchOptions
13763
13803
  /**
13764
- * Fetch the specified resource using the `fetch` API.
13804
+ * Fetch the specified resource using the `fetch` API. Resolves to a [AjaxResponse](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-AjaxResponse) — the native
13805
+ * `Response` extended with `parsedJson` when `parseJson : true` is set in the [FetchOptions](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-FetchOptions).
13806
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-fetch)
13765
13807
  * @param {string} url URL to fetch from
13766
13808
  * @param {FetchOptions} [options] The options for the `fetch` API
13767
13809
  */
13768
- static fetch(url: string, options?: FetchOptions): Promise<any>;
13810
+ static fetch(url: string, options?: FetchOptions): Promise<AjaxResponse>;
13769
13811
  /**
13770
- * Make a request (using GET) to the specified url.
13812
+ * Make a request (using GET) to the specified url. Resolves to a [AjaxResponse](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-AjaxResponse); pass `parseJson : true`
13813
+ * in the [FetchOptions](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-FetchOptions) to have the response body parsed and exposed as `parsedJson`.
13814
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-get)
13771
13815
  * @param {string} url URL to `GET` from
13772
13816
  * @param {FetchOptions} [options] The options for the `fetch` API
13773
13817
  */
13774
- static get(url: string, options?: FetchOptions): Promise<any>;
13818
+ static get(url: string, options?: FetchOptions): Promise<AjaxResponse>;
13775
13819
  /**
13776
13820
  * Registers the passed URL to return the passed mocked up Fetch Response object to the
13777
13821
  * AjaxHelper's promise resolve function.
13822
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-mockUrl)
13778
13823
  * @param {string} url The url to return mock data for
13779
13824
  * @param {object,Function} response A mocked up Fetch Response object which must contain at least a `responseText` property, or a function to which the `url` and a `params` object, and the `Fetch` `options` object is passed which returns that
13780
13825
  * @param {string} [response.url] Fetch url
@@ -13786,12 +13831,14 @@ export class AjaxHelper {
13786
13831
  */
13787
13832
  static mockUrl(url: string, response: object|((url?: string, responseText?: string, params?: object, synchronous?: boolean, delay?: number) => object)): void;
13788
13833
  /**
13789
- * POST data to the specified URL.
13834
+ * POST data to the specified URL. Resolves to a [AjaxResponse](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-AjaxResponse); pass `parseJson : true` in the
13835
+ * [FetchOptions](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#typedef-FetchOptions) to have the response body parsed and exposed as `parsedJson`.
13836
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-post)
13790
13837
  * @param {string} url URL to `POST` to
13791
13838
  * @param {string,object,FormData} payload The data to post. If an object is supplied, it will be stringified
13792
13839
  * @param {FetchOptions} [options] The options for the `fetch` API
13793
13840
  */
13794
- static post(url: string, payload: string|object|FormData, options?: FetchOptions): Promise<any>;
13841
+ static post(url: string, payload: string|object|FormData, options?: FetchOptions): Promise<AjaxResponse>;
13795
13842
  }
13796
13843
 
13797
13844
  /**
@@ -16494,7 +16541,7 @@ export class Rectangle {
16494
16541
  * @param {number[]} [spec.anchorSize] The `[width, height]` of the anchor pointer when in `top` position. The width is the baseline length, and the height is the height of the arrow. If passed, the anchor position will be calculated to be at the centre of the overlap of the two aligned edges and returned in the `anchor` property of the resulting Rectangle: ```javascript { edge: 'top', // or 'right' or 'bottom' or 'left' x/y: offset // dimension to translate and value to translate by. } ```
16495
16542
  * @param {object} [spec.anchorPosition] an `{ x: n, y: n }` anchor translation to be used <em>if the requested alignment succeeds without violating constraints</em>. If a fallback alignment is used, the anchor will be centered in the overlap of the aligned edges as usual.
16496
16543
  * @param {boolean} [spec.overlap] True to allow this to overlap the target.
16497
- * @param {string} spec.align The edge alignment specification string, specifying two points to bring together. Each point is described by an edge initial (`t` for top edge, `b` for bottom edge etc) followed by a percentage along that edge. So the form would be `[trblc][n]-[trblc][n].` The `n` is the percentage offset along that edge which defines the alignment point. This is not valid for alignment point `c` which means the center point. For example `t0-b0' would align this Rectangle's top left corner with the bottom left corner of the `target`.
16544
+ * @param {string} spec.align The edge alignment specification string, specifying two points to bring together. Each point is described by an edge initial (`t` for top edge, `b` for bottom edge etc) followed by a percentage along that edge. So the form would be `[trblc][n]-[trblc][n].` The `n` is the percentage offset along that edge which defines the alignment point. This is not valid for alignment point `c` which means the center point. For example `t0-b0` would align this Rectangle's top left corner with the bottom left corner of the `target`.
16498
16545
  * @param {HTMLElement,Core.widget.Widget,Core.helper.util.Rectangle} [spec.constrainTo] The Widget or Element or Rectangle to constrain to. If the requested alignment cannot be constrained (it will first shrink the resulting Rectangle according to the `minWidth` and `minHeight` properties of this rectangle), then it will try aligning at other edges (honouring the `axisLock` option), and pick the fallback alignment which results in the shortest translation.
16499
16546
  * @param {boolean} [spec.axisLock] Specify as a truthy value to fall back to aligning against the opposite edge first if the requested alignment cannot be constrained into the `constrainTo` option. If specified as `'flexible'`, then fallback will continue searching for solutions on the remaining two sides.
16500
16547
  * @param {boolean,'min'} [spec.matchSize] When aligning edge-to-edge, match the length of the aligned-to edge of the target. Setting this value to `'min'` means that the resulting aligned Rectangle will *grow* to the size of the aligned-to edge if it is smaller, but will not *shrink* to match the aligned-to edge. This is only honored when `axisLock` is enabled and alignment succeeds on the requested axis. If <strong>not</strong> aligning edge-to-edge, `matchSize` matches both dimensions of the target.
@@ -17079,7 +17126,7 @@ export class LocaleManagerSingleton {
17079
17126
  * Get/set currently used locale.
17080
17127
  * Setter calls [applyLocale](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-applyLocale).
17081
17128
  */
17082
- locale: string|Locale|Locales
17129
+ locale: string|Locale
17083
17130
  /**
17084
17131
  * Get/set currently registered locales.
17085
17132
  * Alias for [LocaleHelper.locales](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleHelper#property-locales-static).
@@ -17868,7 +17915,7 @@ export const LoadMaskable : <T extends AnyConstructor<Base>>(base : T) => AnyCon
17868
17915
 
17869
17916
  /**
17870
17917
  * Simplifies overriding class methods by allowing methods from another class to be used as overrides. Overrides are
17871
- * defined as own classes. They must at a minimum contain a static getter named `target´, which should return an object
17918
+ * defined as own classes. They must at a minimum contain a static getter named `target`, which should return an object
17872
17919
  * with the class to override. Apply the override by calling [apply()](https://bryntum.com/products/grid/docs/api/Core/mixin/Override#function-apply-static).
17873
17920
  * [More...](https://bryntum.com/products/grid/docs/api/Core/mixin/Override)
17874
17921
  */
@@ -18325,9 +18372,9 @@ export class StateProvider {
18325
18372
  * Initializes the default `StateProvider` instance for the page. This method can be passed an instance or one of
18326
18373
  * the following type aliases:
18327
18374
  * [More...](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#function-setup)
18328
- * @param {'local','memory',Core.state.StateProvider} inst The state provider storage type ('local' or 'memory') or the `StateProvider` instance.
18375
+ * @param {'local','memory',Core.state.StateProvider,StateProviderConfig} inst The storage type (`'local'` or `'memory'`), a `StateProviderConfig` object, or the `StateProvider` instance.
18329
18376
  */
18330
- static setup(inst: 'local'|'memory'|StateProvider): StateProvider;
18377
+ static setup(inst: 'local'|'memory'|StateProvider|StateProviderConfig): StateProvider;
18331
18378
  /**
18332
18379
  * Adds an event listener. This method accepts parameters in the following format:
18333
18380
  * [More...](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#function-addListener)
@@ -20185,9 +20232,10 @@ type BooleanComboConfig = {
20185
20232
  catchEventHandlerExceptions?: boolean
20186
20233
  /**
20187
20234
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
20188
- * Set to `true` to centre the Widget in browser viewport space.
20235
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-centered)
20236
+ * @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.
20189
20237
  */
20190
- centered?: boolean
20238
+ centered?: boolean|object
20191
20239
  /**
20192
20240
  * A function (or the name of a function in the ownership hierarchy) called during field validation
20193
20241
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -20322,7 +20370,7 @@ type BooleanComboConfig = {
20322
20370
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
20323
20371
  /**
20324
20372
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
20325
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
20373
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
20326
20374
  * property which controls when a drag should start.
20327
20375
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-draggable)
20328
20376
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -20784,7 +20832,7 @@ type BooleanComboConfig = {
20784
20832
  rtl?: boolean
20785
20833
  /**
20786
20834
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
20787
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
20835
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
20788
20836
  */
20789
20837
  scrollAction?: 'hide'|'realign'|null
20790
20838
  /**
@@ -21506,9 +21554,10 @@ type ButtonConfig = {
21506
21554
  catchEventHandlerExceptions?: boolean
21507
21555
  /**
21508
21556
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
21509
- * Set to `true` to centre the Widget in browser viewport space.
21557
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-centered)
21558
+ * @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.
21510
21559
  */
21511
- centered?: boolean
21560
+ centered?: boolean|object
21512
21561
  /**
21513
21562
  * Custom CSS classes to add to element.
21514
21563
  * May be specified as a space separated string, or as an object in which property names
@@ -21581,7 +21630,7 @@ type ButtonConfig = {
21581
21630
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
21582
21631
  /**
21583
21632
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
21584
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
21633
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
21585
21634
  * property which controls when a drag should start.
21586
21635
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-draggable)
21587
21636
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -21837,7 +21886,7 @@ type ButtonConfig = {
21837
21886
  rtl?: boolean
21838
21887
  /**
21839
21888
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
21840
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
21889
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
21841
21890
  */
21842
21891
  scrollAction?: 'hide'|'realign'|null
21843
21892
  /**
@@ -22661,9 +22710,10 @@ type ButtonGroupConfig = {
22661
22710
  catchEventHandlerExceptions?: boolean
22662
22711
  /**
22663
22712
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
22664
- * Set to `true` to centre the Widget in browser viewport space.
22713
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-centered)
22714
+ * @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.
22665
22715
  */
22666
- centered?: boolean
22716
+ centered?: boolean|object
22667
22717
  /**
22668
22718
  * Custom CSS class to add to element.
22669
22719
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-cls)
@@ -22745,7 +22795,7 @@ type ButtonGroupConfig = {
22745
22795
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
22746
22796
  /**
22747
22797
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
22748
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
22798
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
22749
22799
  * property which controls when a drag should start.
22750
22800
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-draggable)
22751
22801
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -22850,7 +22900,7 @@ type ButtonGroupConfig = {
22850
22900
  */
22851
22901
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
22852
22902
  /**
22853
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
22903
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
22854
22904
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-labelWidth)
22855
22905
  */
22856
22906
  labelWidth?: number|null
@@ -23019,7 +23069,7 @@ type ButtonGroupConfig = {
23019
23069
  rtl?: boolean
23020
23070
  /**
23021
23071
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
23022
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
23072
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
23023
23073
  */
23024
23074
  scrollAction?: 'hide'|'realign'|null
23025
23075
  /**
@@ -23857,9 +23907,10 @@ type CalendarPanelConfig = {
23857
23907
  cellRenderer?: ((context: { cell: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string
23858
23908
  /**
23859
23909
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
23860
- * Set to `true` to centre the Widget in browser viewport space.
23910
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-centered)
23911
+ * @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.
23861
23912
  */
23862
- centered?: boolean
23913
+ centered?: boolean|object
23863
23914
  /**
23864
23915
  * Custom CSS classes to add to element.
23865
23916
  * May be specified as a space separated string, or as an object in which property names
@@ -23989,7 +24040,7 @@ type CalendarPanelConfig = {
23989
24040
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
23990
24041
  /**
23991
24042
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
23992
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
24043
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
23993
24044
  * property which controls when a drag should start.
23994
24045
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-draggable)
23995
24046
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -24141,7 +24192,7 @@ type CalendarPanelConfig = {
24141
24192
  */
24142
24193
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
24143
24194
  /**
24144
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
24195
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
24145
24196
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-labelWidth)
24146
24197
  */
24147
24198
  labelWidth?: number|null
@@ -24339,7 +24390,7 @@ type CalendarPanelConfig = {
24339
24390
  rtl?: boolean
24340
24391
  /**
24341
24392
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
24342
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
24393
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
24343
24394
  */
24344
24395
  scrollAction?: 'hide'|'realign'|null
24345
24396
  /**
@@ -25274,9 +25325,10 @@ type CarouselConfig = {
25274
25325
  catchEventHandlerExceptions?: boolean
25275
25326
  /**
25276
25327
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
25277
- * Set to `true` to centre the Widget in browser viewport space.
25328
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-centered)
25329
+ * @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.
25278
25330
  */
25279
- centered?: boolean
25331
+ centered?: boolean|object
25280
25332
  /**
25281
25333
  * Custom CSS classes to add to element.
25282
25334
  * May be specified as a space separated string, or as an object in which property names
@@ -25393,7 +25445,7 @@ type CarouselConfig = {
25393
25445
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
25394
25446
  /**
25395
25447
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
25396
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
25448
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
25397
25449
  * property which controls when a drag should start.
25398
25450
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-draggable)
25399
25451
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -25542,7 +25594,7 @@ type CarouselConfig = {
25542
25594
  */
25543
25595
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
25544
25596
  /**
25545
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
25597
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
25546
25598
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-labelWidth)
25547
25599
  */
25548
25600
  labelWidth?: number|null
@@ -25725,7 +25777,7 @@ type CarouselConfig = {
25725
25777
  rtl?: boolean
25726
25778
  /**
25727
25779
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
25728
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
25780
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
25729
25781
  */
25730
25782
  scrollAction?: 'hide'|'realign'|null
25731
25783
  /**
@@ -26652,9 +26704,10 @@ type CheckboxConfig = {
26652
26704
  catchEventHandlerExceptions?: boolean
26653
26705
  /**
26654
26706
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
26655
- * Set to `true` to centre the Widget in browser viewport space.
26707
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-centered)
26708
+ * @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.
26656
26709
  */
26657
- centered?: boolean
26710
+ centered?: boolean|object
26658
26711
  /**
26659
26712
  * A function (or the name of a function in the ownership hierarchy) called during field validation
26660
26713
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -26752,7 +26805,7 @@ type CheckboxConfig = {
26752
26805
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
26753
26806
  /**
26754
26807
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
26755
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
26808
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
26756
26809
  * property which controls when a drag should start.
26757
26810
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-draggable)
26758
26811
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -27060,7 +27113,7 @@ type CheckboxConfig = {
27060
27113
  rtl?: boolean
27061
27114
  /**
27062
27115
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
27063
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
27116
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
27064
27117
  */
27065
27118
  scrollAction?: 'hide'|'realign'|null
27066
27119
  /**
@@ -27887,9 +27940,10 @@ type CheckboxGroupConfig = {
27887
27940
  catchEventHandlerExceptions?: boolean
27888
27941
  /**
27889
27942
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
27890
- * Set to `true` to centre the Widget in browser viewport space.
27943
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-centered)
27944
+ * @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.
27891
27945
  */
27892
- centered?: boolean
27946
+ centered?: boolean|object
27893
27947
  /**
27894
27948
  * Custom CSS classes to add to element.
27895
27949
  * May be specified as a space separated string, or as an object in which property names
@@ -27984,7 +28038,7 @@ type CheckboxGroupConfig = {
27984
28038
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
27985
28039
  /**
27986
28040
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
27987
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
28041
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
27988
28042
  * property which controls when a drag should start.
27989
28043
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-draggable)
27990
28044
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -28137,7 +28191,7 @@ type CheckboxGroupConfig = {
28137
28191
  */
28138
28192
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
28139
28193
  /**
28140
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
28194
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
28141
28195
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-labelWidth)
28142
28196
  */
28143
28197
  labelWidth?: number|null
@@ -28334,7 +28388,7 @@ type CheckboxGroupConfig = {
28334
28388
  rtl?: boolean
28335
28389
  /**
28336
28390
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
28337
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
28391
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
28338
28392
  */
28339
28393
  scrollAction?: 'hide'|'realign'|null
28340
28394
  /**
@@ -29135,9 +29189,10 @@ type ChipViewConfig = {
29135
29189
  catchEventHandlerExceptions?: boolean
29136
29190
  /**
29137
29191
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
29138
- * Set to `true` to centre the Widget in browser viewport space.
29192
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-centered)
29193
+ * @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.
29139
29194
  */
29140
- centered?: boolean
29195
+ centered?: boolean|object
29141
29196
  /**
29142
29197
  * Configure as `true` to clear selection when clicking on empty space inside the List´s element.
29143
29198
  */
@@ -29236,7 +29291,7 @@ type ChipViewConfig = {
29236
29291
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
29237
29292
  /**
29238
29293
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
29239
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
29294
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
29240
29295
  * property which controls when a drag should start.
29241
29296
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-draggable)
29242
29297
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -29502,7 +29557,7 @@ type ChipViewConfig = {
29502
29557
  rtl?: boolean
29503
29558
  /**
29504
29559
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
29505
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
29560
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
29506
29561
  */
29507
29562
  scrollAction?: 'hide'|'realign'|null
29508
29563
  /**
@@ -30212,9 +30267,10 @@ type CodeEditorConfig = {
30212
30267
  catchEventHandlerExceptions?: boolean
30213
30268
  /**
30214
30269
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
30215
- * Set to `true` to centre the Widget in browser viewport space.
30270
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-centered)
30271
+ * @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.
30216
30272
  */
30217
- centered?: boolean
30273
+ centered?: boolean|object
30218
30274
  /**
30219
30275
  * Custom CSS classes to add to element.
30220
30276
  * May be specified as a space separated string, or as an object in which property names
@@ -30314,7 +30370,7 @@ type CodeEditorConfig = {
30314
30370
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
30315
30371
  /**
30316
30372
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
30317
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
30373
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
30318
30374
  * property which controls when a drag should start.
30319
30375
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-draggable)
30320
30376
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -30457,7 +30513,7 @@ type CodeEditorConfig = {
30457
30513
  */
30458
30514
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
30459
30515
  /**
30460
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
30516
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
30461
30517
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-labelWidth)
30462
30518
  */
30463
30519
  labelWidth?: number|null
@@ -30630,7 +30686,7 @@ type CodeEditorConfig = {
30630
30686
  rtl?: boolean
30631
30687
  /**
30632
30688
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
30633
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
30689
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
30634
30690
  */
30635
30691
  scrollAction?: 'hide'|'realign'|null
30636
30692
  /**
@@ -31452,9 +31508,10 @@ type ColorFieldConfig = {
31452
31508
  catchEventHandlerExceptions?: boolean
31453
31509
  /**
31454
31510
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
31455
- * Set to `true` to centre the Widget in browser viewport space.
31511
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-centered)
31512
+ * @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.
31456
31513
  */
31457
- centered?: boolean
31514
+ centered?: boolean|object
31458
31515
  /**
31459
31516
  * A function (or the name of a function in the ownership hierarchy) called during field validation
31460
31517
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -31551,7 +31608,7 @@ type ColorFieldConfig = {
31551
31608
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
31552
31609
  /**
31553
31610
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
31554
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
31611
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
31555
31612
  * property which controls when a drag should start.
31556
31613
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-draggable)
31557
31614
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -31880,7 +31937,7 @@ type ColorFieldConfig = {
31880
31937
  rtl?: boolean
31881
31938
  /**
31882
31939
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
31883
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
31940
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
31884
31941
  */
31885
31942
  scrollAction?: 'hide'|'realign'|null
31886
31943
  /**
@@ -32586,9 +32643,10 @@ type ColorPickerConfig = {
32586
32643
  catchEventHandlerExceptions?: boolean
32587
32644
  /**
32588
32645
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
32589
- * Set to `true` to centre the Widget in browser viewport space.
32646
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-centered)
32647
+ * @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.
32590
32648
  */
32591
- centered?: boolean
32649
+ centered?: boolean|object
32592
32650
  /**
32593
32651
  * Configure as `true` to clear selection when clicking on empty space inside the List´s element.
32594
32652
  */
@@ -32692,7 +32750,7 @@ type ColorPickerConfig = {
32692
32750
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
32693
32751
  /**
32694
32752
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
32695
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
32753
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
32696
32754
  * property which controls when a drag should start.
32697
32755
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-draggable)
32698
32756
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -32951,7 +33009,7 @@ type ColorPickerConfig = {
32951
33009
  rtl?: boolean
32952
33010
  /**
32953
33011
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
32954
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
33012
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
32955
33013
  */
32956
33014
  scrollAction?: 'hide'|'realign'|null
32957
33015
  /**
@@ -33698,9 +33756,10 @@ type ComboConfig = {
33698
33756
  catchEventHandlerExceptions?: boolean
33699
33757
  /**
33700
33758
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
33701
- * Set to `true` to centre the Widget in browser viewport space.
33759
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-centered)
33760
+ * @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.
33702
33761
  */
33703
- centered?: boolean
33762
+ centered?: boolean|object
33704
33763
  /**
33705
33764
  * A function (or the name of a function in the ownership hierarchy) called during field validation
33706
33765
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -33835,7 +33894,7 @@ type ComboConfig = {
33835
33894
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
33836
33895
  /**
33837
33896
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
33838
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
33897
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
33839
33898
  * property which controls when a drag should start.
33840
33899
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-draggable)
33841
33900
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -34281,7 +34340,7 @@ type ComboConfig = {
34281
34340
  rtl?: boolean
34282
34341
  /**
34283
34342
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
34284
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
34343
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
34285
34344
  */
34286
34345
  scrollAction?: 'hide'|'realign'|null
34287
34346
  /**
@@ -35084,9 +35143,10 @@ type ConfirmationBarConfig = {
35084
35143
  catchEventHandlerExceptions?: boolean
35085
35144
  /**
35086
35145
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
35087
- * Set to `true` to centre the Widget in browser viewport space.
35146
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-centered)
35147
+ * @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.
35088
35148
  */
35089
- centered?: boolean
35149
+ centered?: boolean|object
35090
35150
  /**
35091
35151
  * Custom CSS classes to add to element.
35092
35152
  * May be specified as a space separated string, or as an object in which property names
@@ -35175,7 +35235,7 @@ type ConfirmationBarConfig = {
35175
35235
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
35176
35236
  /**
35177
35237
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
35178
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
35238
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
35179
35239
  * property which controls when a drag should start.
35180
35240
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-draggable)
35181
35241
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -35283,7 +35343,7 @@ type ConfirmationBarConfig = {
35283
35343
  */
35284
35344
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
35285
35345
  /**
35286
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
35346
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
35287
35347
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-labelWidth)
35288
35348
  */
35289
35349
  labelWidth?: number|null
@@ -35458,7 +35518,7 @@ type ConfirmationBarConfig = {
35458
35518
  rtl?: boolean
35459
35519
  /**
35460
35520
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
35461
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
35521
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
35462
35522
  */
35463
35523
  scrollAction?: 'hide'|'realign'|null
35464
35524
  /**
@@ -36133,9 +36193,10 @@ type ContainerConfig = {
36133
36193
  catchEventHandlerExceptions?: boolean
36134
36194
  /**
36135
36195
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
36136
- * Set to `true` to centre the Widget in browser viewport space.
36196
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-centered)
36197
+ * @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.
36137
36198
  */
36138
- centered?: boolean
36199
+ centered?: boolean|object
36139
36200
  /**
36140
36201
  * Custom CSS classes to add to element.
36141
36202
  * May be specified as a space separated string, or as an object in which property names
@@ -36220,7 +36281,7 @@ type ContainerConfig = {
36220
36281
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
36221
36282
  /**
36222
36283
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
36223
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
36284
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
36224
36285
  * property which controls when a drag should start.
36225
36286
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-draggable)
36226
36287
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -36327,7 +36388,7 @@ type ContainerConfig = {
36327
36388
  */
36328
36389
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
36329
36390
  /**
36330
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
36391
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
36331
36392
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-labelWidth)
36332
36393
  */
36333
36394
  labelWidth?: number|null
@@ -36497,7 +36558,7 @@ type ContainerConfig = {
36497
36558
  rtl?: boolean
36498
36559
  /**
36499
36560
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
36500
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
36561
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
36501
36562
  */
36502
36563
  scrollAction?: 'hide'|'realign'|null
36503
36564
  /**
@@ -36763,7 +36824,7 @@ export class Container extends Widget {
36763
36824
  */
36764
36825
  labelPosition: 'before'|'above'|'align-before'|'auto'|null
36765
36826
  /**
36766
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
36827
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
36767
36828
  */
36768
36829
  labelWidth: number|null
36769
36830
  /**
@@ -37309,9 +37370,10 @@ type DateFieldConfig = {
37309
37370
  catchEventHandlerExceptions?: boolean
37310
37371
  /**
37311
37372
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
37312
- * Set to `true` to centre the Widget in browser viewport space.
37373
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-centered)
37374
+ * @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.
37313
37375
  */
37314
- centered?: boolean
37376
+ centered?: boolean|object
37315
37377
  /**
37316
37378
  * A function (or the name of a function in the ownership hierarchy) called during field validation
37317
37379
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -37407,7 +37469,7 @@ type DateFieldConfig = {
37407
37469
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
37408
37470
  /**
37409
37471
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
37410
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
37472
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
37411
37473
  * property which controls when a drag should start.
37412
37474
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-draggable)
37413
37475
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -37774,7 +37836,7 @@ type DateFieldConfig = {
37774
37836
  rtl?: boolean
37775
37837
  /**
37776
37838
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
37777
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
37839
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
37778
37840
  */
37779
37841
  scrollAction?: 'hide'|'realign'|null
37780
37842
  /**
@@ -38678,9 +38740,10 @@ type DatePickerConfig = {
38678
38740
  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
38679
38741
  /**
38680
38742
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
38681
- * Set to `true` to centre the Widget in browser viewport space.
38743
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-centered)
38744
+ * @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.
38682
38745
  */
38683
- centered?: boolean
38746
+ centered?: boolean|object
38684
38747
  /**
38685
38748
  * Custom CSS classes to add to element.
38686
38749
  * May be specified as a space separated string, or as an object in which property names
@@ -38815,7 +38878,7 @@ type DatePickerConfig = {
38815
38878
  dragSelect?: boolean
38816
38879
  /**
38817
38880
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
38818
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
38881
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
38819
38882
  * property which controls when a drag should start.
38820
38883
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-draggable)
38821
38884
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -38986,7 +39049,7 @@ type DatePickerConfig = {
38986
39049
  */
38987
39050
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
38988
39051
  /**
38989
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
39052
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
38990
39053
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-labelWidth)
38991
39054
  */
38992
39055
  labelWidth?: number|null
@@ -39205,7 +39268,7 @@ type DatePickerConfig = {
39205
39268
  rtl?: boolean
39206
39269
  /**
39207
39270
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
39208
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
39271
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
39209
39272
  */
39210
39273
  scrollAction?: 'hide'|'realign'|null
39211
39274
  /**
@@ -40090,9 +40153,10 @@ type DateRangeFieldConfig = {
40090
40153
  catchEventHandlerExceptions?: boolean
40091
40154
  /**
40092
40155
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
40093
- * Set to `true` to centre the Widget in browser viewport space.
40156
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-centered)
40157
+ * @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.
40094
40158
  */
40095
- centered?: boolean
40159
+ centered?: boolean|object
40096
40160
  /**
40097
40161
  * A function (or the name of a function in the ownership hierarchy) called during field validation
40098
40162
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -40202,7 +40266,7 @@ type DateRangeFieldConfig = {
40202
40266
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
40203
40267
  /**
40204
40268
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
40205
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
40269
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
40206
40270
  * property which controls when a drag should start.
40207
40271
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-draggable)
40208
40272
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -40566,7 +40630,7 @@ type DateRangeFieldConfig = {
40566
40630
  rtl?: boolean
40567
40631
  /**
40568
40632
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
40569
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
40633
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
40570
40634
  */
40571
40635
  scrollAction?: 'hide'|'realign'|null
40572
40636
  /**
@@ -41348,9 +41412,10 @@ type DateRangePickerConfig = {
41348
41412
  cellRenderer?: ((context: { cell: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string
41349
41413
  /**
41350
41414
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
41351
- * Set to `true` to centre the Widget in browser viewport space.
41415
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-centered)
41416
+ * @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.
41352
41417
  */
41353
- centered?: boolean
41418
+ centered?: boolean|object
41354
41419
  /**
41355
41420
  * Custom CSS classes to add to element.
41356
41421
  * May be specified as a space separated string, or as an object in which property names
@@ -41488,7 +41553,7 @@ type DateRangePickerConfig = {
41488
41553
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
41489
41554
  /**
41490
41555
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
41491
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
41556
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
41492
41557
  * property which controls when a drag should start.
41493
41558
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-draggable)
41494
41559
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -41659,7 +41724,7 @@ type DateRangePickerConfig = {
41659
41724
  */
41660
41725
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
41661
41726
  /**
41662
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
41727
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
41663
41728
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-labelWidth)
41664
41729
  */
41665
41730
  labelWidth?: number|null
@@ -41856,7 +41921,7 @@ type DateRangePickerConfig = {
41856
41921
  rtl?: boolean
41857
41922
  /**
41858
41923
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
41859
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
41924
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
41860
41925
  */
41861
41926
  scrollAction?: 'hide'|'realign'|null
41862
41927
  /**
@@ -42693,9 +42758,10 @@ type DateTimeFieldConfig = {
42693
42758
  catchEventHandlerExceptions?: boolean
42694
42759
  /**
42695
42760
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
42696
- * Set to `true` to centre the Widget in browser viewport space.
42761
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-centered)
42762
+ * @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.
42697
42763
  */
42698
- centered?: boolean
42764
+ centered?: boolean|object
42699
42765
  /**
42700
42766
  * A function (or the name of a function in the ownership hierarchy) called during field validation
42701
42767
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -42795,7 +42861,7 @@ type DateTimeFieldConfig = {
42795
42861
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
42796
42862
  /**
42797
42863
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
42798
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
42864
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
42799
42865
  * property which controls when a drag should start.
42800
42866
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-draggable)
42801
42867
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -43101,7 +43167,7 @@ type DateTimeFieldConfig = {
43101
43167
  rtl?: boolean
43102
43168
  /**
43103
43169
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
43104
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
43170
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
43105
43171
  */
43106
43172
  scrollAction?: 'hide'|'realign'|null
43107
43173
  /**
@@ -43813,9 +43879,10 @@ type DemoCodeEditorConfig = {
43813
43879
  catchEventHandlerExceptions?: boolean
43814
43880
  /**
43815
43881
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
43816
- * Set to `true` to centre the Widget in browser viewport space.
43882
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-centered)
43883
+ * @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.
43817
43884
  */
43818
- centered?: boolean
43885
+ centered?: boolean|object
43819
43886
  /**
43820
43887
  * Custom CSS classes to add to element.
43821
43888
  * May be specified as a space separated string, or as an object in which property names
@@ -43915,7 +43982,7 @@ type DemoCodeEditorConfig = {
43915
43982
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
43916
43983
  /**
43917
43984
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
43918
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
43985
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
43919
43986
  * property which controls when a drag should start.
43920
43987
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-draggable)
43921
43988
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -44058,7 +44125,7 @@ type DemoCodeEditorConfig = {
44058
44125
  */
44059
44126
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
44060
44127
  /**
44061
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
44128
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
44062
44129
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-labelWidth)
44063
44130
  */
44064
44131
  labelWidth?: number|null
@@ -44240,7 +44307,7 @@ type DemoCodeEditorConfig = {
44240
44307
  rtl?: boolean
44241
44308
  /**
44242
44309
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
44243
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
44310
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
44244
44311
  */
44245
44312
  scrollAction?: 'hide'|'realign'|null
44246
44313
  /**
@@ -44949,9 +45016,10 @@ type DemoHeaderConfig = {
44949
45016
  catchEventHandlerExceptions?: boolean
44950
45017
  /**
44951
45018
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
44952
- * Set to `true` to centre the Widget in browser viewport space.
45019
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-centered)
45020
+ * @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.
44953
45021
  */
44954
- centered?: boolean
45022
+ centered?: boolean|object
44955
45023
  /**
44956
45024
  * Custom CSS classes to add to element.
44957
45025
  * May be specified as a space separated string, or as an object in which property names
@@ -45036,7 +45104,7 @@ type DemoHeaderConfig = {
45036
45104
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
45037
45105
  /**
45038
45106
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
45039
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
45107
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
45040
45108
  * property which controls when a drag should start.
45041
45109
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-draggable)
45042
45110
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -45141,7 +45209,7 @@ type DemoHeaderConfig = {
45141
45209
  */
45142
45210
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
45143
45211
  /**
45144
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
45212
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
45145
45213
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-labelWidth)
45146
45214
  */
45147
45215
  labelWidth?: number|null
@@ -45311,7 +45379,7 @@ type DemoHeaderConfig = {
45311
45379
  rtl?: boolean
45312
45380
  /**
45313
45381
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
45314
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
45382
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
45315
45383
  */
45316
45384
  scrollAction?: 'hide'|'realign'|null
45317
45385
  /**
@@ -45970,9 +46038,10 @@ type DisplayFieldConfig = {
45970
46038
  catchEventHandlerExceptions?: boolean
45971
46039
  /**
45972
46040
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
45973
- * Set to `true` to centre the Widget in browser viewport space.
46041
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-centered)
46042
+ * @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.
45974
46043
  */
45975
- centered?: boolean
46044
+ centered?: boolean|object
45976
46045
  /**
45977
46046
  * A function (or the name of a function in the ownership hierarchy) called during field validation
45978
46047
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -46068,7 +46137,7 @@ type DisplayFieldConfig = {
46068
46137
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
46069
46138
  /**
46070
46139
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
46071
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
46140
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
46072
46141
  * property which controls when a drag should start.
46073
46142
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-draggable)
46074
46143
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -46387,7 +46456,7 @@ type DisplayFieldConfig = {
46387
46456
  rtl?: boolean
46388
46457
  /**
46389
46458
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
46390
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
46459
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
46391
46460
  */
46392
46461
  scrollAction?: 'hide'|'realign'|null
46393
46462
  /**
@@ -47099,9 +47168,10 @@ type DurationFieldConfig = {
47099
47168
  catchEventHandlerExceptions?: boolean
47100
47169
  /**
47101
47170
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
47102
- * Set to `true` to centre the Widget in browser viewport space.
47171
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-centered)
47172
+ * @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.
47103
47173
  */
47104
- centered?: boolean
47174
+ centered?: boolean|object
47105
47175
  /**
47106
47176
  * A function (or the name of a function in the ownership hierarchy) called during field validation
47107
47177
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -47201,7 +47271,7 @@ type DurationFieldConfig = {
47201
47271
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
47202
47272
  /**
47203
47273
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
47204
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
47274
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
47205
47275
  * property which controls when a drag should start.
47206
47276
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-draggable)
47207
47277
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -47546,7 +47616,7 @@ type DurationFieldConfig = {
47546
47616
  rtl?: boolean
47547
47617
  /**
47548
47618
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
47549
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
47619
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
47550
47620
  */
47551
47621
  scrollAction?: 'hide'|'realign'|null
47552
47622
  /**
@@ -48415,9 +48485,10 @@ type EditorConfig = {
48415
48485
  catchEventHandlerExceptions?: boolean
48416
48486
  /**
48417
48487
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
48418
- * Set to `true` to centre the Widget in browser viewport space.
48488
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-centered)
48489
+ * @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.
48419
48490
  */
48420
- centered?: boolean
48491
+ centered?: boolean|object
48421
48492
  /**
48422
48493
  * Custom CSS classes to add to element.
48423
48494
  * May be specified as a space separated string, or as an object in which property names
@@ -48511,7 +48582,7 @@ type EditorConfig = {
48511
48582
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
48512
48583
  /**
48513
48584
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
48514
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
48585
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
48515
48586
  * property which controls when a drag should start.
48516
48587
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-draggable)
48517
48588
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -48638,7 +48709,7 @@ type EditorConfig = {
48638
48709
  */
48639
48710
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
48640
48711
  /**
48641
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
48712
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
48642
48713
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-labelWidth)
48643
48714
  */
48644
48715
  labelWidth?: number|null
@@ -48820,7 +48891,7 @@ type EditorConfig = {
48820
48891
  rtl?: boolean
48821
48892
  /**
48822
48893
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
48823
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
48894
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
48824
48895
  */
48825
48896
  scrollAction?: 'hide'|'realign'|null
48826
48897
  /**
@@ -49658,9 +49729,10 @@ type FieldConfig = {
49658
49729
  catchEventHandlerExceptions?: boolean
49659
49730
  /**
49660
49731
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
49661
- * Set to `true` to centre the Widget in browser viewport space.
49732
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-centered)
49733
+ * @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.
49662
49734
  */
49663
- centered?: boolean
49735
+ centered?: boolean|object
49664
49736
  /**
49665
49737
  * A function (or the name of a function in the ownership hierarchy) called during field validation
49666
49738
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -49756,7 +49828,7 @@ type FieldConfig = {
49756
49828
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
49757
49829
  /**
49758
49830
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
49759
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
49831
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
49760
49832
  * property which controls when a drag should start.
49761
49833
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-draggable)
49762
49834
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -50075,7 +50147,7 @@ type FieldConfig = {
50075
50147
  rtl?: boolean
50076
50148
  /**
50077
50149
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
50078
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
50150
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
50079
50151
  */
50080
50152
  scrollAction?: 'hide'|'realign'|null
50081
50153
  /**
@@ -50884,9 +50956,10 @@ type FieldContainerConfig = {
50884
50956
  catchEventHandlerExceptions?: boolean
50885
50957
  /**
50886
50958
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
50887
- * Set to `true` to centre the Widget in browser viewport space.
50959
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-centered)
50960
+ * @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.
50888
50961
  */
50889
- centered?: boolean
50962
+ centered?: boolean|object
50890
50963
  /**
50891
50964
  * Custom CSS classes to add to element.
50892
50965
  * May be specified as a space separated string, or as an object in which property names
@@ -50976,7 +51049,7 @@ type FieldContainerConfig = {
50976
51049
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
50977
51050
  /**
50978
51051
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
50979
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
51052
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
50980
51053
  * property which controls when a drag should start.
50981
51054
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-draggable)
50982
51055
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -51083,7 +51156,7 @@ type FieldContainerConfig = {
51083
51156
  */
51084
51157
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
51085
51158
  /**
51086
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
51159
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
51087
51160
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-labelWidth)
51088
51161
  */
51089
51162
  labelWidth?: number|null
@@ -51253,7 +51326,7 @@ type FieldContainerConfig = {
51253
51326
  rtl?: boolean
51254
51327
  /**
51255
51328
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
51256
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
51329
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
51257
51330
  */
51258
51331
  scrollAction?: 'hide'|'realign'|null
51259
51332
  /**
@@ -51864,9 +51937,10 @@ type FieldFilterPickerConfig = {
51864
51937
  catchEventHandlerExceptions?: boolean
51865
51938
  /**
51866
51939
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
51867
- * Set to `true` to centre the Widget in browser viewport space.
51940
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-centered)
51941
+ * @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.
51868
51942
  */
51869
- centered?: boolean
51943
+ centered?: boolean|object
51870
51944
  /**
51871
51945
  * Custom CSS classes to add to element.
51872
51946
  * May be specified as a space separated string, or as an object in which property names
@@ -51954,7 +52028,7 @@ type FieldFilterPickerConfig = {
51954
52028
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
51955
52029
  /**
51956
52030
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
51957
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
52031
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
51958
52032
  * property which controls when a drag should start.
51959
52033
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-draggable)
51960
52034
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -52082,7 +52156,7 @@ type FieldFilterPickerConfig = {
52082
52156
  */
52083
52157
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
52084
52158
  /**
52085
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
52159
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
52086
52160
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-labelWidth)
52087
52161
  */
52088
52162
  labelWidth?: number|null
@@ -52268,7 +52342,7 @@ type FieldFilterPickerConfig = {
52268
52342
  rtl?: boolean
52269
52343
  /**
52270
52344
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
52271
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
52345
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
52272
52346
  */
52273
52347
  scrollAction?: 'hide'|'realign'|null
52274
52348
  /**
@@ -52956,9 +53030,10 @@ type FieldFilterPickerGroupConfig = {
52956
53030
  catchEventHandlerExceptions?: boolean
52957
53031
  /**
52958
53032
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
52959
- * Set to `true` to centre the Widget in browser viewport space.
53033
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-centered)
53034
+ * @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.
52960
53035
  */
52961
- centered?: boolean
53036
+ centered?: boolean|object
52962
53037
  /**
52963
53038
  * Custom CSS classes to add to element.
52964
53039
  * May be specified as a space separated string, or as an object in which property names
@@ -53046,7 +53121,7 @@ type FieldFilterPickerGroupConfig = {
53046
53121
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
53047
53122
  /**
53048
53123
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
53049
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
53124
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
53050
53125
  * property which controls when a drag should start.
53051
53126
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-draggable)
53052
53127
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -53176,7 +53251,7 @@ type FieldFilterPickerGroupConfig = {
53176
53251
  */
53177
53252
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
53178
53253
  /**
53179
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
53254
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
53180
53255
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-labelWidth)
53181
53256
  */
53182
53257
  labelWidth?: number|null
@@ -53357,7 +53432,7 @@ type FieldFilterPickerGroupConfig = {
53357
53432
  rtl?: boolean
53358
53433
  /**
53359
53434
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
53360
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
53435
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
53361
53436
  */
53362
53437
  scrollAction?: 'hide'|'realign'|null
53363
53438
  /**
@@ -54102,9 +54177,10 @@ type FieldSetConfig = {
54102
54177
  catchEventHandlerExceptions?: boolean
54103
54178
  /**
54104
54179
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
54105
- * Set to `true` to centre the Widget in browser viewport space.
54180
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-centered)
54181
+ * @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.
54106
54182
  */
54107
- centered?: boolean
54183
+ centered?: boolean|object
54108
54184
  /**
54109
54185
  * Custom CSS classes to add to element.
54110
54186
  * May be specified as a space separated string, or as an object in which property names
@@ -54199,7 +54275,7 @@ type FieldSetConfig = {
54199
54275
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
54200
54276
  /**
54201
54277
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
54202
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
54278
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
54203
54279
  * property which controls when a drag should start.
54204
54280
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-draggable)
54205
54281
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -54352,7 +54428,7 @@ type FieldSetConfig = {
54352
54428
  */
54353
54429
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
54354
54430
  /**
54355
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
54431
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
54356
54432
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-labelWidth)
54357
54433
  */
54358
54434
  labelWidth?: number|null
@@ -54522,7 +54598,7 @@ type FieldSetConfig = {
54522
54598
  rtl?: boolean
54523
54599
  /**
54524
54600
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
54525
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
54601
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
54526
54602
  */
54527
54603
  scrollAction?: 'hide'|'realign'|null
54528
54604
  /**
@@ -55302,9 +55378,10 @@ type FileFieldConfig = {
55302
55378
  catchEventHandlerExceptions?: boolean
55303
55379
  /**
55304
55380
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
55305
- * Set to `true` to centre the Widget in browser viewport space.
55381
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-centered)
55382
+ * @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.
55306
55383
  */
55307
- centered?: boolean
55384
+ centered?: boolean|object
55308
55385
  /**
55309
55386
  * A function (or the name of a function in the ownership hierarchy) called during field validation
55310
55387
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -55400,7 +55477,7 @@ type FileFieldConfig = {
55400
55477
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
55401
55478
  /**
55402
55479
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
55403
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
55480
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
55404
55481
  * property which controls when a drag should start.
55405
55482
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-draggable)
55406
55483
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -55725,7 +55802,7 @@ type FileFieldConfig = {
55725
55802
  rtl?: boolean
55726
55803
  /**
55727
55804
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
55728
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
55805
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
55729
55806
  */
55730
55807
  scrollAction?: 'hide'|'realign'|null
55731
55808
  /**
@@ -56389,9 +56466,10 @@ type FilePickerConfig = {
56389
56466
  catchEventHandlerExceptions?: boolean
56390
56467
  /**
56391
56468
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
56392
- * Set to `true` to centre the Widget in browser viewport space.
56469
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-centered)
56470
+ * @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.
56393
56471
  */
56394
- centered?: boolean
56472
+ centered?: boolean|object
56395
56473
  /**
56396
56474
  * Custom CSS classes to add to element.
56397
56475
  * May be specified as a space separated string, or as an object in which property names
@@ -56476,7 +56554,7 @@ type FilePickerConfig = {
56476
56554
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
56477
56555
  /**
56478
56556
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
56479
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
56557
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
56480
56558
  * property which controls when a drag should start.
56481
56559
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-draggable)
56482
56560
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -56587,7 +56665,7 @@ type FilePickerConfig = {
56587
56665
  */
56588
56666
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
56589
56667
  /**
56590
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
56668
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
56591
56669
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-labelWidth)
56592
56670
  */
56593
56671
  labelWidth?: number|null
@@ -56757,7 +56835,7 @@ type FilePickerConfig = {
56757
56835
  rtl?: boolean
56758
56836
  /**
56759
56837
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
56760
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
56838
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
56761
56839
  */
56762
56840
  scrollAction?: 'hide'|'realign'|null
56763
56841
  /**
@@ -57454,9 +57532,10 @@ type FilterFieldConfig = {
57454
57532
  catchEventHandlerExceptions?: boolean
57455
57533
  /**
57456
57534
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
57457
- * Set to `true` to centre the Widget in browser viewport space.
57535
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-centered)
57536
+ * @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.
57458
57537
  */
57459
- centered?: boolean
57538
+ centered?: boolean|object
57460
57539
  /**
57461
57540
  * A function (or the name of a function in the ownership hierarchy) called during field validation
57462
57541
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -57552,7 +57631,7 @@ type FilterFieldConfig = {
57552
57631
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
57553
57632
  /**
57554
57633
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
57555
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
57634
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
57556
57635
  * property which controls when a drag should start.
57557
57636
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-draggable)
57558
57637
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -57909,7 +57988,7 @@ type FilterFieldConfig = {
57909
57988
  rtl?: boolean
57910
57989
  /**
57911
57990
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
57912
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
57991
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
57913
57992
  */
57914
57993
  scrollAction?: 'hide'|'realign'|null
57915
57994
  /**
@@ -58884,7 +58963,7 @@ type HintConfig = {
58884
58963
  */
58885
58964
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
58886
58965
  /**
58887
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
58966
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
58888
58967
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-labelWidth)
58889
58968
  */
58890
58969
  labelWidth?: number|null
@@ -59103,7 +59182,7 @@ type HintConfig = {
59103
59182
  rtl?: boolean
59104
59183
  /**
59105
59184
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
59106
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
59185
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
59107
59186
  */
59108
59187
  scrollAction?: 'hide'|'realign'|null
59109
59188
  /**
@@ -59767,9 +59846,10 @@ type LabelConfig = {
59767
59846
  catchEventHandlerExceptions?: boolean
59768
59847
  /**
59769
59848
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
59770
- * Set to `true` to centre the Widget in browser viewport space.
59849
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-centered)
59850
+ * @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.
59771
59851
  */
59772
- centered?: boolean
59852
+ centered?: boolean|object
59773
59853
  /**
59774
59854
  * Custom CSS classes to add to element.
59775
59855
  * May be specified as a space separated string, or as an object in which property names
@@ -59842,7 +59922,7 @@ type LabelConfig = {
59842
59922
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
59843
59923
  /**
59844
59924
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
59845
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
59925
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
59846
59926
  * property which controls when a drag should start.
59847
59927
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-draggable)
59848
59928
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -60052,7 +60132,7 @@ type LabelConfig = {
60052
60132
  rtl?: boolean
60053
60133
  /**
60054
60134
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
60055
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
60135
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
60056
60136
  */
60057
60137
  scrollAction?: 'hide'|'realign'|null
60058
60138
  /**
@@ -60677,9 +60757,10 @@ type ListConfig = {
60677
60757
  catchEventHandlerExceptions?: boolean
60678
60758
  /**
60679
60759
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
60680
- * Set to `true` to centre the Widget in browser viewport space.
60760
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-centered)
60761
+ * @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.
60681
60762
  */
60682
- centered?: boolean
60763
+ centered?: boolean|object
60683
60764
  /**
60684
60765
  * Configure as `true` to clear selection when clicking on empty space inside the List´s element.
60685
60766
  */
@@ -60764,7 +60845,7 @@ type ListConfig = {
60764
60845
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
60765
60846
  /**
60766
60847
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
60767
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
60848
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
60768
60849
  * property which controls when a drag should start.
60769
60850
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-draggable)
60770
60851
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -61023,7 +61104,7 @@ type ListConfig = {
61023
61104
  rtl?: boolean
61024
61105
  /**
61025
61106
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
61026
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
61107
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
61027
61108
  */
61028
61109
  scrollAction?: 'hide'|'realign'|null
61029
61110
  /**
@@ -61749,9 +61830,10 @@ type MaskConfig = {
61749
61830
  catchEventHandlerExceptions?: boolean
61750
61831
  /**
61751
61832
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
61752
- * Set to `true` to centre the Widget in browser viewport space.
61833
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-centered)
61834
+ * @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.
61753
61835
  */
61754
- centered?: boolean
61836
+ centered?: boolean|object
61755
61837
  /**
61756
61838
  * Custom CSS classes to add to element.
61757
61839
  * May be specified as a space separated string, or as an object in which property names
@@ -61824,7 +61906,7 @@ type MaskConfig = {
61824
61906
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
61825
61907
  /**
61826
61908
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
61827
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
61909
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
61828
61910
  * property which controls when a drag should start.
61829
61911
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-draggable)
61830
61912
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -62051,7 +62133,7 @@ type MaskConfig = {
62051
62133
  rtl?: boolean
62052
62134
  /**
62053
62135
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
62054
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
62136
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
62055
62137
  */
62056
62138
  scrollAction?: 'hide'|'realign'|null
62057
62139
  /**
@@ -62795,9 +62877,10 @@ type MenuConfig = {
62795
62877
  catchEventHandlerExceptions?: boolean
62796
62878
  /**
62797
62879
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
62798
- * Set to `true` to centre the Widget in browser viewport space.
62880
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-centered)
62881
+ * @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.
62799
62882
  */
62800
- centered?: boolean
62883
+ centered?: boolean|object
62801
62884
  /**
62802
62885
  * Show a tool in the header to close this Popup.
62803
62886
  * The tool is available in the [tools](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Toolable#property-tools) object
@@ -63058,7 +63141,7 @@ type MenuConfig = {
63058
63141
  */
63059
63142
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
63060
63143
  /**
63061
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
63144
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
63062
63145
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-labelWidth)
63063
63146
  */
63064
63147
  labelWidth?: number|null
@@ -63263,7 +63346,7 @@ type MenuConfig = {
63263
63346
  rtl?: boolean
63264
63347
  /**
63265
63348
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
63266
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
63349
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
63267
63350
  */
63268
63351
  scrollAction?: 'hide'|'realign'|null
63269
63352
  /**
@@ -64021,9 +64104,10 @@ type MenuItemConfig = {
64021
64104
  catchEventHandlerExceptions?: boolean
64022
64105
  /**
64023
64106
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
64024
- * Set to `true` to centre the Widget in browser viewport space.
64107
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-centered)
64108
+ * @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.
64025
64109
  */
64026
- centered?: boolean
64110
+ centered?: boolean|object
64027
64111
  /**
64028
64112
  * If configured with a `Boolean` value, a checkbox is displayed
64029
64113
  * as the start icon, and the [toggle](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#event-toggle) event is fired
@@ -64110,7 +64194,7 @@ type MenuItemConfig = {
64110
64194
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
64111
64195
  /**
64112
64196
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
64113
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
64197
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
64114
64198
  * property which controls when a drag should start.
64115
64199
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-draggable)
64116
64200
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -64335,7 +64419,7 @@ type MenuItemConfig = {
64335
64419
  rtl?: boolean
64336
64420
  /**
64337
64421
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
64338
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
64422
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
64339
64423
  */
64340
64424
  scrollAction?: 'hide'|'realign'|null
64341
64425
  /**
@@ -65040,7 +65124,7 @@ export class MessageDialogSingleton extends Popup {
65040
65124
  * @param {string} [options.rootElement] The root element of this widget, defaults to document.body. Use this if you use the MessageDialog inside a web component ShadowRoot
65041
65125
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
65042
65126
  */
65043
- alert(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, okButton?: string|ButtonConfig }): Promise<any>;
65127
+ alert(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, okButton?: string|ButtonConfig }): Promise<void>;
65044
65128
  /**
65045
65129
  * Shows a confirm dialog with "Ok" and "Cancel" buttons. The returned promise resolves passing the button identifier
65046
65130
  * of the button that was pressed ([okButton](https://bryntum.com/products/grid/docs/api/Core/widget/MessageDialog#property-okButton) or [cancelButton](#Core/widget/MessageDialog#property-cancelButton)).
@@ -65052,7 +65136,7 @@ export class MessageDialogSingleton extends Popup {
65052
65136
  * @param {string,ButtonConfig} [options.cancelButton] A text or a config object to apply to the Cancel button.
65053
65137
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
65054
65138
  */
65055
- confirm(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<any>;
65139
+ confirm(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<number>;
65056
65140
  /**
65057
65141
  * Shows a popup with a basic [TextField](https://bryntum.com/products/grid/docs/api/Core/widget/TextField) along with a message. The returned promise resolves when
65058
65142
  * the dialog is closed and yields an Object with a `button` ([okButton](https://bryntum.com/products/grid/docs/api/Core/widget/MessageDialog#property-okButton) or [cancelButton](#Core/widget/MessageDialog#property-cancelButton))
@@ -65066,7 +65150,7 @@ export class MessageDialogSingleton extends Popup {
65066
65150
  * @param {string,ButtonConfig} [options.cancelButton] A text or a config object to apply to the Cancel button.
65067
65151
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
65068
65152
  */
65069
- prompt(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, textField?: TextFieldConfig, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<any>;
65153
+ prompt(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, textField?: TextFieldConfig, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<MessageDialogPromptResult>;
65070
65154
  }
65071
65155
  export const MessageDialog : MessageDialogSingleton
65072
65156
 
@@ -65499,9 +65583,10 @@ type MonthPickerConfig = {
65499
65583
  catchEventHandlerExceptions?: boolean
65500
65584
  /**
65501
65585
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
65502
- * Set to `true` to centre the Widget in browser viewport space.
65586
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-centered)
65587
+ * @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.
65503
65588
  */
65504
- centered?: boolean
65589
+ centered?: boolean|object
65505
65590
  /**
65506
65591
  * Custom CSS classes to add to element.
65507
65592
  * May be specified as a space separated string, or as an object in which property names
@@ -65596,7 +65681,7 @@ type MonthPickerConfig = {
65596
65681
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
65597
65682
  /**
65598
65683
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
65599
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
65684
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
65600
65685
  * property which controls when a drag should start.
65601
65686
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-draggable)
65602
65687
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -65735,7 +65820,7 @@ type MonthPickerConfig = {
65735
65820
  */
65736
65821
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
65737
65822
  /**
65738
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
65823
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
65739
65824
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-labelWidth)
65740
65825
  */
65741
65826
  labelWidth?: number|null
@@ -65909,7 +65994,7 @@ type MonthPickerConfig = {
65909
65994
  rtl?: boolean
65910
65995
  /**
65911
65996
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
65912
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
65997
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
65913
65998
  */
65914
65999
  scrollAction?: 'hide'|'realign'|null
65915
66000
  /**
@@ -66731,9 +66816,10 @@ type MultiDatePickerConfig = {
66731
66816
  cellRenderer?: ((context: { cell: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string
66732
66817
  /**
66733
66818
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
66734
- * Set to `true` to centre the Widget in browser viewport space.
66819
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-centered)
66820
+ * @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.
66735
66821
  */
66736
- centered?: boolean
66822
+ centered?: boolean|object
66737
66823
  /**
66738
66824
  * Custom CSS classes to add to element.
66739
66825
  * May be specified as a space separated string, or as an object in which property names
@@ -66858,7 +66944,7 @@ type MultiDatePickerConfig = {
66858
66944
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
66859
66945
  /**
66860
66946
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
66861
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
66947
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
66862
66948
  * property which controls when a drag should start.
66863
66949
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-draggable)
66864
66950
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -67017,7 +67103,7 @@ type MultiDatePickerConfig = {
67017
67103
  */
67018
67104
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
67019
67105
  /**
67020
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
67106
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
67021
67107
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-labelWidth)
67022
67108
  */
67023
67109
  labelWidth?: number|null
@@ -67220,7 +67306,7 @@ type MultiDatePickerConfig = {
67220
67306
  rtl?: boolean
67221
67307
  /**
67222
67308
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
67223
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
67309
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
67224
67310
  */
67225
67311
  scrollAction?: 'hide'|'realign'|null
67226
67312
  /**
@@ -68052,9 +68138,10 @@ type NumberFieldConfig = {
68052
68138
  catchEventHandlerExceptions?: boolean
68053
68139
  /**
68054
68140
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
68055
- * Set to `true` to centre the Widget in browser viewport space.
68141
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-centered)
68142
+ * @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.
68056
68143
  */
68057
- centered?: boolean
68144
+ centered?: boolean|object
68058
68145
  /**
68059
68146
  * Controls how change events are triggered when stepping the value up or down using either spinners or
68060
68147
  * arrow keys.
@@ -68156,7 +68243,7 @@ type NumberFieldConfig = {
68156
68243
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
68157
68244
  /**
68158
68245
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
68159
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
68246
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
68160
68247
  * property which controls when a drag should start.
68161
68248
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-draggable)
68162
68249
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -68505,7 +68592,7 @@ type NumberFieldConfig = {
68505
68592
  rtl?: boolean
68506
68593
  /**
68507
68594
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
68508
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
68595
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
68509
68596
  */
68510
68597
  scrollAction?: 'hide'|'realign'|null
68511
68598
  /**
@@ -69219,9 +69306,10 @@ type PagingToolbarConfig = {
69219
69306
  catchEventHandlerExceptions?: boolean
69220
69307
  /**
69221
69308
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
69222
- * Set to `true` to centre the Widget in browser viewport space.
69309
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-centered)
69310
+ * @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.
69223
69311
  */
69224
- centered?: boolean
69312
+ centered?: boolean|object
69225
69313
  /**
69226
69314
  * Custom CSS classes to add to element.
69227
69315
  * May be specified as a space separated string, or as an object in which property names
@@ -69306,7 +69394,7 @@ type PagingToolbarConfig = {
69306
69394
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
69307
69395
  /**
69308
69396
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
69309
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
69397
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
69310
69398
  * property which controls when a drag should start.
69311
69399
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-draggable)
69312
69400
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -69417,7 +69505,7 @@ type PagingToolbarConfig = {
69417
69505
  */
69418
69506
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
69419
69507
  /**
69420
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
69508
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
69421
69509
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-labelWidth)
69422
69510
  */
69423
69511
  labelWidth?: number|null
@@ -69595,7 +69683,7 @@ type PagingToolbarConfig = {
69595
69683
  rtl?: boolean
69596
69684
  /**
69597
69685
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
69598
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
69686
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
69599
69687
  */
69600
69688
  scrollAction?: 'hide'|'realign'|null
69601
69689
  /**
@@ -70300,9 +70388,10 @@ type PanelConfig = {
70300
70388
  catchEventHandlerExceptions?: boolean
70301
70389
  /**
70302
70390
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
70303
- * Set to `true` to centre the Widget in browser viewport space.
70391
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-centered)
70392
+ * @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.
70304
70393
  */
70305
- centered?: boolean
70394
+ centered?: boolean|object
70306
70395
  /**
70307
70396
  * Custom CSS classes to add to element.
70308
70397
  * May be specified as a space separated string, or as an object in which property names
@@ -70397,7 +70486,7 @@ type PanelConfig = {
70397
70486
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
70398
70487
  /**
70399
70488
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
70400
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
70489
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
70401
70490
  * property which controls when a drag should start.
70402
70491
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-draggable)
70403
70492
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -70536,7 +70625,7 @@ type PanelConfig = {
70536
70625
  */
70537
70626
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
70538
70627
  /**
70539
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
70628
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
70540
70629
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-labelWidth)
70541
70630
  */
70542
70631
  labelWidth?: number|null
@@ -70706,7 +70795,7 @@ type PanelConfig = {
70706
70795
  rtl?: boolean
70707
70796
  /**
70708
70797
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
70709
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
70798
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
70710
70799
  */
70711
70800
  scrollAction?: 'hide'|'realign'|null
70712
70801
  /**
@@ -71576,9 +71665,10 @@ type PasswordFieldConfig = {
71576
71665
  catchEventHandlerExceptions?: boolean
71577
71666
  /**
71578
71667
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
71579
- * Set to `true` to centre the Widget in browser viewport space.
71668
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-centered)
71669
+ * @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.
71580
71670
  */
71581
- centered?: boolean
71671
+ centered?: boolean|object
71582
71672
  /**
71583
71673
  * A function (or the name of a function in the ownership hierarchy) called during field validation
71584
71674
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -71674,7 +71764,7 @@ type PasswordFieldConfig = {
71674
71764
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
71675
71765
  /**
71676
71766
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
71677
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
71767
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
71678
71768
  * property which controls when a drag should start.
71679
71769
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-draggable)
71680
71770
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -71993,7 +72083,7 @@ type PasswordFieldConfig = {
71993
72083
  rtl?: boolean
71994
72084
  /**
71995
72085
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
71996
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
72086
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
71997
72087
  */
71998
72088
  scrollAction?: 'hide'|'realign'|null
71999
72089
  /**
@@ -72693,9 +72783,10 @@ type PickerFieldConfig = {
72693
72783
  catchEventHandlerExceptions?: boolean
72694
72784
  /**
72695
72785
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
72696
- * Set to `true` to centre the Widget in browser viewport space.
72786
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-centered)
72787
+ * @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.
72697
72788
  */
72698
- centered?: boolean
72789
+ centered?: boolean|object
72699
72790
  /**
72700
72791
  * A function (or the name of a function in the ownership hierarchy) called during field validation
72701
72792
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -72791,7 +72882,7 @@ type PickerFieldConfig = {
72791
72882
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
72792
72883
  /**
72793
72884
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
72794
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
72885
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
72795
72886
  * property which controls when a drag should start.
72796
72887
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-draggable)
72797
72888
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -73130,7 +73221,7 @@ type PickerFieldConfig = {
73130
73221
  rtl?: boolean
73131
73222
  /**
73132
73223
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
73133
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
73224
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
73134
73225
  */
73135
73226
  scrollAction?: 'hide'|'realign'|null
73136
73227
  /**
@@ -73874,9 +73965,10 @@ type PopupConfig = {
73874
73965
  catchEventHandlerExceptions?: boolean
73875
73966
  /**
73876
73967
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
73877
- * Set to `true` to centre the Widget in browser viewport space.
73968
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-centered)
73969
+ * @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.
73878
73970
  */
73879
- centered?: boolean
73971
+ centered?: boolean|object
73880
73972
  /**
73881
73973
  * Show a tool in the header to close this Popup.
73882
73974
  * The tool is available in the [tools](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Toolable#property-tools) object
@@ -74133,7 +74225,7 @@ type PopupConfig = {
74133
74225
  */
74134
74226
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
74135
74227
  /**
74136
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
74228
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
74137
74229
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-labelWidth)
74138
74230
  */
74139
74231
  labelWidth?: number|null
@@ -74338,7 +74430,7 @@ type PopupConfig = {
74338
74430
  rtl?: boolean
74339
74431
  /**
74340
74432
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
74341
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
74433
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
74342
74434
  */
74343
74435
  scrollAction?: 'hide'|'realign'|null
74344
74436
  /**
@@ -75031,9 +75123,10 @@ type ProgressBarConfig = {
75031
75123
  catchEventHandlerExceptions?: boolean
75032
75124
  /**
75033
75125
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
75034
- * Set to `true` to centre the Widget in browser viewport space.
75126
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-centered)
75127
+ * @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.
75035
75128
  */
75036
- centered?: boolean
75129
+ centered?: boolean|object
75037
75130
  /**
75038
75131
  * Custom CSS classes to add to element.
75039
75132
  * May be specified as a space separated string, or as an object in which property names
@@ -75104,7 +75197,7 @@ type ProgressBarConfig = {
75104
75197
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
75105
75198
  /**
75106
75199
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
75107
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
75200
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
75108
75201
  * property which controls when a drag should start.
75109
75202
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-draggable)
75110
75203
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -75322,7 +75415,7 @@ type ProgressBarConfig = {
75322
75415
  rtl?: boolean
75323
75416
  /**
75324
75417
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
75325
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
75418
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
75326
75419
  */
75327
75420
  scrollAction?: 'hide'|'realign'|null
75328
75421
  /**
@@ -76036,9 +76129,10 @@ type RadioConfig = {
76036
76129
  catchEventHandlerExceptions?: boolean
76037
76130
  /**
76038
76131
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
76039
- * Set to `true` to centre the Widget in browser viewport space.
76132
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-centered)
76133
+ * @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.
76040
76134
  */
76041
- centered?: boolean
76135
+ centered?: boolean|object
76042
76136
  /**
76043
76137
  * A function (or the name of a function in the ownership hierarchy) called during field validation
76044
76138
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -76136,7 +76230,7 @@ type RadioConfig = {
76136
76230
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
76137
76231
  /**
76138
76232
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
76139
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
76233
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
76140
76234
  * property which controls when a drag should start.
76141
76235
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-draggable)
76142
76236
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -76444,7 +76538,7 @@ type RadioConfig = {
76444
76538
  rtl?: boolean
76445
76539
  /**
76446
76540
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
76447
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
76541
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
76448
76542
  */
76449
76543
  scrollAction?: 'hide'|'realign'|null
76450
76544
  /**
@@ -77176,9 +77270,10 @@ type RadioGroupConfig = {
77176
77270
  catchEventHandlerExceptions?: boolean
77177
77271
  /**
77178
77272
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
77179
- * Set to `true` to centre the Widget in browser viewport space.
77273
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-centered)
77274
+ * @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.
77180
77275
  */
77181
- centered?: boolean
77276
+ centered?: boolean|object
77182
77277
  /**
77183
77278
  * Set this to `true` so that clicking the currently checked radio button will clear the check from all
77184
77279
  * radio buttons in the group.
@@ -77278,7 +77373,7 @@ type RadioGroupConfig = {
77278
77373
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
77279
77374
  /**
77280
77375
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
77281
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
77376
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
77282
77377
  * property which controls when a drag should start.
77283
77378
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-draggable)
77284
77379
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -77431,7 +77526,7 @@ type RadioGroupConfig = {
77431
77526
  */
77432
77527
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
77433
77528
  /**
77434
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
77529
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
77435
77530
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-labelWidth)
77436
77531
  */
77437
77532
  labelWidth?: number|null
@@ -77615,7 +77710,7 @@ type RadioGroupConfig = {
77615
77710
  rtl?: boolean
77616
77711
  /**
77617
77712
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
77618
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
77713
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
77619
77714
  */
77620
77715
  scrollAction?: 'hide'|'realign'|null
77621
77716
  /**
@@ -78383,9 +78478,10 @@ type RichTextFieldConfig = {
78383
78478
  catchEventHandlerExceptions?: boolean
78384
78479
  /**
78385
78480
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
78386
- * Set to `true` to centre the Widget in browser viewport space.
78481
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-centered)
78482
+ * @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.
78387
78483
  */
78388
- centered?: boolean
78484
+ centered?: boolean|object
78389
78485
  /**
78390
78486
  * A function (or the name of a function in the ownership hierarchy) called during field validation
78391
78487
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -78481,7 +78577,7 @@ type RichTextFieldConfig = {
78481
78577
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
78482
78578
  /**
78483
78579
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
78484
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
78580
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
78485
78581
  * property which controls when a drag should start.
78486
78582
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-draggable)
78487
78583
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -78800,7 +78896,7 @@ type RichTextFieldConfig = {
78800
78896
  rtl?: boolean
78801
78897
  /**
78802
78898
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
78803
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
78899
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
78804
78900
  */
78805
78901
  scrollAction?: 'hide'|'realign'|null
78806
78902
  /**
@@ -79544,9 +79640,10 @@ type SlideToggleConfig = {
79544
79640
  catchEventHandlerExceptions?: boolean
79545
79641
  /**
79546
79642
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
79547
- * Set to `true` to centre the Widget in browser viewport space.
79643
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-centered)
79644
+ * @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.
79548
79645
  */
79549
- centered?: boolean
79646
+ centered?: boolean|object
79550
79647
  /**
79551
79648
  * A function (or the name of a function in the ownership hierarchy) called during field validation
79552
79649
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -79644,7 +79741,7 @@ type SlideToggleConfig = {
79644
79741
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
79645
79742
  /**
79646
79743
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
79647
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
79744
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
79648
79745
  * property which controls when a drag should start.
79649
79746
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-draggable)
79650
79747
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -79952,7 +80049,7 @@ type SlideToggleConfig = {
79952
80049
  rtl?: boolean
79953
80050
  /**
79954
80051
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
79955
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
80052
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
79956
80053
  */
79957
80054
  scrollAction?: 'hide'|'realign'|null
79958
80055
  /**
@@ -80599,9 +80696,10 @@ type SliderConfig = {
80599
80696
  catchEventHandlerExceptions?: boolean
80600
80697
  /**
80601
80698
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
80602
- * Set to `true` to centre the Widget in browser viewport space.
80699
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-centered)
80700
+ * @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.
80603
80701
  */
80604
- centered?: boolean
80702
+ centered?: boolean|object
80605
80703
  /**
80606
80704
  * Custom CSS classes to add to element.
80607
80705
  * May be specified as a space separated string, or as an object in which property names
@@ -80674,7 +80772,7 @@ type SliderConfig = {
80674
80772
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
80675
80773
  /**
80676
80774
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
80677
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
80775
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
80678
80776
  * property which controls when a drag should start.
80679
80777
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-draggable)
80680
80778
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -80909,7 +81007,7 @@ type SliderConfig = {
80909
81007
  rtl?: boolean
80910
81008
  /**
80911
81009
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
80912
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
81010
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
80913
81011
  */
80914
81012
  scrollAction?: 'hide'|'realign'|null
80915
81013
  /**
@@ -81600,9 +81698,10 @@ type SplitterConfig = {
81600
81698
  catchEventHandlerExceptions?: boolean
81601
81699
  /**
81602
81700
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
81603
- * Set to `true` to centre the Widget in browser viewport space.
81701
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-centered)
81702
+ * @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.
81604
81703
  */
81605
- centered?: boolean
81704
+ centered?: boolean|object
81606
81705
  /**
81607
81706
  * Custom CSS classes to add to element.
81608
81707
  * May be specified as a space separated string, or as an object in which property names
@@ -81675,7 +81774,7 @@ type SplitterConfig = {
81675
81774
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
81676
81775
  /**
81677
81776
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
81678
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
81777
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
81679
81778
  * property which controls when a drag should start.
81680
81779
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-draggable)
81681
81780
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -81890,7 +81989,7 @@ type SplitterConfig = {
81890
81989
  rtl?: boolean
81891
81990
  /**
81892
81991
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
81893
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
81992
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
81894
81993
  */
81895
81994
  scrollAction?: 'hide'|'realign'|null
81896
81995
  /**
@@ -82572,9 +82671,10 @@ type TabConfig = {
82572
82671
  catchEventHandlerExceptions?: boolean
82573
82672
  /**
82574
82673
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
82575
- * Set to `true` to centre the Widget in browser viewport space.
82674
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-centered)
82675
+ * @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.
82576
82676
  */
82577
- centered?: boolean
82677
+ centered?: boolean|object
82578
82678
  /**
82579
82679
  * Set to `true` to show a close icon to remove the tab from the owning TabPanel
82580
82680
  */
@@ -82651,7 +82751,7 @@ type TabConfig = {
82651
82751
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
82652
82752
  /**
82653
82753
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
82654
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
82754
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
82655
82755
  * property which controls when a drag should start.
82656
82756
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-draggable)
82657
82757
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -82902,7 +83002,7 @@ type TabConfig = {
82902
83002
  rtl?: boolean
82903
83003
  /**
82904
83004
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
82905
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
83005
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
82906
83006
  */
82907
83007
  scrollAction?: 'hide'|'realign'|null
82908
83008
  /**
@@ -83615,9 +83715,10 @@ type TabBarConfig = {
83615
83715
  catchEventHandlerExceptions?: boolean
83616
83716
  /**
83617
83717
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
83618
- * Set to `true` to centre the Widget in browser viewport space.
83718
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-centered)
83719
+ * @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.
83619
83720
  */
83620
- centered?: boolean
83721
+ centered?: boolean|object
83621
83722
  /**
83622
83723
  * Custom CSS classes to add to element.
83623
83724
  * May be specified as a space separated string, or as an object in which property names
@@ -83702,7 +83803,7 @@ type TabBarConfig = {
83702
83803
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
83703
83804
  /**
83704
83805
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
83705
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
83806
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
83706
83807
  * property which controls when a drag should start.
83707
83808
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-draggable)
83708
83809
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -83819,7 +83920,7 @@ type TabBarConfig = {
83819
83920
  */
83820
83921
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
83821
83922
  /**
83822
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
83923
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
83823
83924
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-labelWidth)
83824
83925
  */
83825
83926
  labelWidth?: number|null
@@ -83997,7 +84098,7 @@ type TabBarConfig = {
83997
84098
  rtl?: boolean
83998
84099
  /**
83999
84100
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
84000
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
84101
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
84001
84102
  */
84002
84103
  scrollAction?: 'hide'|'realign'|null
84003
84104
  /**
@@ -84747,9 +84848,10 @@ type TabPanelConfig = {
84747
84848
  catchEventHandlerExceptions?: boolean
84748
84849
  /**
84749
84850
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
84750
- * Set to `true` to centre the Widget in browser viewport space.
84851
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-centered)
84852
+ * @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.
84751
84853
  */
84752
- centered?: boolean
84854
+ centered?: boolean|object
84753
84855
  /**
84754
84856
  * Custom CSS classes to add to element.
84755
84857
  * May be specified as a space separated string, or as an object in which property names
@@ -84844,7 +84946,7 @@ type TabPanelConfig = {
84844
84946
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
84845
84947
  /**
84846
84948
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
84847
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
84949
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
84848
84950
  * property which controls when a drag should start.
84849
84951
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-draggable)
84850
84952
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -84983,7 +85085,7 @@ type TabPanelConfig = {
84983
85085
  */
84984
85086
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
84985
85087
  /**
84986
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
85088
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
84987
85089
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-labelWidth)
84988
85090
  */
84989
85091
  labelWidth?: number|null
@@ -85153,7 +85255,7 @@ type TabPanelConfig = {
85153
85255
  rtl?: boolean
85154
85256
  /**
85155
85257
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
85156
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
85258
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
85157
85259
  */
85158
85260
  scrollAction?: 'hide'|'realign'|null
85159
85261
  /**
@@ -85978,9 +86080,10 @@ type TextAreaFieldConfig = {
85978
86080
  catchEventHandlerExceptions?: boolean
85979
86081
  /**
85980
86082
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
85981
- * Set to `true` to centre the Widget in browser viewport space.
86083
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-centered)
86084
+ * @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.
85982
86085
  */
85983
- centered?: boolean
86086
+ centered?: boolean|object
85984
86087
  /**
85985
86088
  * A function (or the name of a function in the ownership hierarchy) called during field validation
85986
86089
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -86076,7 +86179,7 @@ type TextAreaFieldConfig = {
86076
86179
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
86077
86180
  /**
86078
86181
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
86079
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
86182
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
86080
86183
  * property which controls when a drag should start.
86081
86184
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-draggable)
86082
86185
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -86404,7 +86507,7 @@ type TextAreaFieldConfig = {
86404
86507
  rtl?: boolean
86405
86508
  /**
86406
86509
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
86407
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
86510
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
86408
86511
  */
86409
86512
  scrollAction?: 'hide'|'realign'|null
86410
86513
  /**
@@ -87114,9 +87217,10 @@ type TextAreaPickerFieldConfig = {
87114
87217
  catchEventHandlerExceptions?: boolean
87115
87218
  /**
87116
87219
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
87117
- * Set to `true` to centre the Widget in browser viewport space.
87220
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-centered)
87221
+ * @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.
87118
87222
  */
87119
- centered?: boolean
87223
+ centered?: boolean|object
87120
87224
  /**
87121
87225
  * A function (or the name of a function in the ownership hierarchy) called during field validation
87122
87226
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -87212,7 +87316,7 @@ type TextAreaPickerFieldConfig = {
87212
87316
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
87213
87317
  /**
87214
87318
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
87215
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
87319
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
87216
87320
  * property which controls when a drag should start.
87217
87321
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-draggable)
87218
87322
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -87551,7 +87655,7 @@ type TextAreaPickerFieldConfig = {
87551
87655
  rtl?: boolean
87552
87656
  /**
87553
87657
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
87554
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
87658
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
87555
87659
  */
87556
87660
  scrollAction?: 'hide'|'realign'|null
87557
87661
  /**
@@ -88253,9 +88357,10 @@ type TextFieldConfig = {
88253
88357
  catchEventHandlerExceptions?: boolean
88254
88358
  /**
88255
88359
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
88256
- * Set to `true` to centre the Widget in browser viewport space.
88360
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-centered)
88361
+ * @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.
88257
88362
  */
88258
- centered?: boolean
88363
+ centered?: boolean|object
88259
88364
  /**
88260
88365
  * A function (or the name of a function in the ownership hierarchy) called during field validation
88261
88366
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -88351,7 +88456,7 @@ type TextFieldConfig = {
88351
88456
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
88352
88457
  /**
88353
88458
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
88354
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
88459
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
88355
88460
  * property which controls when a drag should start.
88356
88461
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-draggable)
88357
88462
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -88683,7 +88788,7 @@ type TextFieldConfig = {
88683
88788
  rtl?: boolean
88684
88789
  /**
88685
88790
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
88686
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
88791
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
88687
88792
  */
88688
88793
  scrollAction?: 'hide'|'realign'|null
88689
88794
  /**
@@ -89404,9 +89509,10 @@ type TimeFieldConfig = {
89404
89509
  catchEventHandlerExceptions?: boolean
89405
89510
  /**
89406
89511
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
89407
- * Set to `true` to centre the Widget in browser viewport space.
89512
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-centered)
89513
+ * @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.
89408
89514
  */
89409
- centered?: boolean
89515
+ centered?: boolean|object
89410
89516
  /**
89411
89517
  * A function (or the name of a function in the ownership hierarchy) called during field validation
89412
89518
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -89502,7 +89608,7 @@ type TimeFieldConfig = {
89502
89608
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
89503
89609
  /**
89504
89610
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
89505
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
89611
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
89506
89612
  * property which controls when a drag should start.
89507
89613
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-draggable)
89508
89614
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -89866,7 +89972,7 @@ type TimeFieldConfig = {
89866
89972
  rtl?: boolean
89867
89973
  /**
89868
89974
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
89869
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
89975
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
89870
89976
  */
89871
89977
  scrollAction?: 'hide'|'realign'|null
89872
89978
  /**
@@ -90570,9 +90676,10 @@ type TimePickerConfig = {
90570
90676
  catchEventHandlerExceptions?: boolean
90571
90677
  /**
90572
90678
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
90573
- * Set to `true` to centre the Widget in browser viewport space.
90679
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-centered)
90680
+ * @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.
90574
90681
  */
90575
- centered?: boolean
90682
+ centered?: boolean|object
90576
90683
  /**
90577
90684
  * Custom CSS classes to add to element.
90578
90685
  * May be specified as a space separated string, or as an object in which property names
@@ -90657,7 +90764,7 @@ type TimePickerConfig = {
90657
90764
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
90658
90765
  /**
90659
90766
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
90660
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
90767
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
90661
90768
  * property which controls when a drag should start.
90662
90769
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-draggable)
90663
90770
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -90769,7 +90876,7 @@ type TimePickerConfig = {
90769
90876
  */
90770
90877
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
90771
90878
  /**
90772
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
90879
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
90773
90880
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-labelWidth)
90774
90881
  */
90775
90882
  labelWidth?: number|null
@@ -90949,7 +91056,7 @@ type TimePickerConfig = {
90949
91056
  rtl?: boolean
90950
91057
  /**
90951
91058
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
90952
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
91059
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
90953
91060
  */
90954
91061
  scrollAction?: 'hide'|'realign'|null
90955
91062
  /**
@@ -91542,9 +91649,10 @@ type ToastConfig = {
91542
91649
  catchEventHandlerExceptions?: boolean
91543
91650
  /**
91544
91651
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
91545
- * Set to `true` to centre the Widget in browser viewport space.
91652
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-centered)
91653
+ * @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.
91546
91654
  */
91547
- centered?: boolean
91655
+ centered?: boolean|object
91548
91656
  /**
91549
91657
  * Custom CSS classes to add to element.
91550
91658
  * May be specified as a space separated string, or as an object in which property names
@@ -91617,7 +91725,7 @@ type ToastConfig = {
91617
91725
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
91618
91726
  /**
91619
91727
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
91620
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
91728
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
91621
91729
  * property which controls when a drag should start.
91622
91730
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-draggable)
91623
91731
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -91827,7 +91935,7 @@ type ToastConfig = {
91827
91935
  rtl?: boolean
91828
91936
  /**
91829
91937
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
91830
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
91938
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
91831
91939
  */
91832
91940
  scrollAction?: 'hide'|'realign'|null
91833
91941
  /**
@@ -92406,9 +92514,10 @@ type ToolConfig = {
92406
92514
  catchEventHandlerExceptions?: boolean
92407
92515
  /**
92408
92516
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
92409
- * Set to `true` to centre the Widget in browser viewport space.
92517
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-centered)
92518
+ * @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.
92410
92519
  */
92411
- centered?: boolean
92520
+ centered?: boolean|object
92412
92521
  /**
92413
92522
  * Custom CSS classes to add to element.
92414
92523
  * May be specified as a space separated string, or as an object in which property names
@@ -92481,7 +92590,7 @@ type ToolConfig = {
92481
92590
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
92482
92591
  /**
92483
92592
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
92484
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
92593
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
92485
92594
  * property which controls when a drag should start.
92486
92595
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-draggable)
92487
92596
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -92710,7 +92819,7 @@ type ToolConfig = {
92710
92819
  rtl?: boolean
92711
92820
  /**
92712
92821
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
92713
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
92822
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
92714
92823
  */
92715
92824
  scrollAction?: 'hide'|'realign'|null
92716
92825
  /**
@@ -93345,9 +93454,10 @@ type ToolbarConfig = {
93345
93454
  catchEventHandlerExceptions?: boolean
93346
93455
  /**
93347
93456
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
93348
- * Set to `true` to centre the Widget in browser viewport space.
93457
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-centered)
93458
+ * @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.
93349
93459
  */
93350
- centered?: boolean
93460
+ centered?: boolean|object
93351
93461
  /**
93352
93462
  * Custom CSS classes to add to element.
93353
93463
  * May be specified as a space separated string, or as an object in which property names
@@ -93432,7 +93542,7 @@ type ToolbarConfig = {
93432
93542
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
93433
93543
  /**
93434
93544
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
93435
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
93545
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
93436
93546
  * property which controls when a drag should start.
93437
93547
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-draggable)
93438
93548
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -93543,7 +93653,7 @@ type ToolbarConfig = {
93543
93653
  */
93544
93654
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
93545
93655
  /**
93546
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
93656
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
93547
93657
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-labelWidth)
93548
93658
  */
93549
93659
  labelWidth?: number|null
@@ -93721,7 +93831,7 @@ type ToolbarConfig = {
93721
93831
  rtl?: boolean
93722
93832
  /**
93723
93833
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
93724
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
93834
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
93725
93835
  */
93726
93836
  scrollAction?: 'hide'|'realign'|null
93727
93837
  /**
@@ -94525,9 +94635,10 @@ type TooltipConfig = {
94525
94635
  catchEventHandlerExceptions?: boolean
94526
94636
  /**
94527
94637
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
94528
- * Set to `true` to centre the Widget in browser viewport space.
94638
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-centered)
94639
+ * @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.
94529
94640
  */
94530
- centered?: boolean
94641
+ centered?: boolean|object
94531
94642
  /**
94532
94643
  * Show a tool in the header to close this Popup.
94533
94644
  * The tool is available in the [tools](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Toolable#property-tools) object
@@ -94829,7 +94940,7 @@ type TooltipConfig = {
94829
94940
  */
94830
94941
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
94831
94942
  /**
94832
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
94943
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
94833
94944
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-labelWidth)
94834
94945
  */
94835
94946
  labelWidth?: number|null
@@ -95046,7 +95157,7 @@ type TooltipConfig = {
95046
95157
  rtl?: boolean
95047
95158
  /**
95048
95159
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
95049
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
95160
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
95050
95161
  */
95051
95162
  scrollAction?: 'hide'|'realign'|null
95052
95163
  /**
@@ -95776,9 +95887,10 @@ type WidgetConfig = {
95776
95887
  catchEventHandlerExceptions?: boolean
95777
95888
  /**
95778
95889
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
95779
- * Set to `true` to centre the Widget in browser viewport space.
95890
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-centered)
95891
+ * @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.
95780
95892
  */
95781
- centered?: boolean
95893
+ centered?: boolean|object
95782
95894
  /**
95783
95895
  * Custom CSS classes to add to element.
95784
95896
  * May be specified as a space separated string, or as an object in which property names
@@ -95851,7 +95963,7 @@ type WidgetConfig = {
95851
95963
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
95852
95964
  /**
95853
95965
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
95854
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
95966
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
95855
95967
  * property which controls when a drag should start.
95856
95968
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-draggable)
95857
95969
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -96061,7 +96173,7 @@ type WidgetConfig = {
96061
96173
  rtl?: boolean
96062
96174
  /**
96063
96175
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
96064
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
96176
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
96065
96177
  */
96066
96178
  scrollAction?: 'hide'|'realign'|null
96067
96179
  /**
@@ -96331,6 +96443,12 @@ export class Widget extends Base {
96331
96443
  * An object providing the `record` and `column` for a widget embedded inside a [WidgetColumn](https://bryntum.com/products/grid/docs/api/Grid/column/WidgetColumn)
96332
96444
  */
96333
96445
  readonly cellInfo: CellWidgetContext
96446
+ /**
96447
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
96448
+ */
96449
+ centered: boolean|{
96450
+ once?: boolean
96451
+ }
96334
96452
  /**
96335
96453
  * Custom CSS classes to add to element.
96336
96454
  * May be specified as a space separated string, or as an object in which property names
@@ -97404,9 +97522,10 @@ type YearPickerConfig = {
97404
97522
  catchEventHandlerExceptions?: boolean
97405
97523
  /**
97406
97524
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
97407
- * Set to `true` to centre the Widget in browser viewport space.
97525
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-centered)
97526
+ * @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.
97408
97527
  */
97409
- centered?: boolean
97528
+ centered?: boolean|object
97410
97529
  /**
97411
97530
  * Custom CSS classes to add to element.
97412
97531
  * May be specified as a space separated string, or as an object in which property names
@@ -97501,7 +97620,7 @@ type YearPickerConfig = {
97501
97620
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
97502
97621
  /**
97503
97622
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
97504
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
97623
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
97505
97624
  * property which controls when a drag should start.
97506
97625
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-draggable)
97507
97626
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -97640,7 +97759,7 @@ type YearPickerConfig = {
97640
97759
  */
97641
97760
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
97642
97761
  /**
97643
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
97762
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
97644
97763
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-labelWidth)
97645
97764
  */
97646
97765
  labelWidth?: number|null
@@ -97818,7 +97937,7 @@ type YearPickerConfig = {
97818
97937
  rtl?: boolean
97819
97938
  /**
97820
97939
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
97821
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
97940
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
97822
97941
  */
97823
97942
  scrollAction?: 'hide'|'realign'|null
97824
97943
  /**
@@ -98545,9 +98664,10 @@ type UndoRedoBaseConfig = {
98545
98664
  catchEventHandlerExceptions?: boolean
98546
98665
  /**
98547
98666
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
98548
- * Set to `true` to centre the Widget in browser viewport space.
98667
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-centered)
98668
+ * @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.
98549
98669
  */
98550
- centered?: boolean
98670
+ centered?: boolean|object
98551
98671
  /**
98552
98672
  * Custom CSS classes to add to element.
98553
98673
  * May be specified as a space separated string, or as an object in which property names
@@ -98630,7 +98750,7 @@ type UndoRedoBaseConfig = {
98630
98750
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
98631
98751
  /**
98632
98752
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
98633
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
98753
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
98634
98754
  * property which controls when a drag should start.
98635
98755
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-draggable)
98636
98756
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -98737,7 +98857,7 @@ type UndoRedoBaseConfig = {
98737
98857
  */
98738
98858
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
98739
98859
  /**
98740
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
98860
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
98741
98861
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-labelWidth)
98742
98862
  */
98743
98863
  labelWidth?: number|null
@@ -98907,7 +99027,7 @@ type UndoRedoBaseConfig = {
98907
99027
  rtl?: boolean
98908
99028
  /**
98909
99029
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
98910
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
99030
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
98911
99031
  */
98912
99032
  scrollAction?: 'hide'|'realign'|null
98913
99033
  /**
@@ -99504,9 +99624,10 @@ type AISettingsPanelConfig = {
99504
99624
  catchEventHandlerExceptions?: boolean
99505
99625
  /**
99506
99626
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
99507
- * Set to `true` to centre the Widget in browser viewport space.
99627
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-centered)
99628
+ * @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.
99508
99629
  */
99509
- centered?: boolean
99630
+ centered?: boolean|object
99510
99631
  /**
99511
99632
  * Custom CSS classes to add to element.
99512
99633
  * May be specified as a space separated string, or as an object in which property names
@@ -99591,7 +99712,7 @@ type AISettingsPanelConfig = {
99591
99712
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
99592
99713
  /**
99593
99714
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
99594
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
99715
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
99595
99716
  * property which controls when a drag should start.
99596
99717
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-draggable)
99597
99718
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -99698,7 +99819,7 @@ type AISettingsPanelConfig = {
99698
99819
  */
99699
99820
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
99700
99821
  /**
99701
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
99822
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
99702
99823
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-labelWidth)
99703
99824
  */
99704
99825
  labelWidth?: number|null
@@ -99868,7 +99989,7 @@ type AISettingsPanelConfig = {
99868
99989
  rtl?: boolean
99869
99990
  /**
99870
99991
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
99871
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
99992
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
99872
99993
  */
99873
99994
  scrollAction?: 'hide'|'realign'|null
99874
99995
  /**
@@ -100610,9 +100731,10 @@ type ChatPanelConfig = {
100610
100731
  catchEventHandlerExceptions?: boolean
100611
100732
  /**
100612
100733
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
100613
- * Set to `true` to centre the Widget in browser viewport space.
100734
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-centered)
100735
+ * @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.
100614
100736
  */
100615
- centered?: boolean
100737
+ centered?: boolean|object
100616
100738
  /**
100617
100739
  * Custom CSS classes to add to element.
100618
100740
  * May be specified as a space separated string, or as an object in which property names
@@ -100707,7 +100829,7 @@ type ChatPanelConfig = {
100707
100829
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
100708
100830
  /**
100709
100831
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
100710
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
100832
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
100711
100833
  * property which controls when a drag should start.
100712
100834
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-draggable)
100713
100835
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -100855,7 +100977,7 @@ type ChatPanelConfig = {
100855
100977
  */
100856
100978
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
100857
100979
  /**
100858
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
100980
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
100859
100981
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-labelWidth)
100860
100982
  */
100861
100983
  labelWidth?: number|null
@@ -101037,7 +101159,7 @@ type ChatPanelConfig = {
101037
101159
  rtl?: boolean
101038
101160
  /**
101039
101161
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
101040
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
101162
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
101041
101163
  */
101042
101164
  scrollAction?: 'hide'|'realign'|null
101043
101165
  /**
@@ -102034,9 +102156,10 @@ type ConfirmationDialogConfig = {
102034
102156
  catchEventHandlerExceptions?: boolean
102035
102157
  /**
102036
102158
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
102037
- * Set to `true` to centre the Widget in browser viewport space.
102159
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-centered)
102160
+ * @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.
102038
102161
  */
102039
- centered?: boolean
102162
+ centered?: boolean|object
102040
102163
  /**
102041
102164
  * Custom CSS classes to add to element.
102042
102165
  * May be specified as a space separated string, or as an object in which property names
@@ -102101,7 +102224,7 @@ type ConfirmationDialogConfig = {
102101
102224
  disabled?: boolean|'inert'
102102
102225
  /**
102103
102226
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
102104
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
102227
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
102105
102228
  * property which controls when a drag should start.
102106
102229
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-draggable)
102107
102230
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -102209,7 +102332,7 @@ type ConfirmationDialogConfig = {
102209
102332
  */
102210
102333
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
102211
102334
  /**
102212
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
102335
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
102213
102336
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-labelWidth)
102214
102337
  */
102215
102338
  labelWidth?: number|null
@@ -102343,7 +102466,7 @@ type ConfirmationDialogConfig = {
102343
102466
  rtl?: boolean
102344
102467
  /**
102345
102468
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
102346
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
102469
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
102347
102470
  */
102348
102471
  scrollAction?: 'hide'|'realign'|null
102349
102472
  /**
@@ -102931,9 +103054,10 @@ type HistogramConfig = {
102931
103054
  catchEventHandlerExceptions?: boolean
102932
103055
  /**
102933
103056
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
102934
- * Set to `true` to centre the Widget in browser viewport space.
103057
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-centered)
103058
+ * @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.
102935
103059
  */
102936
- centered?: boolean
103060
+ centered?: boolean|object
102937
103061
  /**
102938
103062
  * Custom CSS classes to add to element.
102939
103063
  * May be specified as a space separated string, or as an object in which property names
@@ -103011,7 +103135,7 @@ type HistogramConfig = {
103011
103135
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
103012
103136
  /**
103013
103137
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
103014
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
103138
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
103015
103139
  * property which controls when a drag should start.
103016
103140
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-draggable)
103017
103141
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -103303,7 +103427,7 @@ type HistogramConfig = {
103303
103427
  rtl?: boolean
103304
103428
  /**
103305
103429
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
103306
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
103430
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
103307
103431
  */
103308
103432
  scrollAction?: 'hide'|'realign'|null
103309
103433
  /**
@@ -103843,9 +103967,10 @@ type ScaleConfig = {
103843
103967
  catchEventHandlerExceptions?: boolean
103844
103968
  /**
103845
103969
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
103846
- * Set to `true` to centre the Widget in browser viewport space.
103970
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-centered)
103971
+ * @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.
103847
103972
  */
103848
- centered?: boolean
103973
+ centered?: boolean|object
103849
103974
  /**
103850
103975
  * Custom CSS classes to add to element.
103851
103976
  * May be specified as a space separated string, or as an object in which property names
@@ -103918,7 +104043,7 @@ type ScaleConfig = {
103918
104043
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
103919
104044
  /**
103920
104045
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
103921
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
104046
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
103922
104047
  * property which controls when a drag should start.
103923
104048
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-draggable)
103924
104049
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -104132,7 +104257,7 @@ type ScaleConfig = {
104132
104257
  rtl?: boolean
104133
104258
  /**
104134
104259
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
104135
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
104260
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
104136
104261
  */
104137
104262
  scrollAction?: 'hide'|'realign'|null
104138
104263
  /**
@@ -105422,7 +105547,7 @@ type ActionColumnConfig = {
105422
105547
  */
105423
105548
  alwaysClearCell?: boolean
105424
105549
  /**
105425
- * The `aria-label` to use for this Column`s header element
105550
+ * The `aria-label` to use for this Column's header element
105426
105551
  */
105427
105552
  ariaLabel?: string
105428
105553
  /**
@@ -106065,7 +106190,7 @@ type AggregateColumnConfig = {
106065
106190
  */
106066
106191
  alwaysClearCell?: boolean
106067
106192
  /**
106068
- * The `aria-label` to use for this Column`s header element
106193
+ * The `aria-label` to use for this Column's header element
106069
106194
  */
106070
106195
  ariaLabel?: string
106071
106196
  /**
@@ -106806,7 +106931,7 @@ type ChartColumnConfig = {
106806
106931
  */
106807
106932
  alwaysClearCell?: boolean
106808
106933
  /**
106809
- * The `aria-label` to use for this Column`s header element
106934
+ * The `aria-label` to use for this Column's header element
106810
106935
  */
106811
106936
  ariaLabel?: string
106812
106937
  /**
@@ -107544,7 +107669,7 @@ type CheckColumnConfig = {
107544
107669
  */
107545
107670
  alwaysClearCell?: boolean
107546
107671
  /**
107547
- * The `aria-label` to use for this Column`s header element
107672
+ * The `aria-label` to use for this Column's header element
107548
107673
  */
107549
107674
  ariaLabel?: string
107550
107675
  /**
@@ -108306,7 +108431,7 @@ type ColorColumnConfig = {
108306
108431
  */
108307
108432
  alwaysClearCell?: boolean
108308
108433
  /**
108309
- * The `aria-label` to use for this Column`s header element
108434
+ * The `aria-label` to use for this Column's header element
108310
108435
  */
108311
108436
  ariaLabel?: string
108312
108437
  /**
@@ -109001,7 +109126,7 @@ type ColumnConfig = {
109001
109126
  */
109002
109127
  alwaysClearCell?: boolean
109003
109128
  /**
109004
- * The `aria-label` to use for this Column`s header element
109129
+ * The `aria-label` to use for this Column's header element
109005
109130
  */
109006
109131
  ariaLabel?: string
109007
109132
  /**
@@ -109575,7 +109700,7 @@ export class Column extends Model {
109575
109700
  */
109576
109701
  alwaysClearCell: boolean
109577
109702
  /**
109578
- * The `aria-label` to use for this Column`s header element
109703
+ * The `aria-label` to use for this Column's header element
109579
109704
  */
109580
109705
  ariaLabel: string
109581
109706
  /**
@@ -110271,7 +110396,7 @@ type CurrencyColumnConfig = {
110271
110396
  */
110272
110397
  alwaysClearCell?: boolean
110273
110398
  /**
110274
- * The `aria-label` to use for this Column`s header element
110399
+ * The `aria-label` to use for this Column's header element
110275
110400
  */
110276
110401
  ariaLabel?: string
110277
110402
  /**
@@ -110989,7 +111114,7 @@ type DateColumnConfig = {
110989
111114
  */
110990
111115
  alwaysClearCell?: boolean
110991
111116
  /**
110992
- * The `aria-label` to use for this Column`s header element
111117
+ * The `aria-label` to use for this Column's header element
110993
111118
  */
110994
111119
  ariaLabel?: string
110995
111120
  /**
@@ -111714,7 +111839,7 @@ type NumberColumnConfig = {
111714
111839
  */
111715
111840
  alwaysClearCell?: boolean
111716
111841
  /**
111717
- * The `aria-label` to use for this Column`s header element
111842
+ * The `aria-label` to use for this Column's header element
111718
111843
  */
111719
111844
  ariaLabel?: string
111720
111845
  /**
@@ -112454,7 +112579,7 @@ type PercentColumnConfig = {
112454
112579
  */
112455
112580
  alwaysClearCell?: boolean
112456
112581
  /**
112457
- * The `aria-label` to use for this Column`s header element
112582
+ * The `aria-label` to use for this Column's header element
112458
112583
  */
112459
112584
  ariaLabel?: string
112460
112585
  /**
@@ -113180,7 +113305,7 @@ type RatingColumnConfig = {
113180
113305
  */
113181
113306
  alwaysClearCell?: boolean
113182
113307
  /**
113183
- * The `aria-label` to use for this Column`s header element
113308
+ * The `aria-label` to use for this Column's header element
113184
113309
  */
113185
113310
  ariaLabel?: string
113186
113311
  /**
@@ -113903,7 +114028,7 @@ type RowNumberColumnConfig = {
113903
114028
  */
113904
114029
  alwaysClearCell?: boolean
113905
114030
  /**
113906
- * The `aria-label` to use for this Column`s header element
114031
+ * The `aria-label` to use for this Column's header element
113907
114032
  */
113908
114033
  ariaLabel?: string
113909
114034
  /**
@@ -114464,7 +114589,7 @@ type SparklineColumnConfig = {
114464
114589
  */
114465
114590
  alwaysClearCell?: boolean
114466
114591
  /**
114467
- * The `aria-label` to use for this Column`s header element
114592
+ * The `aria-label` to use for this Column's header element
114468
114593
  */
114469
114594
  ariaLabel?: string
114470
114595
  /**
@@ -115163,7 +115288,7 @@ type TemplateColumnConfig = {
115163
115288
  */
115164
115289
  alwaysClearCell?: boolean
115165
115290
  /**
115166
- * The `aria-label` to use for this Column`s header element
115291
+ * The `aria-label` to use for this Column's header element
115167
115292
  */
115168
115293
  ariaLabel?: string
115169
115294
  /**
@@ -115849,7 +115974,7 @@ type TimeColumnConfig = {
115849
115974
  */
115850
115975
  alwaysClearCell?: boolean
115851
115976
  /**
115852
- * The `aria-label` to use for this Column`s header element
115977
+ * The `aria-label` to use for this Column's header element
115853
115978
  */
115854
115979
  ariaLabel?: string
115855
115980
  /**
@@ -116532,7 +116657,7 @@ type TreeColumnConfig = {
116532
116657
  */
116533
116658
  alwaysClearCell?: boolean
116534
116659
  /**
116535
- * The `aria-label` to use for this Column`s header element
116660
+ * The `aria-label` to use for this Column's header element
116536
116661
  */
116537
116662
  ariaLabel?: string
116538
116663
  /**
@@ -117268,7 +117393,7 @@ type WidgetColumnConfig = {
117268
117393
  */
117269
117394
  alwaysClearCell?: boolean
117270
117395
  /**
117271
- * The `aria-label` to use for this Column`s header element
117396
+ * The `aria-label` to use for this Column's header element
117272
117397
  */
117273
117398
  ariaLabel?: string
117274
117399
  /**
@@ -120877,9 +121002,10 @@ type CellTooltipConfig = {
120877
121002
  catchEventHandlerExceptions?: boolean
120878
121003
  /**
120879
121004
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
120880
- * Set to `true` to centre the Widget in browser viewport space.
121005
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-centered)
121006
+ * @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.
120881
121007
  */
120882
- centered?: boolean
121008
+ centered?: boolean|object
120883
121009
  /**
120884
121010
  * The widget which this plugin is to attach to.
120885
121011
  */
@@ -121184,7 +121310,7 @@ type CellTooltipConfig = {
121184
121310
  */
121185
121311
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
121186
121312
  /**
121187
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
121313
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
121188
121314
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-labelWidth)
121189
121315
  */
121190
121316
  labelWidth?: number|null
@@ -121401,7 +121527,7 @@ type CellTooltipConfig = {
121401
121527
  rtl?: boolean
121402
121528
  /**
121403
121529
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
121404
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
121530
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
121405
121531
  */
121406
121532
  scrollAction?: 'hide'|'realign'|null
121407
121533
  /**
@@ -130946,8 +131072,8 @@ type PdfExportConfig = {
130946
131072
  */
130947
131073
  fileName?: string
130948
131074
  /**
130949
- * A template function used to generate a page footer. It is passed an object with ´currentPage´ and
130950
- * `totalPages´ properties.
131075
+ * A template function used to generate a page footer. It is passed an object with `currentPage` and
131076
+ * `totalPages` properties.
130951
131077
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport#config-footerTpl)
130952
131078
  * @param {object} data Data object
130953
131079
  * @param {number} data.currentPage Current page number
@@ -130956,8 +131082,8 @@ type PdfExportConfig = {
130956
131082
  */
130957
131083
  footerTpl?: (data: { currentPage: number, totalPages: number }) => string
130958
131084
  /**
130959
- * A template function used to generate a page header. It is passed an object with ´currentPage´ and
130960
- * `totalPages´ properties.
131085
+ * A template function used to generate a page header. It is passed an object with `currentPage` and
131086
+ * `totalPages` properties.
130961
131087
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport#config-headerTpl)
130962
131088
  * @param {object} data Data object
130963
131089
  * @param {number} data.currentPage Current page number
@@ -131387,8 +131513,8 @@ type PrintConfig = {
131387
131513
  */
131388
131514
  exporters?: Exporter[]
131389
131515
  /**
131390
- * A template function used to generate a page footer. It is passed an object with ´currentPage´ and
131391
- * `totalPages´ properties.
131516
+ * A template function used to generate a page footer. It is passed an object with `currentPage` and
131517
+ * `totalPages` properties.
131392
131518
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print#config-footerTpl)
131393
131519
  * @param {object} data Data object
131394
131520
  * @param {number} data.currentPage Current page number
@@ -131397,8 +131523,8 @@ type PrintConfig = {
131397
131523
  */
131398
131524
  footerTpl?: (data: { currentPage: number, totalPages: number }) => string
131399
131525
  /**
131400
- * A template function used to generate a page header. It is passed an object with ´currentPage´ and
131401
- * `totalPages´ properties.
131526
+ * A template function used to generate a page header. It is passed an object with `currentPage` and
131527
+ * `totalPages` properties.
131402
131528
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/Print#config-headerTpl)
131403
131529
  * @param {object} data Data object
131404
131530
  * @param {number} data.currentPage Current page number
@@ -135673,7 +135799,7 @@ type GridConfig = {
135673
135799
  */
135674
135800
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
135675
135801
  /**
135676
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
135802
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
135677
135803
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-labelWidth)
135678
135804
  */
135679
135805
  labelWidth?: number|null
@@ -139734,7 +139860,7 @@ type GridBaseConfig = {
139734
139860
  */
139735
139861
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
139736
139862
  /**
139737
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
139863
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
139738
139864
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-labelWidth)
139739
139865
  */
139740
139866
  labelWidth?: number|null
@@ -143177,9 +143303,10 @@ type SubGridConfig = {
143177
143303
  catchEventHandlerExceptions?: boolean
143178
143304
  /**
143179
143305
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
143180
- * Set to `true` to centre the Widget in browser viewport space.
143306
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid#config-centered)
143307
+ * @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.
143181
143308
  */
143182
- centered?: boolean
143309
+ centered?: boolean|object
143183
143310
  /**
143184
143311
  * Custom CSS classes to add to element.
143185
143312
  * May be specified as a space separated string, or as an object in which property names
@@ -146212,7 +146339,7 @@ type TreeGridConfig = {
146212
146339
  */
146213
146340
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
146214
146341
  /**
146215
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
146342
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
146216
146343
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-labelWidth)
146217
146344
  */
146218
146345
  labelWidth?: number|null
@@ -148262,9 +148389,10 @@ type ExportDialogConfig = {
148262
148389
  catchEventHandlerExceptions?: boolean
148263
148390
  /**
148264
148391
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
148265
- * Set to `true` to centre the Widget in browser viewport space.
148392
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-centered)
148393
+ * @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.
148266
148394
  */
148267
- centered?: boolean
148395
+ centered?: boolean|object
148268
148396
  /**
148269
148397
  * Grid instance to build export dialog for
148270
148398
  */
@@ -148529,7 +148657,7 @@ type ExportDialogConfig = {
148529
148657
  */
148530
148658
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
148531
148659
  /**
148532
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
148660
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
148533
148661
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-labelWidth)
148534
148662
  */
148535
148663
  labelWidth?: number|null
@@ -148734,7 +148862,7 @@ type ExportDialogConfig = {
148734
148862
  rtl?: boolean
148735
148863
  /**
148736
148864
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
148737
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
148865
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
148738
148866
  */
148739
148867
  scrollAction?: 'hide'|'realign'|null
148740
148868
  /**
@@ -149084,7 +149212,7 @@ export class ExportDialog extends Popup {
149084
149212
  /**
149085
149213
  * Returns map of values of dialog fields.
149086
149214
  */
149087
- readonly values: Record<string, object>
149215
+ values: Record<string, object>
149088
149216
  /**
149089
149217
  * Fires before an object is destroyed.
149090
149218
  * @param {object} event Event object
@@ -150246,9 +150374,10 @@ type AIFilterFieldConfig = {
150246
150374
  catchEventHandlerExceptions?: boolean
150247
150375
  /**
150248
150376
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
150249
- * Set to `true` to centre the Widget in browser viewport space.
150377
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-centered)
150378
+ * @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.
150250
150379
  */
150251
- centered?: boolean
150380
+ centered?: boolean|object
150252
150381
  /**
150253
150382
  * A function (or the name of a function in the ownership hierarchy) called during field validation
150254
150383
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -150349,7 +150478,7 @@ type AIFilterFieldConfig = {
150349
150478
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
150350
150479
  /**
150351
150480
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
150352
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
150481
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
150353
150482
  * property which controls when a drag should start.
150354
150483
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-draggable)
150355
150484
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -150685,7 +150814,7 @@ type AIFilterFieldConfig = {
150685
150814
  rtl?: boolean
150686
150815
  /**
150687
150816
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
150688
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
150817
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
150689
150818
  */
150690
150819
  scrollAction?: 'hide'|'realign'|null
150691
150820
  /**
@@ -151411,9 +151540,10 @@ type ChecklistFilterComboConfig = {
151411
151540
  catchEventHandlerExceptions?: boolean
151412
151541
  /**
151413
151542
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
151414
- * Set to `true` to centre the Widget in browser viewport space.
151543
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-centered)
151544
+ * @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.
151415
151545
  */
151416
- centered?: boolean
151546
+ centered?: boolean|object
151417
151547
  /**
151418
151548
  * A function (or the name of a function in the ownership hierarchy) called during field validation
151419
151549
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -151548,7 +151678,7 @@ type ChecklistFilterComboConfig = {
151548
151678
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
151549
151679
  /**
151550
151680
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
151551
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
151681
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
151552
151682
  * property which controls when a drag should start.
151553
151683
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
151554
151684
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -151995,7 +152125,7 @@ type ChecklistFilterComboConfig = {
151995
152125
  rtl?: boolean
151996
152126
  /**
151997
152127
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
151998
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
152128
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
151999
152129
  */
152000
152130
  scrollAction?: 'hide'|'realign'|null
152001
152131
  /**
@@ -152633,9 +152763,10 @@ type GridChartDesignerConfig = {
152633
152763
  catchEventHandlerExceptions?: boolean
152634
152764
  /**
152635
152765
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
152636
- * Set to `true` to centre the Widget in browser viewport space.
152766
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-centered)
152767
+ * @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.
152637
152768
  */
152638
- centered?: boolean
152769
+ centered?: boolean|object
152639
152770
  /**
152640
152771
  * Custom CSS classes to add to element.
152641
152772
  * May be specified as a space separated string, or as an object in which property names
@@ -152708,7 +152839,7 @@ type GridChartDesignerConfig = {
152708
152839
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
152709
152840
  /**
152710
152841
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
152711
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
152842
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
152712
152843
  * property which controls when a drag should start.
152713
152844
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-draggable)
152714
152845
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -152924,7 +153055,7 @@ type GridChartDesignerConfig = {
152924
153055
  rtl?: boolean
152925
153056
  /**
152926
153057
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
152927
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
153058
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
152928
153059
  */
152929
153060
  scrollAction?: 'hide'|'realign'|null
152930
153061
  /**
@@ -153508,9 +153639,10 @@ type GridFieldFilterPickerConfig = {
153508
153639
  catchEventHandlerExceptions?: boolean
153509
153640
  /**
153510
153641
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
153511
- * Set to `true` to centre the Widget in browser viewport space.
153642
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-centered)
153643
+ * @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.
153512
153644
  */
153513
- centered?: boolean
153645
+ centered?: boolean|object
153514
153646
  /**
153515
153647
  * Custom CSS classes to add to element.
153516
153648
  * May be specified as a space separated string, or as an object in which property names
@@ -153598,7 +153730,7 @@ type GridFieldFilterPickerConfig = {
153598
153730
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
153599
153731
  /**
153600
153732
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
153601
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
153733
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
153602
153734
  * property which controls when a drag should start.
153603
153735
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-draggable)
153604
153736
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -153734,7 +153866,7 @@ type GridFieldFilterPickerConfig = {
153734
153866
  */
153735
153867
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
153736
153868
  /**
153737
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
153869
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
153738
153870
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-labelWidth)
153739
153871
  */
153740
153872
  labelWidth?: number|null
@@ -153920,7 +154052,7 @@ type GridFieldFilterPickerConfig = {
153920
154052
  rtl?: boolean
153921
154053
  /**
153922
154054
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
153923
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
154055
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
153924
154056
  */
153925
154057
  scrollAction?: 'hide'|'realign'|null
153926
154058
  /**
@@ -154589,9 +154721,10 @@ type GridFieldFilterPickerGroupConfig = {
154589
154721
  catchEventHandlerExceptions?: boolean
154590
154722
  /**
154591
154723
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
154592
- * Set to `true` to centre the Widget in browser viewport space.
154724
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-centered)
154725
+ * @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.
154593
154726
  */
154594
- centered?: boolean
154727
+ centered?: boolean|object
154595
154728
  /**
154596
154729
  * Custom CSS classes to add to element.
154597
154730
  * May be specified as a space separated string, or as an object in which property names
@@ -154679,7 +154812,7 @@ type GridFieldFilterPickerGroupConfig = {
154679
154812
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
154680
154813
  /**
154681
154814
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
154682
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
154815
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
154683
154816
  * property which controls when a drag should start.
154684
154817
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-draggable)
154685
154818
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -154811,7 +154944,7 @@ type GridFieldFilterPickerGroupConfig = {
154811
154944
  */
154812
154945
  labelPosition?: 'before'|'above'|'align-before'|'auto'|null
154813
154946
  /**
154814
- * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
154947
+ * Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
154815
154948
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelWidth)
154816
154949
  */
154817
154950
  labelWidth?: number|null
@@ -154992,7 +155125,7 @@ type GridFieldFilterPickerGroupConfig = {
154992
155125
  rtl?: boolean
154993
155126
  /**
154994
155127
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
154995
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
155128
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
154996
155129
  */
154997
155130
  scrollAction?: 'hide'|'realign'|null
154998
155131
  /**
@@ -155667,9 +155800,10 @@ type GroupBarConfig = {
155667
155800
  catchEventHandlerExceptions?: boolean
155668
155801
  /**
155669
155802
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
155670
- * Set to `true` to centre the Widget in browser viewport space.
155803
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-centered)
155804
+ * @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.
155671
155805
  */
155672
- centered?: boolean
155806
+ centered?: boolean|object
155673
155807
  /**
155674
155808
  * Configure as `true` to clear selection when clicking on empty space inside the List´s element.
155675
155809
  */
@@ -155768,7 +155902,7 @@ type GroupBarConfig = {
155768
155902
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
155769
155903
  /**
155770
155904
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
155771
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
155905
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
155772
155906
  * property which controls when a drag should start.
155773
155907
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-draggable)
155774
155908
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -156034,7 +156168,7 @@ type GroupBarConfig = {
156034
156168
  rtl?: boolean
156035
156169
  /**
156036
156170
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
156037
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
156171
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
156038
156172
  */
156039
156173
  scrollAction?: 'hide'|'realign'|null
156040
156174
  /**
@@ -156760,9 +156894,10 @@ type TreeComboConfig = {
156760
156894
  catchEventHandlerExceptions?: boolean
156761
156895
  /**
156762
156896
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
156763
- * Set to `true` to centre the Widget in browser viewport space.
156897
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-centered)
156898
+ * @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.
156764
156899
  */
156765
- centered?: boolean
156900
+ centered?: boolean|object
156766
156901
  /**
156767
156902
  * A function (or the name of a function in the ownership hierarchy) called during field validation
156768
156903
  * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
@@ -156897,7 +157032,7 @@ type TreeComboConfig = {
156897
157032
  dock?: 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
156898
157033
  /**
156899
157034
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
156900
- * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
157035
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
156901
157036
  * property which controls when a drag should start.
156902
157037
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-draggable)
156903
157038
  * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
@@ -157343,7 +157478,7 @@ type TreeComboConfig = {
157343
157478
  rtl?: boolean
157344
157479
  /**
157345
157480
  * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
157346
- * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
157481
+ * Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
157347
157482
  */
157348
157483
  scrollAction?: 'hide'|'realign'|null
157349
157484
  /**