@bryntum/grid-react-thin 7.2.4 → 7.3.0

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.
Files changed (45) hide show
  1. package/README.md +4 -4
  2. package/lib/BryntumAIFilterField.d.ts +7 -15
  3. package/lib/BryntumAIFilterField.js +1 -2
  4. package/lib/BryntumAIFilterField.js.map +1 -1
  5. package/lib/BryntumChecklistFilterCombo.d.ts +10 -18
  6. package/lib/BryntumChecklistFilterCombo.js +1 -2
  7. package/lib/BryntumChecklistFilterCombo.js.map +1 -1
  8. package/lib/BryntumGrid.d.ts +22 -33
  9. package/lib/BryntumGrid.js +2 -2
  10. package/lib/BryntumGrid.js.map +1 -1
  11. package/lib/BryntumGridBase.d.ts +22 -33
  12. package/lib/BryntumGridBase.js +2 -2
  13. package/lib/BryntumGridBase.js.map +1 -1
  14. package/lib/BryntumGridChartDesigner.d.ts +6 -14
  15. package/lib/BryntumGridChartDesigner.js +1 -2
  16. package/lib/BryntumGridChartDesigner.js.map +1 -1
  17. package/lib/BryntumGridFieldFilterPicker.d.ts +7 -14
  18. package/lib/BryntumGridFieldFilterPicker.js +2 -5
  19. package/lib/BryntumGridFieldFilterPicker.js.map +1 -1
  20. package/lib/BryntumGridFieldFilterPickerGroup.d.ts +7 -14
  21. package/lib/BryntumGridFieldFilterPickerGroup.js +2 -5
  22. package/lib/BryntumGridFieldFilterPickerGroup.js.map +1 -1
  23. package/lib/BryntumGroupBar.d.ts +6 -14
  24. package/lib/BryntumGroupBar.js +1 -2
  25. package/lib/BryntumGroupBar.js.map +1 -1
  26. package/lib/BryntumTreeCombo.d.ts +10 -18
  27. package/lib/BryntumTreeCombo.js +1 -2
  28. package/lib/BryntumTreeCombo.js.map +1 -1
  29. package/lib/BryntumTreeGrid.d.ts +22 -33
  30. package/lib/BryntumTreeGrid.js +2 -2
  31. package/lib/BryntumTreeGrid.js.map +1 -1
  32. package/lib/WrapperHelper.js +2 -2
  33. package/lib/WrapperHelper.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/BryntumAIFilterField.tsx +74 -119
  36. package/src/BryntumChecklistFilterCombo.tsx +91 -150
  37. package/src/BryntumGrid.tsx +204 -291
  38. package/src/BryntumGridBase.tsx +204 -291
  39. package/src/BryntumGridChartDesigner.tsx +59 -95
  40. package/src/BryntumGridFieldFilterPicker.tsx +82 -132
  41. package/src/BryntumGridFieldFilterPickerGroup.tsx +81 -130
  42. package/src/BryntumGroupBar.tsx +65 -105
  43. package/src/BryntumTreeCombo.tsx +92 -152
  44. package/src/BryntumTreeGrid.tsx +204 -291
  45. package/src/WrapperHelper.tsx +2 -2
@@ -3,7 +3,7 @@
3
3
  */
4
4
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
5
5
  import React, { RefObject } from 'react';
6
- import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
7
7
  import { Grid, GridChartDesigner, GridChartDesignerListeners } from '@bryntum/grid-thin';
8
8
 
9
9
  import { createWidget, shouldComponentUpdate, processWidgetContent } from './WrapperHelper.js';
@@ -13,14 +13,12 @@ export type BryntumGridChartDesignerProps = {
13
13
  /**
14
14
  * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
15
15
  * content will be placed inside this element.
16
- * ...
17
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-adopt)
16
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-adopt)
18
17
  */
19
18
  adopt? : HTMLElement|string
20
19
  /**
21
20
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
22
- * ...
23
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-align)
21
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-align)
24
22
  */
25
23
  align? : AlignSpec|string
26
24
  /**
@@ -42,35 +40,30 @@ export type BryntumGridChartDesignerProps = {
42
40
  /**
43
41
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
44
42
  * into an element which will be linked using the `aria-describedby` attribute.
45
- * ...
46
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ariaDescription)
43
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ariaDescription)
47
44
  */
48
45
  ariaDescription? : string
49
46
  /**
50
47
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
51
48
  * the `aria-label` attribute.
52
- * ...
53
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ariaLabel)
49
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ariaLabel)
54
50
  */
55
51
  ariaLabel? : string
56
52
  /**
57
53
  * An object where property names with a truthy value indicate which events should bubble up the ownership
58
54
  * hierarchy when triggered.
59
- * ...
60
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-bubbleEvents)
55
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-bubbleEvents)
61
56
  */
62
57
  bubbleEvents? : object
63
58
  /**
64
59
  * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
65
- * ...
66
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-callOnFunctions)
60
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-callOnFunctions)
67
61
  */
68
62
  callOnFunctions? : boolean
69
63
  /**
70
64
  * By default, if an event handler throws an exception, the error propagates up the stack and the
71
65
  * application state is undefined. Code which follows the event handler will *not* be executed.
72
- * ...
73
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-catchEventHandlerExceptions)
66
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-catchEventHandlerExceptions)
74
67
  */
75
68
  catchEventHandlerExceptions? : boolean
76
69
  /**
@@ -82,15 +75,13 @@ export type BryntumGridChartDesignerProps = {
82
75
  * Custom CSS classes to add to element.
83
76
  * May be specified as a space separated string, or as an object in which property names
84
77
  * with truthy values are used as the class names:
85
- * ...
86
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-cls)
78
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-cls)
87
79
  */
88
80
  cls? : string|object
89
81
  /**
90
82
  * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
91
83
  * `style` block.
92
- * ...
93
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-color)
84
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-color)
94
85
  */
95
86
  color? : Color
96
87
  /**
@@ -114,8 +105,7 @@ export type BryntumGridChartDesignerProps = {
114
105
  * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
115
106
  * May be specified as a space separated string, or as an object in which property names
116
107
  * with truthy values are used as the class names:
117
- * ...
118
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-contentElementCls)
108
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-contentElementCls)
119
109
  */
120
110
  contentElementCls? : string|object
121
111
  /**
@@ -133,16 +123,15 @@ export type BryntumGridChartDesignerProps = {
133
123
  */
134
124
  defaultBindProperty? : string
135
125
  /**
136
- * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
137
- * ...
138
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-detectCSSCompatibilityIssues)
126
+ * Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
127
+ * checks:
128
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-detectCSSCompatibilityIssues)
139
129
  */
140
130
  detectCSSCompatibilityIssues? : boolean
141
131
  /**
142
132
  * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
143
133
  * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
144
- * ...
145
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-disabled)
134
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-disabled)
146
135
  */
147
136
  disabled? : boolean|'inert'
148
137
  /**
@@ -150,25 +139,21 @@ export type BryntumGridChartDesignerProps = {
150
139
  * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
151
140
  * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
152
141
  * body. Such widgets are called "edge strips".
153
- * ...
154
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-dock)
142
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-dock)
155
143
  */
156
144
  dock? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
157
145
  /**
158
146
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
159
147
  * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
160
148
  * property which controls when a drag should start.
161
- * ...
162
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-draggable)
149
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-draggable)
150
+ * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
163
151
  */
164
- draggable? : boolean|{
165
- handleSelector?: string
166
- }
152
+ draggable? : boolean|object
167
153
  /**
168
154
  * An object specifying attributes to assign to the root element of this widget.
169
155
  * Set `null` value to attribute to remove it.
170
- * ...
171
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-elementAttributes)
156
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-elementAttributes)
172
157
  */
173
158
  elementAttributes? : Record<string, string|null>
174
159
  extraData? : any
@@ -203,18 +188,15 @@ export type BryntumGridChartDesignerProps = {
203
188
  hidden? : boolean
204
189
  /**
205
190
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
206
- * ...
207
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-hideAnimation)
191
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-hideAnimation)
208
192
  */
209
193
  hideAnimation? : boolean|object
210
194
  /**
211
195
  * The HTML to display initially or a function returning the markup (called at widget construction time).
212
- * ...
213
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-html)
196
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-html)
214
197
  * @param {Core.widget.Widget} widget The calling Widget
215
- * @returns {string}
216
198
  */
217
- html? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig
199
+ html? : string|((widget: Widget) => void)|DomConfig|DomConfig[]|VueConfig|ReactJSX
218
200
  /**
219
201
  * The CSS class(es) to add when HTML content is being applied to this widget.
220
202
  */
@@ -225,8 +207,7 @@ export type BryntumGridChartDesignerProps = {
225
207
  id? : string
226
208
  /**
227
209
  * Determines if the widgets read-only state should be controlled by its parent.
228
- * ...
229
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ignoreParentReadOnly)
210
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ignoreParentReadOnly)
230
211
  */
231
212
  ignoreParentReadOnly? : boolean
232
213
  /**
@@ -241,22 +222,19 @@ export type BryntumGridChartDesignerProps = {
241
222
  * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
242
223
  * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
243
224
  * are the name of the instance method to call when the keystroke is received.
244
- * ...
245
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-keyMap)
225
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-keyMap)
246
226
  */
247
227
  keyMap? : Record<string, KeyMapConfig>
248
228
  /**
249
229
  * The listener set for this object.
250
- * ...
251
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-listeners)
230
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-listeners)
252
231
  */
253
232
  listeners? : GridChartDesignerListeners
254
233
  /**
255
234
  * A class translations of which are used for translating this entity.
256
235
  * This is often used when translations of an item are defined on its container class.
257
236
  * For example:
258
- * ...
259
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-localeClass)
237
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-localeClass)
260
238
  */
261
239
  localeClass? : typeof Base
262
240
  /**
@@ -268,8 +246,7 @@ export type BryntumGridChartDesignerProps = {
268
246
  * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
269
247
  * you could use 'localeKey' meta configuration.
270
248
  * Example:
271
- * ...
272
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-localizableProperties)
249
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-localizableProperties)
273
250
  */
274
251
  localizableProperties? : string[]
275
252
  /**
@@ -295,8 +272,7 @@ export type BryntumGridChartDesignerProps = {
295
272
  maxHeight? : string|number
296
273
  /**
297
274
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
298
- * ...
299
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-maximizeOnMobile)
275
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-maximizeOnMobile)
300
276
  */
301
277
  maximizeOnMobile? : number|string
302
278
  /**
@@ -318,18 +294,15 @@ export type BryntumGridChartDesignerProps = {
318
294
  * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
319
295
  * is used to monitor this element for size changes caused by either style manipulation, or by CSS
320
296
  * layout.
321
- * ...
322
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-monitorResize)
297
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-monitorResize)
298
+ * @property {boolean} immediate Set to `true` to receive resize notifications immediately.
323
299
  */
324
- monitorResize? : boolean|{
325
- immediate?: boolean
326
- }
300
+ monitorResize? : boolean|object
327
301
  /**
328
302
  * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
329
303
  * not participate in the standard layout of that widget, and must be positioned relatively to that
330
304
  * widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
331
- * ...
332
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-positioned)
305
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-positioned)
333
306
  */
334
307
  positioned? : boolean
335
308
  /**
@@ -340,8 +313,7 @@ export type BryntumGridChartDesignerProps = {
340
313
  /**
341
314
  * Whether this widget is read-only. This is only valid if the widget is an input
342
315
  * field, <strong>or contains input fields at any depth</strong>.
343
- * ...
344
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-readOnly)
316
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-readOnly)
345
317
  */
346
318
  readOnly? : boolean
347
319
  relayStoreEvents? : boolean
@@ -349,23 +321,26 @@ export type BryntumGridChartDesignerProps = {
349
321
  * Configure as `true` to have the component display a translucent ripple when its
350
322
  * [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
351
323
  * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
352
- * ...
353
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ripple)
354
- */
355
- ripple? : boolean|{
356
- delegate?: string
357
- color?: string
358
- radius?: number
359
- clip?: string
360
- }
324
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ripple)
325
+ * @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
326
+ * @property {string} [color] A CSS color name or specification.
327
+ * @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
328
+ * @property {string} [clip] A string which describes how to clip the ripple if it is not to be clipped to the default element. Either the property of the widget to use as the clipping element, or a selector to allow clipping to the closest matching ancestor to the target element.
329
+ */
330
+ ripple? : boolean|object
331
+ /**
332
+ * The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
333
+ * accidentally applying a role which may interfere with screen readers.
334
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-role)
335
+ */
336
+ role? : string
361
337
  /**
362
338
  * If you are rendering this widget to a shadow root inside a web component, set this config to the shadowRoot. If not inside a web component, set it to `document.body`
363
339
  */
364
340
  rootElement? : ShadowRoot|HTMLElement
365
341
  /**
366
342
  * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
367
- * ...
368
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-rtl)
343
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-rtl)
369
344
  */
370
345
  rtl? : boolean
371
346
  /**
@@ -373,8 +348,7 @@ export type BryntumGridChartDesignerProps = {
373
348
  * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
374
349
  * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
375
350
  * CSS overflow properties thus:
376
- * ...
377
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-scrollable)
351
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-scrollable)
378
352
  */
379
353
  scrollable? : boolean|ScrollerConfig|Scroller
380
354
  /**
@@ -384,8 +358,7 @@ export type BryntumGridChartDesignerProps = {
384
358
  scrollAction? : 'hide'|'realign'|null
385
359
  /**
386
360
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
387
- * ...
388
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-showAnimation)
361
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-showAnimation)
389
362
  */
390
363
  showAnimation? : boolean|object
391
364
  /**
@@ -405,8 +378,7 @@ export type BryntumGridChartDesignerProps = {
405
378
  * 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
406
379
  * [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
407
380
  * this widget:
408
- * ...
409
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-tab)
381
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-tab)
410
382
  */
411
383
  tab? : boolean|TabConfig
412
384
  /**
@@ -415,8 +387,7 @@ export type BryntumGridChartDesignerProps = {
415
387
  tag? : string
416
388
  /**
417
389
  * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
418
- * ...
419
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-textAlign)
390
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-textAlign)
420
391
  */
421
392
  textAlign? : 'left'|'center'|'right'|'start'|'end'
422
393
  /**
@@ -425,8 +396,7 @@ export type BryntumGridChartDesignerProps = {
425
396
  title? : string
426
397
  /**
427
398
  * Tooltip for the widget, either as a string or as a Tooltip config object.
428
- * ...
429
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-tooltip)
399
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-tooltip)
430
400
  */
431
401
  tooltip? : string|TooltipConfig|null
432
402
  type? : 'gridchartdesigner'
@@ -434,8 +404,7 @@ export type BryntumGridChartDesignerProps = {
434
404
  * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
435
405
  * as a space separated string, an array of strings, or as an object in which property names with truthy
436
406
  * values are used as the class names.
437
- * ...
438
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ui)
407
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ui)
439
408
  */
440
409
  ui? : string|object
441
410
  /**
@@ -451,14 +420,12 @@ export type BryntumGridChartDesignerProps = {
451
420
  width? : string|number
452
421
  /**
453
422
  * The x position for the widget.
454
- * ...
455
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-x)
423
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-x)
456
424
  */
457
425
  x? : number
458
426
  /**
459
427
  * The y position for the widget.
460
- * ...
461
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-y)
428
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-y)
462
429
  */
463
430
  y? : number
464
431
 
@@ -483,8 +450,7 @@ export type BryntumGridChartDesignerProps = {
483
450
  onBeforeShow? : ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string
484
451
  /**
485
452
  * Fires when any other event is fired from the object.
486
- * ...
487
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#event-catchAll)
453
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#event-catchAll)
488
454
  * @param {object} event Event object
489
455
  * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
490
456
  * @param {string} event.event.type The type of the event which is caught by the listener
@@ -535,8 +501,7 @@ export type BryntumGridChartDesignerProps = {
535
501
  /**
536
502
  * Triggered when a widget which had been in a non-visible state for any reason
537
503
  * achieves visibility.
538
- * ...
539
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#event-paint)
504
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#event-paint)
540
505
  * @param {object} event Event object
541
506
  * @param {Core.widget.Widget} event.source The widget being painted.
542
507
  * @param {boolean} event.firstPaint `true` if this is the first paint.
@@ -614,6 +579,7 @@ export class BryntumGridChartDesigner extends React.Component<BryntumGridChartDe
614
579
  'preventTooltipOnTouch',
615
580
  'relayStoreEvents',
616
581
  'ripple',
582
+ 'role',
617
583
  'rootElement',
618
584
  'scrollAction',
619
585
  'showAnimation',
@@ -678,8 +644,6 @@ export class BryntumGridChartDesigner extends React.Component<BryntumGridChartDe
678
644
  ];
679
645
 
680
646
  static propertyNames = [
681
- 'anchorSize',
682
- 'focusVisible',
683
647
  'parent'
684
648
  ];
685
649