@bryntum/grid-angular-thin 7.2.4 → 7.3.1
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 +5 -5
- package/bundles/bryntum-grid-angular-thin.umd.js +773 -230
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +66 -14
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +66 -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 +66 -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 +750 -207
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +97 -133
- package/lib/bryntum-checklist-filter-combo.component.d.ts +116 -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 +117 -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 +159 -142
- package/src/lib/bryntum-checklist-filter-combo.component.ts +179 -176
- package/src/lib/bryntum-grid-base.component.ts +300 -344
- package/src/lib/bryntum-grid-chart-designer.component.ts +127 -113
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +154 -154
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +153 -154
- package/src/lib/bryntum-grid.component.ts +300 -344
- package/src/lib/bryntum-group-bar.component.ts +134 -124
- package/src/lib/bryntum-theme-combo.component.ts +127 -0
- package/src/lib/bryntum-tree-combo.component.ts +179 -177
- package/src/lib/bryntum-tree-grid.component.ts +300 -344
- package/src/lib/grid.module.ts +2 -1
- package/src/lib/shadowdom.helper.ts +91 -0
|
@@ -2,21 +2,19 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum ChecklistFilterCombo
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo,
|
|
5
|
+
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumChecklistFilterComboProps = {
|
|
9
9
|
/**
|
|
10
10
|
* Element (or element id) to adopt as this Widget's encapsulating element. The widget's
|
|
11
11
|
* content will be placed inside this element.
|
|
12
|
-
* ...
|
|
13
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
|
|
12
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
|
|
14
13
|
*/
|
|
15
14
|
adopt?: HTMLElement | string;
|
|
16
15
|
/**
|
|
17
16
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
18
|
-
* ...
|
|
19
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)
|
|
17
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)
|
|
20
18
|
*/
|
|
21
19
|
align?: AlignSpec | string;
|
|
22
20
|
/**
|
|
@@ -38,15 +36,13 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
38
36
|
/**
|
|
39
37
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
|
|
40
38
|
* into an element which will be linked using the `aria-describedby` attribute.
|
|
41
|
-
* ...
|
|
42
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
|
|
39
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
|
|
43
40
|
*/
|
|
44
41
|
ariaDescription?: string;
|
|
45
42
|
/**
|
|
46
43
|
* A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
|
|
47
44
|
* the `aria-label` attribute.
|
|
48
|
-
* ...
|
|
49
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
|
|
45
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
|
|
50
46
|
*/
|
|
51
47
|
ariaLabel?: string;
|
|
52
48
|
/**
|
|
@@ -69,20 +65,17 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
69
65
|
/**
|
|
70
66
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
71
67
|
* hierarchy when triggered.
|
|
72
|
-
* ...
|
|
73
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
|
|
68
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
|
|
74
69
|
*/
|
|
75
70
|
bubbleEvents?: object;
|
|
76
71
|
/**
|
|
77
72
|
* Enable caching of the last retrieved result until the timeout is reached.
|
|
78
|
-
* ...
|
|
79
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
|
|
73
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
|
|
80
74
|
*/
|
|
81
75
|
cacheLastResult?: number | string | Duration | DurationConfig;
|
|
82
76
|
/**
|
|
83
77
|
* Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
84
|
-
* ...
|
|
85
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
|
|
78
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
|
|
86
79
|
*/
|
|
87
80
|
callOnFunctions?: boolean;
|
|
88
81
|
/**
|
|
@@ -92,8 +85,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
92
85
|
/**
|
|
93
86
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
94
87
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
95
|
-
* ...
|
|
96
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
|
|
88
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
|
|
97
89
|
*/
|
|
98
90
|
catchEventHandlerExceptions?: boolean;
|
|
99
91
|
/**
|
|
@@ -101,11 +93,19 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
101
93
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
102
94
|
*/
|
|
103
95
|
centered?: boolean;
|
|
96
|
+
/**
|
|
97
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
98
|
+
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
|
|
99
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
100
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-checkValidity)
|
|
101
|
+
* @param {Core.widget.Field} field The field being validated
|
|
102
|
+
* @returns {void}
|
|
103
|
+
*/
|
|
104
|
+
checkValidity?: ((field: Field) => void) | string;
|
|
104
105
|
/**
|
|
105
106
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
106
107
|
* selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
|
|
107
|
-
* ...
|
|
108
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
|
|
108
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
|
|
109
109
|
*/
|
|
110
110
|
chipView?: ChipViewConfig;
|
|
111
111
|
/**
|
|
@@ -130,15 +130,13 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
130
130
|
* Custom CSS classes to add to element.
|
|
131
131
|
* May be specified as a space separated string, or as an object in which property names
|
|
132
132
|
* with truthy values are used as the class names:
|
|
133
|
-
* ...
|
|
134
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
|
|
133
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
|
|
135
134
|
*/
|
|
136
135
|
cls?: string | object;
|
|
137
136
|
/**
|
|
138
137
|
* Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
|
|
139
138
|
* `style` block.
|
|
140
|
-
* ...
|
|
141
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
139
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
|
|
142
140
|
*/
|
|
143
141
|
color?: Color;
|
|
144
142
|
/**
|
|
@@ -155,15 +153,13 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
155
153
|
* The configuration for additional items associated to this field. This is typically used to add contextual
|
|
156
154
|
* fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
|
|
157
155
|
* these classes for examples of nested fields.
|
|
158
|
-
* ...
|
|
159
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
156
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
|
|
160
157
|
*/
|
|
161
|
-
container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig
|
|
158
|
+
container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
|
|
162
159
|
/**
|
|
163
160
|
* The config controls how the value of nested items are handled when a parent container gets or sets its
|
|
164
161
|
* [values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
|
|
165
|
-
* ...
|
|
166
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
|
|
162
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
|
|
167
163
|
* @param {Core.widget.Field} field Field instance
|
|
168
164
|
* @returns {boolean}
|
|
169
165
|
*/
|
|
@@ -172,16 +168,14 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
172
168
|
* Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
173
169
|
* May be specified as a space separated string, or as an object in which property names
|
|
174
170
|
* with truthy values are used as the class names:
|
|
175
|
-
* ...
|
|
176
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
|
|
171
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
|
|
177
172
|
*/
|
|
178
173
|
contentElementCls?: string | object;
|
|
179
174
|
/**
|
|
180
175
|
* If configured as `true`, this means that when an unmatched string is typed into the
|
|
181
176
|
* combo's input field, and <kbd>Enter</kbd>, or the [multiValueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,
|
|
182
177
|
* a new record will be created using the typed string as the [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-displayField).
|
|
183
|
-
* ...
|
|
184
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
178
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
185
179
|
* @param {string} name Record name
|
|
186
180
|
* @param {Core.widget.Combo} combo Combo instance
|
|
187
181
|
* @returns {Core.data.Model} New record
|
|
@@ -202,16 +196,15 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
202
196
|
*/
|
|
203
197
|
defaultBindProperty?: string;
|
|
204
198
|
/**
|
|
205
|
-
* Check for CSS compatibility issues
|
|
206
|
-
*
|
|
207
|
-
* [
|
|
199
|
+
* Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
|
|
200
|
+
* checks:
|
|
201
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)
|
|
208
202
|
*/
|
|
209
203
|
detectCSSCompatibilityIssues?: boolean;
|
|
210
204
|
/**
|
|
211
205
|
* 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
|
|
212
206
|
* cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
|
|
213
|
-
* ...
|
|
214
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
|
|
207
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
|
|
215
208
|
*/
|
|
216
209
|
disabled?: boolean | 'inert';
|
|
217
210
|
/**
|
|
@@ -224,26 +217,23 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
224
217
|
* @param {Core.widget.Combo} combo A reference to this Combo
|
|
225
218
|
* @returns {string,void}
|
|
226
219
|
*/
|
|
227
|
-
displayValueRenderer?: (record: Model
|
|
220
|
+
displayValueRenderer?: (record: Model, combo: Combo) => string | void;
|
|
228
221
|
/**
|
|
229
222
|
* Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)
|
|
230
223
|
* [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
|
|
231
224
|
* `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
|
|
232
225
|
* body. Such widgets are called "edge strips".
|
|
233
|
-
* ...
|
|
234
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
226
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
|
|
235
227
|
*/
|
|
236
228
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
237
229
|
/**
|
|
238
230
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
239
231
|
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
|
|
240
232
|
* property which controls when a drag should start.
|
|
241
|
-
* ...
|
|
242
|
-
*
|
|
233
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
|
|
234
|
+
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
243
235
|
*/
|
|
244
|
-
draggable?: boolean |
|
|
245
|
-
handleSelector?: string;
|
|
246
|
-
};
|
|
236
|
+
draggable?: boolean | object;
|
|
247
237
|
/**
|
|
248
238
|
* User can edit text in text field (otherwise only pick from attached picker)
|
|
249
239
|
*/
|
|
@@ -251,21 +241,18 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
251
241
|
/**
|
|
252
242
|
* An object specifying attributes to assign to the root element of this widget.
|
|
253
243
|
* Set `null` value to attribute to remove it.
|
|
254
|
-
* ...
|
|
255
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
|
|
244
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
|
|
256
245
|
*/
|
|
257
246
|
elementAttributes?: Record<string, string | null>;
|
|
258
247
|
/**
|
|
259
248
|
* Text to display in the drop down when there are no items in the underlying store.
|
|
260
|
-
* ...
|
|
261
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
|
|
249
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
|
|
262
250
|
*/
|
|
263
251
|
emptyText?: string;
|
|
264
252
|
/**
|
|
265
253
|
* A function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-filterParamName) to pass
|
|
266
254
|
* any filters to the server upon load.
|
|
267
|
-
* ...
|
|
268
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
255
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
|
|
269
256
|
* @param {object[]} filters filters
|
|
270
257
|
* @returns {object[]} array of values
|
|
271
258
|
*/
|
|
@@ -279,8 +266,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
279
266
|
/**
|
|
280
267
|
* The name of an operator type as implemented in [operator](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter#config-operator)
|
|
281
268
|
* to use when filtering the dropdown list based upon the typed value.
|
|
282
|
-
* ...
|
|
283
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
|
|
269
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
|
|
284
270
|
*/
|
|
285
271
|
filterOperator?: CollectionCompareOperator;
|
|
286
272
|
/**
|
|
@@ -321,8 +307,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
321
307
|
hidden?: boolean;
|
|
322
308
|
/**
|
|
323
309
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
324
|
-
* ...
|
|
325
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
|
|
310
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
|
|
326
311
|
*/
|
|
327
312
|
hideAnimation?: boolean | object;
|
|
328
313
|
/**
|
|
@@ -343,8 +328,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
343
328
|
/**
|
|
344
329
|
* An optional string to display inside the input field as an overlay. This can be useful for displaying
|
|
345
330
|
* a field's units.
|
|
346
|
-
* ...
|
|
347
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
331
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
|
|
348
332
|
* @param {object} data A data object
|
|
349
333
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
350
334
|
* @param {any} data.value The current value of the field
|
|
@@ -358,8 +342,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
358
342
|
* This config is similar to [hint](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.
|
|
359
343
|
* Since this can allow malicious content to be executed, be sure not to include user-entered data or to
|
|
360
344
|
* encode such data (see [encodeHtml](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).
|
|
361
|
-
* ...
|
|
362
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
|
|
345
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
|
|
363
346
|
* @param {object} data A data object
|
|
364
347
|
* @param {Core.widget.Field} data.source A reference to the field instance
|
|
365
348
|
* @param {any} data.value The current value of the field
|
|
@@ -375,23 +358,20 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
375
358
|
id?: string;
|
|
376
359
|
/**
|
|
377
360
|
* Determines if the widgets read-only state should be controlled by its parent.
|
|
378
|
-
* ...
|
|
379
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
|
|
361
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
|
|
380
362
|
*/
|
|
381
363
|
ignoreParentReadOnly?: boolean;
|
|
382
364
|
/**
|
|
383
365
|
* Set this config to `true` to always display items horizontally along with this field. This assigns an
|
|
384
366
|
* [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
|
|
385
367
|
* [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).
|
|
386
|
-
* ...
|
|
387
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
|
|
368
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
|
|
388
369
|
*/
|
|
389
370
|
inline?: boolean;
|
|
390
371
|
/**
|
|
391
372
|
* Configure this as `true` to render the dropdown list as a permanently visible list
|
|
392
373
|
* in the document flow immediately below the input area instead of as a popup.
|
|
393
|
-
* ...
|
|
394
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
|
|
374
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
|
|
395
375
|
*/
|
|
396
376
|
inlinePicker?: boolean;
|
|
397
377
|
/**
|
|
@@ -429,30 +409,26 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
429
409
|
insertFirst?: HTMLElement | string;
|
|
430
410
|
/**
|
|
431
411
|
* Rows to display in the dropdown (list items).
|
|
432
|
-
* ...
|
|
433
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
|
|
412
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
|
|
434
413
|
*/
|
|
435
414
|
items?: object[] | string[] | object;
|
|
436
415
|
/**
|
|
437
416
|
* An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
|
|
438
417
|
* and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
|
|
439
418
|
* are the name of the instance method to call when the keystroke is received.
|
|
440
|
-
* ...
|
|
441
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
|
|
419
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
|
|
442
420
|
*/
|
|
443
421
|
keyMap?: Record<string, KeyMapConfig>;
|
|
444
422
|
/**
|
|
445
423
|
* The delay in milliseconds to wait after the last keystroke before triggering a change event.
|
|
446
424
|
* Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
|
|
447
425
|
* immediate feedback, change will still be triggered on blur).
|
|
448
|
-
* ...
|
|
449
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
|
|
426
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
|
|
450
427
|
*/
|
|
451
428
|
keyStrokeChangeDelay?: number;
|
|
452
429
|
/**
|
|
453
430
|
* The delay in milliseconds to wait after the last keystroke before filtering the list.
|
|
454
|
-
* ...
|
|
455
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
|
|
431
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
|
|
456
432
|
*/
|
|
457
433
|
keyStrokeFilterDelay?: number;
|
|
458
434
|
/**
|
|
@@ -465,15 +441,15 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
465
441
|
labelCls?: string | object;
|
|
466
442
|
/**
|
|
467
443
|
* Label position, either 'before' the field or 'above' the field
|
|
468
|
-
* ...
|
|
469
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
|
|
444
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
|
|
470
445
|
*/
|
|
471
446
|
labelPosition?: 'before' | 'above' | null;
|
|
472
447
|
/**
|
|
473
448
|
* The labels to add either before or after the input field.
|
|
474
449
|
* Each label may have the following properties:
|
|
475
|
-
* ...
|
|
476
|
-
*
|
|
450
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)
|
|
451
|
+
* @property {string} html Label text
|
|
452
|
+
* @property {'start','end'} align Which end of the file the label should go
|
|
477
453
|
*/
|
|
478
454
|
labels?: object[];
|
|
479
455
|
/**
|
|
@@ -486,8 +462,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
486
462
|
listCls?: string;
|
|
487
463
|
/**
|
|
488
464
|
* The listener set for this object.
|
|
489
|
-
* ...
|
|
490
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
465
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
|
|
491
466
|
*/
|
|
492
467
|
listeners?: ChecklistFilterComboListeners;
|
|
493
468
|
/**
|
|
@@ -498,18 +473,16 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
498
473
|
listItemPillTpl?: (record: Model) => string;
|
|
499
474
|
/**
|
|
500
475
|
* Template string used to render the list items in the dropdown list
|
|
501
|
-
* ...
|
|
502
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
|
|
476
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
|
|
503
477
|
* @param {Core.data.Model} record The record representing the item being rendered
|
|
504
478
|
* @returns {string,void}
|
|
505
479
|
*/
|
|
506
|
-
listItemTpl?: (record: Model
|
|
480
|
+
listItemTpl?: (record: Model) => string | void;
|
|
507
481
|
/**
|
|
508
482
|
* A class translations of which are used for translating this entity.
|
|
509
483
|
* This is often used when translations of an item are defined on its container class.
|
|
510
484
|
* For example:
|
|
511
|
-
* ...
|
|
512
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
485
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
|
|
513
486
|
*/
|
|
514
487
|
localeClass?: typeof Base;
|
|
515
488
|
/**
|
|
@@ -521,8 +494,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
521
494
|
* In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
|
|
522
495
|
* you could use 'localeKey' meta configuration.
|
|
523
496
|
* Example:
|
|
524
|
-
* ...
|
|
525
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
497
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
|
|
526
498
|
*/
|
|
527
499
|
localizableProperties?: string[];
|
|
528
500
|
/**
|
|
@@ -548,8 +520,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
548
520
|
maxHeight?: string | number;
|
|
549
521
|
/**
|
|
550
522
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
551
|
-
* ...
|
|
552
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
|
|
523
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
|
|
553
524
|
*/
|
|
554
525
|
maximizeOnMobile?: number | string;
|
|
555
526
|
/**
|
|
@@ -563,8 +534,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
563
534
|
maxWidth?: string | number;
|
|
564
535
|
/**
|
|
565
536
|
* The minimum string length to trigger the filtering, only relevant when [editable](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-editable) is `true`.
|
|
566
|
-
* ...
|
|
567
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
|
|
537
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
|
|
568
538
|
*/
|
|
569
539
|
minChars?: number;
|
|
570
540
|
/**
|
|
@@ -585,12 +555,10 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
585
555
|
* When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
|
|
586
556
|
* is used to monitor this element for size changes caused by either style manipulation, or by CSS
|
|
587
557
|
* layout.
|
|
588
|
-
* ...
|
|
589
|
-
*
|
|
558
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)
|
|
559
|
+
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
590
560
|
*/
|
|
591
|
-
monitorResize?: boolean |
|
|
592
|
-
immediate?: boolean;
|
|
593
|
-
};
|
|
561
|
+
monitorResize?: boolean | object;
|
|
594
562
|
/**
|
|
595
563
|
* A key value which, when typed in a [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) Combo, selects the
|
|
596
564
|
* currently active item in the picker, and clears the input field ready for another
|
|
@@ -601,8 +569,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
601
569
|
* Name of the field which is used as a key to get/set values from/to the field.
|
|
602
570
|
* Used prior to [ref](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in
|
|
603
571
|
* [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
|
|
604
|
-
* ...
|
|
605
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
572
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
606
573
|
*/
|
|
607
574
|
name?: string;
|
|
608
575
|
/**
|
|
@@ -613,10 +580,9 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
613
580
|
/**
|
|
614
581
|
* Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the
|
|
615
582
|
* [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) instance at runtime.
|
|
616
|
-
* ...
|
|
617
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
|
|
583
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
|
|
618
584
|
*/
|
|
619
|
-
picker?: ListConfig
|
|
585
|
+
picker?: ListConfig;
|
|
620
586
|
/**
|
|
621
587
|
* The name of the element property to which the picker should size and align itself.
|
|
622
588
|
*/
|
|
@@ -633,8 +599,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
633
599
|
* 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
|
|
634
600
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
635
601
|
* widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
|
|
636
|
-
* ...
|
|
637
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
|
|
602
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
|
|
638
603
|
*/
|
|
639
604
|
positioned?: boolean;
|
|
640
605
|
/**
|
|
@@ -646,22 +611,19 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
646
611
|
* Optionally a [Filter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) config object which the combo should use for
|
|
647
612
|
* filtering using the typed value.
|
|
648
613
|
* This may use a `filterBy` property to test its `value` against any field in the passed record.
|
|
649
|
-
* ...
|
|
650
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
|
|
614
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
|
|
651
615
|
*/
|
|
652
616
|
primaryFilter?: CollectionFilterConfig;
|
|
653
617
|
/**
|
|
654
618
|
* Makes the field unmodifiable by user action. The input area is not editable, and triggers
|
|
655
619
|
* are unresponsive.
|
|
656
|
-
* ...
|
|
657
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
620
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
|
|
658
621
|
*/
|
|
659
622
|
readOnly?: boolean;
|
|
660
623
|
relayStoreEvents?: boolean;
|
|
661
624
|
/**
|
|
662
625
|
* Predefined style to use for the field. Possible values are:
|
|
663
|
-
* ...
|
|
664
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
|
|
626
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
|
|
665
627
|
*/
|
|
666
628
|
rendition?: 'outlined' | 'filled' | string;
|
|
667
629
|
/**
|
|
@@ -680,23 +642,26 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
680
642
|
* Configure as `true` to have the component display a translucent ripple when its
|
|
681
643
|
* [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
|
|
682
644
|
* current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
|
|
683
|
-
* ...
|
|
684
|
-
* [
|
|
645
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ripple)
|
|
646
|
+
* @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
|
|
647
|
+
* @property {string} [color] A CSS color name or specification.
|
|
648
|
+
* @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
|
|
649
|
+
* @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.
|
|
650
|
+
*/
|
|
651
|
+
ripple?: boolean | object;
|
|
652
|
+
/**
|
|
653
|
+
* The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
|
|
654
|
+
* accidentally applying a role which may interfere with screen readers.
|
|
655
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-role)
|
|
685
656
|
*/
|
|
686
|
-
|
|
687
|
-
delegate?: string;
|
|
688
|
-
color?: string;
|
|
689
|
-
radius?: number;
|
|
690
|
-
clip?: string;
|
|
691
|
-
};
|
|
657
|
+
role?: string;
|
|
692
658
|
/**
|
|
693
659
|
* 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`
|
|
694
660
|
*/
|
|
695
661
|
rootElement?: ShadowRoot | HTMLElement;
|
|
696
662
|
/**
|
|
697
663
|
* This may be configured as `true` to make the widget's element use the `direction:rtl` style.
|
|
698
|
-
* ...
|
|
699
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
|
|
664
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
|
|
700
665
|
*/
|
|
701
666
|
rtl?: boolean;
|
|
702
667
|
/**
|
|
@@ -710,8 +675,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
710
675
|
searchText?: string;
|
|
711
676
|
/**
|
|
712
677
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
713
|
-
* ...
|
|
714
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
|
|
678
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
|
|
715
679
|
*/
|
|
716
680
|
showAnimation?: boolean | object;
|
|
717
681
|
/**
|
|
@@ -749,8 +713,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
749
713
|
* 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
|
|
750
714
|
* [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
|
|
751
715
|
* this widget:
|
|
752
|
-
* ...
|
|
753
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
716
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
|
|
754
717
|
*/
|
|
755
718
|
tab?: boolean | TabConfig;
|
|
756
719
|
/**
|
|
@@ -758,14 +721,12 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
758
721
|
* is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
|
|
759
722
|
* (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
|
|
760
723
|
* to the element programmatically.
|
|
761
|
-
* ...
|
|
762
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
724
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
|
|
763
725
|
*/
|
|
764
726
|
tabIndex?: number;
|
|
765
727
|
/**
|
|
766
728
|
* Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
|
|
767
|
-
* ...
|
|
768
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
|
|
729
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
|
|
769
730
|
*/
|
|
770
731
|
textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
|
|
771
732
|
/**
|
|
@@ -774,30 +735,26 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
774
735
|
title?: string;
|
|
775
736
|
/**
|
|
776
737
|
* Tooltip for the widget, either as a string or as a Tooltip config object.
|
|
777
|
-
* ...
|
|
778
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
|
|
738
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
|
|
779
739
|
*/
|
|
780
740
|
tooltip?: string | TooltipConfig | null;
|
|
781
741
|
/**
|
|
782
742
|
* How to query the store upon click of the expand trigger. Specify one of these values:
|
|
783
|
-
* ...
|
|
784
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
|
|
743
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
|
|
785
744
|
*/
|
|
786
745
|
triggerAction?: 'all' | 'last' | null;
|
|
787
746
|
/**
|
|
788
747
|
* The triggers to add either before or after the input field. Each property name is the reference by which
|
|
789
748
|
* an instantiated Trigger Widget may be retrieved from the live `triggers` property.
|
|
790
|
-
* ...
|
|
791
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
|
|
749
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
|
|
792
750
|
*/
|
|
793
|
-
triggers?: Record<string, FieldTriggerConfig
|
|
751
|
+
triggers?: Record<string, FieldTriggerConfig>;
|
|
794
752
|
type?: 'checklistfiltercombo';
|
|
795
753
|
/**
|
|
796
754
|
* Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
|
|
797
755
|
* as a space separated string, an array of strings, or as an object in which property names with truthy
|
|
798
756
|
* values are used as the class names.
|
|
799
|
-
* ...
|
|
800
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
757
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
|
|
801
758
|
*/
|
|
802
759
|
ui?: string | object;
|
|
803
760
|
/**
|
|
@@ -816,8 +773,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
816
773
|
/**
|
|
817
774
|
* Field used for item value when populating from store. Setting this to `null` will
|
|
818
775
|
* yield the selected record as the Combo's [value](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#property-value).
|
|
819
|
-
* ...
|
|
820
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
|
|
776
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
|
|
821
777
|
*/
|
|
822
778
|
valueField?: string | null;
|
|
823
779
|
/**
|
|
@@ -833,14 +789,12 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
833
789
|
width?: string | number;
|
|
834
790
|
/**
|
|
835
791
|
* The x position for the widget.
|
|
836
|
-
* ...
|
|
837
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
792
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
|
|
838
793
|
*/
|
|
839
794
|
x?: number;
|
|
840
795
|
/**
|
|
841
796
|
* The y position for the widget.
|
|
842
|
-
* ...
|
|
843
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
797
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
|
|
844
798
|
*/
|
|
845
799
|
y?: number;
|
|
846
800
|
};
|
|
@@ -868,6 +822,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
868
822
|
cacheLastResult: number | string | Duration | DurationConfig;
|
|
869
823
|
caseSensitive: boolean;
|
|
870
824
|
centered: boolean;
|
|
825
|
+
checkValidity: ((field: Field) => void) | string;
|
|
871
826
|
chipView: ChipViewConfig;
|
|
872
827
|
clearable: boolean | FieldTriggerConfig;
|
|
873
828
|
clearTextOnPickerHide: boolean;
|
|
@@ -876,7 +831,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
876
831
|
color: Color;
|
|
877
832
|
config: object;
|
|
878
833
|
constrainTo: HTMLElement | Widget | Rectangle;
|
|
879
|
-
container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig
|
|
834
|
+
container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
|
|
880
835
|
containValues: boolean | string | ((field: Field) => boolean);
|
|
881
836
|
contentElementCls: string | object;
|
|
882
837
|
createOnUnmatched: ((name: string, combo: Combo) => Model) | string | boolean;
|
|
@@ -884,11 +839,9 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
884
839
|
defaultBindProperty: string;
|
|
885
840
|
detectCSSCompatibilityIssues: boolean;
|
|
886
841
|
displayField: string;
|
|
887
|
-
displayValueRenderer: (record: Model
|
|
842
|
+
displayValueRenderer: (record: Model, combo: Combo) => string | void;
|
|
888
843
|
dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
889
|
-
draggable: boolean |
|
|
890
|
-
handleSelector?: string;
|
|
891
|
-
};
|
|
844
|
+
draggable: boolean | object;
|
|
892
845
|
elementAttributes: Record<string, string | null>;
|
|
893
846
|
emptyText: string;
|
|
894
847
|
encodeFilterParams: (filters: object[]) => object[];
|
|
@@ -925,7 +878,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
925
878
|
labelWidth: string | number;
|
|
926
879
|
listCls: string;
|
|
927
880
|
listeners: ChecklistFilterComboListeners;
|
|
928
|
-
listItemTpl: (record: Model
|
|
881
|
+
listItemTpl: (record: Model) => string | void;
|
|
929
882
|
localeClass: typeof Base;
|
|
930
883
|
localizable: boolean;
|
|
931
884
|
localizableProperties: string[];
|
|
@@ -934,9 +887,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
934
887
|
maxLength: number;
|
|
935
888
|
minChars: number;
|
|
936
889
|
minLength: number;
|
|
937
|
-
monitorResize: boolean |
|
|
938
|
-
immediate?: boolean;
|
|
939
|
-
};
|
|
890
|
+
monitorResize: boolean | object;
|
|
940
891
|
multiValueSeparator: string;
|
|
941
892
|
name: string;
|
|
942
893
|
overlayAnchor: boolean;
|
|
@@ -947,12 +898,8 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
947
898
|
primaryFilter: CollectionFilterConfig;
|
|
948
899
|
relayStoreEvents: boolean;
|
|
949
900
|
revertOnEscape: boolean;
|
|
950
|
-
ripple: boolean |
|
|
951
|
-
|
|
952
|
-
color?: string;
|
|
953
|
-
radius?: number;
|
|
954
|
-
clip?: string;
|
|
955
|
-
};
|
|
901
|
+
ripple: boolean | object;
|
|
902
|
+
role: string;
|
|
956
903
|
rootElement: ShadowRoot | HTMLElement;
|
|
957
904
|
scrollAction: 'hide' | 'realign' | null;
|
|
958
905
|
showAnimation: boolean | object;
|
|
@@ -1014,11 +961,9 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1014
961
|
width: number | string;
|
|
1015
962
|
x: number;
|
|
1016
963
|
y: number;
|
|
1017
|
-
anchorSize: number[];
|
|
1018
964
|
content: string;
|
|
1019
|
-
focusVisible: boolean;
|
|
1020
965
|
formula: string;
|
|
1021
|
-
html: string | ((widget: Widget) =>
|
|
966
|
+
html: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX;
|
|
1022
967
|
input: HTMLElement;
|
|
1023
968
|
multiSelect: boolean;
|
|
1024
969
|
parent: Widget;
|
|
@@ -1053,8 +998,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1053
998
|
onBeforeShow: any;
|
|
1054
999
|
/**
|
|
1055
1000
|
* Fires when any other event is fired from the object.
|
|
1056
|
-
* ...
|
|
1057
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
|
|
1001
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
|
|
1058
1002
|
* @param {object} event Event object
|
|
1059
1003
|
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
1060
1004
|
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
@@ -1074,8 +1018,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1074
1018
|
onChange: any;
|
|
1075
1019
|
/**
|
|
1076
1020
|
* Fired when this field is [cleared](https://bryntum.com/products/grid/docs/api/Core/widget/Field#function-clear).
|
|
1077
|
-
* ...
|
|
1078
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
|
|
1021
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
|
|
1079
1022
|
* @param {object} event Event object
|
|
1080
1023
|
* @param {Core.widget.Field,any} event.source This Field
|
|
1081
1024
|
*/
|
|
@@ -1134,8 +1077,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1134
1077
|
/**
|
|
1135
1078
|
* Triggered when a widget which had been in a non-visible state for any reason
|
|
1136
1079
|
* achieves visibility.
|
|
1137
|
-
* ...
|
|
1138
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
1080
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
|
|
1139
1081
|
* @param {object} event Event object
|
|
1140
1082
|
* @param {Core.widget.Widget} event.source The widget being painted.
|
|
1141
1083
|
* @param {boolean} event.firstPaint `true` if this is the first paint.
|
|
@@ -1188,6 +1130,14 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1188
1130
|
* Create and append the underlying widget
|
|
1189
1131
|
*/
|
|
1190
1132
|
ngOnInit(): void;
|
|
1133
|
+
/**
|
|
1134
|
+
* Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
|
|
1135
|
+
* document.head as a single <style> element. This is needed because @font-face rules inside
|
|
1136
|
+
* a shadow root are not reliably included in document.fonts across all browsers, causing
|
|
1137
|
+
* Bryntum's CSS compatibility check to incorrectly report missing fonts.
|
|
1138
|
+
* Safe to call multiple times — the extraction runs only once per page.
|
|
1139
|
+
*/
|
|
1140
|
+
private static ensureFontsInDocument;
|
|
1191
1141
|
/**
|
|
1192
1142
|
* Watch for changes
|
|
1193
1143
|
* @param changes
|
|
@@ -1198,5 +1148,5 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1198
1148
|
*/
|
|
1199
1149
|
ngOnDestroy(): void;
|
|
1200
1150
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumChecklistFilterComboComponent, never>;
|
|
1201
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChecklistFilterComboComponent, "bryntum-checklist-filter-combo", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoExpand": "autoExpand"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "cacheLastResult": "cacheLastResult"; "caseSensitive": "caseSensitive"; "centered": "centered"; "chipView": "chipView"; "clearable": "clearable"; "clearTextOnPickerHide": "clearTextOnPickerHide"; "clearTextOnSelection": "clearTextOnSelection"; "clearWhenInputEmpty": "clearWhenInputEmpty"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "createOnUnmatched": "createOnUnmatched"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "displayValueRenderer": "displayValueRenderer"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "emptyText": "emptyText"; "encodeFilterParams": "encodeFilterParams"; "filterOnEnter": "filterOnEnter"; "filterParamName": "filterParamName"; "filterSelected": "filterSelected"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hidePickerOnSelect": "hidePickerOnSelect"; "hideTrigger": "hideTrigger"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inlinePicker": "inlinePicker"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "items": "items"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "keyStrokeFilterDelay": "keyStrokeFilterDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listCls": "listCls"; "listeners": "listeners"; "listItemTpl": "listItemTpl"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minChars": "minChars"; "minLength": "minLength"; "monitorResize": "monitorResize"; "multiValueSeparator": "multiValueSeparator"; "name": "name"; "overlayAnchor": "overlayAnchor"; "pickerAlignElement": "pickerAlignElement"; "pickerWidth": "pickerWidth"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "primaryFilter": "primaryFilter"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "triggerAction": "triggerAction"; "type": "type"; "ui": "ui"; "validateFilter": "validateFilter"; "validateOnInput": "validateOnInput"; "valueField": "valueField"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "filterOperator": "filterOperator"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "listItemPillTpl": "listItemPillTpl"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "picker": "picker"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "searchText": "searchText"; "showApplyButton": "showApplyButton"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "store": "store"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "
|
|
1151
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChecklistFilterComboComponent, "bryntum-checklist-filter-combo", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoExpand": "autoExpand"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "cacheLastResult": "cacheLastResult"; "caseSensitive": "caseSensitive"; "centered": "centered"; "checkValidity": "checkValidity"; "chipView": "chipView"; "clearable": "clearable"; "clearTextOnPickerHide": "clearTextOnPickerHide"; "clearTextOnSelection": "clearTextOnSelection"; "clearWhenInputEmpty": "clearWhenInputEmpty"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "createOnUnmatched": "createOnUnmatched"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "displayValueRenderer": "displayValueRenderer"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "emptyText": "emptyText"; "encodeFilterParams": "encodeFilterParams"; "filterOnEnter": "filterOnEnter"; "filterParamName": "filterParamName"; "filterSelected": "filterSelected"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hidePickerOnSelect": "hidePickerOnSelect"; "hideTrigger": "hideTrigger"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inlinePicker": "inlinePicker"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "items": "items"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "keyStrokeFilterDelay": "keyStrokeFilterDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listCls": "listCls"; "listeners": "listeners"; "listItemTpl": "listItemTpl"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minChars": "minChars"; "minLength": "minLength"; "monitorResize": "monitorResize"; "multiValueSeparator": "multiValueSeparator"; "name": "name"; "overlayAnchor": "overlayAnchor"; "pickerAlignElement": "pickerAlignElement"; "pickerWidth": "pickerWidth"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "primaryFilter": "primaryFilter"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "triggerAction": "triggerAction"; "type": "type"; "ui": "ui"; "validateFilter": "validateFilter"; "validateOnInput": "validateOnInput"; "valueField": "valueField"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "filterOperator": "filterOperator"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "listItemPillTpl": "listItemPillTpl"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "picker": "picker"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "searchText": "searchText"; "showApplyButton": "showApplyButton"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "store": "store"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "content": "content"; "formula": "formula"; "html": "html"; "input": "input"; "multiSelect": "multiSelect"; "parent": "parent"; "scrollable": "scrollable"; }, { "onAction": "onAction"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onClear": "onClear"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelect": "onSelect"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
|
|
1202
1152
|
}
|