@bryntum/taskboard-angular-thin 7.1.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.
Files changed (56) hide show
  1. package/README.md +44 -0
  2. package/bryntum-taskboard-angular-thin.d.ts +5 -0
  3. package/bundles/bryntum-taskboard-angular-thin.umd.js +18990 -0
  4. package/bundles/bryntum-taskboard-angular-thin.umd.js.map +1 -0
  5. package/esm2015/bryntum-taskboard-angular-thin.js +5 -0
  6. package/esm2015/lib/bryntum-column-combo.component.js +937 -0
  7. package/esm2015/lib/bryntum-column-filter-field.component.js +800 -0
  8. package/esm2015/lib/bryntum-column-picker-button.component.js +720 -0
  9. package/esm2015/lib/bryntum-column-scroll-button.component.js +720 -0
  10. package/esm2015/lib/bryntum-project-combo.component.js +941 -0
  11. package/esm2015/lib/bryntum-resources-combo.component.js +937 -0
  12. package/esm2015/lib/bryntum-swimlane-combo.component.js +937 -0
  13. package/esm2015/lib/bryntum-swimlane-filter-field.component.js +808 -0
  14. package/esm2015/lib/bryntum-swimlane-picker-button.component.js +720 -0
  15. package/esm2015/lib/bryntum-swimlane-scroll-button.component.js +720 -0
  16. package/esm2015/lib/bryntum-tag-combo.component.js +941 -0
  17. package/esm2015/lib/bryntum-task-board-base.component.js +1679 -0
  18. package/esm2015/lib/bryntum-task-board-field-filter-picker-group.component.js +763 -0
  19. package/esm2015/lib/bryntum-task-board-field-filter-picker.component.js +733 -0
  20. package/esm2015/lib/bryntum-task-board-project-model.component.js +690 -0
  21. package/esm2015/lib/bryntum-task-board.component.js +1683 -0
  22. package/esm2015/lib/bryntum-task-color-combo.component.js +795 -0
  23. package/esm2015/lib/bryntum-task-filter-field.component.js +808 -0
  24. package/esm2015/lib/bryntum-todo-list-field.component.js +781 -0
  25. package/esm2015/lib/bryntum-undo-redo.component.js +690 -0
  26. package/esm2015/lib/bryntum-zoom-slider.component.js +666 -0
  27. package/esm2015/lib/taskboard.module.js +124 -0
  28. package/esm2015/lib/wrapper.helper.js +74 -0
  29. package/esm2015/public-api.js +26 -0
  30. package/fesm2015/bryntum-taskboard-angular-thin.js +18489 -0
  31. package/fesm2015/bryntum-taskboard-angular-thin.js.map +1 -0
  32. package/lib/bryntum-column-combo.component.d.ts +1209 -0
  33. package/lib/bryntum-column-filter-field.component.d.ts +989 -0
  34. package/lib/bryntum-column-picker-button.component.d.ts +854 -0
  35. package/lib/bryntum-column-scroll-button.component.d.ts +854 -0
  36. package/lib/bryntum-project-combo.component.d.ts +1210 -0
  37. package/lib/bryntum-resources-combo.component.d.ts +1208 -0
  38. package/lib/bryntum-swimlane-combo.component.d.ts +1208 -0
  39. package/lib/bryntum-swimlane-filter-field.component.d.ts +1002 -0
  40. package/lib/bryntum-swimlane-picker-button.component.d.ts +854 -0
  41. package/lib/bryntum-swimlane-scroll-button.component.d.ts +854 -0
  42. package/lib/bryntum-tag-combo.component.d.ts +1213 -0
  43. package/lib/bryntum-task-board-base.component.d.ts +1922 -0
  44. package/lib/bryntum-task-board-field-filter-picker-group.component.d.ts +942 -0
  45. package/lib/bryntum-task-board-field-filter-picker.component.d.ts +890 -0
  46. package/lib/bryntum-task-board-project-model.component.d.ts +733 -0
  47. package/lib/bryntum-task-board.component.d.ts +1924 -0
  48. package/lib/bryntum-task-color-combo.component.d.ts +966 -0
  49. package/lib/bryntum-task-filter-field.component.d.ts +1002 -0
  50. package/lib/bryntum-todo-list-field.component.d.ts +956 -0
  51. package/lib/bryntum-undo-redo.component.d.ts +832 -0
  52. package/lib/bryntum-zoom-slider.component.d.ts +785 -0
  53. package/lib/taskboard.module.d.ts +27 -0
  54. package/lib/wrapper.helper.d.ts +26 -0
  55. package/package.json +33 -0
  56. package/public-api.d.ts +22 -0
@@ -0,0 +1,942 @@
1
+ /**
2
+ * Angular wrapper for Bryntum TaskBoardFieldFilterPickerGroup
3
+ */
4
+ import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
+ import { AlignSpec, Base, CollectionFilterConfig, DomConfig, FieldFilterPickerConfig, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, Store, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { TaskBoardContainerItemConfig, TaskBoardContainerLayoutConfig, TaskBoardFieldFilterPickerGroup, TaskBoardFieldFilterPickerGroupListeners } from '@bryntum/taskboard-thin';
7
+ import * as i0 from "@angular/core";
8
+ export declare type BryntumTaskBoardFieldFilterPickerGroupProps = {
9
+ /**
10
+ * Sets the text displayed in the 'add filter' button if one is present.
11
+ */
12
+ addFilterButtonText?: string;
13
+ /**
14
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
15
+ * content will be placed inside this element.
16
+ * ...
17
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-adopt)
18
+ */
19
+ adopt?: HTMLElement | string;
20
+ /**
21
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
22
+ * ...
23
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-align)
24
+ */
25
+ align?: AlignSpec | string;
26
+ /**
27
+ * When this widget is a child of a [Container](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container), it will by default be participating in a
28
+ * flexbox layout. This config allows you to set this widget's
29
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
30
+ */
31
+ alignSelf?: string;
32
+ /**
33
+ * Optional array of field names that are allowed as selectable properties for filters.
34
+ * This should be a subset of the field names found in the [store](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-store). When supplied,
35
+ * only the named fields will be shown in the property selector combo.
36
+ */
37
+ allowedFieldNames?: string[];
38
+ /**
39
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*
40
+ * `true` to show a connector arrow pointing to the align target.
41
+ */
42
+ anchor?: boolean;
43
+ /**
44
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
45
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element).
46
+ */
47
+ appendTo?: HTMLElement | string;
48
+ /**
49
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
50
+ * into an element which will be linked using the `aria-describedby` attribute.
51
+ * ...
52
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ariaDescription)
53
+ */
54
+ ariaDescription?: string;
55
+ /**
56
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
57
+ * the `aria-label` attribute.
58
+ * ...
59
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ariaLabel)
60
+ */
61
+ ariaLabel?: string;
62
+ /**
63
+ * Update assigned [record](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#config-record) automatically on field changes
64
+ */
65
+ autoUpdateRecord?: boolean;
66
+ /**
67
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
68
+ * hierarchy when triggered.
69
+ * ...
70
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-bubbleEvents)
71
+ */
72
+ bubbleEvents?: object;
73
+ /**
74
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
75
+ * ...
76
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-callOnFunctions)
77
+ */
78
+ callOnFunctions?: boolean;
79
+ /**
80
+ * Optional predicate that returns whether a given filter can be deleted. When `canDeleteFilter` is provided,
81
+ * it will be called for each filter and will not show the delete button for those for which the
82
+ * function returns `false`.
83
+ * @param {any} filter filter for checking
84
+ * @returns {boolean} truthy value if filter can be deleted
85
+ */
86
+ canDeleteFilter?: (filter: any) => boolean;
87
+ /**
88
+ * Optional predicate that returns whether a given filter can be managed by this widget. When `canManageFilter`
89
+ * is provided, it will be used to decide whether to display filters found in the configured
90
+ * [store](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-store).
91
+ * @param {any} filter filter for checking
92
+ * @returns {boolean} truthy value if filter can be managed
93
+ */
94
+ canManageFilter?: (filter: any) => boolean;
95
+ /**
96
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
97
+ * application state is undefined. Code which follows the event handler will *not* be executed.
98
+ * ...
99
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-catchEventHandlerExceptions)
100
+ */
101
+ catchEventHandlerExceptions?: boolean;
102
+ /**
103
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
104
+ * Set to `true` to centre the Widget in browser viewport space.
105
+ */
106
+ centered?: boolean;
107
+ /**
108
+ * Custom CSS classes to add to element.
109
+ * May be specified as a space separated string, or as an object in which property names
110
+ * with truthy values are used as the class names:
111
+ * ...
112
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-cls)
113
+ */
114
+ cls?: string | object;
115
+ /**
116
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
117
+ * `style` block.
118
+ * ...
119
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-color)
120
+ */
121
+ color?: string;
122
+ /**
123
+ * Programmatic control over which column to start in when used in a grid layout.
124
+ */
125
+ column?: number;
126
+ config?: object;
127
+ /**
128
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*
129
+ * Element, Widget or Rectangle to which this Widget is constrained.
130
+ */
131
+ constrainTo?: HTMLElement | Widget | Rectangle;
132
+ /**
133
+ * The HTML content that coexists with sibling elements which may have been added to the
134
+ * [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.
135
+ * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-htmlCls)
136
+ * class added to its classList, to allow targeted styling.
137
+ */
138
+ content?: string;
139
+ /**
140
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
141
+ * May be specified as a space separated string, or as an object in which property names
142
+ * with truthy values are used as the class names:
143
+ * ...
144
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-contentElementCls)
145
+ */
146
+ contentElementCls?: string | object;
147
+ /**
148
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
149
+ * field on the expanded record to use for populating this widget's store (if applicable)
150
+ */
151
+ dataField?: string;
152
+ /**
153
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
154
+ */
155
+ dataset?: Record<string, string>;
156
+ /**
157
+ * The date format string used to display dates when using the 'is one of' / 'is not one of' operators with a date
158
+ * field. Defaults to the current locale's `FieldFilterPicker.dateFormat` value.
159
+ */
160
+ dateFormat?: string;
161
+ /**
162
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
163
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
164
+ */
165
+ defaultBindProperty?: string;
166
+ /**
167
+ * A [query](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
168
+ * focus should be directed by default.
169
+ * ...
170
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-defaultFocus)
171
+ * @param {Core.widget.Widget} widget Widget passed to method
172
+ * @returns {boolean} truthy value if widget is the default one
173
+ */
174
+ defaultFocus?: ((widget: Widget) => boolean) | string;
175
+ /**
176
+ * A config object containing default settings to apply to all child widgets.
177
+ */
178
+ defaults?: TaskBoardContainerItemConfig;
179
+ /**
180
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
181
+ * ...
182
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-detectCSSCompatibilityIssues)
183
+ */
184
+ detectCSSCompatibilityIssues?: boolean;
185
+ /**
186
+ * Whether the picker group is disabled.
187
+ */
188
+ disabled?: boolean;
189
+ /**
190
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel)
191
+ * [strips collection](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
192
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
193
+ * body. Such widgets are called "edge strips".
194
+ * ...
195
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-dock)
196
+ */
197
+ dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
198
+ /**
199
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
200
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
201
+ * property which controls when a drag should start.
202
+ * ...
203
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-draggable)
204
+ */
205
+ draggable?: boolean | {
206
+ handleSelector?: string;
207
+ };
208
+ /**
209
+ * An object specifying attributes to assign to the root element of this widget.
210
+ * Set `null` value to attribute to remove it.
211
+ * ...
212
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-elementAttributes)
213
+ */
214
+ elementAttributes?: Record<string, string | null>;
215
+ /**
216
+ * Pass field names to not be displayed in the `property` dropdown.
217
+ * In most cases this should include the `{TaskBoard.columnField}`.
218
+ */
219
+ excludeFields?: string[];
220
+ extraData?: any;
221
+ /**
222
+ * Dictionary of [FieldOption](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker#typedef-FieldOption) representing the fields against which filters can be defined,
223
+ * keyed by field name.
224
+ * ...
225
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-fields)
226
+ */
227
+ fields?: Record<string, FieldOption>;
228
+ /**
229
+ * Array of [CollectionFilter](https://bryntum.com/products/taskboard/docs/api/Core/util/CollectionFilter) configuration objects. One
230
+ * [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) will be created
231
+ * for each object in the array.
232
+ * ...
233
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-filters)
234
+ */
235
+ filters?: CollectionFilterConfig[];
236
+ /**
237
+ * When this widget is a child of a [Container](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container), it will by default be participating in a
238
+ * flexbox layout. This config allows you to set this widget's
239
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
240
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
241
+ * numeric-only values are interpreted as the `flex-grow` value.
242
+ */
243
+ flex?: number | string;
244
+ /**
245
+ * Set to `true` to move the widget out of the document flow and position it
246
+ * absolutely in browser viewport space.
247
+ */
248
+ floating?: boolean;
249
+ /**
250
+ * Optional function that returns [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) configuration properties for
251
+ * a given filter. When `getFieldFilterPickerConfig` is provided, it will be called for each filter and the returned
252
+ * object will be merged with the configuration properties for the individual
253
+ * [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) representing that filter.
254
+ * ...
255
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-getFieldFilterPickerConfig)
256
+ * @param {CollectionFilterConfig} filter The filter to be displayed in the FieldFilterPicker being configured
257
+ * @returns {FieldFilterPickerConfig}
258
+ */
259
+ getFieldFilterPickerConfig?: (filter: CollectionFilterConfig) => FieldFilterPickerConfig;
260
+ /**
261
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
262
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
263
+ * cases this config is convenient.
264
+ */
265
+ height?: string | number;
266
+ /**
267
+ * Configure with true to make widget initially hidden.
268
+ */
269
+ hidden?: boolean;
270
+ /**
271
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
272
+ * ...
273
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-hideAnimation)
274
+ */
275
+ hideAnimation?: boolean | object;
276
+ /**
277
+ * Specify `true` to make this container hide when it has no visible children (Either empty
278
+ * or all children hidden).
279
+ * ...
280
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-hideWhenEmpty)
281
+ */
282
+ hideWhenEmpty?: boolean;
283
+ /**
284
+ * The HTML to display initially or a function returning the markup (called at widget construction time).
285
+ * ...
286
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-html)
287
+ * @param {Core.widget.Widget} widget The calling Widget
288
+ * @returns {string}
289
+ */
290
+ html?: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
291
+ /**
292
+ * The CSS class(es) to add when HTML content is being applied to this widget.
293
+ */
294
+ htmlCls?: string | object;
295
+ /**
296
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
297
+ */
298
+ id?: string;
299
+ /**
300
+ * Determines if the widgets read-only state should be controlled by its parent.
301
+ * ...
302
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ignoreParentReadOnly)
303
+ */
304
+ ignoreParentReadOnly?: boolean;
305
+ /**
306
+ * Convenience setting to align input fields of child widgets. By default, the Field input element is
307
+ * placed immediately following the `label`. If you prefer to have all input fields aligned to the
308
+ * right, set this config to `'end'`.
309
+ * ...
310
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-inputFieldAlign)
311
+ */
312
+ inputFieldAlign?: 'start' | 'end';
313
+ /**
314
+ * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
315
+ */
316
+ insertBefore?: HTMLElement | string;
317
+ /**
318
+ * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
319
+ */
320
+ insertFirst?: HTMLElement | string;
321
+ /**
322
+ * An optional CSS class to add to child items of this container.
323
+ */
324
+ itemCls?: string;
325
+ /**
326
+ * An object containing typed child widget config objects or Widgets. May also be specified
327
+ * as an array.
328
+ * ...
329
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-items)
330
+ */
331
+ items?: Record<string, TaskBoardContainerItemConfig | MenuItemEntry> | (TaskBoardContainerItemConfig | MenuItemEntry | Widget)[];
332
+ /**
333
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
334
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
335
+ * are the name of the instance method to call when the keystroke is received.
336
+ * ...
337
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-keyMap)
338
+ */
339
+ keyMap?: Record<string, KeyMapConfig>;
340
+ /**
341
+ * Convenience setting to use same label placement on all child widgets.
342
+ * ...
343
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-labelPosition)
344
+ */
345
+ labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
346
+ /**
347
+ * The short name of a helper class which manages rendering and styling of child items.
348
+ * ...
349
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-layout)
350
+ */
351
+ layout?: string | TaskBoardContainerLayoutConfig;
352
+ /**
353
+ * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
354
+ * ...
355
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-layoutStyle)
356
+ */
357
+ layoutStyle?: object;
358
+ /**
359
+ * An array of [child item](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into
360
+ * instances only when this Container is rendered, rather than eagerly at construct time.
361
+ * ...
362
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-lazyItems)
363
+ */
364
+ lazyItems?: Record<string, TaskBoardContainerItemConfig> | TaskBoardContainerItemConfig[] | Widget[];
365
+ /**
366
+ * When `limitToProperty` is set to the name of an available field (as specified either
367
+ * explicitly in [fields](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-fields) or implicitly in the
368
+ * [store](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-store)'s model), it has the following effects:
369
+ * ...
370
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-limitToProperty)
371
+ */
372
+ limitToProperty?: string;
373
+ /**
374
+ * The listener set for this object.
375
+ * ...
376
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-listeners)
377
+ */
378
+ listeners?: TaskBoardFieldFilterPickerGroupListeners;
379
+ /**
380
+ * A class translations of which are used for translating this entity.
381
+ * This is often used when translations of an item are defined on its container class.
382
+ * For example:
383
+ * ...
384
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-localeClass)
385
+ */
386
+ localeClass?: typeof Base;
387
+ /**
388
+ * Set to `false` to disable localization of this object.
389
+ */
390
+ localizable?: boolean;
391
+ /**
392
+ * List of properties which values should be translated automatically upon a locale applying.
393
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
394
+ * you could use 'localeKey' meta configuration.
395
+ * Example:
396
+ * ...
397
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-localizableProperties)
398
+ */
399
+ localizableProperties?: string[];
400
+ /**
401
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
402
+ * numeric-only values are interpreted as pixels.
403
+ */
404
+ margin?: number | string;
405
+ /**
406
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) created for the
407
+ * [masked](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
408
+ * values.
409
+ */
410
+ maskDefaults?: MaskConfig;
411
+ /**
412
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
413
+ * [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) config object.
414
+ */
415
+ masked?: boolean | string | MaskConfig;
416
+ /**
417
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
418
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
419
+ */
420
+ maxHeight?: string | number;
421
+ /**
422
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
423
+ * ...
424
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-maximizeOnMobile)
425
+ */
426
+ maximizeOnMobile?: number | string;
427
+ /**
428
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
429
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
430
+ */
431
+ maxWidth?: string | number;
432
+ /**
433
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
434
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
435
+ */
436
+ minHeight?: string | number;
437
+ /**
438
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
439
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
440
+ */
441
+ minWidth?: string | number;
442
+ /**
443
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
444
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
445
+ * layout.
446
+ * ...
447
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-monitorResize)
448
+ */
449
+ monitorResize?: boolean | {
450
+ immediate?: boolean;
451
+ };
452
+ /**
453
+ * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#config-items)
454
+ * config. For example, a specialized [Menu](https://bryntum.com/products/taskboard/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
455
+ * value defined like this:
456
+ * ...
457
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-namedItems)
458
+ */
459
+ namedItems?: Record<string, TaskBoardContainerItemConfig>;
460
+ /**
461
+ * When specified, overrides the built-in list of available operators. See
462
+ * [operators](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker#config-operators).
463
+ */
464
+ operators?: object;
465
+ /**
466
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
467
+ * [items](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
468
+ * the owner is <strong>always</strong> the encapsulating Container.
469
+ * ...
470
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-owner)
471
+ */
472
+ owner?: Widget | any;
473
+ /**
474
+ * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement), but must
475
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
476
+ * widget's [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
477
+ * ...
478
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-positioned)
479
+ */
480
+ positioned?: boolean;
481
+ /**
482
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
483
+ * menu on click etc, since the tooltip would be displayed at the same time.
484
+ */
485
+ preventTooltipOnTouch?: boolean;
486
+ /**
487
+ * Whether the picker group is read-only.
488
+ * ...
489
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-readOnly)
490
+ */
491
+ readOnly?: boolean;
492
+ /**
493
+ * [Record](https://bryntum.com/products/taskboard/docs/api/Core/data/Model) whose values will be used to populate fields in the container.
494
+ * ...
495
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-record)
496
+ */
497
+ record?: Model;
498
+ relayStoreEvents?: boolean;
499
+ /**
500
+ * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
501
+ * `type`.
502
+ * ...
503
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-rendition)
504
+ */
505
+ rendition?: string | Record<string, string> | null;
506
+ /**
507
+ * Configure as `true` to have the component display a translucent ripple when its
508
+ * [focusElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
509
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
510
+ * ...
511
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ripple)
512
+ */
513
+ ripple?: boolean | {
514
+ delegate?: string;
515
+ color?: string;
516
+ radius?: number;
517
+ clip?: string;
518
+ };
519
+ /**
520
+ * 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`
521
+ */
522
+ rootElement?: ShadowRoot | HTMLElement;
523
+ /**
524
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
525
+ * ...
526
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-rtl)
527
+ */
528
+ rtl?: boolean;
529
+ /**
530
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
531
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
532
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
533
+ * CSS overflow properties thus:
534
+ * ...
535
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-scrollable)
536
+ */
537
+ scrollable?: boolean | ScrollerConfig | Scroller;
538
+ /**
539
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
540
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
541
+ */
542
+ scrollAction?: 'hide' | 'realign' | null;
543
+ /**
544
+ * Show a button at the bottom of the group that adds a new, blank filter to the group.
545
+ */
546
+ showAddFilterButton?: boolean;
547
+ /**
548
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
549
+ * ...
550
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-showAnimation)
551
+ */
552
+ showAnimation?: boolean | object;
553
+ /**
554
+ * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-disabled)
555
+ */
556
+ showTooltipWhenDisabled?: boolean;
557
+ /**
558
+ * Programmatic control over how many columns to span when used in a grid layout.
559
+ */
560
+ span?: number;
561
+ /**
562
+ * The [Store](https://bryntum.com/products/taskboard/docs/api/Core/data/Store) whose records will be filtered. The store's [modelClass](#Core/data/Store#property-modelClass)
563
+ * will be used to determine field types.
564
+ * ...
565
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-store)
566
+ */
567
+ store?: Store;
568
+ /**
569
+ * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#config-record),
570
+ * without falling back to `ref`.
571
+ */
572
+ strictRecordMapping?: boolean;
573
+ /**
574
+ * A configuration for the [tab](https://bryntum.com/products/taskboard/docs/api/Core/widget/Tab) created for this widget when it is placed in a
575
+ * [TabPanel](https://bryntum.com/products/taskboard/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
576
+ * this widget:
577
+ * ...
578
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tab)
579
+ */
580
+ tab?: boolean | TabConfig;
581
+ /**
582
+ * When this container is used as a tab in a TabPanel, these items are added to the
583
+ * [TabBar](https://bryntum.com/products/taskboard/docs/api/Core/widget/TabBar) when this container is the active tab.
584
+ * ...
585
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tabBarItems)
586
+ */
587
+ tabBarItems?: ToolbarItems[] | Widget[];
588
+ /**
589
+ * The tag name of this Widget's root element
590
+ */
591
+ tag?: string;
592
+ /**
593
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
594
+ * ...
595
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-textAlign)
596
+ */
597
+ textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
598
+ /**
599
+ * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`
600
+ * which specifies a default max-width that makes long text more readable.
601
+ * ...
602
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-textContent)
603
+ */
604
+ textContent?: boolean;
605
+ /**
606
+ * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)
607
+ */
608
+ title?: string;
609
+ /**
610
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
611
+ * ...
612
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tooltip)
613
+ */
614
+ tooltip?: string | TooltipConfig | null;
615
+ /**
616
+ * Whether to raise [change](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#event-change) events as the user types into a value field. If `false`,
617
+ * [change](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#event-change) events will be raised only when the value input field's own `change` event
618
+ * occurs, for example on field blur.
619
+ */
620
+ triggerChangeOnInput?: boolean;
621
+ type?: 'taskboardfieldfilterpickergroup';
622
+ /**
623
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
624
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
625
+ * values are used as the class names.
626
+ * ...
627
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ui)
628
+ */
629
+ ui?: string | object;
630
+ /**
631
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container).
632
+ * Higher weights go further down.
633
+ */
634
+ weight?: number;
635
+ /**
636
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
637
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
638
+ * this config is convenient.
639
+ */
640
+ width?: string | number;
641
+ /**
642
+ * The x position for the widget.
643
+ * ...
644
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-x)
645
+ */
646
+ x?: number;
647
+ /**
648
+ * The y position for the widget.
649
+ * ...
650
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-y)
651
+ */
652
+ y?: number;
653
+ };
654
+ export declare class BryntumTaskBoardFieldFilterPickerGroupComponent implements OnInit, OnDestroy {
655
+ static instanceClass: typeof TaskBoardFieldFilterPickerGroup;
656
+ static instanceName: string;
657
+ private static bryntumEvents;
658
+ private static bryntumFeatureNames;
659
+ private static bryntumConfigs;
660
+ private static bryntumConfigsOnly;
661
+ private static bryntumProps;
662
+ private elementRef;
663
+ instance: TaskBoardFieldFilterPickerGroup;
664
+ private bryntumConfig;
665
+ constructor(element: ElementRef);
666
+ addFilterButtonText: string;
667
+ adopt: HTMLElement | string;
668
+ align: AlignSpec | string;
669
+ allowedFieldNames: string[];
670
+ anchor: boolean;
671
+ ariaDescription: string;
672
+ ariaLabel: string;
673
+ autoUpdateRecord: boolean;
674
+ bubbleEvents: object;
675
+ canDeleteFilter: (filter: any) => boolean;
676
+ canManageFilter: (filter: any) => boolean;
677
+ centered: boolean;
678
+ color: string;
679
+ config: object;
680
+ constrainTo: HTMLElement | Widget | Rectangle;
681
+ contentElementCls: string | object;
682
+ dataField: string;
683
+ dateFormat: string;
684
+ defaultBindProperty: string;
685
+ defaultFocus: ((widget: Widget) => boolean) | string;
686
+ defaults: TaskBoardContainerItemConfig;
687
+ detectCSSCompatibilityIssues: boolean;
688
+ dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
689
+ draggable: boolean | {
690
+ handleSelector?: string;
691
+ };
692
+ elementAttributes: Record<string, string | null>;
693
+ excludeFields: string[];
694
+ fields: Record<string, FieldOption>;
695
+ filters: CollectionFilterConfig[];
696
+ floating: boolean;
697
+ getFieldFilterPickerConfig: (filter: CollectionFilterConfig) => FieldFilterPickerConfig;
698
+ hideAnimation: boolean | object;
699
+ hideWhenEmpty: boolean;
700
+ htmlCls: string | object;
701
+ ignoreParentReadOnly: boolean;
702
+ itemCls: string;
703
+ lazyItems: Record<string, TaskBoardContainerItemConfig> | TaskBoardContainerItemConfig[] | Widget[];
704
+ limitToProperty: string;
705
+ listeners: TaskBoardFieldFilterPickerGroupListeners;
706
+ localeClass: typeof Base;
707
+ localizable: boolean;
708
+ localizableProperties: string[];
709
+ maskDefaults: MaskConfig;
710
+ masked: boolean | string | MaskConfig;
711
+ monitorResize: boolean | {
712
+ immediate?: boolean;
713
+ };
714
+ namedItems: Record<string, TaskBoardContainerItemConfig>;
715
+ operators: object;
716
+ owner: Widget | any;
717
+ positioned: boolean;
718
+ preventTooltipOnTouch: boolean;
719
+ relayStoreEvents: boolean;
720
+ ripple: boolean | {
721
+ delegate?: string;
722
+ color?: string;
723
+ radius?: number;
724
+ clip?: string;
725
+ };
726
+ rootElement: ShadowRoot | HTMLElement;
727
+ scrollAction: 'hide' | 'realign' | null;
728
+ showAddFilterButton: boolean;
729
+ showAnimation: boolean | object;
730
+ showTooltipWhenDisabled: boolean;
731
+ store: Store;
732
+ tab: boolean | TabConfig;
733
+ tabBarItems: ToolbarItems[] | Widget[];
734
+ tag: string;
735
+ textAlign: 'left' | 'center' | 'right' | 'start' | 'end';
736
+ textContent: boolean;
737
+ title: string;
738
+ triggerChangeOnInput: boolean;
739
+ type: 'taskboardfieldfilterpickergroup';
740
+ ui: string | object;
741
+ weight: number;
742
+ alignSelf: string;
743
+ appendTo: HTMLElement | string;
744
+ callOnFunctions: boolean;
745
+ catchEventHandlerExceptions: boolean;
746
+ cls: string | object;
747
+ column: number;
748
+ content: string;
749
+ dataset: object | Record<string, string>;
750
+ disabled: boolean | 'inert';
751
+ extraData: any;
752
+ flex: number | string;
753
+ height: number | string;
754
+ hidden: boolean;
755
+ html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
756
+ id: string;
757
+ inputFieldAlign: 'start' | 'end';
758
+ insertBefore: HTMLElement | string;
759
+ insertFirst: HTMLElement | string;
760
+ items: (TaskBoardContainerItemConfig | MenuItemConfig | Widget)[] | Record<string, TaskBoardContainerItemConfig | MenuItemConfig> | Widget[] | Record<string, TaskBoardContainerItemConfig | MenuItemEntry> | (TaskBoardContainerItemConfig | MenuItemEntry | Widget)[];
761
+ keyMap: Record<string, KeyMapConfig>;
762
+ labelPosition: 'before' | 'above' | 'align-before' | 'auto' | null;
763
+ layout: Layout | string | TaskBoardContainerLayoutConfig;
764
+ layoutStyle: object;
765
+ margin: number | string;
766
+ maxHeight: string | number;
767
+ maximizeOnMobile: number | string;
768
+ maxWidth: string | number;
769
+ minHeight: string | number;
770
+ minWidth: string | number;
771
+ readOnly: boolean;
772
+ record: Model;
773
+ rendition: string | Record<string, string> | null;
774
+ rtl: boolean;
775
+ scrollable: Scroller | boolean | ScrollerConfig;
776
+ span: number;
777
+ strictRecordMapping: boolean;
778
+ tooltip: string | TooltipConfig | null;
779
+ width: number | string;
780
+ x: number;
781
+ y: number;
782
+ anchorSize: number[];
783
+ focusVisible: boolean;
784
+ hasChanges: boolean;
785
+ isSettingValues: boolean;
786
+ isValid: boolean;
787
+ parent: Widget;
788
+ value: CollectionFilterConfig[];
789
+ values: Record<string, object>;
790
+ /**
791
+ * Fires before a new filter is added to the picker group (and its store, if configured and the filter is valid).
792
+ * Return `false` from the event handler to prevent the filter being added.
793
+ * @param {object} event Event object
794
+ * @param {Core.widget.FieldFilterPicker} event.source The FieldFilterPicker instance that fired the event.
795
+ * @param {CollectionFilterConfig} event.filter The [CollectionFilter](https://bryntum.com/products/taskboard/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker).
796
+ */
797
+ onBeforeAddFilter: any;
798
+ /**
799
+ * Fires before an object is destroyed.
800
+ * @param {object} event Event object
801
+ * @param {Core.Base} event.source The Object that is being destroyed.
802
+ */
803
+ onBeforeDestroy: any;
804
+ /**
805
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
806
+ * @param {object} event Event object
807
+ * @param {Core.widget.Widget} event.source The widget being hidden.
808
+ */
809
+ onBeforeHide: any;
810
+ /**
811
+ * Fired before this container will load record values into its child fields. This is useful if you
812
+ * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
813
+ * @param {object} event Event object
814
+ * @param {Core.widget.Container} event.source The container
815
+ * @param {Core.data.Model} event.record The record
816
+ */
817
+ onBeforeSetRecord: any;
818
+ /**
819
+ * Triggered before a widget is shown. Return `false` to prevent the action.
820
+ * @param {object} event Event object
821
+ * @param {Core.widget.Widget,any} event.source The widget being shown
822
+ */
823
+ onBeforeShow: any;
824
+ /**
825
+ * Fires when any other event is fired from the object.
826
+ * ...
827
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#event-catchAll)
828
+ * @param {object} event Event object
829
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
830
+ * @param {string} event.event.type The type of the event which is caught by the listener
831
+ */
832
+ onCatchAll: any;
833
+ /**
834
+ * Fires when any filter in the group is added, removed, or modified.
835
+ * @param {object} event Event object
836
+ * @param {Core.widget.FieldFilterPickerGroup} event.source The FieldFilterPickerGroup instance that fired the event.
837
+ * @param {CollectionFilterConfig[]} event.filters The array of [CollectionFilter](https://bryntum.com/products/taskboard/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.
838
+ * @param {CollectionFilterConfig[]} event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/taskboard/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.
839
+ */
840
+ onChange: any;
841
+ /**
842
+ * Fires when an object is destroyed.
843
+ * @param {object} event Event object
844
+ * @param {Core.Base} event.source The Object that is being destroyed.
845
+ */
846
+ onDestroy: any;
847
+ /**
848
+ * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#property-hasChanges) property changes
849
+ * @param {object} event Event object
850
+ * @param {Core.widget.Container} event.source The container.
851
+ * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
852
+ */
853
+ onDirtyStateChange: any;
854
+ /**
855
+ * Triggered when a widget's [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element) is available.
856
+ * @param {object} event Event object
857
+ * @param {HTMLElement} event.element The Widget's element.
858
+ */
859
+ onElementCreated: any;
860
+ /**
861
+ * Fired when focus enters this Widget.
862
+ * @param {object} event Event object
863
+ * @param {Core.widget.Widget} event.source This Widget
864
+ * @param {HTMLElement} event.fromElement The element which lost focus.
865
+ * @param {HTMLElement} event.toElement The element which gained focus.
866
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
867
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
868
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
869
+ */
870
+ onFocusIn: any;
871
+ /**
872
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
873
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
874
+ * will not trigger this event. This is when focus exits this widget completely.
875
+ * @param {object} event Event object
876
+ * @param {Core.widget.Widget} event.source This Widget
877
+ * @param {HTMLElement} event.fromElement The element which lost focus.
878
+ * @param {HTMLElement} event.toElement The element which gained focus.
879
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
880
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
881
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
882
+ */
883
+ onFocusOut: any;
884
+ /**
885
+ * Triggered after a widget was hidden
886
+ * @param {object} event Event object
887
+ * @param {Core.widget.Widget} event.source The widget
888
+ */
889
+ onHide: any;
890
+ /**
891
+ * Triggered when a widget which had been in a non-visible state for any reason
892
+ * achieves visibility.
893
+ * ...
894
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#event-paint)
895
+ * @param {object} event Event object
896
+ * @param {Core.widget.Widget} event.source The widget being painted.
897
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
898
+ */
899
+ onPaint: any;
900
+ /**
901
+ * Fired when a Widget's read only state is toggled
902
+ * @param {object} event Event object
903
+ * @param {boolean} event.readOnly Read only or not
904
+ */
905
+ onReadOnly: any;
906
+ /**
907
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
908
+ * to [recompose](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.
909
+ */
910
+ onRecompose: any;
911
+ /**
912
+ * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
913
+ * @param {object} event Event object
914
+ * @param {Core.widget.Widget} event.source This Widget
915
+ * @param {number} event.width The new width
916
+ * @param {number} event.height The new height
917
+ * @param {number} event.oldWidth The old width
918
+ * @param {number} event.oldHeight The old height
919
+ */
920
+ onResize: any;
921
+ /**
922
+ * Triggered after a widget is shown.
923
+ * @param {object} event Event object
924
+ * @param {Core.widget.Widget} event.source The widget
925
+ */
926
+ onShow: any;
927
+ /**
928
+ * Create and append the underlying widget
929
+ */
930
+ ngOnInit(): void;
931
+ /**
932
+ * Watch for changes
933
+ * @param changes
934
+ */
935
+ ngOnChanges(changes: SimpleChanges): void;
936
+ /**
937
+ * Destroy the component
938
+ */
939
+ ngOnDestroy(): void;
940
+ static ɵfac: i0.ɵɵFactoryDeclaration<BryntumTaskBoardFieldFilterPickerGroupComponent, never>;
941
+ static ɵcmp: i0.ɵɵComponentDeclaration<BryntumTaskBoardFieldFilterPickerGroupComponent, "bryntum-task-board-field-filter-picker-group", never, { "addFilterButtonText": "addFilterButtonText"; "adopt": "adopt"; "align": "align"; "allowedFieldNames": "allowedFieldNames"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "bubbleEvents": "bubbleEvents"; "canDeleteFilter": "canDeleteFilter"; "canManageFilter": "canManageFilter"; "centered": "centered"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "dateFormat": "dateFormat"; "defaultBindProperty": "defaultBindProperty"; "defaultFocus": "defaultFocus"; "defaults": "defaults"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "excludeFields": "excludeFields"; "fields": "fields"; "filters": "filters"; "floating": "floating"; "getFieldFilterPickerConfig": "getFieldFilterPickerConfig"; "hideAnimation": "hideAnimation"; "hideWhenEmpty": "hideWhenEmpty"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "itemCls": "itemCls"; "lazyItems": "lazyItems"; "limitToProperty": "limitToProperty"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "namedItems": "namedItems"; "operators": "operators"; "owner": "owner"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAddFilterButton": "showAddFilterButton"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "store": "store"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tag": "tag"; "textAlign": "textAlign"; "textContent": "textContent"; "title": "title"; "triggerChangeOnInput": "triggerChangeOnInput"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "layout": "layout"; "layoutStyle": "layoutStyle"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "readOnly": "readOnly"; "record": "record"; "rendition": "rendition"; "rtl": "rtl"; "scrollable": "scrollable"; "span": "span"; "strictRecordMapping": "strictRecordMapping"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "anchorSize": "anchorSize"; "focusVisible": "focusVisible"; "hasChanges": "hasChanges"; "isSettingValues": "isSettingValues"; "isValid": "isValid"; "parent": "parent"; "value": "value"; "values": "values"; }, { "onBeforeAddFilter": "onBeforeAddFilter"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
942
+ }