@bryntum/taskboard-angular 7.1.1 → 7.1.2

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 (76) hide show
  1. package/README.md +230 -15
  2. package/package.json +1 -1
  3. package/src/lib/bryntum-button-group.component.ts +1213 -0
  4. package/src/lib/bryntum-button.component.ts +1190 -0
  5. package/src/lib/bryntum-chat-panel.component.ts +1435 -0
  6. package/src/lib/bryntum-checkbox-group.component.ts +1478 -0
  7. package/src/lib/bryntum-checkbox.component.ts +1333 -0
  8. package/src/lib/bryntum-chip-view.component.ts +1225 -0
  9. package/src/lib/bryntum-code-editor.component.ts +1419 -0
  10. package/src/lib/bryntum-color-field.component.ts +1334 -0
  11. package/src/lib/bryntum-column-combo.component.ts +1645 -0
  12. package/src/lib/bryntum-column-filter-field.component.ts +1360 -0
  13. package/src/lib/bryntum-column-picker-button.component.ts +1200 -0
  14. package/src/lib/bryntum-column-scroll-button.component.ts +1200 -0
  15. package/src/lib/bryntum-combo.component.ts +1634 -0
  16. package/src/lib/bryntum-container.component.ts +1166 -0
  17. package/src/lib/bryntum-date-field.component.ts +1413 -0
  18. package/src/lib/bryntum-date-picker.component.ts +1756 -0
  19. package/src/lib/bryntum-date-range-field.component.ts +1417 -0
  20. package/src/lib/bryntum-date-time-field.component.ts +1261 -0
  21. package/src/lib/bryntum-demo-code-editor.component.ts +1441 -0
  22. package/src/lib/bryntum-demo-header.component.ts +141 -0
  23. package/src/lib/bryntum-display-field.component.ts +1308 -0
  24. package/src/lib/bryntum-duration-field.component.ts +1390 -0
  25. package/src/lib/bryntum-editor.component.ts +1343 -0
  26. package/src/lib/bryntum-field-filter-picker-group.component.ts +1308 -0
  27. package/src/lib/bryntum-field-filter-picker.component.ts +1272 -0
  28. package/src/lib/bryntum-field-set.component.ts +1408 -0
  29. package/src/lib/bryntum-file-field.component.ts +1313 -0
  30. package/src/lib/bryntum-file-picker.component.ts +1199 -0
  31. package/src/lib/bryntum-filter-field.component.ts +1367 -0
  32. package/src/lib/bryntum-fullscreen-button.component.ts +53 -0
  33. package/src/lib/bryntum-hint.component.ts +1506 -0
  34. package/src/lib/bryntum-label.component.ts +989 -0
  35. package/src/lib/bryntum-list.component.ts +1196 -0
  36. package/src/lib/bryntum-menu.component.ts +1520 -0
  37. package/src/lib/bryntum-month-picker.component.ts +1400 -0
  38. package/src/lib/bryntum-number-field.component.ts +1368 -0
  39. package/src/lib/bryntum-paging-toolbar.component.ts +1243 -0
  40. package/src/lib/bryntum-panel.component.ts +1377 -0
  41. package/src/lib/bryntum-password-field.component.ts +1296 -0
  42. package/src/lib/bryntum-project-combo.component.ts +1648 -0
  43. package/src/lib/bryntum-radio-group.component.ts +1446 -0
  44. package/src/lib/bryntum-radio.component.ts +1333 -0
  45. package/src/lib/bryntum-resources-combo.component.ts +1644 -0
  46. package/src/lib/bryntum-scheduler-project-combo.component.ts +1638 -0
  47. package/src/lib/bryntum-slide-toggle.component.ts +1333 -0
  48. package/src/lib/bryntum-slider.component.ts +1112 -0
  49. package/src/lib/bryntum-splitter.component.ts +1025 -0
  50. package/src/lib/bryntum-swimlane-combo.component.ts +1644 -0
  51. package/src/lib/bryntum-swimlane-filter-field.component.ts +1377 -0
  52. package/src/lib/bryntum-swimlane-picker-button.component.ts +1200 -0
  53. package/src/lib/bryntum-swimlane-scroll-button.component.ts +1200 -0
  54. package/src/lib/bryntum-tab-panel.component.ts +1441 -0
  55. package/src/lib/bryntum-tag-combo.component.ts +1651 -0
  56. package/src/lib/bryntum-task-board-base.component.ts +2388 -0
  57. package/src/lib/bryntum-task-board-field-filter-picker-group.component.ts +1316 -0
  58. package/src/lib/bryntum-task-board-field-filter-picker.component.ts +1254 -0
  59. package/src/lib/bryntum-task-board-project-model.component.ts +1026 -0
  60. package/src/lib/bryntum-task-board.component.ts +2392 -0
  61. package/src/lib/bryntum-task-color-combo.component.ts +1334 -0
  62. package/src/lib/bryntum-task-filter-field.component.ts +1377 -0
  63. package/src/lib/bryntum-text-area-field.component.ts +1312 -0
  64. package/src/lib/bryntum-text-area-picker-field.component.ts +1343 -0
  65. package/src/lib/bryntum-text-field.component.ts +1321 -0
  66. package/src/lib/bryntum-time-field.component.ts +1388 -0
  67. package/src/lib/bryntum-time-picker.component.ts +1207 -0
  68. package/src/lib/bryntum-todo-list-field.component.ts +1318 -0
  69. package/src/lib/bryntum-toolbar.component.ts +1234 -0
  70. package/src/lib/bryntum-undo-redo.component.ts +1179 -0
  71. package/src/lib/bryntum-widget.component.ts +982 -0
  72. package/src/lib/bryntum-year-picker.component.ts +1423 -0
  73. package/src/lib/bryntum-zoom-slider.component.ts +1122 -0
  74. package/src/lib/taskboard.module.ts +232 -0
  75. package/src/lib/wrapper.helper.ts +89 -0
  76. package/src/public-api.ts +77 -0
@@ -0,0 +1,1316 @@
1
+ /* eslint-disable @typescript-eslint/no-unused-vars */
2
+ /**
3
+ * Angular wrapper for Bryntum TaskBoardFieldFilterPickerGroup
4
+ */
5
+
6
+ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
7
+
8
+ import WrapperHelper from './wrapper.helper';
9
+
10
+ import { AlignSpec, Base, CollectionFilterConfig, Container, ContainerItemConfig, ContainerLayoutConfig, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, Store, TabConfig, TaskBoardFieldFilterPickerGroup, TaskBoardFieldFilterPickerGroupListeners, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/taskboard';
11
+
12
+ import { StringHelper } from '@bryntum/taskboard';
13
+
14
+ export type BryntumTaskBoardFieldFilterPickerGroupProps = {
15
+ // Configs
16
+ /**
17
+ * Sets the text displayed in the 'add filter' button if one is present.
18
+ */
19
+ addFilterButtonText ? : string
20
+ /**
21
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
22
+ * content will be placed inside this element.
23
+ * ...
24
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-adopt)
25
+ */
26
+ adopt ? : HTMLElement|string
27
+ /**
28
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
29
+ * ...
30
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-align)
31
+ */
32
+ align ? : AlignSpec|string
33
+ /**
34
+ * 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
35
+ * flexbox layout. This config allows you to set this widget's
36
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
37
+ */
38
+ alignSelf ? : string
39
+ /**
40
+ * Optional array of field names that are allowed as selectable properties for filters.
41
+ * 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,
42
+ * only the named fields will be shown in the property selector combo.
43
+ */
44
+ allowedFieldNames ? : string[]
45
+ /**
46
+ * *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).*
47
+ * `true` to show a connector arrow pointing to the align target.
48
+ */
49
+ anchor ? : boolean
50
+ /**
51
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
52
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element).
53
+ */
54
+ appendTo ? : HTMLElement|string
55
+ /**
56
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
57
+ * into an element which will be linked using the `aria-describedby` attribute.
58
+ * ...
59
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ariaDescription)
60
+ */
61
+ ariaDescription ? : string
62
+ /**
63
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
64
+ * the `aria-label` attribute.
65
+ * ...
66
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ariaLabel)
67
+ */
68
+ ariaLabel ? : string
69
+ /**
70
+ * Update assigned [record](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#config-record) automatically on field changes
71
+ */
72
+ autoUpdateRecord ? : boolean
73
+ /**
74
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
75
+ * hierarchy when triggered.
76
+ * ...
77
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-bubbleEvents)
78
+ */
79
+ bubbleEvents ? : object
80
+ /**
81
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
82
+ * ...
83
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-callOnFunctions)
84
+ */
85
+ callOnFunctions ? : boolean
86
+ /**
87
+ * Optional predicate that returns whether a given filter can be deleted. When `canDeleteFilter` is provided,
88
+ * it will be called for each filter and will not show the delete button for those for which the
89
+ * function returns `false`.
90
+ * @param {any} filter filter for checking
91
+ * @returns {boolean} truthy value if filter can be deleted
92
+ */
93
+ canDeleteFilter ? : (filter: any) => boolean
94
+ /**
95
+ * Optional predicate that returns whether a given filter can be managed by this widget. When `canManageFilter`
96
+ * is provided, it will be used to decide whether to display filters found in the configured
97
+ * [store](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-store).
98
+ * @param {any} filter filter for checking
99
+ * @returns {boolean} truthy value if filter can be managed
100
+ */
101
+ canManageFilter ? : (filter: any) => boolean
102
+ /**
103
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
104
+ * application state is undefined. Code which follows the event handler will *not* be executed.
105
+ * ...
106
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-catchEventHandlerExceptions)
107
+ */
108
+ catchEventHandlerExceptions ? : boolean
109
+ /**
110
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
111
+ * Set to `true` to centre the Widget in browser viewport space.
112
+ */
113
+ centered ? : boolean
114
+ /**
115
+ * Custom CSS classes to add to element.
116
+ * May be specified as a space separated string, or as an object in which property names
117
+ * with truthy values are used as the class names:
118
+ * ...
119
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-cls)
120
+ */
121
+ cls ? : string|object
122
+ /**
123
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
124
+ * `style` block.
125
+ * ...
126
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-color)
127
+ */
128
+ color ? : string
129
+ /**
130
+ * Programmatic control over which column to start in when used in a grid layout.
131
+ */
132
+ column ? : number
133
+ config ? : object
134
+ /**
135
+ * *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).*
136
+ * Element, Widget or Rectangle to which this Widget is constrained.
137
+ */
138
+ constrainTo ? : HTMLElement|Widget|Rectangle
139
+ /**
140
+ * The HTML content that coexists with sibling elements which may have been added to the
141
+ * [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.
142
+ * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-htmlCls)
143
+ * class added to its classList, to allow targeted styling.
144
+ */
145
+ content ? : string
146
+ /**
147
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
148
+ * May be specified as a space separated string, or as an object in which property names
149
+ * with truthy values are used as the class names:
150
+ * ...
151
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-contentElementCls)
152
+ */
153
+ contentElementCls ? : string|object
154
+ /**
155
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
156
+ * field on the expanded record to use for populating this widget's store (if applicable)
157
+ */
158
+ dataField ? : string
159
+ /**
160
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
161
+ */
162
+ dataset ? : Record<string, string>
163
+ /**
164
+ * The date format string used to display dates when using the 'is one of' / 'is not one of' operators with a date
165
+ * field. Defaults to the current locale's `FieldFilterPicker.dateFormat` value.
166
+ */
167
+ dateFormat ? : string
168
+ /**
169
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
170
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
171
+ */
172
+ defaultBindProperty ? : string
173
+ /**
174
+ * A [query](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
175
+ * focus should be directed by default.
176
+ * ...
177
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-defaultFocus)
178
+ * @param {Core.widget.Widget} widget Widget passed to method
179
+ * @returns {boolean} truthy value if widget is the default one
180
+ */
181
+ defaultFocus ? : ((widget: Widget) => boolean)|string
182
+ /**
183
+ * A config object containing default settings to apply to all child widgets.
184
+ */
185
+ defaults ? : ContainerItemConfig
186
+ /**
187
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
188
+ * ...
189
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-detectCSSCompatibilityIssues)
190
+ */
191
+ detectCSSCompatibilityIssues ? : boolean
192
+ /**
193
+ * Whether the picker group is disabled.
194
+ */
195
+ disabled ? : boolean
196
+ /**
197
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel)
198
+ * [strips collection](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
199
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
200
+ * body. Such widgets are called "edge strips".
201
+ * ...
202
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-dock)
203
+ */
204
+ dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
205
+ /**
206
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
207
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
208
+ * property which controls when a drag should start.
209
+ * ...
210
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-draggable)
211
+ */
212
+ draggable ? : boolean|{
213
+ handleSelector?: string
214
+ }
215
+ /**
216
+ * An object specifying attributes to assign to the root element of this widget.
217
+ * Set `null` value to attribute to remove it.
218
+ * ...
219
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-elementAttributes)
220
+ */
221
+ elementAttributes ? : Record<string, string|null>
222
+ /**
223
+ * Pass field names to not be displayed in the `property` dropdown.
224
+ * In most cases this should include the `{TaskBoard.columnField}`.
225
+ */
226
+ excludeFields ? : string[]
227
+ extraData ? : any
228
+ /**
229
+ * Dictionary of [FieldOption](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker#typedef-FieldOption) representing the fields against which filters can be defined,
230
+ * keyed by field name.
231
+ * ...
232
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-fields)
233
+ */
234
+ fields ? : Record<string, FieldOption>
235
+ /**
236
+ * Array of [CollectionFilter](https://bryntum.com/products/taskboard/docs/api/Core/util/CollectionFilter) configuration objects. One
237
+ * [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) will be created
238
+ * for each object in the array.
239
+ * ...
240
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-filters)
241
+ */
242
+ filters ? : CollectionFilterConfig[]
243
+ /**
244
+ * 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
245
+ * flexbox layout. This config allows you to set this widget's
246
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
247
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
248
+ * numeric-only values are interpreted as the `flex-grow` value.
249
+ */
250
+ flex ? : number|string
251
+ /**
252
+ * Set to `true` to move the widget out of the document flow and position it
253
+ * absolutely in browser viewport space.
254
+ */
255
+ floating ? : boolean
256
+ /**
257
+ * Optional function that returns [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) configuration properties for
258
+ * a given filter. When `getFieldFilterPickerConfig` is provided, it will be called for each filter and the returned
259
+ * object will be merged with the configuration properties for the individual
260
+ * [FieldFilterPicker](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker) representing that filter.
261
+ * ...
262
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-getFieldFilterPickerConfig)
263
+ * @param {CollectionFilterConfig} filter The filter to be displayed in the FieldFilterPicker being configured
264
+ * @returns {FieldFilterPickerConfig}
265
+ */
266
+ getFieldFilterPickerConfig ? : (filter: CollectionFilterConfig) => FieldFilterPickerConfig
267
+ /**
268
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
269
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
270
+ * cases this config is convenient.
271
+ */
272
+ height ? : string|number
273
+ /**
274
+ * Configure with true to make widget initially hidden.
275
+ */
276
+ hidden ? : boolean
277
+ /**
278
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
279
+ * ...
280
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-hideAnimation)
281
+ */
282
+ hideAnimation ? : boolean|object
283
+ /**
284
+ * Specify `true` to make this container hide when it has no visible children (Either empty
285
+ * or all children hidden).
286
+ * ...
287
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-hideWhenEmpty)
288
+ */
289
+ hideWhenEmpty ? : boolean
290
+ /**
291
+ * The HTML to display initially or a function returning the markup (called at widget construction time).
292
+ * ...
293
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-html)
294
+ * @param {Core.widget.Widget} widget The calling Widget
295
+ * @returns {string}
296
+ */
297
+ html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig
298
+ /**
299
+ * The CSS class(es) to add when HTML content is being applied to this widget.
300
+ */
301
+ htmlCls ? : string|object
302
+ /**
303
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
304
+ */
305
+ id ? : string
306
+ /**
307
+ * Determines if the widgets read-only state should be controlled by its parent.
308
+ * ...
309
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ignoreParentReadOnly)
310
+ */
311
+ ignoreParentReadOnly ? : boolean
312
+ /**
313
+ * Convenience setting to align input fields of child widgets. By default, the Field input element is
314
+ * placed immediately following the `label`. If you prefer to have all input fields aligned to the
315
+ * right, set this config to `'end'`.
316
+ * ...
317
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-inputFieldAlign)
318
+ */
319
+ inputFieldAlign ? : 'start'|'end'
320
+ /**
321
+ * 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.
322
+ */
323
+ insertBefore ? : HTMLElement|string
324
+ /**
325
+ * 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.
326
+ */
327
+ insertFirst ? : HTMLElement|string
328
+ /**
329
+ * An optional CSS class to add to child items of this container.
330
+ */
331
+ itemCls ? : string
332
+ /**
333
+ * An object containing typed child widget config objects or Widgets. May also be specified
334
+ * as an array.
335
+ * ...
336
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-items)
337
+ */
338
+ items ? : Record<string, ContainerItemConfig|MenuItemEntry>|(ContainerItemConfig|MenuItemEntry|Widget)[]
339
+ /**
340
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
341
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
342
+ * are the name of the instance method to call when the keystroke is received.
343
+ * ...
344
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-keyMap)
345
+ */
346
+ keyMap ? : Record<string, KeyMapConfig>
347
+ /**
348
+ * Convenience setting to use same label placement on all child widgets.
349
+ * ...
350
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-labelPosition)
351
+ */
352
+ labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
353
+ /**
354
+ * The short name of a helper class which manages rendering and styling of child items.
355
+ * ...
356
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-layout)
357
+ */
358
+ layout ? : string|ContainerLayoutConfig
359
+ /**
360
+ * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
361
+ * ...
362
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-layoutStyle)
363
+ */
364
+ layoutStyle ? : object
365
+ /**
366
+ * 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
367
+ * instances only when this Container is rendered, rather than eagerly at construct time.
368
+ * ...
369
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-lazyItems)
370
+ */
371
+ lazyItems ? : Record<string, ContainerItemConfig>|ContainerItemConfig[]|Widget[]
372
+ /**
373
+ * When `limitToProperty` is set to the name of an available field (as specified either
374
+ * explicitly in [fields](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-fields) or implicitly in the
375
+ * [store](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPickerGroup#config-store)'s model), it has the following effects:
376
+ * ...
377
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-limitToProperty)
378
+ */
379
+ limitToProperty ? : string
380
+ /**
381
+ * The listener set for this object.
382
+ * ...
383
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-listeners)
384
+ */
385
+ listeners ? : TaskBoardFieldFilterPickerGroupListeners
386
+ /**
387
+ * A class translations of which are used for translating this entity.
388
+ * This is often used when translations of an item are defined on its container class.
389
+ * For example:
390
+ * ...
391
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-localeClass)
392
+ */
393
+ localeClass ? : typeof Base
394
+ /**
395
+ * Set to `false` to disable localization of this object.
396
+ */
397
+ localizable ? : boolean
398
+ /**
399
+ * List of properties which values should be translated automatically upon a locale applying.
400
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
401
+ * you could use 'localeKey' meta configuration.
402
+ * Example:
403
+ * ...
404
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-localizableProperties)
405
+ */
406
+ localizableProperties ? : string[]
407
+ /**
408
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
409
+ * numeric-only values are interpreted as pixels.
410
+ */
411
+ margin ? : number|string
412
+ /**
413
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) created for the
414
+ * [masked](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
415
+ * values.
416
+ */
417
+ maskDefaults ? : MaskConfig
418
+ /**
419
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
420
+ * [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) config object.
421
+ */
422
+ masked ? : boolean|string|MaskConfig
423
+ /**
424
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
425
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
426
+ */
427
+ maxHeight ? : string|number
428
+ /**
429
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
430
+ * ...
431
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-maximizeOnMobile)
432
+ */
433
+ maximizeOnMobile ? : number|string
434
+ /**
435
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
436
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
437
+ */
438
+ maxWidth ? : string|number
439
+ /**
440
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
441
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
442
+ */
443
+ minHeight ? : string|number
444
+ /**
445
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
446
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
447
+ */
448
+ minWidth ? : string|number
449
+ /**
450
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
451
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
452
+ * layout.
453
+ * ...
454
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-monitorResize)
455
+ */
456
+ monitorResize ? : boolean|{
457
+ immediate?: boolean
458
+ }
459
+ /**
460
+ * 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)
461
+ * config. For example, a specialized [Menu](https://bryntum.com/products/taskboard/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
462
+ * value defined like this:
463
+ * ...
464
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-namedItems)
465
+ */
466
+ namedItems ? : Record<string, ContainerItemConfig>
467
+ /**
468
+ * When specified, overrides the built-in list of available operators. See
469
+ * [operators](https://bryntum.com/products/taskboard/docs/api/Core/widget/FieldFilterPicker#config-operators).
470
+ */
471
+ operators ? : object
472
+ /**
473
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
474
+ * [items](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
475
+ * the owner is <strong>always</strong> the encapsulating Container.
476
+ * ...
477
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-owner)
478
+ */
479
+ owner ? : Widget|any
480
+ /**
481
+ * 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
482
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
483
+ * widget's [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
484
+ * ...
485
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-positioned)
486
+ */
487
+ positioned ? : boolean
488
+ /**
489
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
490
+ * menu on click etc, since the tooltip would be displayed at the same time.
491
+ */
492
+ preventTooltipOnTouch ? : boolean
493
+ /**
494
+ * Whether the picker group is read-only.
495
+ * ...
496
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-readOnly)
497
+ */
498
+ readOnly ? : boolean
499
+ /**
500
+ * [Record](https://bryntum.com/products/taskboard/docs/api/Core/data/Model) whose values will be used to populate fields in the container.
501
+ * ...
502
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-record)
503
+ */
504
+ record ? : Model
505
+ relayStoreEvents ? : boolean
506
+ /**
507
+ * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
508
+ * `type`.
509
+ * ...
510
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-rendition)
511
+ */
512
+ rendition ? : string|Record<string, string>|null
513
+ /**
514
+ * Configure as `true` to have the component display a translucent ripple when its
515
+ * [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
516
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
517
+ * ...
518
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ripple)
519
+ */
520
+ ripple ? : boolean|{
521
+ delegate?: string
522
+ color?: string
523
+ radius?: number
524
+ clip?: string
525
+ }
526
+ /**
527
+ * 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`
528
+ */
529
+ rootElement ? : ShadowRoot|HTMLElement
530
+ /**
531
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
532
+ * ...
533
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-rtl)
534
+ */
535
+ rtl ? : boolean
536
+ /**
537
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
538
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
539
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
540
+ * CSS overflow properties thus:
541
+ * ...
542
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-scrollable)
543
+ */
544
+ scrollable ? : boolean|ScrollerConfig|Scroller
545
+ /**
546
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
547
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
548
+ */
549
+ scrollAction ? : 'hide'|'realign'|null
550
+ /**
551
+ * Show a button at the bottom of the group that adds a new, blank filter to the group.
552
+ */
553
+ showAddFilterButton ? : boolean
554
+ /**
555
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
556
+ * ...
557
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-showAnimation)
558
+ */
559
+ showAnimation ? : boolean|object
560
+ /**
561
+ * 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)
562
+ */
563
+ showTooltipWhenDisabled ? : boolean
564
+ /**
565
+ * Programmatic control over how many columns to span when used in a grid layout.
566
+ */
567
+ span ? : number
568
+ /**
569
+ * 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)
570
+ * will be used to determine field types.
571
+ * ...
572
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-store)
573
+ */
574
+ store ? : Store
575
+ /**
576
+ * 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),
577
+ * without falling back to `ref`.
578
+ */
579
+ strictRecordMapping ? : boolean
580
+ /**
581
+ * 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
582
+ * [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
583
+ * this widget:
584
+ * ...
585
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tab)
586
+ */
587
+ tab ? : boolean|TabConfig
588
+ /**
589
+ * When this container is used as a tab in a TabPanel, these items are added to the
590
+ * [TabBar](https://bryntum.com/products/taskboard/docs/api/Core/widget/TabBar) when this container is the active tab.
591
+ * ...
592
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tabBarItems)
593
+ */
594
+ tabBarItems ? : ToolbarItems[]|Widget[]
595
+ /**
596
+ * The tag name of this Widget's root element
597
+ */
598
+ tag ? : string
599
+ /**
600
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
601
+ * ...
602
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-textAlign)
603
+ */
604
+ textAlign ? : 'left'|'center'|'right'|'start'|'end'
605
+ /**
606
+ * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`
607
+ * which specifies a default max-width that makes long text more readable.
608
+ * ...
609
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-textContent)
610
+ */
611
+ textContent ? : boolean
612
+ /**
613
+ * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)
614
+ */
615
+ title ? : string
616
+ /**
617
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
618
+ * ...
619
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-tooltip)
620
+ */
621
+ tooltip ? : string|TooltipConfig|null
622
+ /**
623
+ * 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`,
624
+ * [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
625
+ * occurs, for example on field blur.
626
+ */
627
+ triggerChangeOnInput ? : boolean
628
+ type ? : 'taskboardfieldfilterpickergroup'
629
+ /**
630
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
631
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
632
+ * values are used as the class names.
633
+ * ...
634
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-ui)
635
+ */
636
+ ui ? : string|object
637
+ /**
638
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container).
639
+ * Higher weights go further down.
640
+ */
641
+ weight ? : number
642
+ /**
643
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
644
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
645
+ * this config is convenient.
646
+ */
647
+ width ? : string|number
648
+ /**
649
+ * The x position for the widget.
650
+ * ...
651
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-x)
652
+ */
653
+ x ? : number
654
+ /**
655
+ * The y position for the widget.
656
+ * ...
657
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#config-y)
658
+ */
659
+ y ? : number
660
+
661
+ }
662
+
663
+ @Component({
664
+ selector : 'bryntum-task-board-field-filter-picker-group',
665
+ template : ''
666
+ })
667
+ export class BryntumTaskBoardFieldFilterPickerGroupComponent implements OnInit, OnDestroy {
668
+
669
+ public static instanceClass = TaskBoardFieldFilterPickerGroup;
670
+
671
+ public static instanceName = 'TaskBoardFieldFilterPickerGroup';
672
+
673
+ private static bryntumEvents: string[] = [
674
+ 'onBeforeAddFilter',
675
+ 'onBeforeDestroy',
676
+ 'onBeforeHide',
677
+ 'onBeforeSetRecord',
678
+ 'onBeforeShow',
679
+ 'onCatchAll',
680
+ 'onChange',
681
+ 'onDestroy',
682
+ 'onDirtyStateChange',
683
+ 'onElementCreated',
684
+ 'onFocusIn',
685
+ 'onFocusOut',
686
+ 'onHide',
687
+ 'onPaint',
688
+ 'onReadOnly',
689
+ 'onRecompose',
690
+ 'onResize',
691
+ 'onShow'
692
+ ];
693
+
694
+ private static bryntumFeatureNames: string[] = [
695
+
696
+ ];
697
+
698
+ private static bryntumConfigs: string[] = BryntumTaskBoardFieldFilterPickerGroupComponent.bryntumFeatureNames.concat([
699
+ 'addFilterButtonText',
700
+ 'adopt',
701
+ 'align',
702
+ 'alignSelf',
703
+ 'allowedFieldNames',
704
+ 'anchor',
705
+ 'appendTo',
706
+ 'ariaDescription',
707
+ 'ariaLabel',
708
+ 'autoUpdateRecord',
709
+ 'bubbleEvents',
710
+ 'callOnFunctions',
711
+ 'canDeleteFilter',
712
+ 'canManageFilter',
713
+ 'catchEventHandlerExceptions',
714
+ 'centered',
715
+ 'cls',
716
+ 'color',
717
+ 'column',
718
+ 'config',
719
+ 'constrainTo',
720
+ 'content',
721
+ 'contentElementCls',
722
+ 'dataField',
723
+ 'dataset',
724
+ 'dateFormat',
725
+ 'defaultBindProperty',
726
+ 'defaultFocus',
727
+ 'defaults',
728
+ 'detectCSSCompatibilityIssues',
729
+ 'disabled',
730
+ 'dock',
731
+ 'draggable',
732
+ 'elementAttributes',
733
+ 'excludeFields',
734
+ 'extraData',
735
+ 'fields',
736
+ 'filters',
737
+ 'flex',
738
+ 'floating',
739
+ 'getFieldFilterPickerConfig',
740
+ 'height',
741
+ 'hidden',
742
+ 'hideAnimation',
743
+ 'hideWhenEmpty',
744
+ 'html',
745
+ 'htmlCls',
746
+ 'id',
747
+ 'ignoreParentReadOnly',
748
+ 'inputFieldAlign',
749
+ 'insertBefore',
750
+ 'insertFirst',
751
+ 'itemCls',
752
+ 'items',
753
+ 'keyMap',
754
+ 'labelPosition',
755
+ 'layout',
756
+ 'layoutStyle',
757
+ 'lazyItems',
758
+ 'limitToProperty',
759
+ 'listeners',
760
+ 'localeClass',
761
+ 'localizable',
762
+ 'localizableProperties',
763
+ 'margin',
764
+ 'maskDefaults',
765
+ 'masked',
766
+ 'maxHeight',
767
+ 'maximizeOnMobile',
768
+ 'maxWidth',
769
+ 'minHeight',
770
+ 'minWidth',
771
+ 'monitorResize',
772
+ 'namedItems',
773
+ 'operators',
774
+ 'owner',
775
+ 'positioned',
776
+ 'preventTooltipOnTouch',
777
+ 'readOnly',
778
+ 'record',
779
+ 'relayStoreEvents',
780
+ 'rendition',
781
+ 'ripple',
782
+ 'rootElement',
783
+ 'rtl',
784
+ 'scrollable',
785
+ 'scrollAction',
786
+ 'showAddFilterButton',
787
+ 'showAnimation',
788
+ 'showTooltipWhenDisabled',
789
+ 'span',
790
+ 'store',
791
+ 'strictRecordMapping',
792
+ 'tab',
793
+ 'tabBarItems',
794
+ 'tag',
795
+ 'textAlign',
796
+ 'textContent',
797
+ 'title',
798
+ 'tooltip',
799
+ 'triggerChangeOnInput',
800
+ 'type',
801
+ 'ui',
802
+ 'weight',
803
+ 'width',
804
+ 'x',
805
+ 'y'
806
+ ]);
807
+
808
+ private static bryntumConfigsOnly: string[] = [
809
+ 'addFilterButtonText',
810
+ 'adopt',
811
+ 'align',
812
+ 'allowedFieldNames',
813
+ 'anchor',
814
+ 'ariaDescription',
815
+ 'ariaLabel',
816
+ 'autoUpdateRecord',
817
+ 'bubbleEvents',
818
+ 'canDeleteFilter',
819
+ 'canManageFilter',
820
+ 'centered',
821
+ 'color',
822
+ 'config',
823
+ 'constrainTo',
824
+ 'contentElementCls',
825
+ 'dataField',
826
+ 'dateFormat',
827
+ 'defaultBindProperty',
828
+ 'defaultFocus',
829
+ 'defaults',
830
+ 'detectCSSCompatibilityIssues',
831
+ 'dock',
832
+ 'draggable',
833
+ 'elementAttributes',
834
+ 'excludeFields',
835
+ 'fields',
836
+ 'filters',
837
+ 'floating',
838
+ 'getFieldFilterPickerConfig',
839
+ 'hideAnimation',
840
+ 'hideWhenEmpty',
841
+ 'htmlCls',
842
+ 'ignoreParentReadOnly',
843
+ 'itemCls',
844
+ 'lazyItems',
845
+ 'limitToProperty',
846
+ 'listeners',
847
+ 'localeClass',
848
+ 'localizable',
849
+ 'localizableProperties',
850
+ 'maskDefaults',
851
+ 'masked',
852
+ 'monitorResize',
853
+ 'namedItems',
854
+ 'operators',
855
+ 'owner',
856
+ 'positioned',
857
+ 'preventTooltipOnTouch',
858
+ 'relayStoreEvents',
859
+ 'ripple',
860
+ 'rootElement',
861
+ 'scrollAction',
862
+ 'showAddFilterButton',
863
+ 'showAnimation',
864
+ 'showTooltipWhenDisabled',
865
+ 'store',
866
+ 'tab',
867
+ 'tabBarItems',
868
+ 'tag',
869
+ 'textAlign',
870
+ 'textContent',
871
+ 'title',
872
+ 'triggerChangeOnInput',
873
+ 'type',
874
+ 'ui',
875
+ 'weight'
876
+ ];
877
+
878
+ private static bryntumProps: string[] = BryntumTaskBoardFieldFilterPickerGroupComponent.bryntumFeatureNames.concat([
879
+ 'alignSelf',
880
+ 'anchorSize',
881
+ 'appendTo',
882
+ 'callOnFunctions',
883
+ 'catchEventHandlerExceptions',
884
+ 'cls',
885
+ 'column',
886
+ 'content',
887
+ 'dataset',
888
+ 'disabled',
889
+ 'extraData',
890
+ 'flex',
891
+ 'focusVisible',
892
+ 'hasChanges',
893
+ 'height',
894
+ 'hidden',
895
+ 'html',
896
+ 'id',
897
+ 'inputFieldAlign',
898
+ 'insertBefore',
899
+ 'insertFirst',
900
+ 'isSettingValues',
901
+ 'isValid',
902
+ 'items',
903
+ 'keyMap',
904
+ 'labelPosition',
905
+ 'layout',
906
+ 'layoutStyle',
907
+ 'margin',
908
+ 'maxHeight',
909
+ 'maximizeOnMobile',
910
+ 'maxWidth',
911
+ 'minHeight',
912
+ 'minWidth',
913
+ 'parent',
914
+ 'readOnly',
915
+ 'record',
916
+ 'rendition',
917
+ 'rtl',
918
+ 'scrollable',
919
+ 'span',
920
+ 'strictRecordMapping',
921
+ 'tooltip',
922
+ 'value',
923
+ 'values',
924
+ 'width',
925
+ 'x',
926
+ 'y'
927
+ ]);
928
+
929
+ private elementRef: ElementRef;
930
+ public instance!: TaskBoardFieldFilterPickerGroup;
931
+
932
+ private bryntumConfig = {
933
+ adopt : undefined,
934
+ appendTo : undefined,
935
+ href : undefined,
936
+ angularComponent : this,
937
+ features : {},
938
+ listeners : {}
939
+ };
940
+
941
+ constructor(element: ElementRef) {
942
+ this.elementRef = element;
943
+ }
944
+
945
+ // Configs only
946
+ @Input() addFilterButtonText ! : string;
947
+ @Input() adopt ! : HTMLElement|string;
948
+ @Input() align ! : AlignSpec|string;
949
+ @Input() allowedFieldNames ! : string[];
950
+ @Input() anchor ! : boolean;
951
+ @Input() ariaDescription ! : string;
952
+ @Input() ariaLabel ! : string;
953
+ @Input() autoUpdateRecord ! : boolean;
954
+ @Input() bubbleEvents ! : object;
955
+ @Input() canDeleteFilter ! : (filter: any) => boolean;
956
+ @Input() canManageFilter ! : (filter: any) => boolean;
957
+ @Input() centered ! : boolean;
958
+ @Input() color ! : string;
959
+ @Input() config ! : object;
960
+ @Input() constrainTo ! : HTMLElement|Widget|Rectangle;
961
+ @Input() contentElementCls ! : string|object;
962
+ @Input() dataField ! : string;
963
+ @Input() dateFormat ! : string;
964
+ @Input() defaultBindProperty ! : string;
965
+ @Input() defaultFocus ! : ((widget: Widget) => boolean)|string;
966
+ @Input() defaults ! : ContainerItemConfig;
967
+ @Input() detectCSSCompatibilityIssues ! : boolean;
968
+ @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;
969
+ @Input() draggable ! : boolean|{
970
+ handleSelector?: string
971
+ };
972
+ @Input() elementAttributes ! : Record<string, string|null>;
973
+ @Input() excludeFields ! : string[];
974
+ @Input() fields ! : Record<string, FieldOption>;
975
+ @Input() filters ! : CollectionFilterConfig[];
976
+ @Input() floating ! : boolean;
977
+ @Input() getFieldFilterPickerConfig ! : (filter: CollectionFilterConfig) => FieldFilterPickerConfig;
978
+ @Input() hideAnimation ! : boolean|object;
979
+ @Input() hideWhenEmpty ! : boolean;
980
+ @Input() htmlCls ! : string|object;
981
+ @Input() ignoreParentReadOnly ! : boolean;
982
+ @Input() itemCls ! : string;
983
+ @Input() lazyItems ! : Record<string, ContainerItemConfig>|ContainerItemConfig[]|Widget[];
984
+ @Input() limitToProperty ! : string;
985
+ @Input() listeners ! : TaskBoardFieldFilterPickerGroupListeners;
986
+ @Input() localeClass ! : typeof Base;
987
+ @Input() localizable ! : boolean;
988
+ @Input() localizableProperties ! : string[];
989
+ @Input() maskDefaults ! : MaskConfig;
990
+ @Input() masked ! : boolean|string|MaskConfig;
991
+ @Input() monitorResize ! : boolean|{
992
+ immediate?: boolean
993
+ };
994
+ @Input() namedItems ! : Record<string, ContainerItemConfig>;
995
+ @Input() operators ! : object;
996
+ @Input() owner ! : Widget|any;
997
+ @Input() positioned ! : boolean;
998
+ @Input() preventTooltipOnTouch ! : boolean;
999
+ @Input() relayStoreEvents ! : boolean;
1000
+ @Input() ripple ! : boolean|{
1001
+ delegate?: string
1002
+ color?: string
1003
+ radius?: number
1004
+ clip?: string
1005
+ };
1006
+ @Input() rootElement ! : ShadowRoot|HTMLElement;
1007
+ @Input() scrollAction ! : 'hide'|'realign'|null;
1008
+ @Input() showAddFilterButton ! : boolean;
1009
+ @Input() showAnimation ! : boolean|object;
1010
+ @Input() showTooltipWhenDisabled ! : boolean;
1011
+ @Input() store ! : Store;
1012
+ @Input() tab ! : boolean|TabConfig;
1013
+ @Input() tabBarItems ! : ToolbarItems[]|Widget[];
1014
+ @Input() tag ! : string;
1015
+ @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';
1016
+ @Input() textContent ! : boolean;
1017
+ @Input() title ! : string;
1018
+ @Input() triggerChangeOnInput ! : boolean;
1019
+ @Input() type ! : 'taskboardfieldfilterpickergroup';
1020
+ @Input() ui ! : string|object;
1021
+ @Input() weight ! : number;
1022
+
1023
+ // Configs and properties
1024
+ @Input() alignSelf ! : string;
1025
+ @Input() appendTo ! : HTMLElement|string;
1026
+ @Input() callOnFunctions ! : boolean;
1027
+ @Input() catchEventHandlerExceptions ! : boolean;
1028
+ @Input() cls ! : string|object;
1029
+ @Input() column ! : number;
1030
+ @Input() content ! : string;
1031
+ @Input() dataset ! : object|Record<string, string>;
1032
+ @Input() disabled ! : boolean|'inert';
1033
+ @Input() extraData ! : any;
1034
+ @Input() flex ! : number|string;
1035
+ @Input() height ! : number|string;
1036
+ @Input() hidden ! : boolean;
1037
+ @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;
1038
+ @Input() id ! : string;
1039
+ @Input() inputFieldAlign ! : 'start'|'end';
1040
+ @Input() insertBefore ! : HTMLElement|string;
1041
+ @Input() insertFirst ! : HTMLElement|string;
1042
+ @Input() items ! : (ContainerItemConfig|MenuItemConfig|Widget)[]|Record<string, ContainerItemConfig|MenuItemConfig>|Widget[]|Record<string, ContainerItemConfig|MenuItemEntry>|(ContainerItemConfig|MenuItemEntry|Widget)[];
1043
+ @Input() keyMap ! : Record<string, KeyMapConfig>;
1044
+ @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;
1045
+ @Input() layout ! : Layout|string|ContainerLayoutConfig;
1046
+ @Input() layoutStyle ! : object;
1047
+ @Input() margin ! : number|string;
1048
+ @Input() maxHeight ! : string|number;
1049
+ @Input() maximizeOnMobile ! : number|string;
1050
+ @Input() maxWidth ! : string|number;
1051
+ @Input() minHeight ! : string|number;
1052
+ @Input() minWidth ! : string|number;
1053
+ @Input() readOnly ! : boolean;
1054
+ @Input() record ! : Model;
1055
+ @Input() rendition ! : string|Record<string, string>|null;
1056
+ @Input() rtl ! : boolean;
1057
+ @Input() scrollable ! : Scroller|boolean|ScrollerConfig;
1058
+ @Input() span ! : number;
1059
+ @Input() strictRecordMapping ! : boolean;
1060
+ @Input() tooltip ! : string|TooltipConfig|null;
1061
+ @Input() width ! : number|string;
1062
+ @Input() x ! : number;
1063
+ @Input() y ! : number;
1064
+
1065
+ // Properties only
1066
+ @Input() anchorSize ! : number[];
1067
+ @Input() focusVisible ! : boolean;
1068
+ @Input() hasChanges ! : boolean;
1069
+ @Input() isSettingValues ! : boolean;
1070
+ @Input() isValid ! : boolean;
1071
+ @Input() parent ! : Widget;
1072
+ @Input() value ! : CollectionFilterConfig[];
1073
+ @Input() values ! : Record<string, object>;
1074
+
1075
+ // Events emitters
1076
+ /**
1077
+ * Fires before a new filter is added to the picker group (and its store, if configured and the filter is valid).
1078
+ * Return `false` from the event handler to prevent the filter being added.
1079
+ * @param {object} event Event object
1080
+ * @param {Core.widget.FieldFilterPicker} event.source The FieldFilterPicker instance that fired the event.
1081
+ * @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).
1082
+ */
1083
+ @Output() onBeforeAddFilter: any = new EventEmitter<((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => Promise<boolean>|boolean|void)|string>();
1084
+ /**
1085
+ * Fires before an object is destroyed.
1086
+ * @param {object} event Event object
1087
+ * @param {Core.Base} event.source The Object that is being destroyed.
1088
+ */
1089
+ @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();
1090
+ /**
1091
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
1092
+ * @param {object} event Event object
1093
+ * @param {Core.widget.Widget} event.source The widget being hidden.
1094
+ */
1095
+ @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();
1096
+ /**
1097
+ * Fired before this container will load record values into its child fields. This is useful if you
1098
+ * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
1099
+ * @param {object} event Event object
1100
+ * @param {Core.widget.Container} event.source The container
1101
+ * @param {Core.data.Model} event.record The record
1102
+ */
1103
+ @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();
1104
+ /**
1105
+ * Triggered before a widget is shown. Return `false` to prevent the action.
1106
+ * @param {object} event Event object
1107
+ * @param {Core.widget.Widget,any} event.source The widget being shown
1108
+ */
1109
+ @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();
1110
+ /**
1111
+ * Fires when any other event is fired from the object.
1112
+ * ...
1113
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#event-catchAll)
1114
+ * @param {object} event Event object
1115
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
1116
+ * @param {string} event.event.type The type of the event which is caught by the listener
1117
+ */
1118
+ @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();
1119
+ /**
1120
+ * Fires when any filter in the group is added, removed, or modified.
1121
+ * @param {object} event Event object
1122
+ * @param {Core.widget.FieldFilterPickerGroup} event.source The FieldFilterPickerGroup instance that fired the event.
1123
+ * @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.
1124
+ * @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.
1125
+ */
1126
+ @Output() onChange: any = new EventEmitter<((event: { source: FieldFilterPickerGroup, filters: CollectionFilterConfig[], validFilters: CollectionFilterConfig[] }) => void)|string>();
1127
+ /**
1128
+ * Fires when an object is destroyed.
1129
+ * @param {object} event Event object
1130
+ * @param {Core.Base} event.source The Object that is being destroyed.
1131
+ */
1132
+ @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();
1133
+ /**
1134
+ * 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
1135
+ * @param {object} event Event object
1136
+ * @param {Core.widget.Container} event.source The container.
1137
+ * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
1138
+ */
1139
+ @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();
1140
+ /**
1141
+ * Triggered when a widget's [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element) is available.
1142
+ * @param {object} event Event object
1143
+ * @param {HTMLElement} event.element The Widget's element.
1144
+ */
1145
+ @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();
1146
+ /**
1147
+ * Fired when focus enters this Widget.
1148
+ * @param {object} event Event object
1149
+ * @param {Core.widget.Widget} event.source This Widget
1150
+ * @param {HTMLElement} event.fromElement The element which lost focus.
1151
+ * @param {HTMLElement} event.toElement The element which gained focus.
1152
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
1153
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
1154
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
1155
+ */
1156
+ @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();
1157
+ /**
1158
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
1159
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
1160
+ * will not trigger this event. This is when focus exits this widget completely.
1161
+ * @param {object} event Event object
1162
+ * @param {Core.widget.Widget} event.source This Widget
1163
+ * @param {HTMLElement} event.fromElement The element which lost focus.
1164
+ * @param {HTMLElement} event.toElement The element which gained focus.
1165
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
1166
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
1167
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
1168
+ */
1169
+ @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();
1170
+ /**
1171
+ * Triggered after a widget was hidden
1172
+ * @param {object} event Event object
1173
+ * @param {Core.widget.Widget} event.source The widget
1174
+ */
1175
+ @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();
1176
+ /**
1177
+ * Triggered when a widget which had been in a non-visible state for any reason
1178
+ * achieves visibility.
1179
+ * ...
1180
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/TaskBoardFieldFilterPickerGroup#event-paint)
1181
+ * @param {object} event Event object
1182
+ * @param {Core.widget.Widget} event.source The widget being painted.
1183
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
1184
+ */
1185
+ @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();
1186
+ /**
1187
+ * Fired when a Widget's read only state is toggled
1188
+ * @param {object} event Event object
1189
+ * @param {boolean} event.readOnly Read only or not
1190
+ */
1191
+ @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();
1192
+ /**
1193
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
1194
+ * 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.
1195
+ */
1196
+ @Output() onRecompose: any = new EventEmitter<(() => void)|string>();
1197
+ /**
1198
+ * 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`*.
1199
+ * @param {object} event Event object
1200
+ * @param {Core.widget.Widget} event.source This Widget
1201
+ * @param {number} event.width The new width
1202
+ * @param {number} event.height The new height
1203
+ * @param {number} event.oldWidth The old width
1204
+ * @param {number} event.oldHeight The old height
1205
+ */
1206
+ @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();
1207
+ /**
1208
+ * Triggered after a widget is shown.
1209
+ * @param {object} event Event object
1210
+ * @param {Core.widget.Widget} event.source The widget
1211
+ */
1212
+ @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();
1213
+
1214
+ /**
1215
+ * Create and append the underlying widget
1216
+ */
1217
+ ngOnInit(): void {
1218
+ const
1219
+ me = this,
1220
+ {
1221
+ elementRef,
1222
+ bryntumConfig
1223
+ } = me,
1224
+ {
1225
+ instanceClass,
1226
+ instanceName,
1227
+ bryntumConfigs,
1228
+ bryntumEvents
1229
+ } = BryntumTaskBoardFieldFilterPickerGroupComponent;
1230
+
1231
+ bryntumConfigs.filter(prop => prop in this).forEach(prop => {
1232
+ // @ts-ignore
1233
+ WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);
1234
+ if (['features', 'config'].includes(prop)) {
1235
+ WrapperHelper.devWarningConfigProp(instanceName, prop);
1236
+ }
1237
+ });
1238
+ // @ts-ignore
1239
+ bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {
1240
+ const
1241
+ uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),
1242
+ eventName = (str: string) => uncapitalize(str.slice(2));
1243
+
1244
+ // @ts-ignore
1245
+ bryntumConfig.listeners[eventName(event)] = e => {
1246
+ // @ts-ignore
1247
+ me[event].emit(e);
1248
+ // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag
1249
+ // in Angular listeners
1250
+ return e.returnValue;
1251
+ };
1252
+ });
1253
+
1254
+ // If component has no container specified in config then use adopt to Wrapper's element
1255
+ const
1256
+ containerParam = [
1257
+ 'adopt',
1258
+ 'appendTo',
1259
+ 'insertAfter',
1260
+ 'insertBefore'
1261
+ // @ts-ignore
1262
+ ].find(prop => bryntumConfig[prop]);
1263
+ if (!containerParam) {
1264
+ if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {
1265
+ // Button should always be <a> or <button> inside owner element
1266
+ bryntumConfig.appendTo = elementRef.nativeElement;
1267
+ }
1268
+ else {
1269
+ bryntumConfig.adopt = elementRef.nativeElement;
1270
+ }
1271
+ }
1272
+ else {
1273
+ WrapperHelper.devWarningContainer(instanceName, containerParam);
1274
+ }
1275
+
1276
+ // @ts-ignore
1277
+ me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);
1278
+
1279
+ }
1280
+
1281
+ /**
1282
+ * Watch for changes
1283
+ * @param changes
1284
+ */
1285
+ ngOnChanges(changes: SimpleChanges): void {
1286
+ const
1287
+ { instance } = this,
1288
+ { instanceName } = BryntumTaskBoardFieldFilterPickerGroupComponent;
1289
+ if (!instance) {
1290
+ return;
1291
+ }
1292
+ // Iterate over all changes
1293
+ Object.entries(changes).forEach(([prop, change]) => {
1294
+ const
1295
+ newValue = (change as SimpleChange).currentValue,
1296
+ { instance } = this,
1297
+ { bryntumConfigsOnly, bryntumProps } = BryntumTaskBoardFieldFilterPickerGroupComponent;
1298
+ if (bryntumProps.includes(prop)) {
1299
+ WrapperHelper.applyPropValue(instance, prop, newValue, false);
1300
+ if (bryntumConfigsOnly.includes(prop)) {
1301
+ WrapperHelper.devWarningUpdateProp(instanceName, prop);
1302
+ }
1303
+ }
1304
+ });
1305
+ }
1306
+
1307
+ /**
1308
+ * Destroy the component
1309
+ */
1310
+ ngOnDestroy(): void {
1311
+ // @ts-ignore
1312
+ if (this.instance && this.instance.destroy) {
1313
+ this.instance.destroy();
1314
+ }
1315
+ }
1316
+ }