@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,785 @@
1
+ /**
2
+ * Angular wrapper for Bryntum ZoomSlider
3
+ */
4
+ import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
+ import { AlignSpec, Base, DomConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { TaskBoard, ZoomSlider, ZoomSliderListeners } from '@bryntum/taskboard-thin';
7
+ import * as i0 from "@angular/core";
8
+ export declare type BryntumZoomSliderProps = {
9
+ /**
10
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
11
+ * content will be placed inside this element.
12
+ * ...
13
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-adopt)
14
+ */
15
+ adopt?: HTMLElement | string;
16
+ /**
17
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
18
+ * ...
19
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-align)
20
+ */
21
+ align?: AlignSpec | string;
22
+ /**
23
+ * 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
24
+ * flexbox layout. This config allows you to set this widget's
25
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
26
+ */
27
+ alignSelf?: string;
28
+ /**
29
+ * *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).*
30
+ * `true` to show a connector arrow pointing to the align target.
31
+ */
32
+ anchor?: boolean;
33
+ /**
34
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
35
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element).
36
+ */
37
+ appendTo?: HTMLElement | string;
38
+ /**
39
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
40
+ * into an element which will be linked using the `aria-describedby` attribute.
41
+ * ...
42
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-ariaDescription)
43
+ */
44
+ ariaDescription?: string;
45
+ /**
46
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
47
+ * the `aria-label` attribute.
48
+ * ...
49
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-ariaLabel)
50
+ */
51
+ ariaLabel?: string;
52
+ /**
53
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
54
+ * hierarchy when triggered.
55
+ * ...
56
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-bubbleEvents)
57
+ */
58
+ bubbleEvents?: object;
59
+ /**
60
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
61
+ * ...
62
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-callOnFunctions)
63
+ */
64
+ callOnFunctions?: boolean;
65
+ /**
66
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
67
+ * application state is undefined. Code which follows the event handler will *not* be executed.
68
+ * ...
69
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-catchEventHandlerExceptions)
70
+ */
71
+ catchEventHandlerExceptions?: boolean;
72
+ /**
73
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
74
+ * Set to `true` to centre the Widget in browser viewport space.
75
+ */
76
+ centered?: boolean;
77
+ /**
78
+ * Custom CSS classes to add to element.
79
+ * May be specified as a space separated string, or as an object in which property names
80
+ * with truthy values are used as the class names:
81
+ * ...
82
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-cls)
83
+ */
84
+ cls?: string | object;
85
+ /**
86
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
87
+ * `style` block.
88
+ * ...
89
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-color)
90
+ */
91
+ color?: string;
92
+ /**
93
+ * Programmatic control over which column to start in when used in a grid layout.
94
+ */
95
+ column?: number;
96
+ config?: object;
97
+ /**
98
+ * *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).*
99
+ * Element, Widget or Rectangle to which this Widget is constrained.
100
+ */
101
+ constrainTo?: HTMLElement | Widget | Rectangle;
102
+ /**
103
+ * The HTML content that coexists with sibling elements which may have been added to the
104
+ * [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.
105
+ * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-htmlCls)
106
+ * class added to its classList, to allow targeted styling.
107
+ */
108
+ content?: string;
109
+ /**
110
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
111
+ * May be specified as a space separated string, or as an object in which property names
112
+ * with truthy values are used as the class names:
113
+ * ...
114
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-contentElementCls)
115
+ */
116
+ contentElementCls?: string | object;
117
+ /**
118
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
119
+ * field on the expanded record to use for populating this widget's store (if applicable)
120
+ */
121
+ dataField?: string;
122
+ /**
123
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
124
+ */
125
+ dataset?: Record<string, string>;
126
+ /**
127
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
128
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
129
+ */
130
+ defaultBindProperty?: string;
131
+ /**
132
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
133
+ * ...
134
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-detectCSSCompatibilityIssues)
135
+ */
136
+ detectCSSCompatibilityIssues?: boolean;
137
+ /**
138
+ * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
139
+ * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
140
+ * ...
141
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-disabled)
142
+ */
143
+ disabled?: boolean | 'inert';
144
+ /**
145
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel)
146
+ * [strips collection](https://bryntum.com/products/taskboard/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
147
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
148
+ * body. Such widgets are called "edge strips".
149
+ * ...
150
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-dock)
151
+ */
152
+ dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
153
+ /**
154
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
155
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
156
+ * property which controls when a drag should start.
157
+ * ...
158
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-draggable)
159
+ */
160
+ draggable?: boolean | {
161
+ handleSelector?: string;
162
+ };
163
+ /**
164
+ * An object specifying attributes to assign to the root element of this widget.
165
+ * Set `null` value to attribute to remove it.
166
+ * ...
167
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-elementAttributes)
168
+ */
169
+ elementAttributes?: Record<string, string | null>;
170
+ extraData?: any;
171
+ /**
172
+ * 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
173
+ * flexbox layout. This config allows you to set this widget's
174
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
175
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
176
+ * numeric-only values are interpreted as the `flex-grow` value.
177
+ */
178
+ flex?: number | string;
179
+ /**
180
+ * Set to `true` to move the widget out of the document flow and position it
181
+ * absolutely in browser viewport space.
182
+ */
183
+ floating?: boolean;
184
+ /**
185
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
186
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
187
+ * cases this config is convenient.
188
+ */
189
+ height?: string | number;
190
+ /**
191
+ * Configure with true to make widget initially hidden.
192
+ */
193
+ hidden?: boolean;
194
+ /**
195
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
196
+ * ...
197
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-hideAnimation)
198
+ */
199
+ hideAnimation?: boolean | object;
200
+ /**
201
+ * The HTML to display initially or a function returning the markup (called at widget construction time).
202
+ * ...
203
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-html)
204
+ * @param {Core.widget.Widget} widget The calling Widget
205
+ * @returns {string}
206
+ */
207
+ html?: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
208
+ /**
209
+ * The CSS class(es) to add when HTML content is being applied to this widget.
210
+ */
211
+ htmlCls?: string | object;
212
+ /**
213
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
214
+ */
215
+ id?: string;
216
+ /**
217
+ * Determines if the widgets read-only state should be controlled by its parent.
218
+ * ...
219
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-ignoreParentReadOnly)
220
+ */
221
+ ignoreParentReadOnly?: boolean;
222
+ /**
223
+ * 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.
224
+ */
225
+ insertBefore?: HTMLElement | string;
226
+ /**
227
+ * 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.
228
+ */
229
+ insertFirst?: HTMLElement | string;
230
+ /**
231
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
232
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
233
+ * are the name of the instance method to call when the keystroke is received.
234
+ * ...
235
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-keyMap)
236
+ */
237
+ keyMap?: Record<string, KeyMapConfig>;
238
+ /**
239
+ * Label, prepended to field
240
+ */
241
+ label?: string;
242
+ /**
243
+ * CSS class name or class names to add to any configured [label](https://bryntum.com/products/taskboard/docs/api/Core/widget/mixin/Labelable#config-label)
244
+ */
245
+ labelCls?: string | object;
246
+ /**
247
+ * Label position, either 'before' the field or 'above' the field
248
+ * ...
249
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-labelPosition)
250
+ */
251
+ labelPosition?: 'before' | 'above' | null;
252
+ /**
253
+ * The width to apply to the `&lt;label&gt;` element. If a number is specified, `px` will be used.
254
+ */
255
+ labelWidth?: string | number;
256
+ /**
257
+ * The listener set for this object.
258
+ * ...
259
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-listeners)
260
+ */
261
+ listeners?: ZoomSliderListeners;
262
+ /**
263
+ * A class translations of which are used for translating this entity.
264
+ * This is often used when translations of an item are defined on its container class.
265
+ * For example:
266
+ * ...
267
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-localeClass)
268
+ */
269
+ localeClass?: typeof Base;
270
+ /**
271
+ * Set to `false` to disable localization of this object.
272
+ */
273
+ localizable?: boolean;
274
+ /**
275
+ * List of properties which values should be translated automatically upon a locale applying.
276
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
277
+ * you could use 'localeKey' meta configuration.
278
+ * Example:
279
+ * ...
280
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-localizableProperties)
281
+ */
282
+ localizableProperties?: string[];
283
+ /**
284
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
285
+ * numeric-only values are interpreted as pixels.
286
+ */
287
+ margin?: number | string;
288
+ /**
289
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) created for the
290
+ * [masked](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
291
+ * values.
292
+ */
293
+ maskDefaults?: MaskConfig;
294
+ /**
295
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
296
+ * [Mask](https://bryntum.com/products/taskboard/docs/api/Core/widget/Mask) config object.
297
+ */
298
+ masked?: boolean | string | MaskConfig;
299
+ /**
300
+ * Maximum value
301
+ */
302
+ max?: number;
303
+ /**
304
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
305
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
306
+ */
307
+ maxHeight?: string | number;
308
+ /**
309
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
310
+ * ...
311
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-maximizeOnMobile)
312
+ */
313
+ maximizeOnMobile?: number | string;
314
+ /**
315
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
316
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
317
+ */
318
+ maxWidth?: string | number;
319
+ /**
320
+ * Minimum value
321
+ */
322
+ min?: number;
323
+ /**
324
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
325
+ * like [height](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
326
+ */
327
+ minHeight?: string | number;
328
+ /**
329
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
330
+ * like [width](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
331
+ */
332
+ minWidth?: string | number;
333
+ /**
334
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
335
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
336
+ * layout.
337
+ * ...
338
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-monitorResize)
339
+ */
340
+ monitorResize?: boolean | {
341
+ immediate?: boolean;
342
+ };
343
+ /**
344
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
345
+ * [items](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
346
+ * the owner is <strong>always</strong> the encapsulating Container.
347
+ * ...
348
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-owner)
349
+ */
350
+ owner?: Widget | any;
351
+ /**
352
+ * 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
353
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
354
+ * widget's [contentElement](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-contentElement).
355
+ * ...
356
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-positioned)
357
+ */
358
+ positioned?: boolean;
359
+ /**
360
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
361
+ * menu on click etc, since the tooltip would be displayed at the same time.
362
+ */
363
+ preventTooltipOnTouch?: boolean;
364
+ /**
365
+ * Whether this widget is read-only. This is only valid if the widget is an input
366
+ * field, <strong>or contains input fields at any depth</strong>.
367
+ * ...
368
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-readOnly)
369
+ */
370
+ readOnly?: boolean;
371
+ relayStoreEvents?: boolean;
372
+ /**
373
+ * Configure as `true` to have the component display a translucent ripple when its
374
+ * [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
375
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
376
+ * ...
377
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-ripple)
378
+ */
379
+ ripple?: boolean | {
380
+ delegate?: string;
381
+ color?: string;
382
+ radius?: number;
383
+ clip?: string;
384
+ };
385
+ /**
386
+ * 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`
387
+ */
388
+ rootElement?: ShadowRoot | HTMLElement;
389
+ /**
390
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
391
+ * ...
392
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-rtl)
393
+ */
394
+ rtl?: boolean;
395
+ /**
396
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
397
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
398
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
399
+ * CSS overflow properties thus:
400
+ * ...
401
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-scrollable)
402
+ */
403
+ scrollable?: boolean | ScrollerConfig | Scroller;
404
+ /**
405
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
406
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
407
+ */
408
+ scrollAction?: 'hide' | 'realign' | null;
409
+ /**
410
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#config-floating).*
411
+ * ...
412
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-showAnimation)
413
+ */
414
+ showAnimation?: boolean | object;
415
+ /**
416
+ * Show the step markers
417
+ */
418
+ showSteps?: boolean;
419
+ /**
420
+ * Show the slider value in a tooltip
421
+ */
422
+ showTooltip?: boolean;
423
+ /**
424
+ * 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)
425
+ */
426
+ showTooltipWhenDisabled?: boolean;
427
+ /**
428
+ * Show value in internal label (specify `true`), or in the thumb (specify 'thumb').
429
+ */
430
+ showValue?: boolean | 'thumb';
431
+ /**
432
+ * Programmatic control over how many columns to span when used in a grid layout.
433
+ */
434
+ span?: number;
435
+ /**
436
+ * Step size
437
+ */
438
+ step?: number;
439
+ /**
440
+ * 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
441
+ * [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
442
+ * this widget:
443
+ * ...
444
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-tab)
445
+ */
446
+ tab?: boolean | TabConfig;
447
+ /**
448
+ * The tag name of this Widget's root element
449
+ */
450
+ tag?: string;
451
+ /**
452
+ * Auto detected when used within a TaskBoard. If you add the widget elsewhere, it will try to find an instance
453
+ * of TaskBoard on page. If that fails you have to supply this config to connect it to a TaskBoard manually.
454
+ * ...
455
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-taskBoard)
456
+ */
457
+ taskBoard?: TaskBoard;
458
+ /**
459
+ * Text for the sliders internal label. Appends value if `showValue` is `true`
460
+ */
461
+ text?: string;
462
+ /**
463
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
464
+ * ...
465
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-textAlign)
466
+ */
467
+ textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
468
+ /**
469
+ * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)
470
+ */
471
+ title?: string;
472
+ /**
473
+ * A config object for the tooltip to show while hovering the slider.
474
+ */
475
+ tooltip?: TooltipConfig;
476
+ /**
477
+ * By default, the [change](https://bryntum.com/products/taskboard/docs/api/Core/widget/Slider#event-change) event is fired when a change gesture is completed, ie: on
478
+ * the mouse up gesture of a drag.
479
+ * ...
480
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-triggerChangeOnInput)
481
+ */
482
+ triggerChangeOnInput?: boolean;
483
+ type?: 'zoomslider';
484
+ /**
485
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
486
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
487
+ * values are used as the class names.
488
+ * ...
489
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-ui)
490
+ */
491
+ ui?: string | object;
492
+ /**
493
+ * Unit to display next to the value, when configured with `showValue : true`
494
+ */
495
+ unit?: string;
496
+ /**
497
+ * Initial value.
498
+ * `String` value allows to link value by reference name.
499
+ * ...
500
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-value)
501
+ */
502
+ value?: number | string;
503
+ /**
504
+ * Width of the value label when `showValue` is enabled. If a number is specified, `px` will be used.
505
+ * ...
506
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-valueLabelWidth)
507
+ */
508
+ valueLabelWidth?: string | number;
509
+ /**
510
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/taskboard/docs/api/Core/widget/Container).
511
+ * Higher weights go further down.
512
+ */
513
+ weight?: number;
514
+ /**
515
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
516
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
517
+ * this config is convenient.
518
+ */
519
+ width?: string | number;
520
+ /**
521
+ * The x position for the widget.
522
+ * ...
523
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-x)
524
+ */
525
+ x?: number;
526
+ /**
527
+ * The y position for the widget.
528
+ * ...
529
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#config-y)
530
+ */
531
+ y?: number;
532
+ };
533
+ export declare class BryntumZoomSliderComponent implements OnInit, OnDestroy {
534
+ static instanceClass: typeof ZoomSlider;
535
+ static instanceName: string;
536
+ private static bryntumEvents;
537
+ private static bryntumFeatureNames;
538
+ private static bryntumConfigs;
539
+ private static bryntumConfigsOnly;
540
+ private static bryntumProps;
541
+ private elementRef;
542
+ instance: ZoomSlider;
543
+ private bryntumConfig;
544
+ constructor(element: ElementRef);
545
+ adopt: HTMLElement | string;
546
+ align: AlignSpec | string;
547
+ anchor: boolean;
548
+ ariaDescription: string;
549
+ ariaLabel: string;
550
+ bubbleEvents: object;
551
+ centered: boolean;
552
+ color: string;
553
+ config: object;
554
+ constrainTo: HTMLElement | Widget | Rectangle;
555
+ contentElementCls: string | object;
556
+ dataField: string;
557
+ defaultBindProperty: string;
558
+ detectCSSCompatibilityIssues: boolean;
559
+ dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
560
+ draggable: boolean | {
561
+ handleSelector?: string;
562
+ };
563
+ elementAttributes: Record<string, string | null>;
564
+ floating: boolean;
565
+ hideAnimation: boolean | object;
566
+ htmlCls: string | object;
567
+ ignoreParentReadOnly: boolean;
568
+ labelCls: string | object;
569
+ labelPosition: 'before' | 'above' | null;
570
+ labelWidth: string | number;
571
+ listeners: ZoomSliderListeners;
572
+ localeClass: typeof Base;
573
+ localizable: boolean;
574
+ localizableProperties: string[];
575
+ maskDefaults: MaskConfig;
576
+ masked: boolean | string | MaskConfig;
577
+ monitorResize: boolean | {
578
+ immediate?: boolean;
579
+ };
580
+ owner: Widget | any;
581
+ positioned: boolean;
582
+ preventTooltipOnTouch: boolean;
583
+ relayStoreEvents: boolean;
584
+ ripple: boolean | {
585
+ delegate?: string;
586
+ color?: string;
587
+ radius?: number;
588
+ clip?: string;
589
+ };
590
+ rootElement: ShadowRoot | HTMLElement;
591
+ scrollAction: 'hide' | 'realign' | null;
592
+ showAnimation: boolean | object;
593
+ showSteps: boolean;
594
+ showTooltip: boolean;
595
+ showTooltipWhenDisabled: boolean;
596
+ showValue: boolean | 'thumb';
597
+ tab: boolean | TabConfig;
598
+ tag: string;
599
+ taskBoard: TaskBoard;
600
+ textAlign: 'left' | 'center' | 'right' | 'start' | 'end';
601
+ title: string;
602
+ type: 'zoomslider';
603
+ ui: string | object;
604
+ weight: number;
605
+ alignSelf: string;
606
+ appendTo: HTMLElement | string;
607
+ callOnFunctions: boolean;
608
+ catchEventHandlerExceptions: boolean;
609
+ cls: string | object;
610
+ column: number;
611
+ content: string;
612
+ dataset: object | Record<string, string>;
613
+ disabled: boolean | 'inert';
614
+ extraData: any;
615
+ flex: number | string;
616
+ height: number | string;
617
+ hidden: boolean;
618
+ html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
619
+ id: string;
620
+ insertBefore: HTMLElement | string;
621
+ insertFirst: HTMLElement | string;
622
+ keyMap: Record<string, KeyMapConfig>;
623
+ label: string;
624
+ margin: number | string;
625
+ max: number;
626
+ maxHeight: string | number;
627
+ maximizeOnMobile: number | string;
628
+ maxWidth: string | number;
629
+ min: number;
630
+ minHeight: string | number;
631
+ minWidth: string | number;
632
+ readOnly: boolean;
633
+ rtl: boolean;
634
+ scrollable: Scroller | boolean | ScrollerConfig;
635
+ span: number;
636
+ step: number;
637
+ text: string;
638
+ tooltip: string | TooltipConfig;
639
+ triggerChangeOnInput: boolean;
640
+ unit: string;
641
+ value: number | string;
642
+ valueLabelWidth: string | number;
643
+ width: number | string;
644
+ x: number;
645
+ y: number;
646
+ anchorSize: number[];
647
+ focusVisible: boolean;
648
+ parent: Widget;
649
+ /**
650
+ * Fires before an object is destroyed.
651
+ * @param {object} event Event object
652
+ * @param {Core.Base} event.source The Object that is being destroyed.
653
+ */
654
+ onBeforeDestroy: any;
655
+ /**
656
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
657
+ * @param {object} event Event object
658
+ * @param {Core.widget.Widget} event.source The widget being hidden.
659
+ */
660
+ onBeforeHide: any;
661
+ /**
662
+ * Triggered before a widget is shown. Return `false` to prevent the action.
663
+ * @param {object} event Event object
664
+ * @param {Core.widget.Widget,any} event.source The widget being shown
665
+ */
666
+ onBeforeShow: any;
667
+ /**
668
+ * Fires when any other event is fired from the object.
669
+ * ...
670
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#event-catchAll)
671
+ * @param {object} event Event object
672
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
673
+ * @param {string} event.event.type The type of the event which is caught by the listener
674
+ */
675
+ onCatchAll: any;
676
+ /**
677
+ * Fired after the slider value changes (on mouse up following slider interaction).
678
+ * @param {object} event Event object
679
+ * @param {number} event.value The value
680
+ * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)
681
+ * @param {Core.widget.Slider} event.source The slider
682
+ */
683
+ onChange: any;
684
+ /**
685
+ * Fires when an object is destroyed.
686
+ * @param {object} event Event object
687
+ * @param {Core.Base} event.source The Object that is being destroyed.
688
+ */
689
+ onDestroy: any;
690
+ /**
691
+ * Triggered when a widget's [element](https://bryntum.com/products/taskboard/docs/api/Core/widget/Widget#property-element) is available.
692
+ * @param {object} event Event object
693
+ * @param {HTMLElement} event.element The Widget's element.
694
+ */
695
+ onElementCreated: any;
696
+ /**
697
+ * Fired when focus enters this Widget.
698
+ * @param {object} event Event object
699
+ * @param {Core.widget.Widget} event.source This Widget
700
+ * @param {HTMLElement} event.fromElement The element which lost focus.
701
+ * @param {HTMLElement} event.toElement The element which gained focus.
702
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
703
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
704
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
705
+ */
706
+ onFocusIn: any;
707
+ /**
708
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
709
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
710
+ * will not trigger this event. This is when focus exits this widget completely.
711
+ * @param {object} event Event object
712
+ * @param {Core.widget.Widget} event.source This Widget
713
+ * @param {HTMLElement} event.fromElement The element which lost focus.
714
+ * @param {HTMLElement} event.toElement The element which gained focus.
715
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
716
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
717
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
718
+ */
719
+ onFocusOut: any;
720
+ /**
721
+ * Triggered after a widget was hidden
722
+ * @param {object} event Event object
723
+ * @param {Core.widget.Widget} event.source The widget
724
+ */
725
+ onHide: any;
726
+ /**
727
+ * Fired while slider thumb is being dragged.
728
+ * @param {object} event Event object
729
+ * @param {Core.widget.Slider} event.source The slider
730
+ * @param {number} event.value The value
731
+ */
732
+ onInput: any;
733
+ /**
734
+ * Triggered when a widget which had been in a non-visible state for any reason
735
+ * achieves visibility.
736
+ * ...
737
+ * [View online docs...](https://bryntum.com/products/taskboard/docs/api/TaskBoard/widget/ZoomSlider#event-paint)
738
+ * @param {object} event Event object
739
+ * @param {Core.widget.Widget} event.source The widget being painted.
740
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
741
+ */
742
+ onPaint: any;
743
+ /**
744
+ * Fired when a Widget's read only state is toggled
745
+ * @param {object} event Event object
746
+ * @param {boolean} event.readOnly Read only or not
747
+ */
748
+ onReadOnly: any;
749
+ /**
750
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
751
+ * 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.
752
+ */
753
+ onRecompose: any;
754
+ /**
755
+ * 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`*.
756
+ * @param {object} event Event object
757
+ * @param {Core.widget.Widget} event.source This Widget
758
+ * @param {number} event.width The new width
759
+ * @param {number} event.height The new height
760
+ * @param {number} event.oldWidth The old width
761
+ * @param {number} event.oldHeight The old height
762
+ */
763
+ onResize: any;
764
+ /**
765
+ * Triggered after a widget is shown.
766
+ * @param {object} event Event object
767
+ * @param {Core.widget.Widget} event.source The widget
768
+ */
769
+ onShow: any;
770
+ /**
771
+ * Create and append the underlying widget
772
+ */
773
+ ngOnInit(): void;
774
+ /**
775
+ * Watch for changes
776
+ * @param changes
777
+ */
778
+ ngOnChanges(changes: SimpleChanges): void;
779
+ /**
780
+ * Destroy the component
781
+ */
782
+ ngOnDestroy(): void;
783
+ static ɵfac: i0.ɵɵFactoryDeclaration<BryntumZoomSliderComponent, never>;
784
+ static ɵcmp: i0.ɵɵComponentDeclaration<BryntumZoomSliderComponent, "bryntum-zoom-slider", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labelWidth": "labelWidth"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "owner": "owner"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showSteps": "showSteps"; "showTooltip": "showTooltip"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "showValue": "showValue"; "tab": "tab"; "tag": "tag"; "taskBoard": "taskBoard"; "textAlign": "textAlign"; "title": "title"; "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"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "margin": "margin"; "max": "max"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "min": "min"; "minHeight": "minHeight"; "minWidth": "minWidth"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "span": "span"; "step": "step"; "text": "text"; "tooltip": "tooltip"; "triggerChangeOnInput": "triggerChangeOnInput"; "unit": "unit"; "value": "value"; "valueLabelWidth": "valueLabelWidth"; "width": "width"; "x": "x"; "y": "y"; "anchorSize": "anchorSize"; "focusVisible": "focusVisible"; "parent": "parent"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
785
+ }