@bryntum/grid-trial 7.3.5 → 7.3.6

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
@@ -710,6 +710,13 @@ type AjaxResponse = Response & {
710
710
  responseText?: string
711
711
  }
712
712
 
713
+ /**
714
+ * A style specification to apply to an element. Accepted by the [style](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-style) config
715
+ * and by [DomHelper.applyStyle()](https://bryntum.com/products/grid/docs/api/Core/helper/DomHelper#function-applyStyle-static).
716
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/CSSHelper#typedef-CSSStyleConfig)
717
+ */
718
+ type CSSStyleConfig = string|Record<string, string|number|null>|CSSStyleDeclaration
719
+
713
720
  /**
714
721
  * A string defining a duration unit. Valid values are:
715
722
  * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#typedef-DurationUnit)
@@ -778,7 +785,7 @@ type DomConfig = Record<string, any> & {
778
785
  /**
779
786
  * Style, as a string or an object (keys will be hyphenated)
780
787
  */
781
- style?: string|object
788
+ style?: CSSStyleConfig
782
789
  /**
783
790
  * Data object stored as an expando on the resulting element
784
791
  */
@@ -1354,7 +1361,7 @@ type PanelHeader = {
1354
1361
  /**
1355
1362
  * A style string or object to apply to the header
1356
1363
  */
1357
- style?: Record<string, string|number>|string
1364
+ style?: CSSStyleConfig
1358
1365
  }
1359
1366
 
1360
1367
  /**
@@ -7039,7 +7046,7 @@ export class Store extends Base {
7039
7046
  readonly groupHeaderRecords: Model[]
7040
7047
  /**
7041
7048
  * Currently used groupers.
7042
- * To set groupers when remote sorting is enabled by [sortParamName](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-sortParamName) you should
7049
+ * To set groupers when remote sorting is enabled by [remoteSort](https://bryntum.com/products/grid/docs/api/Core/data/Store#config-remoteSort) you should
7043
7050
  * use [setGroupers](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreGroup#function-setGroupers) instead to be able to wait for the operation to finish.
7044
7051
  */
7045
7052
  groupers: Grouper[]
@@ -8044,6 +8051,7 @@ export class Store extends Base {
8044
8051
  toggleCollapse(idOrRecord: string|number|Model, collapse?: boolean): Promise<void>;
8045
8052
  /**
8046
8053
  * Traverse all tree nodes (only applicable for Tree Store)
8054
+ * Also callable as `traverse(fn, skipTopNode, options)` to start from [rootNode](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-rootNode).
8047
8055
  * @param {Function} fn The function to call on visiting each node.
8048
8056
  * @param {Core.data.Model} fn.record Current record being visited
8049
8057
  * @param {Core.data.Model} [topNode] The top node to start the traverse at.
@@ -8056,6 +8064,7 @@ export class Store extends Base {
8056
8064
  traverse(fn: (record: Model) => void, topNode?: Model, skipTopNode?: boolean, options?: { includeFilteredOutRecords?: boolean, includeCollapsedGroupRecords?: boolean, useOrderedTree?: boolean }|boolean): void;
8057
8065
  /**
8058
8066
  * Traverse all tree nodes while the passed `fn` returns true
8067
+ * Also callable as `traverseWhile(fn, skipTopNode, options)` to start from [rootNode](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-rootNode).
8059
8068
  * @param {Function} fn The function to call on visiting each node. Returning `false` from it stops the traverse.
8060
8069
  * @param {Core.data.Model} fn.record The record being visited
8061
8070
  * @param {Core.data.Model} [topNode] The top node to start the traverse at.
@@ -10328,7 +10337,7 @@ export class StoreGroupClass {
10328
10337
  readonly groupHeaderRecords: Model[]
10329
10338
  /**
10330
10339
  * Currently used groupers.
10331
- * To set groupers when remote sorting is enabled by [sortParamName](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-sortParamName) you should
10340
+ * To set groupers when remote sorting is enabled by [remoteSort](https://bryntum.com/products/grid/docs/api/Core/data/Store#config-remoteSort) you should
10332
10341
  * use [setGroupers](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreGroup#function-setGroupers) instead to be able to wait for the operation to finish.
10333
10342
  */
10334
10343
  groupers: Grouper[]
@@ -11784,7 +11793,10 @@ export class StateTrackingManager extends Base {
11784
11793
  */
11785
11794
  hasStore(store: Store): boolean;
11786
11795
  /**
11787
- * Merges all update actions into one per model, keeping the oldest and the newest values.
11796
+ * Merges all update actions into one per model, keeping the oldest and the newest values. With
11797
+ * [revisionsEnabled](https://bryntum.com/products/grid/docs/api/Core/data/stm/StateTrackingManager#config-revisionsEnabled) the merge is input-aware: engine-calculated actions are dropped
11798
+ * (the engine recalculates them on undo/redo replay) - other consumers of marked transactions
11799
+ * (e.g. the versions feature changelog) need the full queue.
11788
11800
  */
11789
11801
  mergeTransactionUpdateActions(): void;
11790
11802
  /**
@@ -14211,19 +14223,19 @@ export class DateHelper {
14211
14223
  static add(date: Date|string, amount: number|string|Duration|DurationConfig, unit?: DurationUnitShort): Date;
14212
14224
  /**
14213
14225
  * Converts the specified amount of one unit (`fromUnit`) into an amount of another unit (`toUnit`).
14214
- * @param {string} toUnit The name of units to convert to, eg: `'ms'`
14215
- * @param {number,string} amount The time to convert. Either the magnitude number form or a duration string such as '2d'
14216
- * @param {string} [fromUnit] If the amount was passed as a number, the units to use to convert from
14226
+ * @param {DurationUnit,DurationUnitShort} toUnit The name of units to convert to, eg: `'ms'`
14227
+ * @param {number,string,Core.data.Duration} amount The time to convert. Either the magnitude number form, a duration string such as '2d', or a [Duration](https://bryntum.com/products/grid/docs/api/Core/data/Duration) instance, in which case its own unit is used as `fromUnit`
14228
+ * @param {DurationUnit,DurationUnitShort} [fromUnit] If the amount was passed as a number, the units to use to convert from
14217
14229
  */
14218
- static as(toUnit: string, amount: number|string, fromUnit?: string): number;
14230
+ static as(toUnit: DurationUnit|DurationUnitShort, amount: number|string|Duration, fromUnit?: DurationUnit|DurationUnitShort): number;
14219
14231
  /**
14220
14232
  * Converts the specified amount of desired unit into milliseconds. Can be called by only specifying a unit as the
14221
14233
  * first argument, it then uses `amount = 1`.
14222
14234
  * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#function-asMilliseconds)
14223
14235
  * @param {number,string} amount Amount, what of is decided by specifying unit (also takes a unit which implies an amount of 1)
14224
- * @param {string} [unit] Time unit (s, hour, months etc.)
14236
+ * @param {DurationUnit,DurationUnitShort} [unit] Time unit (s, hour, months etc.)
14225
14237
  */
14226
- static asMilliseconds(amount: number|string, unit?: string): number;
14238
+ static asMilliseconds(amount: number|string, unit?: DurationUnit|DurationUnitShort): number;
14227
14239
  /**
14228
14240
  * Converts the passed Date to an accurate number of months passed since the epoch start.
14229
14241
  * @param {Date} time The Date to find the month value of
@@ -14254,11 +14266,11 @@ export class DateHelper {
14254
14266
  static ceil(time: Date, increment: string|number|DurationConfig|object, base?: Date, weekStartDay?: number): Date;
14255
14267
  /**
14256
14268
  * Coerces the passed Date between the passed minimum and maximum values.
14257
- * @param {Date} date The date to clamp between the `min` and `max`
14269
+ * @param {Date,number,null,undefined} date The date to clamp between the `min` and `max`, either a Date or a ms timestamp. `null` and `undefined` are returned as passed
14258
14270
  * @param {Date} min The minimum Date
14259
14271
  * @param {Date} max The maximum Date
14260
14272
  */
14261
- static clamp(date: Date, min: Date, max: Date): Date;
14273
+ static clamp(date: Date|number|null|undefined, min: Date, max: Date): Date|null|undefined;
14262
14274
  /**
14263
14275
  * Removes time from a date (same as calling [startOf(date)](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#function-startOf-static)).
14264
14276
  * @param {Date} date Date to remove time from
@@ -14274,9 +14286,9 @@ export class DateHelper {
14274
14286
  * Compares two dates using the specified precision.
14275
14287
  * @param {Date} first First date
14276
14288
  * @param {Date} second Second date
14277
- * @param {string} [unit] Unit to calculate difference in. If not given, the comparison will be done up to a millisecond
14289
+ * @param {DurationUnit} [unit] Unit to calculate difference in. If not given, the comparison will be done up to a millisecond
14278
14290
  */
14279
- static compare(first: Date, second: Date, unit?: string): number;
14291
+ static compare(first: Date, second: Date, unit?: DurationUnit): number;
14280
14292
  /**
14281
14293
  * Compare two units. Returns `1` if first param is a greater unit than second param, `-1` if the opposite is true or `0` if they're equal.
14282
14294
  * @param {DurationUnit} unit1 The 1st unit
@@ -14387,11 +14399,11 @@ export class DateHelper {
14387
14399
  * @param {number} delta The millisecond delta value
14388
14400
  * @param {object} [options] Formatting options
14389
14401
  * @param {boolean} [options.abbrev] Pass `true` to use abbreviated unit names, eg `{ d: 2, h: 2 }` for the above example
14390
- * @param {string} [options.precision] The minimum precision unit
14402
+ * @param {DurationUnit} [options.precision] The minimum precision unit
14391
14403
  * @param {boolean} [options.ignoreLocale] Pass true to return unlocalized unit name. Requires `abbrev` to be false
14392
- * @param {string} [options.maxUnit] Name of the maximum unit in the output. e.g. if you pass `day` then you'll get `{ h: 25 }` instead of `{ d: 1, h: 1 }`
14404
+ * @param {DurationUnit} [options.maxUnit] Name of the maximum unit in the output. e.g. if you pass `day` then you'll get `{ h: 25 }` instead of `{ d: 1, h: 1 }`
14393
14405
  */
14394
- static getDelta(delta: number, options?: { abbrev?: boolean, precision?: string, ignoreLocale?: boolean, maxUnit?: string }): object;
14406
+ static getDelta(delta: number, options?: { abbrev?: boolean, precision?: DurationUnit, ignoreLocale?: boolean, maxUnit?: DurationUnit }): object;
14395
14407
  /**
14396
14408
  * Returns a duration of the timeframe in the given unit.
14397
14409
  * @param {Date} start The start date of the timeframe
@@ -14505,9 +14517,9 @@ export class DateHelper {
14505
14517
  * Checks if two dates are equal.
14506
14518
  * @param {Date} first First date
14507
14519
  * @param {Date} second Second date
14508
- * @param {string} [unit] Unit to calculate difference in. If not given, the comparison will be done up to a millisecond
14520
+ * @param {DurationUnit} [unit] Unit to calculate difference in. If not given, the comparison will be done up to a millisecond
14509
14521
  */
14510
- static isEqual(first: Date, second: Date, unit?: string): boolean;
14522
+ static isEqual(first: Date, second: Date, unit?: DurationUnit): boolean;
14511
14523
  /**
14512
14524
  * Checks if date is the start of specified unit.
14513
14525
  * @param {Date} date Date
@@ -14594,11 +14606,11 @@ export class DateHelper {
14594
14606
  * Sets the date to the start of the specified unit, by default returning a clone of the date instead of changing it
14595
14607
  * in place.
14596
14608
  * @param {Date} date Original date
14597
- * @param {string} [unit] Start of this unit, `'day'`, `'month'` etc
14609
+ * @param {DurationUnit} [unit] Start of this unit, `'day'`, `'month'` etc
14598
14610
  * @param {boolean} [clone] Manipulate a copy of the date
14599
14611
  * @param {number} [weekStartDay] The first day of week, `0-6` (Sunday-Saturday). Defaults to the [weekStartDay](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#property-weekStartDay-static)
14600
14612
  */
14601
- static startOf(date: Date, unit?: string, clone?: boolean, weekStartDay?: number): Date;
14613
+ static startOf(date: Date, unit?: DurationUnit, clone?: boolean, weekStartDay?: number): Date;
14602
14614
  /**
14603
14615
  * Returns `true` if the first time span completely 'covers' the second time span.
14604
14616
  * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#function-timeSpanContains)
@@ -14680,7 +14692,7 @@ export class DomHelper {
14680
14692
  * @param {number} duration Duration in ms, 0 means cls will not be applied
14681
14693
  * @param {Core.mixin.Delayable,Window} [delayable] The delayable to tie the setTimeout call to
14682
14694
  */
14683
- static addTemporaryClass(element: HTMLElement, cls: string, duration: number, delayable?: typeof Delayable|Window): void;
14695
+ static addTemporaryClass(element: HTMLElement, cls: string, duration: number, delayable?: DelayableClass|Window): void;
14684
14696
  /**
14685
14697
  * Increase Y position
14686
14698
  * @param {HTMLElement} element
@@ -14716,11 +14728,12 @@ export class DomHelper {
14716
14728
  static append(parentElement: HTMLElement, elementOrConfig: HTMLElement|DomConfig|string): HTMLElement;
14717
14729
  /**
14718
14730
  * Applies specified style to the passed element. Style can be an object or a string.
14731
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DomHelper#function-applyStyle)
14719
14732
  * @param {HTMLElement} element Target element
14720
- * @param {string,object} style Style to apply, 'border: 1px solid black' or { border: '1px solid black' }
14733
+ * @param {CSSStyleConfig} style Style to apply
14721
14734
  * @param {boolean} [overwrite] Specify `true` to replace style instead of applying changes
14722
14735
  */
14723
- static applyStyle(element: HTMLElement, style: string|object, overwrite?: boolean): void;
14736
+ static applyStyle(element: HTMLElement, style: CSSStyleConfig, overwrite?: boolean): void;
14724
14737
  /**
14725
14738
  * Adds or removes the `classes` contained in the specified object based on the truthy or falsy value of that key.
14726
14739
  * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DomHelper#function-assignClasses)
@@ -15227,6 +15240,14 @@ type DragHelperListenersTypes = {
15227
15240
  * @param {boolean} event.context.valid true if the drop position is valid
15228
15241
  */
15229
15242
  drop: (event: { source: DragHelper, context: { element: HTMLElement, target: HTMLElement, grabbed: HTMLElement, relatedElements: HTMLElement[], valid: boolean } }) => void
15243
+ /**
15244
+ * Fired when a drag operation terminates, after the dragged element, any clone or drag proxy and the
15245
+ * drag listeners have been cleaned up.
15246
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DragHelper#event-reset)
15247
+ * @param {object} event Event object
15248
+ * @param {Core.helper.DragHelper} event.source
15249
+ */
15250
+ reset: (event: { source: DragHelper }) => void
15230
15251
  }
15231
15252
 
15232
15253
  /**
@@ -15320,6 +15341,14 @@ type DragHelperListeners = {
15320
15341
  * @param {boolean} event.context.valid true if the drop position is valid
15321
15342
  */
15322
15343
  drop?: ((event: { source: DragHelper, context: { element: HTMLElement, target: HTMLElement, grabbed: HTMLElement, relatedElements: HTMLElement[], valid: boolean } }) => void)|string
15344
+ /**
15345
+ * Fired when a drag operation terminates, after the dragged element, any clone or drag proxy and the
15346
+ * drag listeners have been cleaned up.
15347
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DragHelper#event-reset)
15348
+ * @param {object} event Event object
15349
+ * @param {Core.helper.DragHelper} event.source
15350
+ */
15351
+ reset?: ((event: { source: DragHelper }) => void)|string
15323
15352
  }
15324
15353
 
15325
15354
  /**
@@ -15557,6 +15586,14 @@ type DragHelperConfig = {
15557
15586
  * @param {boolean} event.context.valid true if the drop position is valid
15558
15587
  */
15559
15588
  onDrop?: ((event: { source: DragHelper, context: { element: HTMLElement, target: HTMLElement, grabbed: HTMLElement, relatedElements: HTMLElement[], valid: boolean } }) => void)|string
15589
+ /**
15590
+ * Fired when a drag operation terminates, after the dragged element, any clone or drag proxy and the
15591
+ * drag listeners have been cleaned up.
15592
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DragHelper#event-reset)
15593
+ * @param {object} event Event object
15594
+ * @param {Core.helper.DragHelper} event.source
15595
+ */
15596
+ onReset?: ((event: { source: DragHelper }) => void)|string
15560
15597
  }
15561
15598
 
15562
15599
  /**
@@ -15677,6 +15714,14 @@ export class DragHelper extends Base {
15677
15714
  * @param {boolean} event.context.valid true if the drop position is valid
15678
15715
  */
15679
15716
  onDrop: ((event: { source: DragHelper, context: { element: HTMLElement, target: HTMLElement, grabbed: HTMLElement, relatedElements: HTMLElement[], valid: boolean } }) => void)|string
15717
+ /**
15718
+ * Fired when a drag operation terminates, after the dragged element, any clone or drag proxy and the
15719
+ * drag listeners have been cleaned up.
15720
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DragHelper#event-reset)
15721
+ * @param {object} event Event object
15722
+ * @param {Core.helper.DragHelper} event.source
15723
+ */
15724
+ onReset: ((event: { source: DragHelper }) => void)|string
15680
15725
  /**
15681
15726
  * Initializes a new DragHelper.
15682
15727
  * @param {DragHelperConfig} config Configuration object, accepts options specified under Configs above ```javascript new DragHelper({ containers: [div1, div2], isElementDraggable: element => element.className.contains('handle'), outerElement: topParent, listeners: { drop: onDrop, thisObj: this } }); ```
@@ -16337,13 +16382,13 @@ export class DataGenerator {
16337
16382
  * @param {number} [config.nbrResources] Number of resources to generate
16338
16383
  * @param {number} [config.nbrEvents] Number of events per resource
16339
16384
  * @param {boolean} [config.dependencies] Whether to generate dependencies between events
16340
- * @param {string} [config.tickUnit] The time unit for event duration ('days', 'hours', etc.)
16385
+ * @param {DurationUnit} [config.tickUnit] The time unit for event duration ('days', 'hours', etc.)
16341
16386
  * @param {number} [config.minDuration] Minimum duration for events
16342
16387
  * @param {number} [config.maxDuration] Maximum duration for events
16343
16388
  * @param {number} [config.gap] Gap between consecutive events
16344
16389
  * @param {Function} [config.eventCallback] Callback function called for each generated event
16345
16390
  */
16346
- static generateEvents(config: { viewStartDate: Date, viewEndDate?: Date, nbrResources?: number, nbrEvents?: number, dependencies?: boolean, tickUnit?: string, minDuration?: number, maxDuration?: number, gap?: number, eventCallback?: () => void }): object;
16391
+ static generateEvents(config: { viewStartDate: Date, viewEndDate?: Date, nbrResources?: number, nbrEvents?: number, dependencies?: boolean, tickUnit?: DurationUnit, minDuration?: number, maxDuration?: number, gap?: number, eventCallback?: () => void }): object;
16347
16392
  /**
16348
16393
  * Generates a pseudo random dataset with one scheduled event per resource &amp; date tick.
16349
16394
  * @param {object} data
@@ -21308,9 +21353,10 @@ type BooleanComboConfig = {
21308
21353
  */
21309
21354
  store?: Store|StoreConfig
21310
21355
  /**
21311
- * Custom style spec to add to element
21356
+ * Custom style spec to add to element, either as a cssText string:
21357
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-style)
21312
21358
  */
21313
- style?: string
21359
+ style?: CSSStyleConfig
21314
21360
  /**
21315
21361
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
21316
21362
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -22365,9 +22411,10 @@ type ButtonConfig = {
22365
22411
  */
22366
22412
  split?: boolean|'mouseover'|'hover'
22367
22413
  /**
22368
- * Custom style spec to add to element
22414
+ * Custom style spec to add to element, either as a cssText string:
22415
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-style)
22369
22416
  */
22370
- style?: string
22417
+ style?: CSSStyleConfig
22371
22418
  /**
22372
22419
  * Set to `true` to perform action on clicking the button if it's already pressed
22373
22420
  * and belongs to a [toggleGroup](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-toggleGroup).
@@ -23145,7 +23192,7 @@ type ButtonGroupConfig = {
23145
23192
  */
23146
23193
  ariaLabel?: string
23147
23194
  /**
23148
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
23195
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
23149
23196
  */
23150
23197
  autoUpdateRecord?: boolean
23151
23198
  /**
@@ -23566,9 +23613,10 @@ type ButtonGroupConfig = {
23566
23613
  */
23567
23614
  strictRecordMapping?: boolean
23568
23615
  /**
23569
- * Custom style spec to add to element
23616
+ * Custom style spec to add to element, either as a cssText string:
23617
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-style)
23570
23618
  */
23571
- style?: string
23619
+ style?: CSSStyleConfig
23572
23620
  /**
23573
23621
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
23574
23622
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -24339,7 +24387,7 @@ type CalendarPanelConfig = {
24339
24387
  */
24340
24388
  ariaLabel?: string
24341
24389
  /**
24342
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
24390
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
24343
24391
  */
24344
24392
  autoUpdateRecord?: boolean
24345
24393
  /**
@@ -24953,9 +25001,10 @@ type CalendarPanelConfig = {
24953
25001
  */
24954
25002
  strips?: Record<string, ContainerItemConfig>
24955
25003
  /**
24956
- * Custom style spec to add to element
25004
+ * Custom style spec to add to element, either as a cssText string:
25005
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-style)
24957
25006
  */
24958
- style?: string
25007
+ style?: CSSStyleConfig
24959
25008
  /**
24960
25009
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
24961
25010
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -25778,7 +25827,7 @@ type CarouselConfig = {
25778
25827
  */
25779
25828
  ariaLabel?: string
25780
25829
  /**
25781
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
25830
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
25782
25831
  */
25783
25832
  autoUpdateRecord?: boolean
25784
25833
  /**
@@ -26359,9 +26408,10 @@ type CarouselConfig = {
26359
26408
  */
26360
26409
  strips?: Record<string, ContainerItemConfig>
26361
26410
  /**
26362
- * Custom style spec to add to element
26411
+ * Custom style spec to add to element, either as a cssText string:
26412
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-style)
26363
26413
  */
26364
- style?: string
26414
+ style?: CSSStyleConfig
26365
26415
  /**
26366
26416
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
26367
26417
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -27646,9 +27696,10 @@ type CheckboxConfig = {
27646
27696
  */
27647
27697
  spellCheck?: boolean
27648
27698
  /**
27649
- * Custom style spec to add to element
27699
+ * Custom style spec to add to element, either as a cssText string:
27700
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-style)
27650
27701
  */
27651
- style?: string
27702
+ style?: CSSStyleConfig
27652
27703
  /**
27653
27704
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
27654
27705
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -28405,7 +28456,7 @@ type CheckboxGroupConfig = {
28405
28456
  */
28406
28457
  ariaLabel?: string
28407
28458
  /**
28408
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
28459
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
28409
28460
  */
28410
28461
  autoUpdateRecord?: boolean
28411
28462
  /**
@@ -28957,9 +29008,10 @@ type CheckboxGroupConfig = {
28957
29008
  */
28958
29009
  strips?: Record<string, ContainerItemConfig>
28959
29010
  /**
28960
- * Custom style spec to add to element
29011
+ * Custom style spec to add to element, either as a cssText string:
29012
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-style)
28961
29013
  */
28962
- style?: string
29014
+ style?: CSSStyleConfig
28963
29015
  /**
28964
29016
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
28965
29017
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -30113,9 +30165,10 @@ type ChipViewConfig = {
30113
30165
  */
30114
30166
  store?: object|object[]|StoreConfig|Store|StoreConfig[]
30115
30167
  /**
30116
- * Custom style spec to add to element
30168
+ * Custom style spec to add to element, either as a cssText string:
30169
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-style)
30117
30170
  */
30118
- style?: string
30171
+ style?: CSSStyleConfig
30119
30172
  /**
30120
30173
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
30121
30174
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -30744,7 +30797,7 @@ type CodeEditorConfig = {
30744
30797
  */
30745
30798
  ariaLabel?: string
30746
30799
  /**
30747
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
30800
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
30748
30801
  */
30749
30802
  autoUpdateRecord?: boolean
30750
30803
  /**
@@ -31271,9 +31324,10 @@ type CodeEditorConfig = {
31271
31324
  */
31272
31325
  strips?: Record<string, ContainerItemConfig>
31273
31326
  /**
31274
- * Custom style spec to add to element
31327
+ * Custom style spec to add to element, either as a cssText string:
31328
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-style)
31275
31329
  */
31276
- style?: string
31330
+ style?: CSSStyleConfig
31277
31331
  /**
31278
31332
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
31279
31333
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -32495,9 +32549,10 @@ type ColorFieldConfig = {
32495
32549
  */
32496
32550
  spellCheck?: boolean
32497
32551
  /**
32498
- * Custom style spec to add to element
32552
+ * Custom style spec to add to element, either as a cssText string:
32553
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-style)
32499
32554
  */
32500
- style?: string
32555
+ style?: CSSStyleConfig
32501
32556
  /**
32502
32557
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
32503
32558
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -33584,9 +33639,10 @@ type ColorPickerConfig = {
33584
33639
  */
33585
33640
  store?: object|object[]|StoreConfig|Store|StoreConfig[]
33586
33641
  /**
33587
- * Custom style spec to add to element
33642
+ * Custom style spec to add to element, either as a cssText string:
33643
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-style)
33588
33644
  */
33589
- style?: string
33645
+ style?: CSSStyleConfig
33590
33646
  /**
33591
33647
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
33592
33648
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -34915,9 +34971,10 @@ type ComboConfig = {
34915
34971
  */
34916
34972
  store?: Store|StoreConfig
34917
34973
  /**
34918
- * Custom style spec to add to element
34974
+ * Custom style spec to add to element, either as a cssText string:
34975
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-style)
34919
34976
  */
34920
- style?: string
34977
+ style?: CSSStyleConfig
34921
34978
  /**
34922
34979
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
34923
34980
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -35657,7 +35714,7 @@ type ConfirmationBarConfig = {
35657
35714
  */
35658
35715
  ariaLabel?: string
35659
35716
  /**
35660
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
35717
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
35661
35718
  */
35662
35719
  autoUpdateRecord?: boolean
35663
35720
  /**
@@ -36094,9 +36151,10 @@ type ConfirmationBarConfig = {
36094
36151
  */
36095
36152
  strictRecordMapping?: boolean
36096
36153
  /**
36097
- * Custom style spec to add to element
36154
+ * Custom style spec to add to element, either as a cssText string:
36155
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-style)
36098
36156
  */
36099
- style?: string
36157
+ style?: CSSStyleConfig
36100
36158
  /**
36101
36159
  * Set to `false` to disable synchronizing button widths. By default, buttons are assigned a `minWidth` based
36102
36160
  * on the longest [text](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-text). The default OK and Cancel buttons (in the en-US locale)
@@ -36713,7 +36771,7 @@ type ContainerConfig = {
36713
36771
  */
36714
36772
  ariaLabel?: string
36715
36773
  /**
36716
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
36774
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
36717
36775
  */
36718
36776
  autoUpdateRecord?: boolean
36719
36777
  /**
@@ -37140,9 +37198,10 @@ type ContainerConfig = {
37140
37198
  */
37141
37199
  strictRecordMapping?: boolean
37142
37200
  /**
37143
- * Custom style spec to add to element
37201
+ * Custom style spec to add to element, either as a cssText string:
37202
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-style)
37144
37203
  */
37145
- style?: string
37204
+ style?: CSSStyleConfig
37146
37205
  /**
37147
37206
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
37148
37207
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -37339,6 +37398,10 @@ export class Container extends Widget {
37339
37398
  * Identifies an object as an instance of [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container) class, or subclass thereof.
37340
37399
  */
37341
37400
  static readonly isContainer: boolean
37401
+ /**
37402
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
37403
+ */
37404
+ autoUpdateRecord: boolean
37342
37405
  /**
37343
37406
  * Returns the first widget in this Container.
37344
37407
  */
@@ -38445,9 +38508,10 @@ type DateFieldConfig = {
38445
38508
  */
38446
38509
  strictParsing?: boolean
38447
38510
  /**
38448
- * Custom style spec to add to element
38511
+ * Custom style spec to add to element, either as a cssText string:
38512
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-style)
38449
38513
  */
38450
- style?: string
38514
+ style?: CSSStyleConfig
38451
38515
  /**
38452
38516
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
38453
38517
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -39244,7 +39308,7 @@ type DatePickerConfig = {
39244
39308
  */
39245
39309
  ariaLabel?: string
39246
39310
  /**
39247
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
39311
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
39248
39312
  */
39249
39313
  autoUpdateRecord?: boolean
39250
39314
  /**
@@ -39912,9 +39976,10 @@ type DatePickerConfig = {
39912
39976
  */
39913
39977
  strips?: Record<string, ContainerItemConfig>
39914
39978
  /**
39915
- * Custom style spec to add to element
39979
+ * Custom style spec to add to element, either as a cssText string:
39980
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-style)
39916
39981
  */
39917
- style?: string
39982
+ style?: CSSStyleConfig
39918
39983
  /**
39919
39984
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
39920
39985
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -41233,9 +41298,10 @@ type DateRangeFieldConfig = {
41233
41298
  */
41234
41299
  spellCheck?: boolean
41235
41300
  /**
41236
- * Custom style spec to add to element
41301
+ * Custom style spec to add to element, either as a cssText string:
41302
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-style)
41237
41303
  */
41238
- style?: string
41304
+ style?: CSSStyleConfig
41239
41305
  /**
41240
41306
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
41241
41307
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -41284,9 +41350,10 @@ type DateRangeFieldConfig = {
41284
41350
  */
41285
41351
  validateOnInput?: boolean
41286
41352
  /**
41287
- * Default value
41353
+ * Value, which is an array of two Dates, or two strings which will be converted using the specified
41354
+ * [format](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-format).
41288
41355
  */
41289
- value?: string
41356
+ value?: string[]|Date[]
41290
41357
  /**
41291
41358
  * The week start day in the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-picker), 0 meaning Sunday, 6 meaning Saturday.
41292
41359
  * Uses localized value per default.
@@ -41469,7 +41536,7 @@ type DateRangeFieldConfig = {
41469
41536
 
41470
41537
  /**
41471
41538
  * A compound field for editing a start/end date pair. The two `Date` values are stored together in the
41472
- * [value](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-value) property as an object with `startDate` and `endDate` keys. A dropdown picker with dual
41539
+ * [value](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-value) property as an array, `[startDate, endDate]`. A dropdown picker with dual
41473
41540
  * month calendars lets the user select the range visually. By default the picker edits the value live; enable
41474
41541
  * [confirmable](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-confirmable) to require explicit OK/Cancel confirmation. Clicking or arrow-keying in the
41475
41542
  * picker adjusts whichever date field currently has focus. Calendar cells can be customized via
@@ -41521,8 +41588,8 @@ export class DateRangeField extends PickerField {
41521
41588
  */
41522
41589
  min: string|Date
41523
41590
  /**
41524
- * Value, which can be a Date or a string. If a string is specified, it will be converted using the
41525
- * specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format)
41591
+ * The start and end of the range, as an array of two dates: `[startDate, endDate]`. Strings are
41592
+ * accepted and converted using the specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format).
41526
41593
  */
41527
41594
  value: string[]|Date[]
41528
41595
  /**
@@ -41931,7 +41998,7 @@ type DateRangePickerConfig = {
41931
41998
  */
41932
41999
  ariaLabel?: string
41933
42000
  /**
41934
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
42001
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
41935
42002
  */
41936
42003
  autoUpdateRecord?: boolean
41937
42004
  /**
@@ -42585,9 +42652,10 @@ type DateRangePickerConfig = {
42585
42652
  */
42586
42653
  strips?: Record<string, ContainerItemConfig>
42587
42654
  /**
42588
- * Custom style spec to add to element
42655
+ * Custom style spec to add to element, either as a cssText string:
42656
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-style)
42589
42657
  */
42590
- style?: string
42658
+ style?: CSSStyleConfig
42591
42659
  /**
42592
42660
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
42593
42661
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -42655,8 +42723,9 @@ type DateRangePickerConfig = {
42655
42723
  */
42656
42724
  ui?: 'plain'|'toolbar'|string|object
42657
42725
  /**
42658
- * Value, which can be a Date or a string. If a string is specified, it will be converted using the
42659
- * specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format)
42726
+ * The start and end of the range, as an array of two dates: `[startDate, endDate]`. Strings are
42727
+ * accepted and converted using the specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format).
42728
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-value)
42660
42729
  */
42661
42730
  value?: string[]|Date[]
42662
42731
  /**
@@ -42899,8 +42968,8 @@ export class DateRangePicker extends MultiDatePicker {
42899
42968
  */
42900
42969
  readonly isDateRangePicker: boolean
42901
42970
  /**
42902
- * Value, which can be a Date or a string. If a string is specified, it will be converted using the
42903
- * specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format)
42971
+ * The start and end of the range, as an array of two dates: `[startDate, endDate]`. Strings are
42972
+ * accepted and converted using the specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format).
42904
42973
  */
42905
42974
  value: string[]|Date[]
42906
42975
  /**
@@ -43778,9 +43847,10 @@ type DateTimeFieldConfig = {
43778
43847
  */
43779
43848
  span?: number
43780
43849
  /**
43781
- * Custom style spec to add to element
43850
+ * Custom style spec to add to element, either as a cssText string:
43851
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-style)
43782
43852
  */
43783
- style?: string
43853
+ style?: CSSStyleConfig
43784
43854
  /**
43785
43855
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
43786
43856
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -44427,7 +44497,7 @@ type DemoCodeEditorConfig = {
44427
44497
  */
44428
44498
  ariaLabel?: string
44429
44499
  /**
44430
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
44500
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
44431
44501
  */
44432
44502
  autoUpdateRecord?: boolean
44433
44503
  /**
@@ -44963,9 +45033,10 @@ type DemoCodeEditorConfig = {
44963
45033
  */
44964
45034
  strips?: Record<string, ContainerItemConfig>
44965
45035
  /**
44966
- * Custom style spec to add to element
45036
+ * Custom style spec to add to element, either as a cssText string:
45037
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-style)
44967
45038
  */
44968
- style?: string
45039
+ style?: CSSStyleConfig
44969
45040
  /**
44970
45041
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
44971
45042
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -45581,7 +45652,7 @@ type DemoHeaderConfig = {
45581
45652
  */
45582
45653
  ariaLabel?: string
45583
45654
  /**
45584
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
45655
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
45585
45656
  */
45586
45657
  autoUpdateRecord?: boolean
45587
45658
  /**
@@ -46006,9 +46077,10 @@ type DemoHeaderConfig = {
46006
46077
  */
46007
46078
  strictRecordMapping?: boolean
46008
46079
  /**
46009
- * Custom style spec to add to element
46080
+ * Custom style spec to add to element, either as a cssText string:
46081
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-style)
46010
46082
  */
46011
- style?: string
46083
+ style?: CSSStyleConfig
46012
46084
  /**
46013
46085
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
46014
46086
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -47091,9 +47163,10 @@ type DisplayFieldConfig = {
47091
47163
  */
47092
47164
  spellCheck?: boolean
47093
47165
  /**
47094
- * Custom style spec to add to element
47166
+ * Custom style spec to add to element, either as a cssText string:
47167
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-style)
47095
47168
  */
47096
- style?: string
47169
+ style?: CSSStyleConfig
47097
47170
  /**
47098
47171
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
47099
47172
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -48264,9 +48337,10 @@ type DurationFieldConfig = {
48264
48337
  */
48265
48338
  step?: DurationConfig|number|string
48266
48339
  /**
48267
- * Custom style spec to add to element
48340
+ * Custom style spec to add to element, either as a cssText string:
48341
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-style)
48268
48342
  */
48269
- style?: string
48343
+ style?: CSSStyleConfig
48270
48344
  /**
48271
48345
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
48272
48346
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -49059,7 +49133,7 @@ type EditorConfig = {
49059
49133
  */
49060
49134
  ariaLabel?: string
49061
49135
  /**
49062
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
49136
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
49063
49137
  */
49064
49138
  autoUpdateRecord?: boolean
49065
49139
  /**
@@ -49538,9 +49612,10 @@ type EditorConfig = {
49538
49612
  */
49539
49613
  strictRecordMapping?: boolean
49540
49614
  /**
49541
- * Custom style spec to add to element
49615
+ * Custom style spec to add to element, either as a cssText string:
49616
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-style)
49542
49617
  */
49543
- style?: string
49618
+ style?: CSSStyleConfig
49544
49619
  /**
49545
49620
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
49546
49621
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -50802,9 +50877,10 @@ type FieldConfig = {
50802
50877
  */
50803
50878
  spellCheck?: boolean
50804
50879
  /**
50805
- * Custom style spec to add to element
50880
+ * Custom style spec to add to element, either as a cssText string:
50881
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-style)
50806
50882
  */
50807
- style?: string
50883
+ style?: CSSStyleConfig
50808
50884
  /**
50809
50885
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
50810
50886
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -51554,7 +51630,7 @@ type FieldContainerConfig = {
51554
51630
  */
51555
51631
  ariaLabel?: string
51556
51632
  /**
51557
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
51633
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
51558
51634
  */
51559
51635
  autoUpdateRecord?: boolean
51560
51636
  /**
@@ -51986,9 +52062,10 @@ type FieldContainerConfig = {
51986
52062
  */
51987
52063
  strictRecordMapping?: boolean
51988
52064
  /**
51989
- * Custom style spec to add to element
52065
+ * Custom style spec to add to element, either as a cssText string:
52066
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-style)
51990
52067
  */
51991
- style?: string
52068
+ style?: CSSStyleConfig
51992
52069
  /**
51993
52070
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
51994
52071
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -52541,7 +52618,7 @@ type FieldFilterPickerConfig = {
52541
52618
  */
52542
52619
  ariaLabel?: string
52543
52620
  /**
52544
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
52621
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
52545
52622
  */
52546
52623
  autoUpdateRecord?: boolean
52547
52624
  /**
@@ -53013,9 +53090,10 @@ type FieldFilterPickerConfig = {
53013
53090
  */
53014
53091
  strictRecordMapping?: boolean
53015
53092
  /**
53016
- * Custom style spec to add to element
53093
+ * Custom style spec to add to element, either as a cssText string:
53094
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-style)
53017
53095
  */
53018
- style?: string
53096
+ style?: CSSStyleConfig
53019
53097
  /**
53020
53098
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
53021
53099
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -53624,7 +53702,7 @@ type FieldFilterPickerGroupConfig = {
53624
53702
  */
53625
53703
  ariaLabel?: string
53626
53704
  /**
53627
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
53705
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
53628
53706
  */
53629
53707
  autoUpdateRecord?: boolean
53630
53708
  /**
@@ -54114,9 +54192,10 @@ type FieldFilterPickerGroupConfig = {
54114
54192
  */
54115
54193
  strictRecordMapping?: boolean
54116
54194
  /**
54117
- * Custom style spec to add to element
54195
+ * Custom style spec to add to element, either as a cssText string:
54196
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-style)
54118
54197
  */
54119
- style?: string
54198
+ style?: CSSStyleConfig
54120
54199
  /**
54121
54200
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
54122
54201
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -54782,7 +54861,7 @@ type FieldSetConfig = {
54782
54861
  */
54783
54862
  ariaLabel?: string
54784
54863
  /**
54785
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
54864
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
54786
54865
  */
54787
54866
  autoUpdateRecord?: boolean
54788
54867
  /**
@@ -55307,9 +55386,10 @@ type FieldSetConfig = {
55307
55386
  */
55308
55387
  strips?: Record<string, ContainerItemConfig>
55309
55388
  /**
55310
- * Custom style spec to add to element
55389
+ * Custom style spec to add to element, either as a cssText string:
55390
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-style)
55311
55391
  */
55312
- style?: string
55392
+ style?: CSSStyleConfig
55313
55393
  /**
55314
55394
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
55315
55395
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -56488,9 +56568,10 @@ type FileFieldConfig = {
56488
56568
  */
56489
56569
  spellCheck?: boolean
56490
56570
  /**
56491
- * Custom style spec to add to element
56571
+ * Custom style spec to add to element, either as a cssText string:
56572
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-style)
56492
56573
  */
56493
- style?: string
56574
+ style?: CSSStyleConfig
56494
56575
  /**
56495
56576
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
56496
56577
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -57091,7 +57172,7 @@ type FilePickerConfig = {
57091
57172
  */
57092
57173
  ariaLabel?: string
57093
57174
  /**
57094
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
57175
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
57095
57176
  */
57096
57177
  autoUpdateRecord?: boolean
57097
57178
  /**
@@ -57530,9 +57611,10 @@ type FilePickerConfig = {
57530
57611
  */
57531
57612
  strictRecordMapping?: boolean
57532
57613
  /**
57533
- * Custom style spec to add to element
57614
+ * Custom style spec to add to element, either as a cssText string:
57615
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-style)
57534
57616
  */
57535
- style?: string
57617
+ style?: CSSStyleConfig
57536
57618
  /**
57537
57619
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
57538
57620
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -58691,9 +58773,10 @@ type FilterFieldConfig = {
58691
58773
  */
58692
58774
  store?: Store
58693
58775
  /**
58694
- * Custom style spec to add to element
58776
+ * Custom style spec to add to element, either as a cssText string:
58777
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-style)
58695
58778
  */
58696
- style?: string
58779
+ style?: CSSStyleConfig
58697
58780
  /**
58698
58781
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
58699
58782
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -59347,7 +59430,7 @@ type HintConfig = {
59347
59430
  */
59348
59431
  autoNext?: string|number
59349
59432
  /**
59350
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
59433
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
59351
59434
  */
59352
59435
  autoUpdateRecord?: boolean
59353
59436
  /**
@@ -59922,9 +60005,10 @@ type HintConfig = {
59922
60005
  */
59923
60006
  strips?: Record<string, ContainerItemConfig>
59924
60007
  /**
59925
- * Custom style spec to add to element
60008
+ * Custom style spec to add to element, either as a cssText string:
60009
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-style)
59926
60010
  */
59927
- style?: string
60011
+ style?: CSSStyleConfig
59928
60012
  /**
59929
60013
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
59930
60014
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -60837,9 +60921,10 @@ type LabelConfig = {
60837
60921
  */
60838
60922
  span?: number
60839
60923
  /**
60840
- * Custom style spec to add to element
60924
+ * Custom style spec to add to element, either as a cssText string:
60925
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-style)
60841
60926
  */
60842
- style?: string
60927
+ style?: CSSStyleConfig
60843
60928
  /**
60844
60929
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
60845
60930
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -61832,9 +61917,10 @@ type ListConfig = {
61832
61917
  */
61833
61918
  store?: object|object[]|StoreConfig|Store|StoreConfig[]
61834
61919
  /**
61835
- * Custom style spec to add to element
61920
+ * Custom style spec to add to element, either as a cssText string:
61921
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-style)
61836
61922
  */
61837
- style?: string
61923
+ style?: CSSStyleConfig
61838
61924
  /**
61839
61925
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
61840
61926
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -62856,9 +62942,10 @@ type MaskConfig = {
62856
62942
  */
62857
62943
  span?: number
62858
62944
  /**
62859
- * Custom style spec to add to element
62945
+ * Custom style spec to add to element, either as a cssText string:
62946
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-style)
62860
62947
  */
62861
- style?: string
62948
+ style?: CSSStyleConfig
62862
62949
  /**
62863
62950
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
62864
62951
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -63532,7 +63619,7 @@ type MenuConfig = {
63532
63619
  */
63533
63620
  autoShow?: boolean
63534
63621
  /**
63535
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
63622
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
63536
63623
  */
63537
63624
  autoUpdateRecord?: boolean
63538
63625
  /**
@@ -64102,9 +64189,10 @@ type MenuConfig = {
64102
64189
  */
64103
64190
  strips?: Record<string, ContainerItemConfig>
64104
64191
  /**
64105
- * Custom style spec to add to element
64192
+ * Custom style spec to add to element, either as a cssText string:
64193
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-style)
64106
64194
  */
64107
- style?: string
64195
+ style?: CSSStyleConfig
64108
64196
  /**
64109
64197
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
64110
64198
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -65170,6 +65258,7 @@ type MenuItemConfig = {
65170
65258
  scrollable?: boolean|ScrollerConfig|Scroller
65171
65259
  /**
65172
65260
  * Set to `true` to display a border above this menu item, if there are other visible menu items before it.
65261
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-separator)
65173
65262
  */
65174
65263
  separator?: boolean
65175
65264
  /**
@@ -65186,9 +65275,10 @@ type MenuItemConfig = {
65186
65275
  */
65187
65276
  span?: number
65188
65277
  /**
65189
- * Custom style spec to add to element
65278
+ * Custom style spec to add to element, either as a cssText string:
65279
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-style)
65190
65280
  */
65191
- style?: string
65281
+ style?: CSSStyleConfig
65192
65282
  /**
65193
65283
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
65194
65284
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -65895,8 +65985,9 @@ export class MessageDialogSingleton extends Popup {
65895
65985
  * @param {string} [options.message] The message to show in the dialog body.
65896
65986
  * @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
65897
65987
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
65988
+ * @param {AlignSpec,string} [options.align] Align the dialog to a target instead of centering it.
65898
65989
  */
65899
- alert(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, okButton?: string|ButtonConfig }): Promise<void>;
65990
+ alert(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, okButton?: string|ButtonConfig, align?: AlignSpec|string }): Promise<void>;
65900
65991
  /**
65901
65992
  * Shows a confirm dialog with "Ok" and "Cancel" buttons. The returned promise resolves passing the button identifier
65902
65993
  * 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)).
@@ -65907,8 +65998,9 @@ export class MessageDialogSingleton extends Popup {
65907
65998
  * @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
65908
65999
  * @param {string,ButtonConfig} [options.cancelButton] A text or a config object to apply to the Cancel button.
65909
66000
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
66001
+ * @param {AlignSpec,string} [options.align] Align the dialog to a target instead of centering it.
65910
66002
  */
65911
- confirm(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<number>;
66003
+ confirm(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig, align?: AlignSpec|string }): Promise<number>;
65912
66004
  /**
65913
66005
  * 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
65914
66006
  * 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))
@@ -65921,8 +66013,9 @@ export class MessageDialogSingleton extends Popup {
65921
66013
  * @param {TextFieldConfig} [options.textField] A config object to apply to the TextField.
65922
66014
  * @param {string,ButtonConfig} [options.cancelButton] A text or a config object to apply to the Cancel button.
65923
66015
  * @param {string,ButtonConfig} [options.okButton] A text or config object to apply to the OK button.
66016
+ * @param {AlignSpec,string} [options.align] Align the dialog to a target instead of centering it.
65924
66017
  */
65925
- prompt(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, textField?: TextFieldConfig, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig }): Promise<MessageDialogPromptResult>;
66018
+ prompt(options: { modal?: boolean, title?: string, message?: string, rootElement?: string, textField?: TextFieldConfig, cancelButton?: string|ButtonConfig, okButton?: string|ButtonConfig, align?: AlignSpec|string }): Promise<MessageDialogPromptResult>;
65926
66019
  }
65927
66020
  export const MessageDialog : MessageDialogSingleton
65928
66021
 
@@ -66318,7 +66411,7 @@ type MonthPickerConfig = {
66318
66411
  */
66319
66412
  ariaLabel?: string
66320
66413
  /**
66321
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
66414
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
66322
66415
  */
66323
66416
  autoUpdateRecord?: boolean
66324
66417
  /**
@@ -66833,9 +66926,10 @@ type MonthPickerConfig = {
66833
66926
  */
66834
66927
  strips?: Record<string, ContainerItemConfig>
66835
66928
  /**
66836
- * Custom style spec to add to element
66929
+ * Custom style spec to add to element, either as a cssText string:
66930
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-style)
66837
66931
  */
66838
- style?: string
66932
+ style?: CSSStyleConfig
66839
66933
  /**
66840
66934
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
66841
66935
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -67541,7 +67635,7 @@ type MultiDatePickerConfig = {
67541
67635
  */
67542
67636
  ariaLabel?: string
67543
67637
  /**
67544
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
67638
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
67545
67639
  */
67546
67640
  autoUpdateRecord?: boolean
67547
67641
  /**
@@ -68180,9 +68274,10 @@ type MultiDatePickerConfig = {
68180
68274
  */
68181
68275
  strips?: Record<string, ContainerItemConfig>
68182
68276
  /**
68183
- * Custom style spec to add to element
68277
+ * Custom style spec to add to element, either as a cssText string:
68278
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-style)
68184
68279
  */
68185
- style?: string
68280
+ style?: CSSStyleConfig
68186
68281
  /**
68187
68282
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
68188
68283
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -69421,9 +69516,10 @@ type NumberFieldConfig = {
69421
69516
  */
69422
69517
  step?: number
69423
69518
  /**
69424
- * Custom style spec to add to element
69519
+ * Custom style spec to add to element, either as a cssText string:
69520
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-style)
69425
69521
  */
69426
- style?: string
69522
+ style?: CSSStyleConfig
69427
69523
  /**
69428
69524
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
69429
69525
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -70071,7 +70167,7 @@ type PagingToolbarConfig = {
70071
70167
  */
70072
70168
  ariaLabel?: string
70073
70169
  /**
70074
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
70170
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
70075
70171
  */
70076
70172
  autoUpdateRecord?: boolean
70077
70173
  /**
@@ -70452,6 +70548,15 @@ type PagingToolbarConfig = {
70452
70548
  * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-rendition)
70453
70549
  */
70454
70550
  rendition?: string|Record<string, string>|null
70551
+ /**
70552
+ * Enables [responsive](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Responsive) behavior. In the `small` state the first/last
70553
+ * page buttons are hidden to fit a narrow toolbar, but only when [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow) is `null`.
70554
+ */
70555
+ responsive?: object
70556
+ /**
70557
+ * Score the responsive state from this toolbar's own width rather than an ancestor's.
70558
+ */
70559
+ responsiveTarget?: string
70455
70560
  /**
70456
70561
  * Configure as `true` to have the component display a translucent ripple when its
70457
70562
  * [focusElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
@@ -70516,9 +70621,10 @@ type PagingToolbarConfig = {
70516
70621
  */
70517
70622
  strictRecordMapping?: boolean
70518
70623
  /**
70519
- * Custom style spec to add to element
70624
+ * Custom style spec to add to element, either as a cssText string:
70625
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-style)
70520
70626
  */
70521
- style?: string
70627
+ style?: CSSStyleConfig
70522
70628
  /**
70523
70629
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
70524
70630
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -71148,7 +71254,7 @@ type PanelConfig = {
71148
71254
  */
71149
71255
  ariaLabel?: string
71150
71256
  /**
71151
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
71257
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
71152
71258
  */
71153
71259
  autoUpdateRecord?: boolean
71154
71260
  /**
@@ -71659,9 +71765,10 @@ type PanelConfig = {
71659
71765
  */
71660
71766
  strips?: Record<string, ContainerItemConfig>
71661
71767
  /**
71662
- * Custom style spec to add to element
71768
+ * Custom style spec to add to element, either as a cssText string:
71769
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-style)
71663
71770
  */
71664
- style?: string
71771
+ style?: CSSStyleConfig
71665
71772
  /**
71666
71773
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
71667
71774
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -72082,7 +72189,7 @@ export class Panel extends Container {
72082
72189
  * Toggles collapsed state of the panel.
72083
72190
  * @param {boolean} [collapse] Pass `true` to collapse or `false` to expand the panel, or omit to toggle.
72084
72191
  */
72085
- toggleCollapsed(collapse?: boolean): boolean;
72192
+ toggleCollapsed(collapse?: boolean): Promise<boolean>;
72086
72193
  }
72087
72194
 
72088
72195
  /**
@@ -72940,9 +73047,10 @@ type PasswordFieldConfig = {
72940
73047
  */
72941
73048
  spellCheck?: boolean
72942
73049
  /**
72943
- * Custom style spec to add to element
73050
+ * Custom style spec to add to element, either as a cssText string:
73051
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-style)
72944
73052
  */
72945
- style?: string
73053
+ style?: CSSStyleConfig
72946
73054
  /**
72947
73055
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
72948
73056
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -74085,9 +74193,10 @@ type PickerFieldConfig = {
74085
74193
  */
74086
74194
  spellCheck?: boolean
74087
74195
  /**
74088
- * Custom style spec to add to element
74196
+ * Custom style spec to add to element, either as a cssText string:
74197
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-style)
74089
74198
  */
74090
- style?: string
74199
+ style?: CSSStyleConfig
74091
74200
  /**
74092
74201
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
74093
74202
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -74761,7 +74870,7 @@ type PopupConfig = {
74761
74870
  */
74762
74871
  autoShow?: boolean
74763
74872
  /**
74764
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
74873
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
74765
74874
  */
74766
74875
  autoUpdateRecord?: boolean
74767
74876
  /**
@@ -75335,9 +75444,10 @@ type PopupConfig = {
75335
75444
  */
75336
75445
  strips?: Record<string, ContainerItemConfig>
75337
75446
  /**
75338
- * Custom style spec to add to element
75447
+ * Custom style spec to add to element, either as a cssText string:
75448
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-style)
75339
75449
  */
75340
- style?: string
75450
+ style?: CSSStyleConfig
75341
75451
  /**
75342
75452
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
75343
75453
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -76285,9 +76395,10 @@ type ProgressBarConfig = {
76285
76395
  */
76286
76396
  span?: number
76287
76397
  /**
76288
- * Custom style spec to add to element
76398
+ * Custom style spec to add to element, either as a cssText string:
76399
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-style)
76289
76400
  */
76290
- style?: string
76401
+ style?: CSSStyleConfig
76291
76402
  /**
76292
76403
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
76293
76404
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -77420,9 +77531,10 @@ type RadioConfig = {
77420
77531
  */
77421
77532
  spellCheck?: boolean
77422
77533
  /**
77423
- * Custom style spec to add to element
77534
+ * Custom style spec to add to element, either as a cssText string:
77535
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-style)
77424
77536
  */
77425
- style?: string
77537
+ style?: CSSStyleConfig
77426
77538
  /**
77427
77539
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
77428
77540
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -78084,7 +78196,7 @@ type RadioGroupConfig = {
78084
78196
  */
78085
78197
  ariaLabel?: string
78086
78198
  /**
78087
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
78199
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
78088
78200
  */
78089
78201
  autoUpdateRecord?: boolean
78090
78202
  /**
@@ -78628,9 +78740,10 @@ type RadioGroupConfig = {
78628
78740
  */
78629
78741
  strips?: Record<string, ContainerItemConfig>
78630
78742
  /**
78631
- * Custom style spec to add to element
78743
+ * Custom style spec to add to element, either as a cssText string:
78744
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-style)
78632
78745
  */
78633
- style?: string
78746
+ style?: CSSStyleConfig
78634
78747
  /**
78635
78748
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
78636
78749
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -79791,9 +79904,10 @@ type RichTextFieldConfig = {
79791
79904
  */
79792
79905
  spellCheck?: boolean
79793
79906
  /**
79794
- * Custom style spec to add to element
79907
+ * Custom style spec to add to element, either as a cssText string:
79908
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-style)
79795
79909
  */
79796
- style?: string
79910
+ style?: CSSStyleConfig
79797
79911
  /**
79798
79912
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
79799
79913
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -80950,9 +81064,10 @@ type SlideToggleConfig = {
80950
81064
  */
80951
81065
  spellCheck?: boolean
80952
81066
  /**
80953
- * Custom style spec to add to element
81067
+ * Custom style spec to add to element, either as a cssText string:
81068
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-style)
80954
81069
  */
80955
- style?: string
81070
+ style?: CSSStyleConfig
80956
81071
  /**
80957
81072
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
80958
81073
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -81924,9 +82039,10 @@ type SliderConfig = {
81924
82039
  */
81925
82040
  step?: number
81926
82041
  /**
81927
- * Custom style spec to add to element
82042
+ * Custom style spec to add to element, either as a cssText string:
82043
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-style)
81928
82044
  */
81929
- style?: string
82045
+ style?: CSSStyleConfig
81930
82046
  /**
81931
82047
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
81932
82048
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -82902,9 +83018,10 @@ type SplitterConfig = {
82902
83018
  */
82903
83019
  span?: number
82904
83020
  /**
82905
- * Custom style spec to add to element
83021
+ * Custom style spec to add to element, either as a cssText string:
83022
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-style)
82906
83023
  */
82907
- style?: string
83024
+ style?: CSSStyleConfig
82908
83025
  /**
82909
83026
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
82910
83027
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -83922,9 +84039,10 @@ type TabConfig = {
83922
84039
  */
83923
84040
  split?: boolean|'mouseover'|'hover'
83924
84041
  /**
83925
- * Custom style spec to add to element
84042
+ * Custom style spec to add to element, either as a cssText string:
84043
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-style)
83926
84044
  */
83927
- style?: string
84045
+ style?: CSSStyleConfig
83928
84046
  /**
83929
84047
  * Set to `true` to perform action on clicking the button if it's already pressed
83930
84048
  * and belongs to a [toggleGroup](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-toggleGroup).
@@ -84584,7 +84702,7 @@ type TabBarConfig = {
84584
84702
  */
84585
84703
  ariaLabel?: string
84586
84704
  /**
84587
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
84705
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
84588
84706
  */
84589
84707
  autoUpdateRecord?: boolean
84590
84708
  /**
@@ -85029,9 +85147,10 @@ type TabBarConfig = {
85029
85147
  */
85030
85148
  strictRecordMapping?: boolean
85031
85149
  /**
85032
- * Custom style spec to add to element
85150
+ * Custom style spec to add to element, either as a cssText string:
85151
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-style)
85033
85152
  */
85034
- style?: string
85153
+ style?: CSSStyleConfig
85035
85154
  /**
85036
85155
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
85037
85156
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -85712,7 +85831,7 @@ type TabPanelConfig = {
85712
85831
  */
85713
85832
  autoHeight?: boolean
85714
85833
  /**
85715
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
85834
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
85716
85835
  */
85717
85836
  autoUpdateRecord?: boolean
85718
85837
  /**
@@ -86223,9 +86342,10 @@ type TabPanelConfig = {
86223
86342
  */
86224
86343
  strips?: Record<string, ContainerItemConfig>
86225
86344
  /**
86226
- * Custom style spec to add to element
86345
+ * Custom style spec to add to element, either as a cssText string:
86346
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-style)
86227
86347
  */
86228
- style?: string
86348
+ style?: CSSStyleConfig
86229
86349
  /**
86230
86350
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
86231
86351
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -87452,9 +87572,10 @@ type TextAreaFieldConfig = {
87452
87572
  */
87453
87573
  spellCheck?: boolean
87454
87574
  /**
87455
- * Custom style spec to add to element
87575
+ * Custom style spec to add to element, either as a cssText string:
87576
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-style)
87456
87577
  */
87457
- style?: string
87578
+ style?: CSSStyleConfig
87458
87579
  /**
87459
87580
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
87460
87581
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -88607,9 +88728,10 @@ type TextAreaPickerFieldConfig = {
88607
88728
  */
88608
88729
  spellCheck?: boolean
88609
88730
  /**
88610
- * Custom style spec to add to element
88731
+ * Custom style spec to add to element, either as a cssText string:
88732
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-style)
88611
88733
  */
88612
- style?: string
88734
+ style?: CSSStyleConfig
88613
88735
  /**
88614
88736
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
88615
88737
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -89747,9 +89869,10 @@ type TextFieldConfig = {
89747
89869
  */
89748
89870
  spellCheck?: boolean
89749
89871
  /**
89750
- * Custom style spec to add to element
89872
+ * Custom style spec to add to element, either as a cssText string:
89873
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-style)
89751
89874
  */
89752
- style?: string
89875
+ style?: CSSStyleConfig
89753
89876
  /**
89754
89877
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
89755
89878
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -90949,9 +91072,10 @@ type TimeFieldConfig = {
90949
91072
  */
90950
91073
  stepTriggers?: boolean
90951
91074
  /**
90952
- * Custom style spec to add to element
91075
+ * Custom style spec to add to element, either as a cssText string:
91076
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-style)
90953
91077
  */
90954
- style?: string
91078
+ style?: CSSStyleConfig
90955
91079
  /**
90956
91080
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
90957
91081
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -91585,7 +91709,7 @@ type TimePickerConfig = {
91585
91709
  */
91586
91710
  ariaLabel?: string
91587
91711
  /**
91588
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
91712
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
91589
91713
  */
91590
91714
  autoUpdateRecord?: boolean
91591
91715
  /**
@@ -92027,9 +92151,10 @@ type TimePickerConfig = {
92027
92151
  */
92028
92152
  strictRecordMapping?: boolean
92029
92153
  /**
92030
- * Custom style spec to add to element
92154
+ * Custom style spec to add to element, either as a cssText string:
92155
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-style)
92031
92156
  */
92032
- style?: string
92157
+ style?: CSSStyleConfig
92033
92158
  /**
92034
92159
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
92035
92160
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -92916,9 +93041,10 @@ type ToastConfig = {
92916
93041
  */
92917
93042
  span?: number
92918
93043
  /**
92919
- * Custom style spec to add to element
93044
+ * Custom style spec to add to element, either as a cssText string:
93045
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-style)
92920
93046
  */
92921
- style?: string
93047
+ style?: CSSStyleConfig
92922
93048
  /**
92923
93049
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
92924
93050
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -93797,9 +93923,10 @@ type ToolConfig = {
93797
93923
  */
93798
93924
  span?: number
93799
93925
  /**
93800
- * Custom style spec to add to element
93926
+ * Custom style spec to add to element, either as a cssText string:
93927
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-style)
93801
93928
  */
93802
- style?: string
93929
+ style?: CSSStyleConfig
93803
93930
  /**
93804
93931
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
93805
93932
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -94381,7 +94508,7 @@ type ToolbarConfig = {
94381
94508
  */
94382
94509
  ariaLabel?: string
94383
94510
  /**
94384
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
94511
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
94385
94512
  */
94386
94513
  autoUpdateRecord?: boolean
94387
94514
  /**
@@ -94820,9 +94947,10 @@ type ToolbarConfig = {
94820
94947
  */
94821
94948
  strictRecordMapping?: boolean
94822
94949
  /**
94823
- * Custom style spec to add to element
94950
+ * Custom style spec to add to element, either as a cssText string:
94951
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-style)
94824
94952
  */
94825
- style?: string
94953
+ style?: CSSStyleConfig
94826
94954
  /**
94827
94955
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
94828
94956
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -95557,7 +95685,7 @@ type TooltipConfig = {
95557
95685
  */
95558
95686
  autoShow?: boolean
95559
95687
  /**
95560
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
95688
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
95561
95689
  */
95562
95690
  autoUpdateRecord?: boolean
95563
95691
  /**
@@ -96192,9 +96320,10 @@ type TooltipConfig = {
96192
96320
  */
96193
96321
  strips?: Record<string, ContainerItemConfig>
96194
96322
  /**
96195
- * Custom style spec to add to element
96323
+ * Custom style spec to add to element, either as a cssText string:
96324
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-style)
96196
96325
  */
96197
- style?: string
96326
+ style?: CSSStyleConfig
96198
96327
  /**
96199
96328
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
96200
96329
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -97169,9 +97298,10 @@ type WidgetConfig = {
97169
97298
  */
97170
97299
  span?: number
97171
97300
  /**
97172
- * Custom style spec to add to element
97301
+ * Custom style spec to add to element, either as a cssText string:
97302
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-style)
97173
97303
  */
97174
- style?: string
97304
+ style?: CSSStyleConfig
97175
97305
  /**
97176
97306
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
97177
97307
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -97633,7 +97763,7 @@ export class Widget extends Base {
97633
97763
  * Get/set widgets elements style. The setter accepts a cssText string or a style config object, the getter always
97634
97764
  * returns a CSSStyleDeclaration
97635
97765
  */
97636
- style: string|object|CSSStyleDeclaration
97766
+ style: CSSStyleConfig|CSSStyleDeclaration
97637
97767
  /**
97638
97768
  * The [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
97639
97769
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel).
@@ -98456,7 +98586,7 @@ type YearPickerConfig = {
98456
98586
  */
98457
98587
  ariaLabel?: string
98458
98588
  /**
98459
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
98589
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
98460
98590
  */
98461
98591
  autoUpdateRecord?: boolean
98462
98592
  /**
@@ -98979,9 +99109,10 @@ type YearPickerConfig = {
98979
99109
  */
98980
99110
  strips?: Record<string, ContainerItemConfig>
98981
99111
  /**
98982
- * Custom style spec to add to element
99112
+ * Custom style spec to add to element, either as a cssText string:
99113
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-style)
98983
99114
  */
98984
- style?: string
99115
+ style?: CSSStyleConfig
98985
99116
  /**
98986
99117
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
98987
99118
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -99615,7 +99746,7 @@ type UndoRedoBaseConfig = {
99615
99746
  */
99616
99747
  ariaLabel?: string
99617
99748
  /**
99618
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
99749
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
99619
99750
  */
99620
99751
  autoUpdateRecord?: boolean
99621
99752
  /**
@@ -100045,9 +100176,10 @@ type UndoRedoBaseConfig = {
100045
100176
  */
100046
100177
  strictRecordMapping?: boolean
100047
100178
  /**
100048
- * Custom style spec to add to element
100179
+ * Custom style spec to add to element, either as a cssText string:
100180
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-style)
100049
100181
  */
100050
- style?: string
100182
+ style?: CSSStyleConfig
100051
100183
  /**
100052
100184
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
100053
100185
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -100581,7 +100713,7 @@ type AISettingsPanelConfig = {
100581
100713
  */
100582
100714
  ariaLabel?: string
100583
100715
  /**
100584
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
100716
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
100585
100717
  */
100586
100718
  autoUpdateRecord?: boolean
100587
100719
  /**
@@ -101008,9 +101140,10 @@ type AISettingsPanelConfig = {
101008
101140
  */
101009
101141
  strictRecordMapping?: boolean
101010
101142
  /**
101011
- * Custom style spec to add to element
101143
+ * Custom style spec to add to element, either as a cssText string:
101144
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-style)
101012
101145
  */
101013
- style?: string
101146
+ style?: CSSStyleConfig
101014
101147
  /**
101015
101148
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
101016
101149
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -101673,7 +101806,7 @@ type ChatPanelConfig = {
101673
101806
  */
101674
101807
  ariaLabel?: string
101675
101808
  /**
101676
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
101809
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
101677
101810
  */
101678
101811
  autoUpdateRecord?: boolean
101679
101812
  /**
@@ -102219,9 +102352,10 @@ type ChatPanelConfig = {
102219
102352
  */
102220
102353
  strips?: Record<string, ContainerItemConfig>
102221
102354
  /**
102222
- * Custom style spec to add to element
102355
+ * Custom style spec to add to element, either as a cssText string:
102356
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-style)
102223
102357
  */
102224
- style?: string
102358
+ style?: CSSStyleConfig
102225
102359
  /**
102226
102360
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
102227
102361
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -103495,9 +103629,10 @@ type ConfirmationDialogConfig = {
103495
103629
  */
103496
103630
  strips?: Record<string, ContainerItemConfig>
103497
103631
  /**
103498
- * Custom style spec to add to element
103632
+ * Custom style spec to add to element, either as a cssText string:
103633
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-style)
103499
103634
  */
103500
- style?: string
103635
+ style?: CSSStyleConfig
103501
103636
  /**
103502
103637
  * The tag name of this Widget's root element
103503
103638
  */
@@ -104473,9 +104608,10 @@ type HistogramConfig = {
104473
104608
  */
104474
104609
  span?: number
104475
104610
  /**
104476
- * Custom style spec to add to element
104611
+ * Custom style spec to add to element, either as a cssText string:
104612
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-style)
104477
104613
  */
104478
- style?: string
104614
+ style?: CSSStyleConfig
104479
104615
  /**
104480
104616
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
104481
104617
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -105295,9 +105431,10 @@ type ScaleConfig = {
105295
105431
  */
105296
105432
  span?: number
105297
105433
  /**
105298
- * Custom style spec to add to element
105434
+ * Custom style spec to add to element, either as a cssText string:
105435
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-style)
105299
105436
  */
105300
- style?: string
105437
+ style?: CSSStyleConfig
105301
105438
  /**
105302
105439
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
105303
105440
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -105804,8 +105941,9 @@ type AbstractDateRangeClassConfig = {
105804
105941
  */
105805
105942
  format?: string
105806
105943
  /**
105807
- * Value, which can be a Date or a string. If a string is specified, it will be converted using the
105808
- * specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format)
105944
+ * The start and end of the range, as an array of two dates: `[startDate, endDate]`. Strings are
105945
+ * accepted and converted using the specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format).
105946
+ * [More...](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-value)
105809
105947
  */
105810
105948
  value?: string[]|Date[]
105811
105949
  }
@@ -105833,8 +105971,8 @@ export class AbstractDateRangeClass {
105833
105971
  */
105834
105972
  readonly isAbstractDateRange: boolean
105835
105973
  /**
105836
- * Value, which can be a Date or a string. If a string is specified, it will be converted using the
105837
- * specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format)
105974
+ * The start and end of the range, as an array of two dates: `[startDate, endDate]`. Strings are
105975
+ * accepted and converted using the specified [format](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/AbstractDateRange#config-format).
105838
105976
  */
105839
105977
  value: string[]|Date[]
105840
105978
  /**
@@ -107448,8 +107586,9 @@ type AggregateColumnConfig = {
107448
107586
  */
107449
107587
  hideable?: boolean
107450
107588
  /**
107451
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
107452
- * allow rendering html elements
107589
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
107590
+ * HTML elements.
107591
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/AggregateColumn#config-htmlEncode)
107453
107592
  */
107454
107593
  htmlEncode?: boolean
107455
107594
  /**
@@ -108180,8 +108319,9 @@ type ChartColumnConfig = {
108180
108319
  */
108181
108320
  hideable?: boolean
108182
108321
  /**
108183
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
108184
- * allow rendering html elements
108322
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
108323
+ * HTML elements.
108324
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/ChartColumn#config-htmlEncode)
108185
108325
  */
108186
108326
  htmlEncode?: boolean
108187
108327
  /**
@@ -108917,8 +109057,9 @@ type CheckColumnConfig = {
108917
109057
  */
108918
109058
  hideable?: boolean
108919
109059
  /**
108920
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
108921
- * allow rendering html elements
109060
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
109061
+ * HTML elements.
109062
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/CheckColumn#config-htmlEncode)
108922
109063
  */
108923
109064
  htmlEncode?: boolean
108924
109065
  /**
@@ -109669,8 +109810,9 @@ type ColorColumnConfig = {
109669
109810
  */
109670
109811
  hideable?: boolean
109671
109812
  /**
109672
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
109673
- * allow rendering html elements
109813
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
109814
+ * HTML elements.
109815
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/ColorColumn#config-htmlEncode)
109674
109816
  */
109675
109817
  htmlEncode?: boolean
109676
109818
  /**
@@ -110366,8 +110508,9 @@ type ColumnConfig = {
110366
110508
  */
110367
110509
  hideable?: boolean
110368
110510
  /**
110369
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
110370
- * allow rendering html elements
110511
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
110512
+ * HTML elements.
110513
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-htmlEncode)
110371
110514
  */
110372
110515
  htmlEncode?: boolean
110373
110516
  /**
@@ -110902,8 +111045,8 @@ export class Column extends Model {
110902
111045
  */
110903
111046
  hideable: boolean
110904
111047
  /**
110905
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
110906
- * allow rendering html elements
111048
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
111049
+ * HTML elements.
110907
111050
  */
110908
111051
  htmlEncode: boolean
110909
111052
  /**
@@ -111651,8 +111794,9 @@ type CurrencyColumnConfig = {
111651
111794
  */
111652
111795
  hideable?: boolean
111653
111796
  /**
111654
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
111655
- * allow rendering html elements
111797
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
111798
+ * HTML elements.
111799
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/CurrencyColumn#config-htmlEncode)
111656
111800
  */
111657
111801
  htmlEncode?: boolean
111658
111802
  /**
@@ -112360,8 +112504,9 @@ type DateColumnConfig = {
112360
112504
  */
112361
112505
  hideable?: boolean
112362
112506
  /**
112363
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
112364
- * allow rendering html elements
112507
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
112508
+ * HTML elements.
112509
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/DateColumn#config-htmlEncode)
112365
112510
  */
112366
112511
  htmlEncode?: boolean
112367
112512
  /**
@@ -113084,8 +113229,9 @@ type NumberColumnConfig = {
113084
113229
  */
113085
113230
  hideable?: boolean
113086
113231
  /**
113087
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
113088
- * allow rendering html elements
113232
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
113233
+ * HTML elements.
113234
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/NumberColumn#config-htmlEncode)
113089
113235
  */
113090
113236
  htmlEncode?: boolean
113091
113237
  /**
@@ -114562,8 +114708,9 @@ type RatingColumnConfig = {
114562
114708
  */
114563
114709
  hideable?: boolean
114564
114710
  /**
114565
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
114566
- * allow rendering html elements
114711
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
114712
+ * HTML elements.
114713
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/RatingColumn#config-htmlEncode)
114567
114714
  */
114568
114715
  htmlEncode?: boolean
114569
114716
  /**
@@ -115208,8 +115355,9 @@ type RowNumberColumnConfig = {
115208
115355
  */
115209
115356
  hideable?: boolean
115210
115357
  /**
115211
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
115212
- * allow rendering html elements
115358
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
115359
+ * HTML elements.
115360
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/RowNumberColumn#config-htmlEncode)
115213
115361
  */
115214
115362
  htmlEncode?: boolean
115215
115363
  /**
@@ -115852,8 +116000,9 @@ type SparklineColumnConfig = {
115852
116000
  */
115853
116001
  highlightMinMax?: boolean
115854
116002
  /**
115855
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
115856
- * allow rendering html elements
116003
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
116004
+ * HTML elements.
116005
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/SparklineColumn#config-htmlEncode)
115857
116006
  */
115858
116007
  htmlEncode?: boolean
115859
116008
  /**
@@ -116528,8 +116677,9 @@ type TemplateColumnConfig = {
116528
116677
  */
116529
116678
  hideable?: boolean
116530
116679
  /**
116531
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
116532
- * allow rendering html elements
116680
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
116681
+ * HTML elements.
116682
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TemplateColumn#config-htmlEncode)
116533
116683
  */
116534
116684
  htmlEncode?: boolean
116535
116685
  /**
@@ -117219,8 +117369,9 @@ type TimeColumnConfig = {
117219
117369
  */
117220
117370
  hideable?: boolean
117221
117371
  /**
117222
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
117223
- * allow rendering html elements
117372
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
117373
+ * HTML elements.
117374
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TimeColumn#config-htmlEncode)
117224
117375
  */
117225
117376
  htmlEncode?: boolean
117226
117377
  /**
@@ -117913,8 +118064,9 @@ type TreeColumnConfig = {
117913
118064
  */
117914
118065
  hideable?: boolean
117915
118066
  /**
117916
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
117917
- * allow rendering html elements
118067
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
118068
+ * HTML elements.
118069
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/TreeColumn#config-htmlEncode)
117918
118070
  */
117919
118071
  htmlEncode?: boolean
117920
118072
  /**
@@ -118633,8 +118785,9 @@ type WidgetColumnConfig = {
118633
118785
  */
118634
118786
  hideable?: boolean
118635
118787
  /**
118636
- * By default, any rendered column cell content is HTML-encoded. Set this flag to `false` disable this and
118637
- * allow rendering html elements
118788
+ * By default, any rendered column cell content is HTML-encoded (`true`). Set this to `false` to allow rendering
118789
+ * HTML elements.
118790
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/column/WidgetColumn#config-htmlEncode)
118638
118791
  */
118639
118792
  htmlEncode?: boolean
118640
118793
  /**
@@ -121978,7 +122131,7 @@ type CellTooltipConfig = {
121978
122131
  */
121979
122132
  autoShow?: boolean
121980
122133
  /**
121981
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
122134
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
121982
122135
  */
121983
122136
  autoUpdateRecord?: boolean
121984
122137
  /**
@@ -122616,9 +122769,10 @@ type CellTooltipConfig = {
122616
122769
  */
122617
122770
  strips?: Record<string, ContainerItemConfig>
122618
122771
  /**
122619
- * Custom style spec to add to element
122772
+ * Custom style spec to add to element, either as a cssText string:
122773
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-style)
122620
122774
  */
122621
- style?: string
122775
+ style?: CSSStyleConfig
122622
122776
  /**
122623
122777
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
122624
122778
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -125244,6 +125398,7 @@ export class GridFeatureManager {
125244
125398
  * @param {Function} featureClass The feature class constructor to register
125245
125399
  * @param {boolean} [onByDefault] Specify true to have the feature enabled per default
125246
125400
  * @param {string,string[]} [forType] Specify a type to let the class applying the feature to determine if it should use it
125401
+ * @deprecated 7.3.6 GridFeatureManager will be removed in 8.0.0, where a feature registers itself when extending one of the new feature base classes
125247
125402
  */
125248
125403
  static registerFeature(featureClass: typeof InstancePlugin, onByDefault?: boolean, forType?: string|string[]): void;
125249
125404
  }
@@ -135107,6 +135262,23 @@ type GridListenersTypes = {
135107
135262
  * @param {Core.widget.Widget} event.source The widget
135108
135263
  */
135109
135264
  hide: (event: { source: Widget }) => void
135265
+ /**
135266
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
135267
+ * @param {object} event Event object
135268
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
135269
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
135270
+ * @param {number} event.scrollLeft The horizontal scroll position
135271
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
135272
+ */
135273
+ horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
135274
+ /**
135275
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
135276
+ * @param {object} event Event object
135277
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
135278
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
135279
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
135280
+ */
135281
+ horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
135110
135282
  /**
135111
135283
  * Fires when row locking is enabled.
135112
135284
  * @param {object} event Event object
@@ -136122,6 +136294,23 @@ type GridListeners = {
136122
136294
  * @param {Core.widget.Widget} event.source The widget
136123
136295
  */
136124
136296
  hide?: ((event: { source: Widget }) => void)|string
136297
+ /**
136298
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
136299
+ * @param {object} event Event object
136300
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
136301
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
136302
+ * @param {number} event.scrollLeft The horizontal scroll position
136303
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
136304
+ */
136305
+ horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
136306
+ /**
136307
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
136308
+ * @param {object} event Event object
136309
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
136310
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
136311
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
136312
+ */
136313
+ horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
136125
136314
  /**
136126
136315
  * Fires when row locking is enabled.
136127
136316
  * @param {object} event Event object
@@ -137127,9 +137316,10 @@ type GridConfig = {
137127
137316
  */
137128
137317
  strips?: Record<string, ContainerItemConfig>
137129
137318
  /**
137130
- * Custom style spec to add to element
137319
+ * Custom style spec to add to element, either as a cssText string:
137320
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-style)
137131
137321
  */
137132
- style?: string
137322
+ style?: CSSStyleConfig
137133
137323
  /**
137134
137324
  * An object containing sub grid configuration objects keyed by a `region` property.
137135
137325
  * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
@@ -137944,6 +138134,23 @@ type GridConfig = {
137944
138134
  * @param {Core.widget.Widget} event.source The widget
137945
138135
  */
137946
138136
  onHide?: ((event: { source: Widget }) => void)|string
138137
+ /**
138138
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
138139
+ * @param {object} event Event object
138140
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
138141
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
138142
+ * @param {number} event.scrollLeft The horizontal scroll position
138143
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
138144
+ */
138145
+ onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
138146
+ /**
138147
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
138148
+ * @param {object} event Event object
138149
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
138150
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
138151
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
138152
+ */
138153
+ onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
137947
138154
  /**
137948
138155
  * Fires when row locking is enabled.
137949
138156
  * @param {object} event Event object
@@ -139175,6 +139382,23 @@ type GridBaseListenersTypes = {
139175
139382
  * @param {Core.widget.Widget} event.source The widget
139176
139383
  */
139177
139384
  hide: (event: { source: Widget }) => void
139385
+ /**
139386
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
139387
+ * @param {object} event Event object
139388
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
139389
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
139390
+ * @param {number} event.scrollLeft The horizontal scroll position
139391
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
139392
+ */
139393
+ horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
139394
+ /**
139395
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
139396
+ * @param {object} event Event object
139397
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
139398
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
139399
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
139400
+ */
139401
+ horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
139178
139402
  /**
139179
139403
  * Fires when row locking is enabled.
139180
139404
  * @param {object} event Event object
@@ -140190,6 +140414,23 @@ type GridBaseListeners = {
140190
140414
  * @param {Core.widget.Widget} event.source The widget
140191
140415
  */
140192
140416
  hide?: ((event: { source: Widget }) => void)|string
140417
+ /**
140418
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
140419
+ * @param {object} event Event object
140420
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
140421
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
140422
+ * @param {number} event.scrollLeft The horizontal scroll position
140423
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
140424
+ */
140425
+ horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
140426
+ /**
140427
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
140428
+ * @param {object} event Event object
140429
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
140430
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
140431
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
140432
+ */
140433
+ horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
140193
140434
  /**
140194
140435
  * Fires when row locking is enabled.
140195
140436
  * @param {object} event Event object
@@ -141194,9 +141435,10 @@ type GridBaseConfig = {
141194
141435
  */
141195
141436
  strips?: Record<string, ContainerItemConfig>
141196
141437
  /**
141197
- * Custom style spec to add to element
141438
+ * Custom style spec to add to element, either as a cssText string:
141439
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-style)
141198
141440
  */
141199
- style?: string
141441
+ style?: CSSStyleConfig
141200
141442
  /**
141201
141443
  * An object containing sub grid configuration objects keyed by a `region` property.
141202
141444
  * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
@@ -142011,6 +142253,23 @@ type GridBaseConfig = {
142011
142253
  * @param {Core.widget.Widget} event.source The widget
142012
142254
  */
142013
142255
  onHide?: ((event: { source: Widget }) => void)|string
142256
+ /**
142257
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
142258
+ * @param {object} event Event object
142259
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
142260
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
142261
+ * @param {number} event.scrollLeft The horizontal scroll position
142262
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
142263
+ */
142264
+ onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
142265
+ /**
142266
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
142267
+ * @param {object} event Event object
142268
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
142269
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
142270
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
142271
+ */
142272
+ onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
142014
142273
  /**
142015
142274
  * Fires when row locking is enabled.
142016
142275
  * @param {object} event Event object
@@ -143269,6 +143528,23 @@ export class GridBase extends Panel {
143269
143528
  * @param {boolean} event.checked Checked or not
143270
143529
  */
143271
143530
  onHeaderMenuToggleItem: ((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, checked: boolean }) => void)|string
143531
+ /**
143532
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
143533
+ * @param {object} event Event object
143534
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
143535
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
143536
+ * @param {number} event.scrollLeft The horizontal scroll position
143537
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
143538
+ */
143539
+ onHorizontalScroll: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
143540
+ /**
143541
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
143542
+ * @param {object} event Event object
143543
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
143544
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
143545
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
143546
+ */
143547
+ onHorizontalScrollEnd: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
143272
143548
  /**
143273
143549
  * Fires when row locking is enabled.
143274
143550
  * @param {object} event Event object
@@ -144148,22 +144424,6 @@ type SubGridListenersTypes = {
144148
144424
  * @param {Core.widget.Widget} event.source The widget
144149
144425
  */
144150
144426
  hide: (event: { source: Widget }) => void
144151
- /**
144152
- * Fires when the Grid is scrolling horizontally in one of its SubGrids
144153
- * @param {object} event Event object
144154
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144155
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144156
- * @param {number} event.scrollLeft The horizontal scroll position.
144157
- */
144158
- horizontalScroll: (event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void
144159
- /**
144160
- * Fires after the Grid is done scrolling horizontally in one of its SubGrids
144161
- * @param {object} event Event object
144162
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144163
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144164
- * @param {number} event.scrollLeft The horizontal scroll position.
144165
- */
144166
- horizontalScrollEnd: (event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void
144167
144427
  /**
144168
144428
  * Triggered when a widget which had been in a non-visible state for any reason
144169
144429
  * achieves visibility.
@@ -144278,22 +144538,6 @@ type SubGridListeners = {
144278
144538
  * @param {Core.widget.Widget} event.source The widget
144279
144539
  */
144280
144540
  hide?: ((event: { source: Widget }) => void)|string
144281
- /**
144282
- * Fires when the Grid is scrolling horizontally in one of its SubGrids
144283
- * @param {object} event Event object
144284
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144285
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144286
- * @param {number} event.scrollLeft The horizontal scroll position.
144287
- */
144288
- horizontalScroll?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144289
- /**
144290
- * Fires after the Grid is done scrolling horizontally in one of its SubGrids
144291
- * @param {object} event Event object
144292
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144293
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144294
- * @param {number} event.scrollLeft The horizontal scroll position.
144295
- */
144296
- horizontalScrollEnd?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144297
144541
  /**
144298
144542
  * Triggered when a widget which had been in a non-visible state for any reason
144299
144543
  * achieves visibility.
@@ -144664,9 +144908,10 @@ type SubGridConfig = {
144664
144908
  */
144665
144909
  span?: number
144666
144910
  /**
144667
- * Custom style spec to add to element
144911
+ * Custom style spec to add to element, either as a cssText string:
144912
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid#config-style)
144668
144913
  */
144669
- style?: string
144914
+ style?: CSSStyleConfig
144670
144915
  /**
144671
144916
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
144672
144917
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -144774,22 +145019,6 @@ type SubGridConfig = {
144774
145019
  * @param {Core.widget.Widget} event.source The widget
144775
145020
  */
144776
145021
  onHide?: ((event: { source: Widget }) => void)|string
144777
- /**
144778
- * Fires when the Grid is scrolling horizontally in one of its SubGrids
144779
- * @param {object} event Event object
144780
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144781
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144782
- * @param {number} event.scrollLeft The horizontal scroll position.
144783
- */
144784
- onHorizontalScroll?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144785
- /**
144786
- * Fires after the Grid is done scrolling horizontally in one of its SubGrids
144787
- * @param {object} event Event object
144788
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144789
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144790
- * @param {number} event.scrollLeft The horizontal scroll position.
144791
- */
144792
- onHorizontalScrollEnd?: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144793
145022
  /**
144794
145023
  * Triggered when a widget which had been in a non-visible state for any reason
144795
145024
  * achieves visibility.
@@ -144884,22 +145113,6 @@ export class SubGrid extends Widget {
144884
145113
  * @param {Core.Base} event.source The Object that is being destroyed.
144885
145114
  */
144886
145115
  onDestroy: ((event: { source: Base }) => void)|string
144887
- /**
144888
- * Fires when the Grid is scrolling horizontally in one of its SubGrids
144889
- * @param {object} event Event object
144890
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144891
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144892
- * @param {number} event.scrollLeft The horizontal scroll position.
144893
- */
144894
- onHorizontalScroll: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144895
- /**
144896
- * Fires after the Grid is done scrolling horizontally in one of its SubGrids
144897
- * @param {object} event Event object
144898
- * @param {Grid.view.Grid} event.source The firing Grid instance.
144899
- * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance.
144900
- * @param {number} event.scrollLeft The horizontal scroll position.
144901
- */
144902
- onHorizontalScrollEnd: ((event: { source: Grid, subGrid: SubGrid, scrollLeft: number }) => void)|string
144903
145116
  /**
144904
145117
  * Creates an instance of the class using the supplied configuration
144905
145118
  * @param {GridChartDesignerConfig} [config]
@@ -145676,6 +145889,23 @@ type TreeGridListenersTypes = {
145676
145889
  * @param {Core.widget.Widget} event.source The widget
145677
145890
  */
145678
145891
  hide: (event: { source: Widget }) => void
145892
+ /**
145893
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
145894
+ * @param {object} event Event object
145895
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
145896
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
145897
+ * @param {number} event.scrollLeft The horizontal scroll position
145898
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
145899
+ */
145900
+ horizontalScroll: (event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void
145901
+ /**
145902
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
145903
+ * @param {object} event Event object
145904
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
145905
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
145906
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
145907
+ */
145908
+ horizontalScrollEnd: (event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void
145679
145909
  /**
145680
145910
  * Fires when row locking is enabled.
145681
145911
  * @param {object} event Event object
@@ -146691,6 +146921,23 @@ type TreeGridListeners = {
146691
146921
  * @param {Core.widget.Widget} event.source The widget
146692
146922
  */
146693
146923
  hide?: ((event: { source: Widget }) => void)|string
146924
+ /**
146925
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
146926
+ * @param {object} event Event object
146927
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
146928
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
146929
+ * @param {number} event.scrollLeft The horizontal scroll position
146930
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
146931
+ */
146932
+ horizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
146933
+ /**
146934
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
146935
+ * @param {object} event Event object
146936
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
146937
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
146938
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
146939
+ */
146940
+ horizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
146694
146941
  /**
146695
146942
  * Fires when row locking is enabled.
146696
146943
  * @param {object} event Event object
@@ -147696,9 +147943,10 @@ type TreeGridConfig = {
147696
147943
  */
147697
147944
  strips?: Record<string, ContainerItemConfig>
147698
147945
  /**
147699
- * Custom style spec to add to element
147946
+ * Custom style spec to add to element, either as a cssText string:
147947
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-style)
147700
147948
  */
147701
- style?: string
147949
+ style?: CSSStyleConfig
147702
147950
  /**
147703
147951
  * An object containing sub grid configuration objects keyed by a `region` property.
147704
147952
  * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.
@@ -148513,6 +148761,23 @@ type TreeGridConfig = {
148513
148761
  * @param {Core.widget.Widget} event.source The widget
148514
148762
  */
148515
148763
  onHide?: ((event: { source: Widget }) => void)|string
148764
+ /**
148765
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
148766
+ * @param {object} event Event object
148767
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
148768
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
148769
+ * @param {number} event.scrollLeft The horizontal scroll position
148770
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
148771
+ */
148772
+ onHorizontalScroll?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string
148773
+ /**
148774
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
148775
+ * @param {object} event Event object
148776
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
148777
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
148778
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
148779
+ */
148780
+ onHorizontalScrollEnd?: ((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string
148516
148781
  /**
148517
148782
  * Fires when row locking is enabled.
148518
148783
  * @param {object} event Event object
@@ -149445,7 +149710,7 @@ type ExportDialogConfig = {
149445
149710
  */
149446
149711
  autoShow?: boolean
149447
149712
  /**
149448
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
149713
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
149449
149714
  */
149450
149715
  autoUpdateRecord?: boolean
149451
149716
  /**
@@ -150027,9 +150292,10 @@ type ExportDialogConfig = {
150027
150292
  */
150028
150293
  strips?: Record<string, ContainerItemConfig>
150029
150294
  /**
150030
- * Custom style spec to add to element
150295
+ * Custom style spec to add to element, either as a cssText string:
150296
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-style)
150031
150297
  */
150032
- style?: string
150298
+ style?: CSSStyleConfig
150033
150299
  /**
150034
150300
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
150035
150301
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -151951,9 +152217,10 @@ type AIFilterFieldConfig = {
151951
152217
  */
151952
152218
  spellCheck?: boolean
151953
152219
  /**
151954
- * Custom style spec to add to element
152220
+ * Custom style spec to add to element, either as a cssText string:
152221
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-style)
151955
152222
  */
151956
- style?: string
152223
+ style?: CSSStyleConfig
151957
152224
  /**
151958
152225
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
151959
152226
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -153017,7 +153284,7 @@ type ChecklistFilterComboConfig = {
153017
153284
  /**
153018
153285
  * Template to render optional content next to list items.
153019
153286
  * @param {Core.data.Model} record The list item's backing record
153020
- * @returns {string}
153287
+ * @returns {string} *When returning HTML, ensure any user data from the record is encoded using [StringHelper.encodeHtml()](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static) to prevent XSS vulnerabilities.*
153021
153288
  */
153022
153289
  listItemPillTpl?: (record: Model) => string
153023
153290
  /**
@@ -153282,9 +153549,10 @@ type ChecklistFilterComboConfig = {
153282
153549
  */
153283
153550
  store?: Store|StoreConfig
153284
153551
  /**
153285
- * Custom style spec to add to element
153552
+ * Custom style spec to add to element, either as a cssText string:
153553
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-style)
153286
153554
  */
153287
- style?: string
153555
+ style?: CSSStyleConfig
153288
153556
  /**
153289
153557
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
153290
153558
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -154199,9 +154467,10 @@ type GridChartDesignerConfig = {
154199
154467
  */
154200
154468
  span?: number
154201
154469
  /**
154202
- * Custom style spec to add to element
154470
+ * Custom style spec to add to element, either as a cssText string:
154471
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-style)
154203
154472
  */
154204
- style?: string
154473
+ style?: CSSStyleConfig
154205
154474
  /**
154206
154475
  * Whether to update the chart designer's data series options and preview data as the
154207
154476
  * grid selection changes.
@@ -154732,7 +155001,7 @@ type GridFieldFilterPickerConfig = {
154732
155001
  */
154733
155002
  ariaLabel?: string
154734
155003
  /**
154735
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
155004
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
154736
155005
  */
154737
155006
  autoUpdateRecord?: boolean
154738
155007
  /**
@@ -155207,9 +155476,10 @@ type GridFieldFilterPickerConfig = {
155207
155476
  */
155208
155477
  strictRecordMapping?: boolean
155209
155478
  /**
155210
- * Custom style spec to add to element
155479
+ * Custom style spec to add to element, either as a cssText string:
155480
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-style)
155211
155481
  */
155212
- style?: string
155482
+ style?: CSSStyleConfig
155213
155483
  /**
155214
155484
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
155215
155485
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -155804,7 +156074,7 @@ type GridFieldFilterPickerGroupConfig = {
155804
156074
  */
155805
156075
  ariaLabel?: string
155806
156076
  /**
155807
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
156077
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
155808
156078
  */
155809
156079
  autoUpdateRecord?: boolean
155810
156080
  /**
@@ -156290,9 +156560,10 @@ type GridFieldFilterPickerGroupConfig = {
156290
156560
  */
156291
156561
  strictRecordMapping?: boolean
156292
156562
  /**
156293
- * Custom style spec to add to element
156563
+ * Custom style spec to add to element, either as a cssText string:
156564
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-style)
156294
156565
  */
156295
- style?: string
156566
+ style?: CSSStyleConfig
156296
156567
  /**
156297
156568
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
156298
156569
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -157347,9 +157618,10 @@ type GroupBarConfig = {
157347
157618
  */
157348
157619
  store?: object|object[]|StoreConfig|Store|StoreConfig[]
157349
157620
  /**
157350
- * Custom style spec to add to element
157621
+ * Custom style spec to add to element, either as a cssText string:
157622
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-style)
157351
157623
  */
157352
- style?: string
157624
+ style?: CSSStyleConfig
157353
157625
  /**
157354
157626
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
157355
157627
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
@@ -158657,9 +158929,10 @@ type TreeComboConfig = {
158657
158929
  */
158658
158930
  store?: Store|StoreConfig
158659
158931
  /**
158660
- * Custom style spec to add to element
158932
+ * Custom style spec to add to element, either as a cssText string:
158933
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-style)
158661
158934
  */
158662
- style?: string
158935
+ style?: CSSStyleConfig
158663
158936
  /**
158664
158937
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
158665
158938
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for