@bryntum/grid-angular-thin 7.2.3 → 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.
- package/README.md +4 -4
- package/bundles/bryntum-grid-angular-thin.umd.js +761 -230
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +62 -14
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +62 -14
- package/esm2015/lib/bryntum-grid-base.component.js +78 -35
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +61 -12
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +65 -21
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +65 -21
- package/esm2015/lib/bryntum-grid.component.js +78 -35
- package/esm2015/lib/bryntum-group-bar.component.js +61 -12
- package/esm2015/lib/bryntum-tree-combo.component.js +62 -14
- package/esm2015/lib/bryntum-tree-grid.component.js +78 -35
- package/esm2015/lib/grid.module.js +5 -4
- package/esm2015/lib/shadowdom.helper.js +82 -0
- package/fesm2015/bryntum-grid-angular-thin.js +738 -207
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +87 -133
- package/lib/bryntum-checklist-filter-combo.component.d.ts +106 -166
- package/lib/bryntum-grid-base.component.d.ts +238 -303
- package/lib/bryntum-grid-chart-designer.component.d.ts +71 -108
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +93 -143
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +94 -145
- package/lib/bryntum-grid.component.d.ts +238 -303
- package/lib/bryntum-group-bar.component.d.ts +77 -118
- package/lib/bryntum-tree-combo.component.d.ts +107 -168
- package/lib/bryntum-tree-grid.component.d.ts +238 -303
- package/lib/grid.module.d.ts +2 -1
- package/lib/shadowdom.helper.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +146 -141
- package/src/lib/bryntum-checklist-filter-combo.component.ts +166 -175
- package/src/lib/bryntum-grid-base.component.ts +275 -319
- package/src/lib/bryntum-grid-chart-designer.component.ts +126 -112
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +152 -152
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +152 -153
- package/src/lib/bryntum-grid.component.ts +275 -319
- package/src/lib/bryntum-group-bar.component.ts +132 -122
- package/src/lib/bryntum-theme-combo.component.ts +128 -0
- package/src/lib/bryntum-tree-combo.component.ts +166 -176
- package/src/lib/bryntum-tree-grid.component.ts +275 -319
- package/src/lib/grid.module.ts +2 -1
- package/src/lib/shadowdom.helper.ts +91 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum GroupBar
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, MaskConfig, Model, ModelConfig, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
5
|
+
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, MaskConfig, Model, ModelConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { GroupBar, GroupBarListeners } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumGroupBarProps = {
|
|
@@ -14,14 +14,12 @@ export declare type BryntumGroupBarProps = {
|
|
|
14
14
|
/**
|
|
15
15
|
* Element (or element id) to adopt as this Widget's encapsulating element. The widget's
|
|
16
16
|
* content will be placed inside this element.
|
|
17
|
-
* ...
|
|
18
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-adopt)
|
|
17
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-adopt)
|
|
19
18
|
*/
|
|
20
19
|
adopt?: HTMLElement | string;
|
|
21
20
|
/**
|
|
22
21
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
23
|
-
* ...
|
|
24
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-align)
|
|
22
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-align)
|
|
25
23
|
*/
|
|
26
24
|
align?: AlignSpec | string;
|
|
27
25
|
/**
|
|
@@ -48,35 +46,30 @@ export declare type BryntumGroupBarProps = {
|
|
|
48
46
|
/**
|
|
49
47
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
|
|
50
48
|
* into an element which will be linked using the `aria-describedby` attribute.
|
|
51
|
-
* ...
|
|
52
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ariaDescription)
|
|
49
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ariaDescription)
|
|
53
50
|
*/
|
|
54
51
|
ariaDescription?: string;
|
|
55
52
|
/**
|
|
56
53
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
|
|
57
54
|
* the `aria-label` attribute.
|
|
58
|
-
* ...
|
|
59
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ariaLabel)
|
|
55
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ariaLabel)
|
|
60
56
|
*/
|
|
61
57
|
ariaLabel?: string;
|
|
62
58
|
/**
|
|
63
59
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
64
60
|
* hierarchy when triggered.
|
|
65
|
-
* ...
|
|
66
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-bubbleEvents)
|
|
61
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-bubbleEvents)
|
|
67
62
|
*/
|
|
68
63
|
bubbleEvents?: object;
|
|
69
64
|
/**
|
|
70
65
|
* Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
71
|
-
* ...
|
|
72
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-callOnFunctions)
|
|
66
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-callOnFunctions)
|
|
73
67
|
*/
|
|
74
68
|
callOnFunctions?: boolean;
|
|
75
69
|
/**
|
|
76
70
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
77
71
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
78
|
-
* ...
|
|
79
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-catchEventHandlerExceptions)
|
|
72
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-catchEventHandlerExceptions)
|
|
80
73
|
*/
|
|
81
74
|
catchEventHandlerExceptions?: boolean;
|
|
82
75
|
/**
|
|
@@ -89,10 +82,9 @@ export declare type BryntumGroupBarProps = {
|
|
|
89
82
|
*/
|
|
90
83
|
clearSelectionOnEmptySpaceClick?: boolean;
|
|
91
84
|
/**
|
|
92
|
-
* Configure as `true` to display a clickable close icon after the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/
|
|
85
|
+
* Configure as `true` to display a clickable close icon after the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-itemTpl).
|
|
93
86
|
* When tapped, the configured [closeHandler](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closeHandler) is called passing the associated record.
|
|
94
|
-
* ...
|
|
95
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-closable)
|
|
87
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-closable)
|
|
96
88
|
*/
|
|
97
89
|
closable?: boolean;
|
|
98
90
|
/**
|
|
@@ -105,8 +97,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
105
97
|
* Custom CSS classes to add to element.
|
|
106
98
|
* May be specified as a space separated string, or as an object in which property names
|
|
107
99
|
* with truthy values are used as the class names:
|
|
108
|
-
* ...
|
|
109
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-cls)
|
|
100
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-cls)
|
|
110
101
|
*/
|
|
111
102
|
cls?: string | object;
|
|
112
103
|
/**
|
|
@@ -116,8 +107,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
116
107
|
/**
|
|
117
108
|
* Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
|
|
118
109
|
* `style` block.
|
|
119
|
-
* ...
|
|
120
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-color)
|
|
110
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-color)
|
|
121
111
|
*/
|
|
122
112
|
color?: Color;
|
|
123
113
|
/**
|
|
@@ -141,8 +131,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
141
131
|
* Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
142
132
|
* May be specified as a space separated string, or as an object in which property names
|
|
143
133
|
* with truthy values are used as the class names:
|
|
144
|
-
* ...
|
|
145
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-contentElementCls)
|
|
134
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-contentElementCls)
|
|
146
135
|
*/
|
|
147
136
|
contentElementCls?: string | object;
|
|
148
137
|
/**
|
|
@@ -160,16 +149,15 @@ export declare type BryntumGroupBarProps = {
|
|
|
160
149
|
*/
|
|
161
150
|
defaultBindProperty?: string;
|
|
162
151
|
/**
|
|
163
|
-
* Check for CSS compatibility issues
|
|
164
|
-
*
|
|
165
|
-
* [
|
|
152
|
+
* Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
|
|
153
|
+
* checks:
|
|
154
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-detectCSSCompatibilityIssues)
|
|
166
155
|
*/
|
|
167
156
|
detectCSSCompatibilityIssues?: boolean;
|
|
168
157
|
/**
|
|
169
158
|
* 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
|
|
170
159
|
* cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
|
|
171
|
-
* ...
|
|
172
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-disabled)
|
|
160
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-disabled)
|
|
173
161
|
*/
|
|
174
162
|
disabled?: boolean | 'inert';
|
|
175
163
|
/**
|
|
@@ -181,25 +169,21 @@ export declare type BryntumGroupBarProps = {
|
|
|
181
169
|
* [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
|
|
182
170
|
* `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
|
|
183
171
|
* body. Such widgets are called "edge strips".
|
|
184
|
-
* ...
|
|
185
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-dock)
|
|
172
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-dock)
|
|
186
173
|
*/
|
|
187
174
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
188
175
|
/**
|
|
189
176
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
190
177
|
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
|
|
191
178
|
* property which controls when a drag should start.
|
|
192
|
-
* ...
|
|
193
|
-
*
|
|
179
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-draggable)
|
|
180
|
+
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
194
181
|
*/
|
|
195
|
-
draggable?: boolean |
|
|
196
|
-
handleSelector?: string;
|
|
197
|
-
};
|
|
182
|
+
draggable?: boolean | object;
|
|
198
183
|
/**
|
|
199
184
|
* An object specifying attributes to assign to the root element of this widget.
|
|
200
185
|
* Set `null` value to attribute to remove it.
|
|
201
|
-
* ...
|
|
202
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-elementAttributes)
|
|
186
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-elementAttributes)
|
|
203
187
|
*/
|
|
204
188
|
elementAttributes?: Record<string, string | null>;
|
|
205
189
|
/**
|
|
@@ -254,25 +238,22 @@ export declare type BryntumGroupBarProps = {
|
|
|
254
238
|
hidden?: boolean;
|
|
255
239
|
/**
|
|
256
240
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
257
|
-
* ...
|
|
258
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-hideAnimation)
|
|
241
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-hideAnimation)
|
|
259
242
|
*/
|
|
260
243
|
hideAnimation?: boolean | object;
|
|
261
244
|
/**
|
|
262
245
|
* The HTML to display initially or a function returning the markup (called at widget construction time).
|
|
263
|
-
* ...
|
|
264
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-html)
|
|
246
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-html)
|
|
265
247
|
* @param {Core.widget.Widget} widget The calling Widget
|
|
266
|
-
* @returns {string}
|
|
267
248
|
*/
|
|
268
|
-
html?: string | ((widget: Widget) =>
|
|
249
|
+
html?: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX;
|
|
269
250
|
/**
|
|
270
251
|
* The CSS class(es) to add when HTML content is being applied to this widget.
|
|
271
252
|
*/
|
|
272
253
|
htmlCls?: string | object;
|
|
273
254
|
/**
|
|
274
255
|
* A template function, which, when passed a record, returns the markup which encapsulates a chip's icon to be
|
|
275
|
-
* placed before the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/
|
|
256
|
+
* placed before the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-itemTpl).
|
|
276
257
|
* @param {Core.data.Model} record The record to provide an icon for
|
|
277
258
|
* @returns {DomConfig,string,void}
|
|
278
259
|
*/
|
|
@@ -283,8 +264,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
283
264
|
id?: string;
|
|
284
265
|
/**
|
|
285
266
|
* Determines if the widgets read-only state should be controlled by its parent.
|
|
286
|
-
* ...
|
|
287
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ignoreParentReadOnly)
|
|
267
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ignoreParentReadOnly)
|
|
288
268
|
*/
|
|
289
269
|
ignoreParentReadOnly?: boolean;
|
|
290
270
|
/**
|
|
@@ -318,22 +298,19 @@ export declare type BryntumGroupBarProps = {
|
|
|
318
298
|
* An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
|
|
319
299
|
* and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
|
|
320
300
|
* are the name of the instance method to call when the keystroke is received.
|
|
321
|
-
* ...
|
|
322
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-keyMap)
|
|
301
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-keyMap)
|
|
323
302
|
*/
|
|
324
303
|
keyMap?: Record<string, KeyMapConfig>;
|
|
325
304
|
/**
|
|
326
305
|
* The listener set for this object.
|
|
327
|
-
* ...
|
|
328
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-listeners)
|
|
306
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-listeners)
|
|
329
307
|
*/
|
|
330
308
|
listeners?: GroupBarListeners;
|
|
331
309
|
/**
|
|
332
310
|
* A class translations of which are used for translating this entity.
|
|
333
311
|
* This is often used when translations of an item are defined on its container class.
|
|
334
312
|
* For example:
|
|
335
|
-
* ...
|
|
336
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-localeClass)
|
|
313
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-localeClass)
|
|
337
314
|
*/
|
|
338
315
|
localeClass?: typeof Base;
|
|
339
316
|
/**
|
|
@@ -345,8 +322,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
345
322
|
* In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
|
|
346
323
|
* you could use 'localeKey' meta configuration.
|
|
347
324
|
* Example:
|
|
348
|
-
* ...
|
|
349
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-localizableProperties)
|
|
325
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-localizableProperties)
|
|
350
326
|
*/
|
|
351
327
|
localizableProperties?: string[];
|
|
352
328
|
/**
|
|
@@ -372,8 +348,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
372
348
|
maxHeight?: string | number;
|
|
373
349
|
/**
|
|
374
350
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
375
|
-
* ...
|
|
376
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-maximizeOnMobile)
|
|
351
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-maximizeOnMobile)
|
|
377
352
|
*/
|
|
378
353
|
maximizeOnMobile?: number | string;
|
|
379
354
|
/**
|
|
@@ -395,12 +370,10 @@ export declare type BryntumGroupBarProps = {
|
|
|
395
370
|
* When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
|
|
396
371
|
* is used to monitor this element for size changes caused by either style manipulation, or by CSS
|
|
397
372
|
* layout.
|
|
398
|
-
* ...
|
|
399
|
-
*
|
|
373
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-monitorResize)
|
|
374
|
+
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
400
375
|
*/
|
|
401
|
-
monitorResize?: boolean |
|
|
402
|
-
immediate?: boolean;
|
|
403
|
-
};
|
|
376
|
+
monitorResize?: boolean | object;
|
|
404
377
|
/**
|
|
405
378
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
406
379
|
*/
|
|
@@ -409,8 +382,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
409
382
|
* 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
|
|
410
383
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
411
384
|
* widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
412
|
-
* ...
|
|
413
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-positioned)
|
|
385
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-positioned)
|
|
414
386
|
*/
|
|
415
387
|
positioned?: boolean;
|
|
416
388
|
/**
|
|
@@ -421,8 +393,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
421
393
|
/**
|
|
422
394
|
* Whether this widget is read-only. This is only valid if the widget is an input
|
|
423
395
|
* field, <strong>or contains input fields at any depth</strong>.
|
|
424
|
-
* ...
|
|
425
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-readOnly)
|
|
396
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-readOnly)
|
|
426
397
|
*/
|
|
427
398
|
readOnly?: boolean;
|
|
428
399
|
relayStoreEvents?: boolean;
|
|
@@ -430,23 +401,26 @@ export declare type BryntumGroupBarProps = {
|
|
|
430
401
|
* Configure as `true` to have the component display a translucent ripple when its
|
|
431
402
|
* [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
|
|
432
403
|
* current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
|
|
433
|
-
* ...
|
|
434
|
-
* [
|
|
404
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ripple)
|
|
405
|
+
* @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
|
|
406
|
+
* @property {string} [color] A CSS color name or specification.
|
|
407
|
+
* @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
|
|
408
|
+
* @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.
|
|
409
|
+
*/
|
|
410
|
+
ripple?: boolean | object;
|
|
411
|
+
/**
|
|
412
|
+
* The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
|
|
413
|
+
* accidentally applying a role which may interfere with screen readers.
|
|
414
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-role)
|
|
435
415
|
*/
|
|
436
|
-
|
|
437
|
-
delegate?: string;
|
|
438
|
-
color?: string;
|
|
439
|
-
radius?: number;
|
|
440
|
-
clip?: string;
|
|
441
|
-
};
|
|
416
|
+
role?: string;
|
|
442
417
|
/**
|
|
443
418
|
* 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`
|
|
444
419
|
*/
|
|
445
420
|
rootElement?: ShadowRoot | HTMLElement;
|
|
446
421
|
/**
|
|
447
422
|
* This may be configured as `true` to make the widget's element use the `direction:rtl` style.
|
|
448
|
-
* ...
|
|
449
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-rtl)
|
|
423
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-rtl)
|
|
450
424
|
*/
|
|
451
425
|
rtl?: boolean;
|
|
452
426
|
/**
|
|
@@ -454,8 +428,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
454
428
|
* in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
|
|
455
429
|
* applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
|
|
456
430
|
* CSS overflow properties thus:
|
|
457
|
-
* ...
|
|
458
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-scrollable)
|
|
431
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-scrollable)
|
|
459
432
|
*/
|
|
460
433
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
461
434
|
/**
|
|
@@ -471,14 +444,12 @@ export declare type BryntumGroupBarProps = {
|
|
|
471
444
|
/**
|
|
472
445
|
* A [Collection](https://bryntum.com/products/grid/docs/api/Core/util/Collection), or Collection config object to use to contain this List's selected
|
|
473
446
|
* records.
|
|
474
|
-
* ...
|
|
475
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-selected)
|
|
447
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-selected)
|
|
476
448
|
*/
|
|
477
449
|
selected?: object[] | number[] | string[] | Collection | CollectionConfig | CollectionConfig[];
|
|
478
450
|
/**
|
|
479
451
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
480
|
-
* ...
|
|
481
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-showAnimation)
|
|
452
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-showAnimation)
|
|
482
453
|
*/
|
|
483
454
|
showAnimation?: boolean | object;
|
|
484
455
|
/**
|
|
@@ -492,16 +463,14 @@ export declare type BryntumGroupBarProps = {
|
|
|
492
463
|
/**
|
|
493
464
|
* A [Store](https://bryntum.com/products/grid/docs/api/Core/data/Store) which provides the records which map to List items. Each record is passed through the
|
|
494
465
|
* [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-itemTpl) to produce the DOM structure of the List. May be generated from an array of [items](#Core/widget/List#config-items).
|
|
495
|
-
* ...
|
|
496
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-store)
|
|
466
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-store)
|
|
497
467
|
*/
|
|
498
468
|
store?: object | object[] | StoreConfig | Store | StoreConfig[];
|
|
499
469
|
/**
|
|
500
470
|
* 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
|
|
501
471
|
* [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
|
|
502
472
|
* this widget:
|
|
503
|
-
* ...
|
|
504
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-tab)
|
|
473
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-tab)
|
|
505
474
|
*/
|
|
506
475
|
tab?: boolean | TabConfig;
|
|
507
476
|
/**
|
|
@@ -510,8 +479,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
510
479
|
tag?: string;
|
|
511
480
|
/**
|
|
512
481
|
* Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
|
|
513
|
-
* ...
|
|
514
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-textAlign)
|
|
482
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-textAlign)
|
|
515
483
|
*/
|
|
516
484
|
textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
|
|
517
485
|
/**
|
|
@@ -524,8 +492,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
524
492
|
toggleAllIfCtrlPressed?: boolean;
|
|
525
493
|
/**
|
|
526
494
|
* Tooltip for the widget, either as a string or as a Tooltip config object.
|
|
527
|
-
* ...
|
|
528
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-tooltip)
|
|
495
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-tooltip)
|
|
529
496
|
*/
|
|
530
497
|
tooltip?: string | TooltipConfig | null;
|
|
531
498
|
/**
|
|
@@ -539,16 +506,14 @@ export declare type BryntumGroupBarProps = {
|
|
|
539
506
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
540
507
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
541
508
|
* values are used as the class names.
|
|
542
|
-
* ...
|
|
543
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ui)
|
|
509
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-ui)
|
|
544
510
|
*/
|
|
545
511
|
ui?: string | object;
|
|
546
512
|
/**
|
|
547
513
|
* Controls virtualization of list items using the `IntersectionObserver` API to render items only when
|
|
548
514
|
* scrolled into view. This is only useful for lists with complex markup, for simple lists it likely adds
|
|
549
515
|
* overhead.
|
|
550
|
-
* ...
|
|
551
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-virtualize)
|
|
516
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-virtualize)
|
|
552
517
|
*/
|
|
553
518
|
virtualize?: boolean | number;
|
|
554
519
|
/**
|
|
@@ -564,14 +529,12 @@ export declare type BryntumGroupBarProps = {
|
|
|
564
529
|
width?: string | number;
|
|
565
530
|
/**
|
|
566
531
|
* The x position for the widget.
|
|
567
|
-
* ...
|
|
568
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-x)
|
|
532
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-x)
|
|
569
533
|
*/
|
|
570
534
|
x?: number;
|
|
571
535
|
/**
|
|
572
536
|
* The y position for the widget.
|
|
573
|
-
* ...
|
|
574
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-y)
|
|
537
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-y)
|
|
575
538
|
*/
|
|
576
539
|
y?: number;
|
|
577
540
|
};
|
|
@@ -606,9 +569,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
606
569
|
detectCSSCompatibilityIssues: boolean;
|
|
607
570
|
displayField: string;
|
|
608
571
|
dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
609
|
-
draggable: boolean |
|
|
610
|
-
handleSelector?: string;
|
|
611
|
-
};
|
|
572
|
+
draggable: boolean | object;
|
|
612
573
|
elementAttributes: Record<string, string | null>;
|
|
613
574
|
floating: boolean;
|
|
614
575
|
getItemCls: ((record: Model) => string) | string;
|
|
@@ -626,18 +587,12 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
626
587
|
localizableProperties: string[];
|
|
627
588
|
maskDefaults: MaskConfig;
|
|
628
589
|
masked: boolean | string | MaskConfig;
|
|
629
|
-
monitorResize: boolean |
|
|
630
|
-
immediate?: boolean;
|
|
631
|
-
};
|
|
590
|
+
monitorResize: boolean | object;
|
|
632
591
|
positioned: boolean;
|
|
633
592
|
preventTooltipOnTouch: boolean;
|
|
634
593
|
relayStoreEvents: boolean;
|
|
635
|
-
ripple: boolean |
|
|
636
|
-
|
|
637
|
-
color?: string;
|
|
638
|
-
radius?: number;
|
|
639
|
-
clip?: string;
|
|
640
|
-
};
|
|
594
|
+
ripple: boolean | object;
|
|
595
|
+
role: string;
|
|
641
596
|
rootElement: ShadowRoot | HTMLElement;
|
|
642
597
|
scrollAction: 'hide' | 'realign' | null;
|
|
643
598
|
selectAllItem: boolean | string;
|
|
@@ -668,7 +623,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
668
623
|
flex: number | string;
|
|
669
624
|
height: number | string;
|
|
670
625
|
hidden: boolean;
|
|
671
|
-
html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
|
|
626
|
+
html: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX | (string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX);
|
|
672
627
|
id: string;
|
|
673
628
|
insertBefore: HTMLElement | string;
|
|
674
629
|
insertFirst: HTMLElement | string;
|
|
@@ -693,8 +648,6 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
693
648
|
width: number | string;
|
|
694
649
|
x: number;
|
|
695
650
|
y: number;
|
|
696
|
-
anchorSize: number[];
|
|
697
|
-
focusVisible: boolean;
|
|
698
651
|
parent: Widget;
|
|
699
652
|
/**
|
|
700
653
|
* Fires before an object is destroyed.
|
|
@@ -728,8 +681,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
728
681
|
onBeforeShow: any;
|
|
729
682
|
/**
|
|
730
683
|
* Fires when any other event is fired from the object.
|
|
731
|
-
* ...
|
|
732
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#event-catchAll)
|
|
684
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#event-catchAll)
|
|
733
685
|
* @param {object} event Event object
|
|
734
686
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
735
687
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -791,8 +743,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
791
743
|
/**
|
|
792
744
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
793
745
|
* achieves visibility.
|
|
794
|
-
* ...
|
|
795
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#event-paint)
|
|
746
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#event-paint)
|
|
796
747
|
* @param {object} event Event object
|
|
797
748
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
798
749
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -850,6 +801,14 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
850
801
|
* Create and append the underlying widget
|
|
851
802
|
*/
|
|
852
803
|
ngOnInit(): void;
|
|
804
|
+
/**
|
|
805
|
+
* Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
|
|
806
|
+
* document.head as a single <style> element. This is needed because @font-face rules inside
|
|
807
|
+
* a shadow root are not reliably included in document.fonts across all browsers, causing
|
|
808
|
+
* Bryntum's CSS compatibility check to incorrectly report missing fonts.
|
|
809
|
+
* Safe to call multiple times — the extraction runs only once per page.
|
|
810
|
+
*/
|
|
811
|
+
private static ensureFontsInDocument;
|
|
853
812
|
/**
|
|
854
813
|
* Watch for changes
|
|
855
814
|
* @param changes
|
|
@@ -860,5 +819,5 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
860
819
|
*/
|
|
861
820
|
ngOnDestroy(): void;
|
|
862
821
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGroupBarComponent, never>;
|
|
863
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGroupBarComponent, "bryntum-group-bar", never, { "activateOnMouseover": "activateOnMouseover"; "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "closable": "closable"; "closeHandler": "closeHandler"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "getItemCls": "getItemCls"; "getItemStyle": "getItemStyle"; "groupHeaderTpl": "groupHeaderTpl"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "iconTpl": "iconTpl"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "isSelectable": "isSelectable"; "itemTpl": "itemTpl"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "selectAllItem": "selectAllItem"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tag": "tag"; "textAlign": "textAlign"; "tooltipTemplate": "tooltipTemplate"; "type": "type"; "ui": "ui"; "virtualize": "virtualize"; "weight": "weight"; "alignSelf": "alignSelf"; "allowGroupSelect": "allowGroupSelect"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "clearSelectionOnEmptySpaceClick": "clearSelectionOnEmptySpaceClick"; "cls": "cls"; "collapsibleGroups": "collapsibleGroups"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "selected": "selected"; "span": "span"; "store": "store"; "title": "title"; "toggleAllIfCtrlPressed": "toggleAllIfCtrlPressed"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "
|
|
822
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGroupBarComponent, "bryntum-group-bar", never, { "activateOnMouseover": "activateOnMouseover"; "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "closable": "closable"; "closeHandler": "closeHandler"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "getItemCls": "getItemCls"; "getItemStyle": "getItemStyle"; "groupHeaderTpl": "groupHeaderTpl"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "iconTpl": "iconTpl"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "isSelectable": "isSelectable"; "itemTpl": "itemTpl"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "selectAllItem": "selectAllItem"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tag": "tag"; "textAlign": "textAlign"; "tooltipTemplate": "tooltipTemplate"; "type": "type"; "ui": "ui"; "virtualize": "virtualize"; "weight": "weight"; "alignSelf": "alignSelf"; "allowGroupSelect": "allowGroupSelect"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "clearSelectionOnEmptySpaceClick": "clearSelectionOnEmptySpaceClick"; "cls": "cls"; "collapsibleGroups": "collapsibleGroups"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "selected": "selected"; "span": "span"; "store": "store"; "title": "title"; "toggleAllIfCtrlPressed": "toggleAllIfCtrlPressed"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeItem": "onBeforeItem"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onItem": "onItem"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelectionChange": "onSelectionChange"; "onShow": "onShow"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; }, never, never>;
|
|
864
823
|
}
|