@bryntum/scheduler-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.
- package/README.md +44 -0
- package/bryntum-scheduler-angular-thin.d.ts +5 -0
- package/bundles/bryntum-scheduler-angular-thin.umd.js +18832 -0
- package/bundles/bryntum-scheduler-angular-thin.umd.js.map +1 -0
- package/esm2015/bryntum-scheduler-angular-thin.js +5 -0
- package/esm2015/lib/bryntum-event-color-field.component.js +795 -0
- package/esm2015/lib/bryntum-project-combo.component.js +937 -0
- package/esm2015/lib/bryntum-resource-combo.component.js +937 -0
- package/esm2015/lib/bryntum-resource-filter.component.js +743 -0
- package/esm2015/lib/bryntum-scheduler-base.component.js +4589 -0
- package/esm2015/lib/bryntum-scheduler-date-picker.component.js +1021 -0
- package/esm2015/lib/bryntum-scheduler-project-model.component.js +365 -0
- package/esm2015/lib/bryntum-scheduler.component.js +4593 -0
- package/esm2015/lib/bryntum-timeline-histogram.component.js +2888 -0
- package/esm2015/lib/bryntum-undo-redo.component.js +698 -0
- package/esm2015/lib/bryntum-view-preset-combo.component.js +746 -0
- package/esm2015/lib/scheduler.module.js +74 -0
- package/esm2015/lib/wrapper.helper.js +74 -0
- package/esm2015/public-api.js +16 -0
- package/fesm2015/bryntum-scheduler-angular-thin.js +18371 -0
- package/fesm2015/bryntum-scheduler-angular-thin.js.map +1 -0
- package/lib/bryntum-event-color-field.component.d.ts +966 -0
- package/lib/bryntum-project-combo.component.d.ts +1202 -0
- package/lib/bryntum-resource-combo.component.d.ts +1205 -0
- package/lib/bryntum-resource-filter.component.d.ts +888 -0
- package/lib/bryntum-scheduler-base.component.d.ts +5014 -0
- package/lib/bryntum-scheduler-date-picker.component.d.ts +1363 -0
- package/lib/bryntum-scheduler-project-model.component.d.ts +392 -0
- package/lib/bryntum-scheduler.component.d.ts +5016 -0
- package/lib/bryntum-timeline-histogram.component.d.ts +3312 -0
- package/lib/bryntum-undo-redo.component.d.ts +847 -0
- package/lib/bryntum-view-preset-combo.component.d.ts +885 -0
- package/lib/scheduler.module.d.ts +17 -0
- package/lib/wrapper.helper.d.ts +26 -0
- package/package.json +33 -0
- package/public-api.d.ts +12 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bryntum-scheduler-angular-thin.js","sources":["../../component/src/lib/wrapper.helper.ts","../../component/src/lib/bryntum-event-color-field.component.ts","../../component/src/lib/bryntum-project-combo.component.ts","../../component/src/lib/bryntum-scheduler-project-model.component.ts","../../component/src/lib/bryntum-resource-combo.component.ts","../../component/src/lib/bryntum-resource-filter.component.ts","../../component/src/lib/bryntum-scheduler.component.ts","../../component/src/lib/bryntum-scheduler-base.component.ts","../../component/src/lib/bryntum-scheduler-date-picker.component.ts","../../component/src/lib/bryntum-timeline-histogram.component.ts","../../component/src/lib/bryntum-undo-redo.component.ts","../../component/src/lib/bryntum-view-preset-combo.component.ts","../../component/src/lib/scheduler.module.ts","../../component/src/public-api.ts","../../component/src/bryntum-scheduler-angular-thin.ts"],"sourcesContent":["import { isDevMode } from '@angular/core';\n\nexport default class WrapperHelper {\n /**\n * Development warning. Showed when environment is set to 'development'.\n */\n public static devWarning(clsName: string, msg: string) : void {\n // @ts-ignore\n if (window.bryntum && window.bryntum.isTestEnv || isDevMode()) {\n console.warn(`Bryntum${clsName}Component development warning!\\n${msg}\\n` +\n 'Please check Angular integration guide: https://bryntum.com/products/scheduler/docs/guide/Scheduler/integration/angular/guide'\n );\n }\n }\n\n /**\n * Development warning for container parameter.\n */\n public static devWarningContainer(clsName: string, containerParam: string) : void {\n WrapperHelper.devWarning(clsName,\n `Using \"${containerParam}\" parameter for configuration is not recommended.\\n` +\n 'Widget is placed automatically inside it\\'s container element' +\n `Solution: remove \"${containerParam}\" parameter from configuration.`\n );\n }\n\n /**\n * Development warning for config parameter.\n */\n public static devWarningConfigProp(clsName: string, prop: string) : void {\n WrapperHelper.devWarning(clsName,\n `Using \"${prop}\" parameter for configuration is not recommended.\\n` +\n `Solution: Use separate parameter for each \"${prop}\" value to enable reactive updates of the API instance`\n );\n }\n\n /**\n * Development warning for config property.\n */\n public static devWarningUpdateProp(clsName: string, prop: string): void {\n WrapperHelper.devWarning(clsName,\n `\"${prop}\" is a static config option for component constructor only. No runtime changes are supported!`\n );\n }\n\n /**\n * Applies property value to Bryntum config or instance.\n * @param {Object} configOrInstance target object\n * @param {string} prop property name\n * @param {any} value value\n * @param {Boolean} isConfig config setting mode\n */\n public static applyPropValue(configOrInstance: object|any, prop: string, value: object|any, isConfig: boolean = true): void {\n\n if (prop === 'project') {\n // Allow use ProjectModel component as project\n if (value && typeof value === 'object') {\n configOrInstance[prop] = value.instance || value;\n }\n }\n else if (prop === 'features' && typeof value === 'object') {\n Object.keys(value).forEach(key => WrapperHelper.applyPropValue(configOrInstance, `${key}Feature`, value[key], isConfig));\n }\n else if (prop === 'config' && typeof value === 'object') {\n Object.keys(value).forEach(key => WrapperHelper.applyPropValue(configOrInstance, key, value[key], isConfig));\n }\n else if (prop === 'columns' && !isConfig) {\n configOrInstance['columns'].data = value;\n }\n else if (prop.endsWith('Feature')) {\n const\n features = configOrInstance['features'],\n featureName = prop.replace('Feature', '');\n if (isConfig) {\n features[featureName] = value;\n }\n else {\n const feature = features[featureName];\n if (feature) {\n feature.setConfig(value);\n }\n }\n }\n else {\n configOrInstance[prop] = value;\n }\n }\n\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum EventColorField\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, ColorDescriptor, DomConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { SchedulerContainerItemConfig, EventColorField, EventColorFieldListeners } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumEventColorFieldProps = {\n // Configs\n /**\n * Adds an option in the picker to set no background color\n */\n addNoColorItem ? : boolean\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Sets the native `autocomplete` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete)\n */\n autoComplete ? : string\n /**\n * Configure as `true` to have the picker expand upon focus enter.\n */\n autoExpand ? : boolean\n /**\n * Specify `true` to auto select field contents on focus\n */\n autoSelect ? : boolean\n /**\n * Initial text to show in badge.\n */\n badge ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which\n * configures the `clear` [trigger](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers).\n */\n clearable ? : boolean|FieldTriggerConfig\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-cls)\n */\n cls ? : string|object\n /**\n * The `colors` property can be an array of string CSS colors or of objects with `color`\n * and `text` properties from which the user can chose from. This will override the\n * [pickers default colors](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorPicker#config-colors).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-colors)\n */\n colors ? : (string|ColorDescriptor)[]\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The configuration for additional items associated to this field. This is typically used to add contextual\n * fields related to a [checkbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See\n * these classes for examples of nested fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-container)\n */\n container ? : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer\n /**\n * The config controls how the value of nested items are handled when a parent container gets or sets its\n * [values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-containValues)\n * @param {Core.widget.Field} field Field instance\n * @returns {boolean}\n */\n containValues ? : boolean|string|((field: Field) => boolean)\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Specify `true` to highlight field after external value changes\n */\n highlightExternalChange ? : boolean\n /**\n * An optional string to display inside the input field as an overlay. This can be useful for displaying\n * a field's units.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-hint)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hint ? : string|((data: { source: Field, value: any }) => string)\n /**\n * This config is similar to [hint](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.\n * Since this can allow malicious content to be executed, be sure not to include user-entered data or to\n * encode such data (see [encodeHtml](https://bryntum.com/products/scheduler/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-hintHtml)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hintHtml ? : string|((data: { source: Field, value: any }) => string)\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set this config to `true` to always display items horizontally along with this field. This assigns an\n * [hbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-inline)\n */\n inline ? : boolean\n /**\n * Text alignment for the input field.\n */\n inputAlign ? : string\n /**\n * Sets custom attributes of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)\n */\n inputAttributes ? : Record<string, string>\n /**\n * If you need to use something else than a default `input` element, as the input element, provide the tag\n * name here. Please note that this is used for advanced usage only, for example when using WebComponents\n * (custom elements), and that the configured element must fulfil the same contract as a regular input\n * element.\n */\n inputTag ? : string\n /**\n * Sets the `type` attribute of the underlying input element (password, hidden, date, color, etc.).\n */\n inputType ? : string\n /**\n * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any\n * triggers. If a number is specified, `px` will be used.\n */\n inputWidth ? : string|number\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The delay in milliseconds to wait after the last keystroke before triggering a change event.\n * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have\n * immediate feedback, change will still be triggered on blur).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-keyStrokeChangeDelay)\n */\n keyStrokeChangeDelay ? : number\n /**\n * Label, prepended to field\n */\n label ? : string\n /**\n * CSS class name or class names to add to any configured [label](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Labelable#config-label)\n */\n labelCls ? : string|object\n /**\n * Label position, either 'before' the field or 'above' the field\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|null\n /**\n * The labels to add either before or after the input field.\n * Each label may have the following properties:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-listeners)\n */\n listeners ? : EventColorFieldListeners\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The max number of characters for the input field\n */\n maxLength ? : number\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The min number of characters for the input field\n */\n minLength ? : number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Name of the field which is used as a key to get/set values from/to the field.\n * Used prior to [ref](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-name)\n */\n name ? : string\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-owner)\n */\n owner ? : Widget|any\n /**\n * The name of the element property to which the picker should size and align itself.\n */\n pickerAlignElement ? : string\n /**\n * Text to display in empty field.\n */\n placeholder ? : string\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Makes the field unmodifiable by user action. The input area is not editable, and triggers\n * are unresponsive.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Predefined style to use for the field. Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-rendition)\n */\n rendition ? : 'outlined'|'filled'|string\n /**\n * Configure as `true` to indicate that a `null` field value is to be marked as invalid. This will\n * optionally append a * to the field label if [showRequiredIndicator](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-showRequiredIndicator) is set.\n */\n required ? : boolean\n /**\n * If this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing\n * the `ESCAPE` key after editing the field will revert the field to the value it had when\n * the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-clearable)\n * behaviour will be activated.\n */\n revertOnEscape ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-rtl)\n */\n rtl ? : boolean\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-required).\n */\n showRequiredIndicator ? : string\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`\n * to the user).\n */\n skipValidation ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Sets the native `spellcheck` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck)\n */\n spellCheck ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tab index of the input field or fields, or `null` for natural tab order (recommended). Setting to `0`\n * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable\n * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set\n * to the element programmatically.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-tabIndex)\n */\n tabIndex ? : number\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * The triggers to add either before or after the input field. Each property name is the reference by which\n * an instantiated Trigger Widget may be retrieved from the live `triggers` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'eventcolorfield'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-ui)\n */\n ui ? : string|object\n /**\n * Set to `false` to not highlight a field as invalid while typing, to instead show it on ENTER key press\n * or similar.\n */\n validateOnInput ? : boolean\n /**\n * Default value\n */\n value ? : string\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-event-color-field',\n template : ''\n})\nexport class BryntumEventColorFieldComponent implements OnInit, OnDestroy {\n\n public static instanceClass = EventColorField;\n\n public static instanceName = 'EventColorField';\n\n private static bryntumEvents: string[] = [\n 'onAction',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onClear',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onInput',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow',\n 'onTrigger'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumEventColorFieldComponent.bryntumFeatureNames.concat([\n 'addNoColorItem',\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'badge',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'clearable',\n 'cls',\n 'colors',\n 'column',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'extraData',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'id',\n 'ignoreParentReadOnly',\n 'inline',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'keyStrokeChangeDelay',\n 'label',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxLength',\n 'maxWidth',\n 'minHeight',\n 'minLength',\n 'minWidth',\n 'monitorResize',\n 'name',\n 'owner',\n 'pickerAlignElement',\n 'placeholder',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'required',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollAction',\n 'showAnimation',\n 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'span',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'tooltip',\n 'triggers',\n 'type',\n 'ui',\n 'validateOnInput',\n 'value',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'bubbleEvents',\n 'centered',\n 'clearable',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'hideAnimation',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'ignoreParentReadOnly',\n 'inline',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'keyStrokeChangeDelay',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'maxLength',\n 'minLength',\n 'monitorResize',\n 'name',\n 'owner',\n 'pickerAlignElement',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'type',\n 'ui',\n 'validateOnInput',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumEventColorFieldComponent.bryntumFeatureNames.concat([\n 'addNoColorItem',\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'badge',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'colors',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'editable',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'formula',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'input',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'placeholder',\n 'readOnly',\n 'rendition',\n 'required',\n 'rtl',\n 'scrollable',\n 'showRequiredIndicator',\n 'span',\n 'tooltip',\n 'triggers',\n 'value',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: EventColorField;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoComplete ! : string;\n @Input() autoExpand ! : boolean;\n @Input() autoSelect ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() clearable ! : boolean|FieldTriggerConfig;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() container ! : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer;\n @Input() containValues ! : boolean|string|((field: Field) => boolean);\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() highlightExternalChange ! : boolean;\n @Input() hint ! : string|((data: { source: Field, value: any }) => string);\n @Input() hintHtml ! : string|((data: { source: Field, value: any }) => string);\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() inline ! : boolean;\n @Input() inputAlign ! : string;\n @Input() inputAttributes ! : Record<string, string>;\n @Input() inputTag ! : string;\n @Input() inputType ! : string;\n @Input() inputWidth ! : string|number;\n @Input() keyStrokeChangeDelay ! : number;\n @Input() labelCls ! : string|object;\n @Input() labelPosition ! : 'before'|'above'|null;\n @Input() labels ! : object[];\n @Input() labelWidth ! : string|number;\n @Input() listeners ! : EventColorFieldListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxLength ! : number;\n @Input() minLength ! : number;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() name ! : string;\n @Input() owner ! : Widget|any;\n @Input() pickerAlignElement ! : string;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() revertOnEscape ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() spellCheck ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabIndex ! : number;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() title ! : string;\n @Input() type ! : 'eventcolorfield';\n @Input() ui ! : string|object;\n @Input() validateOnInput ! : boolean;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() addNoColorItem ! : boolean;\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() badge ! : string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() colors ! : (string|ColorDescriptor)[];\n @Input() column ! : number;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() label ! : string;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() placeholder ! : string;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : 'outlined'|'filled'|string;\n @Input() required ! : boolean;\n @Input() rtl ! : boolean;\n @Input() showRequiredIndicator ! : string;\n @Input() span ! : number;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() triggers ! : Record<string, FieldTriggerConfig>|Record<string, Widget>;\n @Input() value ! : any|string;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() content ! : string;\n @Input() editable ! : boolean;\n @Input() focusVisible ! : boolean;\n @Input() formula ! : string;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() input ! : HTMLElement;\n @Input() parent ! : Widget;\n @Input() scrollable ! : Scroller;\n\n // Events emitters\n /**\n * User performed default action (typed into this field).\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {Core.data.Model} event.record Selected record. Available for fields with records selection functionality\n * @param {Core.data.Model[]} event.records Selected records as an array. Available for fields with records selection functionality\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onAction: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, record: Model, records: Model[], userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when this field's value changes.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onChange: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fired when this field is [cleared](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#event-clear)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n */\n @Output() onClear: any = new EventEmitter<((event: { source: Field|any }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fired when the user types into this field.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {Event} event.event The triggering DOM event\n */\n @Output() onInput: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User clicked one of this field's [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {Core.widget.Widget} event.trigger The trigger activated by click or touch tap.\n */\n @Output() onTrigger: any = new EventEmitter<((event: { source: Field|any, trigger: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumEventColorFieldComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumEventColorFieldComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumEventColorFieldComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum ProjectCombo\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Combo, ComboModel, DomConfig, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { SchedulerContainerItemConfig, ProjectCombo, ProjectComboListeners, ProjectModel } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumProjectComboProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Sets the native `autocomplete` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete)\n */\n autoComplete ? : string\n /**\n * Configure as `true` to have the picker expand upon focus enter.\n */\n autoExpand ? : boolean\n /**\n * Specify `true` to auto select field contents on focus\n */\n autoSelect ? : boolean\n /**\n * Initial text to show in badge.\n */\n badge ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Enable caching of the last retrieved result until the timeout is reached.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-cacheLastResult)\n */\n cacheLastResult ? : number|string|Duration|DurationConfig\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * Configure as `true` to force case matching when filtering the dropdown list based upon the typed value.\n */\n caseSensitive ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * A config object to configure the [ChipView](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which\n * configures the `clear` [trigger](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers).\n */\n clearable ? : boolean|FieldTriggerConfig\n /**\n * `true` to clear value typed to a multiselect combo when picker is collapsed\n */\n clearTextOnPickerHide ? : boolean\n /**\n * Specify `false` to not clear value typed to a multiselect combo when an item is selected.\n */\n clearTextOnSelection ? : boolean\n /**\n * Set to `true` to clear this field when user empties the input element\n */\n clearWhenInputEmpty ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-cls)\n */\n cls ? : string|object\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The configuration for additional items associated to this field. This is typically used to add contextual\n * fields related to a [checkbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See\n * these classes for examples of nested fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-container)\n */\n container ? : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer\n /**\n * The config controls how the value of nested items are handled when a parent container gets or sets its\n * [values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-containValues)\n * @param {Core.widget.Field} field Field instance\n * @returns {boolean}\n */\n containValues ? : boolean|string|((field: Field) => boolean)\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * If configured as `true`, this means that when an unmatched string is typed into the\n * combo's input field, and `ENTER`, or the [multiValueSeparator](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,\n * a new record will be created using the typed string as the [displayField](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-createOnUnmatched)\n * @param {string} name Record name\n * @param {Core.widget.Combo} combo Combo instance\n * @returns {Core.data.Model} New record\n */\n createOnUnmatched ? : ((name: string, combo: Combo) => Model)|string|boolean\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Field used as projects title.\n */\n displayField ? : string\n /**\n * Template function that can be used to customize the displayed value\n * @param {Core.data.Model} record The record to provide a textual value for\n * @param {Core.widget.Combo} combo A reference to this Combo\n * @returns {string,void}\n */\n displayValueRenderer ? : (record: Model|ComboModel, combo: Combo) => string|void\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * User can edit text in text field (otherwise only pick from attached picker)\n */\n editable ? : boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text to display in the drop down when there are no items in the underlying store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-filterParamName) to pass\n * any filters to the server upon load.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-encodeFilterParams)\n * @param {object[]} filters filters\n * @returns {object[]} array of values\n */\n encodeFilterParams ? : (filters: object[]) => object[]\n extraData ? : any\n /**\n * If `false`, filtering will be triggered once you exceed [minChars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-minChars). To filter only when\n * hitting Enter key, set this to `true`;\n */\n filterOnEnter ? : boolean\n /**\n * The name of an operator type as implemented in [operator](https://bryntum.com/products/scheduler/docs/api/Core/util/CollectionFilter#config-operator)\n * to use when filtering the dropdown list based upon the typed value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-filterOperator)\n */\n filterOperator ? : CollectionCompareOperator\n /**\n * If the dropdown is to be populated with a filtered query to a remote server, specify the\n * name of the parameter to pass the typed string here. By default, the string is simply sent\n * as the value of the parameter. For special encoding, configure the combo with [encodeFilterParams](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`, you may configure `filterSelected` as\n * `true` to hide items in the dropdown when they are added to the selection.\n * It will appear as if the requested item has \"moved\" into the field's\n * [ChipView](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-chipView).\n */\n filterSelected ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * By default, the picker is hidden on selection in single select mode, and\n * remains to allow more selections when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * Setting this to a `Boolean` value can override that default.\n */\n hidePickerOnSelect ? : boolean\n /**\n * Configure as `true` to hide the expand trigger. This is automatically set to `true` if\n * remote filtering is enabled by setting the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-filterParamName) config.\n */\n hideTrigger ? : boolean\n /**\n * Specify `true` to highlight field after external value changes\n */\n highlightExternalChange ? : boolean\n /**\n * An optional string to display inside the input field as an overlay. This can be useful for displaying\n * a field's units.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-hint)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hint ? : string|((data: { source: Field, value: any }) => string)\n /**\n * This config is similar to [hint](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.\n * Since this can allow malicious content to be executed, be sure not to include user-entered data or to\n * encode such data (see [encodeHtml](https://bryntum.com/products/scheduler/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-hintHtml)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hintHtml ? : string|((data: { source: Field, value: any }) => string)\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set this config to `true` to always display items horizontally along with this field. This assigns an\n * [hbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-inline)\n */\n inline ? : boolean\n /**\n * Configure this as `true` to render the dropdown list as a permanently visible list\n * in the document flow immediately below the input area instead of as a popup.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-inlinePicker)\n */\n inlinePicker ? : boolean\n /**\n * Text alignment for the input field.\n */\n inputAlign ? : string\n /**\n * Sets custom attributes of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)\n */\n inputAttributes ? : Record<string, string>\n /**\n * If you need to use something else than a default `input` element, as the input element, provide the tag\n * name here. Please note that this is used for advanced usage only, for example when using WebComponents\n * (custom elements), and that the configured element must fulfil the same contract as a regular input\n * element.\n */\n inputTag ? : string\n /**\n * Sets the `type` attribute of the underlying input element (password, hidden, date, color, etc.).\n */\n inputType ? : string\n /**\n * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any\n * triggers. If a number is specified, `px` will be used.\n */\n inputWidth ? : string|number\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * Rows to display in the dropdown (list items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-items)\n */\n items ? : object[]|string[]|object\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The delay in milliseconds to wait after the last keystroke before triggering a change event.\n * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have\n * immediate feedback, change will still be triggered on blur).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-keyStrokeChangeDelay)\n */\n keyStrokeChangeDelay ? : number\n /**\n * The delay in milliseconds to wait after the last keystroke before filtering the list.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-keyStrokeFilterDelay)\n */\n keyStrokeFilterDelay ? : number\n /**\n * Label, prepended to field\n */\n label ? : string\n /**\n * CSS class name or class names to add to any configured [label](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Labelable#config-label)\n */\n labelCls ? : string|object\n /**\n * Label position, either 'before' the field or 'above' the field\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|null\n /**\n * The labels to add either before or after the input field.\n * Each label may have the following properties:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * CSS class to add to picker\n */\n listCls ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-listeners)\n */\n listeners ? : ProjectComboListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-listItemTpl)\n * @param {Core.data.Model} record The record representing the item being rendered\n * @returns {string,void}\n */\n listItemTpl ? : (record: Model|ComboModel) => string|void\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The max number of characters for the input field\n */\n maxLength ? : number\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The minimum string length to trigger the filtering, only relevant when [editable](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-minChars)\n */\n minChars ? : number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The min number of characters for the input field\n */\n minLength ? : number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Set to `true` to allow selection of multiple values from the dropdown list.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) Combo, selects the\n * currently active item in the picker, and clears the input field ready for another\n * match to be typed.\n */\n multiValueSeparator ? : string\n /**\n * Name of the field which is used as a key to get/set values from/to the field.\n * Used prior to [ref](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-name)\n */\n name ? : string\n /**\n * This implies that the picker will display an anchor pointer, but also means that the picker will align closer\n * to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement)\n */\n overlayAnchor ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/scheduler/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/scheduler/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-picker)\n */\n picker ? : ListConfig|List\n /**\n * The name of the element property to which the picker should size and align itself.\n */\n pickerAlignElement ? : string\n /**\n * Width of picker, defaults to this combo's [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement) width\n */\n pickerWidth ? : number|string\n /**\n * Text to display in empty field.\n */\n placeholder ? : string\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Optionally a [Filter](https://bryntum.com/products/scheduler/docs/api/Core/util/CollectionFilter) config object which the combo should use for\n * filtering using the typed value.\n * This may use a `filterBy` property to test its `value` against any field in the passed record.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-primaryFilter)\n */\n primaryFilter ? : CollectionFilterConfig\n /**\n * Project to reconfigure when picking an item.\n */\n project ? : ProjectModel|object\n /**\n * Makes the field unmodifiable by user action. The input area is not editable, and triggers\n * are unresponsive.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Predefined style to use for the field. Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-rendition)\n */\n rendition ? : 'outlined'|'filled'|string\n /**\n * Configure as `true` to indicate that a `null` field value is to be marked as invalid. This will\n * optionally append a * to the field label if [showRequiredIndicator](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-showRequiredIndicator) is set.\n */\n required ? : boolean\n /**\n * If this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing\n * the `ESCAPE` key after editing the field will revert the field to the value it had when\n * the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-clearable)\n * behaviour will be activated.\n */\n revertOnEscape ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-rtl)\n */\n rtl ? : boolean\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-required).\n */\n showRequiredIndicator ? : string\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`\n * to the user).\n */\n skipValidation ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Sets the native `spellcheck` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck)\n */\n spellCheck ? : boolean\n /**\n * Store used to populate items. Also accepts a Store config object\n */\n store ? : Store|StoreConfig\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tab index of the input field or fields, or `null` for natural tab order (recommended). Setting to `0`\n * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable\n * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set\n * to the element programmatically.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-tabIndex)\n */\n tabIndex ? : number\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * How to query the store upon click of the expand trigger. Specify one of these values:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-triggerAction)\n */\n triggerAction ? : 'all'|'last'|null\n /**\n * The triggers to add either before or after the input field. Each property name is the reference by which\n * an instantiated Trigger Widget may be retrieved from the live `triggers` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'projectcombo'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-ui)\n */\n ui ? : string|object\n /**\n * `true` to cause the field to be in an invalid state while the typed filter string does not match a record in the store.\n */\n validateFilter ? : boolean\n /**\n * Set to `false` to not highlight a field as invalid while typing, to instead show it on ENTER key press\n * or similar.\n */\n validateOnInput ? : boolean\n /**\n * The initial value of this Combo box. In single select mode (default) it's a simple string value, for\n * [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) mode, it should be an array of record ids.\n */\n value ? : string|number|string[]|number[]\n /**\n * Field used as projects load url.\n */\n valueField ? : string\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-project-combo',\n template : ''\n})\nexport class BryntumProjectComboComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ProjectCombo;\n\n public static instanceName = 'ProjectCombo';\n\n private static bryntumEvents: string[] = [\n 'onAction',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onClear',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onInput',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onSelect',\n 'onShow',\n 'onTrigger'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumProjectComboComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'badge',\n 'bubbleEvents',\n 'cacheLastResult',\n 'callOnFunctions',\n 'caseSensitive',\n 'catchEventHandlerExceptions',\n 'centered',\n 'chipView',\n 'clearable',\n 'clearTextOnPickerHide',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'createOnUnmatched',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'editable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'extraData',\n 'filterOnEnter',\n 'filterOperator',\n 'filterParamName',\n 'filterSelected',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hideTrigger',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'id',\n 'ignoreParentReadOnly',\n 'inline',\n 'inlinePicker',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'insertBefore',\n 'insertFirst',\n 'items',\n 'keyMap',\n 'keyStrokeChangeDelay',\n 'keyStrokeFilterDelay',\n 'label',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxLength',\n 'maxWidth',\n 'minChars',\n 'minHeight',\n 'minLength',\n 'minWidth',\n 'monitorResize',\n 'multiSelect',\n 'multiValueSeparator',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'picker',\n 'pickerAlignElement',\n 'pickerWidth',\n 'placeholder',\n 'positioned',\n 'preventTooltipOnTouch',\n 'primaryFilter',\n 'project',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'required',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollAction',\n 'showAnimation',\n 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'span',\n 'spellCheck',\n 'store',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'tooltip',\n 'triggerAction',\n 'triggers',\n 'type',\n 'ui',\n 'validateFilter',\n 'validateOnInput',\n 'value',\n 'valueField',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'bubbleEvents',\n 'cacheLastResult',\n 'caseSensitive',\n 'centered',\n 'chipView',\n 'clearable',\n 'clearTextOnPickerHide',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'color',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'createOnUnmatched',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'filterOnEnter',\n 'filterParamName',\n 'filterSelected',\n 'floating',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hideTrigger',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'ignoreParentReadOnly',\n 'inline',\n 'inlinePicker',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'items',\n 'keyStrokeChangeDelay',\n 'keyStrokeFilterDelay',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'maxLength',\n 'minChars',\n 'minLength',\n 'monitorResize',\n 'multiValueSeparator',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'pickerAlignElement',\n 'pickerWidth',\n 'positioned',\n 'preventTooltipOnTouch',\n 'primaryFilter',\n 'project',\n 'relayStoreEvents',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'triggerAction',\n 'type',\n 'ui',\n 'validateFilter',\n 'validateOnInput',\n 'valueField',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumProjectComboComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'badge',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'editable',\n 'extraData',\n 'filterOperator',\n 'flex',\n 'focusVisible',\n 'formula',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'input',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'multiSelect',\n 'parent',\n 'picker',\n 'placeholder',\n 'readOnly',\n 'rendition',\n 'required',\n 'rtl',\n 'scrollable',\n 'showRequiredIndicator',\n 'span',\n 'store',\n 'tooltip',\n 'triggers',\n 'value',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: ProjectCombo;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoComplete ! : string;\n @Input() autoExpand ! : boolean;\n @Input() autoSelect ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() cacheLastResult ! : number|string|Duration|DurationConfig;\n @Input() caseSensitive ! : boolean;\n @Input() centered ! : boolean;\n @Input() chipView ! : ChipViewConfig;\n @Input() clearable ! : boolean|FieldTriggerConfig;\n @Input() clearTextOnPickerHide ! : boolean;\n @Input() clearTextOnSelection ! : boolean;\n @Input() clearWhenInputEmpty ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() container ! : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer;\n @Input() containValues ! : boolean|string|((field: Field) => boolean);\n @Input() contentElementCls ! : string|object;\n @Input() createOnUnmatched ! : ((name: string, combo: Combo) => Model)|string|boolean;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() displayField ! : string;\n @Input() displayValueRenderer ! : (record: Model|ComboModel, combo: Combo) => string|void;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() emptyText ! : string;\n @Input() encodeFilterParams ! : (filters: object[]) => object[];\n @Input() filterOnEnter ! : boolean;\n @Input() filterParamName ! : string;\n @Input() filterSelected ! : boolean;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() hidePickerOnSelect ! : boolean;\n @Input() hideTrigger ! : boolean;\n @Input() highlightExternalChange ! : boolean;\n @Input() hint ! : string|((data: { source: Field, value: any }) => string);\n @Input() hintHtml ! : string|((data: { source: Field, value: any }) => string);\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() inline ! : boolean;\n @Input() inlinePicker ! : boolean;\n @Input() inputAlign ! : string;\n @Input() inputAttributes ! : Record<string, string>;\n @Input() inputTag ! : string;\n @Input() inputType ! : string;\n @Input() inputWidth ! : string|number;\n @Input() items ! : object[]|string[]|object;\n @Input() keyStrokeChangeDelay ! : number;\n @Input() keyStrokeFilterDelay ! : number;\n @Input() labelCls ! : string|object;\n @Input() labelPosition ! : 'before'|'above'|null;\n @Input() labels ! : object[];\n @Input() labelWidth ! : string|number;\n @Input() listCls ! : string;\n @Input() listeners ! : ProjectComboListeners;\n @Input() listItemTpl ! : (record: Model|ComboModel) => string|void;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxLength ! : number;\n @Input() minChars ! : number;\n @Input() minLength ! : number;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() multiValueSeparator ! : string;\n @Input() name ! : string;\n @Input() overlayAnchor ! : boolean;\n @Input() owner ! : Widget|any;\n @Input() pickerAlignElement ! : string;\n @Input() pickerWidth ! : number|string;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() primaryFilter ! : CollectionFilterConfig;\n @Input() project ! : ProjectModel|object;\n @Input() relayStoreEvents ! : boolean;\n @Input() revertOnEscape ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() spellCheck ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabIndex ! : number;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() title ! : string;\n @Input() triggerAction ! : 'all'|'last'|null;\n @Input() type ! : 'projectcombo';\n @Input() ui ! : string|object;\n @Input() validateFilter ! : boolean;\n @Input() validateOnInput ! : boolean;\n @Input() valueField ! : string;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() badge ! : string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() editable ! : boolean;\n @Input() extraData ! : any;\n @Input() filterOperator ! : CollectionCompareOperator;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() label ! : string;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() multiSelect ! : boolean;\n @Input() picker ! : ListConfig|List;\n @Input() placeholder ! : string;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : 'outlined'|'filled'|string;\n @Input() required ! : boolean;\n @Input() rtl ! : boolean;\n @Input() showRequiredIndicator ! : string;\n @Input() span ! : number;\n @Input() store ! : Store|StoreConfig;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() triggers ! : Record<string, FieldTriggerConfig>|Record<string, Widget>;\n @Input() value ! : object|number|string|string[]|number[];\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() content ! : string;\n @Input() focusVisible ! : boolean;\n @Input() formula ! : string;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() input ! : HTMLElement;\n @Input() parent ! : Widget;\n @Input() scrollable ! : Scroller;\n\n // Events emitters\n /**\n * The default action was performed (an item in the list was selected)\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {any} event.value The [value](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-valueField) of the selected record\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onAction: any = new EventEmitter<((event: { source: Combo, value: any, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when this field's value changes.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onChange: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fired when this field is [cleared](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#event-clear)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n */\n @Output() onClear: any = new EventEmitter<((event: { source: Field|any }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User typed into the field. Please note that the value attached to this event is the raw input field value and\n * not the combos value\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo.\n * @param {string} event.value Raw input value\n * @param {Event} event.event The triggering DOM event if any.\n */\n @Output() onInput: any = new EventEmitter<((event: { source: Combo, value: string, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * An item in the list was selected\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onSelect: any = new EventEmitter<((event: { source: Combo, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User clicked one of this field's [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {Core.widget.Widget} event.trigger The trigger activated by click or touch tap.\n */\n @Output() onTrigger: any = new EventEmitter<((event: { source: Field|any, trigger: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumProjectComboComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumProjectComboComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumProjectComboComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum ProjectModel\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { Model, ModelConfig, StateTrackingManager, StateTrackingManagerConfig, Store, StoreConfig } from '@bryntum/core-thin';\nimport { AssignmentModel, AssignmentModelConfig, AssignmentStore, AssignmentStoreConfig, DependencyModel, DependencyModelConfig, DependencyStore, DependencyStoreConfig, EventModel, EventModelConfig, EventStore, EventStoreConfig, ProjectModel, ResourceModel, ResourceModelConfig, ResourceStore, ResourceStoreConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, TimeRangeModel, TimeRangeModelConfig, TimeRangeStore, TimeSpan } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumSchedulerProjectModelProps = {\n // Configs\n /**\n * A flag, indicating whether the dates and duration calculations should adjust the result to DST time shift.\n */\n adjustDurationToDST ? : boolean\n /**\n * The constructor of the assignment model class, to be used in the project. Will be set as the\n * [modelClass](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-modelClass) property of the [assignmentStore](#Scheduler/model/ProjectModel#property-assignmentStore)\n */\n assignmentModelClass ? : typeof AssignmentModel\n /**\n * Data use to fill the [assignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-assignmentStore). Should be an array of\n * [AssignmentModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/AssignmentModel) or its configuration objects.\n */\n assignments ? : AssignmentModel[]|AssignmentModelConfig[]\n /**\n * The initial data, to fill the [assignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-assignmentStore) with.\n * Should be an array of [AssignmentModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/AssignmentModel) or its configuration\n * objects.\n * @deprecated 6.3.0 Use [assignments](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-assignments) instead\n */\n assignmentsData ? : AssignmentModel[]|AssignmentModelConfig[]\n /**\n * An [AssignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore) instance or a config object.\n */\n assignmentStore ? : AssignmentStore|AssignmentStoreConfig\n /**\n * The constructor to create an assignment store instance with. Should be a class, subclassing the\n * [AssignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore)\n */\n assignmentStoreClass ? : typeof AssignmentStore|object\n /**\n * Child nodes. To allow loading children on demand, specify `children : true` in your data. Omit the field for leaf\n * tasks.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-children)\n */\n children ? : boolean|object[]|Model[]|ModelConfig[]\n /**\n * Data use to fill the [dependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-dependencyStore). Should be an array of\n * [DependencyModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyModel) or its configuration objects.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * The initial data, to fill the [dependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-dependencyStore) with.\n * Should be an array of [DependencyModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyModel) or its configuration\n * objects.\n * @deprecated 6.3.0 Use [dependencies](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-dependencies) instead\n */\n dependenciesData ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * The constructor of the dependency model class, to be used in the project. Will be set as the\n * [modelClass](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-modelClass) property of the [dependencyStore](#Scheduler/model/ProjectModel#property-dependencyStore)\n */\n dependencyModelClass ? : typeof DependencyModel\n /**\n * A [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore) instance or a config object.\n */\n dependencyStore ? : DependencyStore|DependencyStoreConfig\n /**\n * The constructor to create a dependency store instance with. Should be a class, subclassing the\n * [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore)\n */\n dependencyStoreClass ? : typeof DependencyStore|object\n /**\n * The constructor of the event model class, to be used in the project. Will be set as the\n * [modelClass](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-modelClass) property of the [eventStore](#Scheduler/model/ProjectModel#property-eventStore)\n */\n eventModelClass ? : typeof EventModel\n /**\n * Data use to fill the [eventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-eventStore). Should be an array of\n * [EventModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel) or its configuration objects.\n */\n events ? : EventModel[]|EventModelConfig[]\n /**\n * The initial data, to fill the [eventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-eventStore) with.\n * Should be an array of [EventModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel) or its configuration objects.\n * @deprecated 6.3.0 Use [events](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-events) instead\n */\n eventsData ? : EventModel[]|EventModelConfig[]\n /**\n * An [EventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore) instance or a config object.\n */\n eventStore ? : EventStore|EventStoreConfig\n /**\n * The constructor to create an event store instance with. Should be a class, subclassing the\n * [EventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore)\n */\n eventStoreClass ? : typeof EventStore|object\n /**\n * Start expanded or not (only valid for tree data)\n */\n expanded ? : boolean\n /**\n * Unique identifier for the record. Might be mapped to another dataSource using idField, but always exposed as\n * record.id. Will get a generated value if none is specified in records data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-id)\n */\n id ? : string|number\n /**\n * Whether to include legacy data properties in the JSON / inlineData output. The legacy data properties are\n * the `xxData` (`eventsData`, `resourcesData` etc.) properties that are deprecated and will be removed in\n * the future.\n * @deprecated 6.3.0 This config will be removed when the eventsData, resourcesData etc. properties are removed in a future release.\n */\n includeLegacyDataProperties ? : boolean\n /**\n * This field is added to the class at runtime when the Store is configured with\n * [lazyLoad](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-lazyLoad). If set on a parent record at load time, that parent will not cause any\n * more child load requests. If omitted, it will be automatically set to `true` when a load request receives fewer\n * child records than requested.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-isFullyLoaded)\n */\n isFullyLoaded ? : boolean\n /**\n * Project data as a JSON string, used to populate its stores.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-json)\n */\n json ? : string\n /**\n * This is a read-only field provided in server synchronization packets to specify\n * which position the node takes in the parent's ordered children array.\n * This index is set on load and gets updated on reordering nodes in tree. Sorting and filtering\n * have no effect on it.\n */\n orderedParentIndex ? : number\n /**\n * This is a read-only field provided in server synchronization packets to specify\n * which record id is the parent of the record.\n */\n parentId ? : string|number|null\n /**\n * This is a read-only field provided in server synchronization packets to specify\n * which position the node takes in the parent's children array.\n * This index is set on load and gets updated automatically after row reordering, sorting, etc.\n * To save the order, need to persist the field on the server and when data is fetched to be loaded,\n * need to sort by this field.\n */\n parentIndex ? : number\n /**\n * Flag the record as read-only on the UI level, preventing the end user from manipulating it using editing\n * features such as cell editing and event dragging.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * This field is added to the class at runtime when the Store is configured with\n * [lazyLoad](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-lazyLoad). The\n * number specified should reflect the <strong>total</strong> amount of children of a parent node, including nested descendants.\n * @deprecated This field has been deprecated. Please read the [guide](https://bryntum.com/products/scheduler/docs/api/Grid/guides/data/lazyloading.md) to find out if your app needs to use the new [isFullyLoaded](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/TreeNode#field-isFullyLoaded) field.\n */\n remoteChildCount ? : number\n /**\n * The constructor of the resource model class, to be used in the project. Will be set as the\n * [modelClass](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-modelClass) property of the [resourceStore](#Scheduler/model/ProjectModel#property-resourceStore)\n */\n resourceModelClass ? : typeof ResourceModel\n /**\n * Data use to fill the [resourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-resourceStore). Should be an array of\n * [ResourceModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel) or its configuration objects.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * The initial data, to fill the [resourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-resourceStore) with.\n * Should be an array of [ResourceModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel) or its configuration objects.\n * @deprecated 6.3.0 Use [resources](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-resources) instead\n */\n resourcesData ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * A [ResourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore) instance or a config object.\n */\n resourceStore ? : ResourceStore|ResourceStoreConfig\n /**\n * The constructor to create a resource store instance with. Should be a class, subclassing the\n * [ResourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore)\n */\n resourceStoreClass ? : typeof ResourceStore|object\n /**\n * Data use to fill the [resourceTimeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-resourceTimeRangeStore). Should be an array\n * of [ResourceTimeRangeModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceTimeRangeModel) or its configuration objects.\n */\n resourceTimeRanges ? : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[]\n /**\n * The initial data, to fill the [resourceTimeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/mixin/ProjectModelMixin#property-resourceTimeRangeStore) with.\n * Should be an array of [ResourceTimeRangeModel](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceTimeRangeModel) or it's\n * configuration objects.\n * @deprecated 6.3.0 Use resourceTimeRanges instead\n */\n resourceTimeRangesData ? : ResourceTimeRangeModel[]\n /**\n * A [ResourceTimeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore) instance or a config object.\n */\n resourceTimeRangeStore ? : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig\n /**\n * The constructor to create a resource time range store instance with. Should be a class subclassing the\n * [ResourceTimeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore)\n */\n resourceTimeRangeStoreClass ? : typeof ResourceTimeRangeStore|object\n /**\n * Experimental hook that lets the app determine if a bound dataset needs syncing with the store or not, and\n * if it does - which records that should be processed. Only called for stores that are configured with\n * `syncDataOnLoad: true` (which is the default in the React, Angular and Vue wrappers).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-shouldSyncDataOnLoad)\n * @param {object} options Options passed by the store to this hook\n * @param {Core.data.Store} options.store Store about to be synced\n * @param {Core.data.Model} options.records Records currently in the store\n * @param {object[]} options.data Incoming data\n * @returns {Set<any>,boolean} Return `false` to prevent the store from syncing, or a set of record ids that need further processing (for records that has some kind of change, eg. an update, removal or addition)\n */\n shouldSyncDataOnLoad ? : (options: { store: Store, records: Model, data: object[] }) => Set<any>|boolean\n /**\n * Silences propagations caused by the project loading.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-silenceInitialCommit)\n */\n silenceInitialCommit ? : boolean\n /**\n * Configuration options to provide to the STM manager\n */\n stm ? : StateTrackingManagerConfig|StateTrackingManager\n /**\n * Data use to fill the [timeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#property-timeRangeStore). Should be an array of\n * [TimeRangeModels](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeRangeModel) or its configuration objects.\n */\n timeRanges ? : TimeRangeModel[]|TimeRangeModelConfig[]\n /**\n * The initial data, to fill the [timeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/mixin/ProjectModelMixin#property-timeRangeStore) with.\n * Should be an array of [TimeSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan) or its configuration objects.\n * @deprecated 6.3.0 Use timeRanges instead\n */\n timeRangesData ? : TimeSpan[]\n /**\n * A [Store](https://bryntum.com/products/scheduler/docs/api/Core/data/Store) instance or a config object.\n */\n timeRangeStore ? : Store|StoreConfig\n /**\n * The constructor to create a time range store instance with. Should be a class subclassing the\n * [TimeRangeStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore)\n */\n timeRangeStoreClass ? : typeof TimeRangeStore|object\n /**\n * Set to a IANA time zone (i.e. `Europe/Stockholm`) or a UTC offset in minutes (i.e. `-120`). This will\n * convert all events, tasks and time ranges to the specified time zone or offset. It will also affect the\n * displayed timeline's headers as well at the start and end date of it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone)\n */\n timeZone ? : string|number\n /**\n * Specifies the output format of [toJSON](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/mixin/ProjectModelCommon#function-toJSON).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-toJSONResultFormat)\n */\n toJSONResultFormat ? : 'inlineData'|'model'\n /**\n * By default, the stores of a project use the raw data objects passed to them as the data source for their\n * records if data is loaded remotely (using an `AjaxStore` or a `CrudManager`). For data supplied inline,\n * the data objects are instead by default cloned to avoid the original data object being modified by the\n * store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-useRawData)\n */\n useRawData ? : boolean\n\n}\n\n@Component({\n selector : 'bryntum-scheduler-project-model',\n template : ''\n})\nexport class BryntumSchedulerProjectModelComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ProjectModel;\n\n public static instanceName = 'ProjectModel';\n\n private static bryntumEvents: string[] = [\n 'onChange',\n 'onDataReady'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumSchedulerProjectModelComponent.bryntumFeatureNames.concat([\n 'adjustDurationToDST',\n 'assignmentModelClass',\n 'assignments',\n 'assignmentsData',\n 'assignmentStore',\n 'assignmentStoreClass',\n 'children',\n 'dependencies',\n 'dependenciesData',\n 'dependencyModelClass',\n 'dependencyStore',\n 'dependencyStoreClass',\n 'eventModelClass',\n 'events',\n 'eventsData',\n 'eventStore',\n 'eventStoreClass',\n 'expanded',\n 'id',\n 'includeLegacyDataProperties',\n 'isFullyLoaded',\n 'json',\n 'orderedParentIndex',\n 'parentId',\n 'parentIndex',\n 'readOnly',\n 'remoteChildCount',\n 'resourceModelClass',\n 'resources',\n 'resourcesData',\n 'resourceStore',\n 'resourceStoreClass',\n 'resourceTimeRanges',\n 'resourceTimeRangesData',\n 'resourceTimeRangeStore',\n 'resourceTimeRangeStoreClass',\n 'shouldSyncDataOnLoad',\n 'silenceInitialCommit',\n 'stm',\n 'timeRanges',\n 'timeRangesData',\n 'timeRangeStore',\n 'timeRangeStoreClass',\n 'timeZone',\n 'toJSONResultFormat',\n 'useRawData'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adjustDurationToDST',\n 'assignmentModelClass',\n 'assignmentsData',\n 'assignmentStoreClass',\n 'children',\n 'dependenciesData',\n 'dependencyModelClass',\n 'dependencyStoreClass',\n 'eventModelClass',\n 'eventsData',\n 'eventStoreClass',\n 'expanded',\n 'orderedParentIndex',\n 'parentIndex',\n 'resourceModelClass',\n 'resourcesData',\n 'resourceStoreClass',\n 'resourceTimeRangesData',\n 'resourceTimeRangeStoreClass',\n 'silenceInitialCommit',\n 'timeRangesData',\n 'timeRangeStoreClass',\n 'toJSONResultFormat',\n 'useRawData'\n ];\n\n private static bryntumProps: string[] = BryntumSchedulerProjectModelComponent.bryntumFeatureNames.concat([\n 'allChildren',\n 'allUnfilteredChildren',\n 'assignments',\n 'assignmentStore',\n 'dependencies',\n 'dependencyStore',\n 'descendantCount',\n 'events',\n 'eventStore',\n 'hasGeneratedId',\n 'id',\n 'includeLegacyDataProperties',\n 'inlineData',\n 'internalId',\n 'isCommitting',\n 'isCreating',\n 'isFullyLoaded',\n 'isValid',\n 'json',\n 'parentId',\n 'previousSiblingsTotalCount',\n 'readOnly',\n 'remoteChildCount',\n 'resources',\n 'resourceStore',\n 'resourceTimeRanges',\n 'resourceTimeRangeStore',\n 'shouldSyncDataOnLoad',\n 'stm',\n 'timeRanges',\n 'timeRangeStore',\n 'timeZone',\n 'visibleDescendantCount'\n ]);\n\n private elementRef: ElementRef;\n public instance!: ProjectModel;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adjustDurationToDST ! : boolean;\n @Input() assignmentModelClass ! : typeof AssignmentModel;\n @Input() assignmentsData ! : AssignmentModel[]|AssignmentModelConfig[];\n @Input() assignmentStoreClass ! : typeof AssignmentStore|object;\n @Input() children ! : boolean|object[]|Model[]|ModelConfig[];\n @Input() dependenciesData ! : DependencyModel[]|DependencyModelConfig[];\n @Input() dependencyModelClass ! : typeof DependencyModel;\n @Input() dependencyStoreClass ! : typeof DependencyStore|object;\n @Input() eventModelClass ! : typeof EventModel;\n @Input() eventsData ! : EventModel[]|EventModelConfig[];\n @Input() eventStoreClass ! : typeof EventStore|object;\n @Input() expanded ! : boolean;\n @Input() orderedParentIndex ! : number;\n @Input() parentIndex ! : number;\n @Input() resourceModelClass ! : typeof ResourceModel;\n @Input() resourcesData ! : ResourceModel[]|ResourceModelConfig[];\n @Input() resourceStoreClass ! : typeof ResourceStore|object;\n @Input() resourceTimeRangesData ! : ResourceTimeRangeModel[];\n @Input() resourceTimeRangeStoreClass ! : typeof ResourceTimeRangeStore|object;\n @Input() silenceInitialCommit ! : boolean;\n @Input() timeRangesData ! : TimeSpan[];\n @Input() timeRangeStoreClass ! : typeof TimeRangeStore|object;\n @Input() toJSONResultFormat ! : 'inlineData'|'model';\n @Input() useRawData ! : boolean;\n\n // Configs and properties\n @Input() assignments ! : AssignmentModel[]|AssignmentModelConfig[];\n @Input() assignmentStore ! : AssignmentStore|AssignmentStoreConfig;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\n @Input() dependencyStore ! : DependencyStore|DependencyStoreConfig;\n @Input() events ! : EventModel[]|EventModelConfig[];\n @Input() eventStore ! : EventStore|EventStoreConfig;\n @Input() id ! : string|number;\n @Input() includeLegacyDataProperties ! : boolean;\n @Input() isFullyLoaded ! : boolean;\n @Input() json ! : string;\n @Input() parentId ! : number|string|null;\n @Input() readOnly ! : boolean;\n @Input() remoteChildCount ! : number;\n @Input() resources ! : ResourceModel[]|ResourceModelConfig[];\n @Input() resourceStore ! : ResourceStore|ResourceStoreConfig;\n @Input() resourceTimeRanges ! : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[];\n @Input() resourceTimeRangeStore ! : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig;\n @Input() shouldSyncDataOnLoad ! : (options: { store: Store, records: Model, data: object[] }) => Set<any>|boolean;\n @Input() stm ! : StateTrackingManager|StateTrackingManagerConfig;\n @Input() timeRanges ! : TimeRangeModel[]|TimeRangeModelConfig[];\n @Input() timeRangeStore ! : Store|StoreConfig;\n @Input() timeZone ! : string|number;\n\n // Properties only\n @Input() allChildren ! : Model[];\n @Input() allUnfilteredChildren ! : Model[];\n @Input() descendantCount ! : number;\n @Input() hasGeneratedId ! : boolean;\n @Input() inlineData ! : object;\n @Input() internalId ! : number;\n @Input() isCommitting ! : boolean;\n @Input() isCreating ! : boolean;\n @Input() isValid ! : boolean;\n @Input() previousSiblingsTotalCount ! : number;\n @Input() visibleDescendantCount ! : number;\n\n // Events emitters\n /**\n * Fired when data in any of the projects stores changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#event-change)\n * @param {object} event Event object\n * @param {Scheduler.model.ProjectModel,any} event.source This project\n * @param {Core.data.Store} event.store Affected store\n * @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`\n * @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)\n * @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`\n * @param {object} event.changes Passed for the `'update'` action, info on which record fields changed\n */\n @Output() onChange: any = new EventEmitter<((event: { source: ProjectModel|any, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string>();\n /**\n * Fired when the engine has finished its calculations and the results has been written back to the records.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#event-dataReady)\n * @param {object} event Event object\n * @param {Scheduler.model.ProjectModel,any} event.source The project\n * @param {boolean} event.isInitialCommit Flag that shows if this commit is initial\n * @param {Set<any>} event.records Set of all [Model](https://bryntum.com/products/scheduler/docs/api/Core/data/Model)s that were modified in the completed transaction. Use the [modifications](https://bryntum.com/products/scheduler/docs/api/Core/data/Model#property-modifications) property of each Model to identify modified fields.\n */\n @Output() onDataReady: any = new EventEmitter<((event: { source: ProjectModel|any, isInitialCommit: boolean, records: Set<any> }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumSchedulerProjectModelComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumSchedulerProjectModelComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumSchedulerProjectModelComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum ResourceCombo\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Combo, ComboModel, DomConfig, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { SchedulerContainerItemConfig, ResourceCombo, ResourceComboListeners } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumResourceComboProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Sets the native `autocomplete` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete)\n */\n autoComplete ? : string\n /**\n * Configure as `true` to have the picker expand upon focus enter.\n */\n autoExpand ? : boolean\n /**\n * Specify `true` to auto select field contents on focus\n */\n autoSelect ? : boolean\n /**\n * Initial text to show in badge.\n */\n badge ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Enable caching of the last retrieved result until the timeout is reached.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-cacheLastResult)\n */\n cacheLastResult ? : number|string|Duration|DurationConfig\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * Configure as `true` to force case matching when filtering the dropdown list based upon the typed value.\n */\n caseSensitive ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * A config object to configure the [ChipView](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which\n * configures the `clear` [trigger](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers).\n */\n clearable ? : boolean|FieldTriggerConfig\n /**\n * `true` to clear value typed to a multiselect combo when picker is collapsed\n */\n clearTextOnPickerHide ? : boolean\n /**\n * Specify `false` to not clear value typed to a multiselect combo when an item is selected.\n */\n clearTextOnSelection ? : boolean\n /**\n * Set to `true` to clear this field when user empties the input element\n */\n clearWhenInputEmpty ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-cls)\n */\n cls ? : string|object\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The configuration for additional items associated to this field. This is typically used to add contextual\n * fields related to a [checkbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See\n * these classes for examples of nested fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-container)\n */\n container ? : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer\n /**\n * The config controls how the value of nested items are handled when a parent container gets or sets its\n * [values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-containValues)\n * @param {Core.widget.Field} field Field instance\n * @returns {boolean}\n */\n containValues ? : boolean|string|((field: Field) => boolean)\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * If configured as `true`, this means that when an unmatched string is typed into the\n * combo's input field, and `ENTER`, or the [multiValueSeparator](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,\n * a new record will be created using the typed string as the [displayField](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-createOnUnmatched)\n * @param {string} name Record name\n * @param {Core.widget.Combo} combo Combo instance\n * @returns {Core.data.Model} New record\n */\n createOnUnmatched ? : ((name: string, combo: Combo) => Model)|string|boolean\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Field used for item text when populating from store\n */\n displayField ? : string\n /**\n * Template function that can be used to customize the displayed value\n * @param {Core.data.Model} record The record to provide a textual value for\n * @param {Core.widget.Combo} combo A reference to this Combo\n * @returns {string,void}\n */\n displayValueRenderer ? : (record: Model|ComboModel, combo: Combo) => string|void\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * User can edit text in text field (otherwise only pick from attached picker)\n */\n editable ? : boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text to display in the drop down when there are no items in the underlying store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-filterParamName) to pass\n * any filters to the server upon load.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-encodeFilterParams)\n * @param {object[]} filters filters\n * @returns {object[]} array of values\n */\n encodeFilterParams ? : (filters: object[]) => object[]\n extraData ? : any\n /**\n * If `false`, filtering will be triggered once you exceed [minChars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-minChars). To filter only when\n * hitting Enter key, set this to `true`;\n */\n filterOnEnter ? : boolean\n /**\n * The name of an operator type as implemented in [operator](https://bryntum.com/products/scheduler/docs/api/Core/util/CollectionFilter#config-operator)\n * to use when filtering the dropdown list based upon the typed value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-filterOperator)\n */\n filterOperator ? : CollectionCompareOperator\n /**\n * If the dropdown is to be populated with a filtered query to a remote server, specify the\n * name of the parameter to pass the typed string here. By default, the string is simply sent\n * as the value of the parameter. For special encoding, configure the combo with [encodeFilterParams](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`, you may configure `filterSelected` as\n * `true` to hide items in the dropdown when they are added to the selection.\n * It will appear as if the requested item has \"moved\" into the field's\n * [ChipView](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-chipView).\n */\n filterSelected ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * By default, the picker is hidden on selection in single select mode, and\n * remains to allow more selections when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * Setting this to a `Boolean` value can override that default.\n */\n hidePickerOnSelect ? : boolean\n /**\n * Configure as `true` to hide the expand trigger. This is automatically set to `true` if\n * remote filtering is enabled by setting the [filterParamName](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-filterParamName) config.\n */\n hideTrigger ? : boolean\n /**\n * Specify `true` to highlight field after external value changes\n */\n highlightExternalChange ? : boolean\n /**\n * An optional string to display inside the input field as an overlay. This can be useful for displaying\n * a field's units.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-hint)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hint ? : string|((data: { source: Field, value: any }) => string)\n /**\n * This config is similar to [hint](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.\n * Since this can allow malicious content to be executed, be sure not to include user-entered data or to\n * encode such data (see [encodeHtml](https://bryntum.com/products/scheduler/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-hintHtml)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hintHtml ? : string|((data: { source: Field, value: any }) => string)\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set this config to `true` to always display items horizontally along with this field. This assigns an\n * [hbox](https://bryntum.com/products/scheduler/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-inline)\n */\n inline ? : boolean\n /**\n * Configure this as `true` to render the dropdown list as a permanently visible list\n * in the document flow immediately below the input area instead of as a popup.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-inlinePicker)\n */\n inlinePicker ? : boolean\n /**\n * Text alignment for the input field.\n */\n inputAlign ? : string\n /**\n * Sets custom attributes of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)\n */\n inputAttributes ? : Record<string, string>\n /**\n * If you need to use something else than a default `input` element, as the input element, provide the tag\n * name here. Please note that this is used for advanced usage only, for example when using WebComponents\n * (custom elements), and that the configured element must fulfil the same contract as a regular input\n * element.\n */\n inputTag ? : string\n /**\n * Sets the `type` attribute of the underlying input element (password, hidden, date, color, etc.).\n */\n inputType ? : string\n /**\n * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any\n * triggers. If a number is specified, `px` will be used.\n */\n inputWidth ? : string|number\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * Rows to display in the dropdown (list items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-items)\n */\n items ? : object[]|string[]|object\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The delay in milliseconds to wait after the last keystroke before triggering a change event.\n * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have\n * immediate feedback, change will still be triggered on blur).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-keyStrokeChangeDelay)\n */\n keyStrokeChangeDelay ? : number\n /**\n * The delay in milliseconds to wait after the last keystroke before filtering the list.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-keyStrokeFilterDelay)\n */\n keyStrokeFilterDelay ? : number\n /**\n * Label, prepended to field\n */\n label ? : string\n /**\n * CSS class name or class names to add to any configured [label](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Labelable#config-label)\n */\n labelCls ? : string|object\n /**\n * Label position, either 'before' the field or 'above' the field\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|null\n /**\n * The labels to add either before or after the input field.\n * Each label may have the following properties:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * CSS class to add to picker\n */\n listCls ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-listeners)\n */\n listeners ? : ResourceComboListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-listItemTpl)\n * @param {Core.data.Model} record The record representing the item being rendered\n * @returns {string,void}\n */\n listItemTpl ? : (record: Model|ComboModel) => string|void\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The max number of characters for the input field\n */\n maxLength ? : number\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The minimum string length to trigger the filtering, only relevant when [editable](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-minChars)\n */\n minChars ? : number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The min number of characters for the input field\n */\n minLength ? : number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Set to `true` to allow selection of multiple values from the dropdown list.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) Combo, selects the\n * currently active item in the picker, and clears the input field ready for another\n * match to be typed.\n */\n multiValueSeparator ? : string\n /**\n * Name of the field which is used as a key to get/set values from/to the field.\n * Used prior to [ref](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-name)\n */\n name ? : string\n /**\n * This implies that the picker will display an anchor pointer, but also means that the picker will align closer\n * to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement)\n */\n overlayAnchor ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/scheduler/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/scheduler/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-picker)\n */\n picker ? : ListConfig|List\n /**\n * The name of the element property to which the picker should size and align itself.\n */\n pickerAlignElement ? : string\n /**\n * Width of picker, defaults to this combo's [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement) width\n */\n pickerWidth ? : number|string\n /**\n * Text to display in empty field.\n */\n placeholder ? : string\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Optionally a [Filter](https://bryntum.com/products/scheduler/docs/api/Core/util/CollectionFilter) config object which the combo should use for\n * filtering using the typed value.\n * This may use a `filterBy` property to test its `value` against any field in the passed record.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-primaryFilter)\n */\n primaryFilter ? : CollectionFilterConfig\n /**\n * Makes the field unmodifiable by user action. The input area is not editable, and triggers\n * are unresponsive.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Predefined style to use for the field. Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-rendition)\n */\n rendition ? : 'outlined'|'filled'|string\n /**\n * Configure as `true` to indicate that a `null` field value is to be marked as invalid. This will\n * optionally append a * to the field label if [showRequiredIndicator](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-showRequiredIndicator) is set.\n */\n required ? : boolean\n /**\n * If this field is not [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing\n * the `ESCAPE` key after editing the field will revert the field to the value it had when\n * the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-clearable)\n * behaviour will be activated.\n */\n revertOnEscape ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-rtl)\n */\n rtl ? : boolean\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Show the [event color](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#field-eventColor) for each resource\n */\n showEventColor ? : boolean\n /**\n * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-required).\n */\n showRequiredIndicator ? : string\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`\n * to the user).\n */\n skipValidation ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Sets the native `spellcheck` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck)\n */\n spellCheck ? : boolean\n /**\n * Store used to populate items. Also accepts a Store config object\n */\n store ? : Store|StoreConfig\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tab index of the input field or fields, or `null` for natural tab order (recommended). Setting to `0`\n * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable\n * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set\n * to the element programmatically.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-tabIndex)\n */\n tabIndex ? : number\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * How to query the store upon click of the expand trigger. Specify one of these values:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-triggerAction)\n */\n triggerAction ? : 'all'|'last'|null\n /**\n * The triggers to add either before or after the input field. Each property name is the reference by which\n * an instantiated Trigger Widget may be retrieved from the live `triggers` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'resourcecombo'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-ui)\n */\n ui ? : string|object\n /**\n * `true` to cause the field to be in an invalid state while the typed filter string does not match a record in the store.\n */\n validateFilter ? : boolean\n /**\n * Set to `false` to not highlight a field as invalid while typing, to instead show it on ENTER key press\n * or similar.\n */\n validateOnInput ? : boolean\n /**\n * The initial value of this Combo box. In single select mode (default) it's a simple string value, for\n * [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) mode, it should be an array of record ids.\n */\n value ? : string|number|string[]|number[]\n /**\n * Field used for item value when populating from store. Setting this to `null` will\n * yield the selected record as the Combo's [value](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-valueField)\n */\n valueField ? : string|null\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-resource-combo',\n template : ''\n})\nexport class BryntumResourceComboComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ResourceCombo;\n\n public static instanceName = 'ResourceCombo';\n\n private static bryntumEvents: string[] = [\n 'onAction',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onClear',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onInput',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onSelect',\n 'onShow',\n 'onTrigger'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumResourceComboComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'badge',\n 'bubbleEvents',\n 'cacheLastResult',\n 'callOnFunctions',\n 'caseSensitive',\n 'catchEventHandlerExceptions',\n 'centered',\n 'chipView',\n 'clearable',\n 'clearTextOnPickerHide',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'createOnUnmatched',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'editable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'extraData',\n 'filterOnEnter',\n 'filterOperator',\n 'filterParamName',\n 'filterSelected',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hideTrigger',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'id',\n 'ignoreParentReadOnly',\n 'inline',\n 'inlinePicker',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'insertBefore',\n 'insertFirst',\n 'items',\n 'keyMap',\n 'keyStrokeChangeDelay',\n 'keyStrokeFilterDelay',\n 'label',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxLength',\n 'maxWidth',\n 'minChars',\n 'minHeight',\n 'minLength',\n 'minWidth',\n 'monitorResize',\n 'multiSelect',\n 'multiValueSeparator',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'picker',\n 'pickerAlignElement',\n 'pickerWidth',\n 'placeholder',\n 'positioned',\n 'preventTooltipOnTouch',\n 'primaryFilter',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'required',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollAction',\n 'showAnimation',\n 'showEventColor',\n 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'span',\n 'spellCheck',\n 'store',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'tooltip',\n 'triggerAction',\n 'triggers',\n 'type',\n 'ui',\n 'validateFilter',\n 'validateOnInput',\n 'value',\n 'valueField',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoExpand',\n 'autoSelect',\n 'bubbleEvents',\n 'cacheLastResult',\n 'caseSensitive',\n 'centered',\n 'chipView',\n 'clearable',\n 'clearTextOnPickerHide',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'color',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'createOnUnmatched',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'filterOnEnter',\n 'filterParamName',\n 'filterSelected',\n 'floating',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hideTrigger',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'ignoreParentReadOnly',\n 'inline',\n 'inlinePicker',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'items',\n 'keyStrokeChangeDelay',\n 'keyStrokeFilterDelay',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'maxLength',\n 'minChars',\n 'minLength',\n 'monitorResize',\n 'multiValueSeparator',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'pickerAlignElement',\n 'pickerWidth',\n 'positioned',\n 'preventTooltipOnTouch',\n 'primaryFilter',\n 'relayStoreEvents',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showEventColor',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'triggerAction',\n 'type',\n 'ui',\n 'validateFilter',\n 'validateOnInput',\n 'valueField',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumResourceComboComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'badge',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'editable',\n 'extraData',\n 'filterOperator',\n 'flex',\n 'focusVisible',\n 'formula',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'input',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'multiSelect',\n 'parent',\n 'picker',\n 'placeholder',\n 'readOnly',\n 'rendition',\n 'required',\n 'rtl',\n 'scrollable',\n 'showRequiredIndicator',\n 'span',\n 'store',\n 'tooltip',\n 'triggers',\n 'value',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: ResourceCombo;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoComplete ! : string;\n @Input() autoExpand ! : boolean;\n @Input() autoSelect ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() cacheLastResult ! : number|string|Duration|DurationConfig;\n @Input() caseSensitive ! : boolean;\n @Input() centered ! : boolean;\n @Input() chipView ! : ChipViewConfig;\n @Input() clearable ! : boolean|FieldTriggerConfig;\n @Input() clearTextOnPickerHide ! : boolean;\n @Input() clearTextOnSelection ! : boolean;\n @Input() clearWhenInputEmpty ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() container ! : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|FieldContainerConfig|FieldContainer;\n @Input() containValues ! : boolean|string|((field: Field) => boolean);\n @Input() contentElementCls ! : string|object;\n @Input() createOnUnmatched ! : ((name: string, combo: Combo) => Model)|string|boolean;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() displayField ! : string;\n @Input() displayValueRenderer ! : (record: Model|ComboModel, combo: Combo) => string|void;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() emptyText ! : string;\n @Input() encodeFilterParams ! : (filters: object[]) => object[];\n @Input() filterOnEnter ! : boolean;\n @Input() filterParamName ! : string;\n @Input() filterSelected ! : boolean;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() hidePickerOnSelect ! : boolean;\n @Input() hideTrigger ! : boolean;\n @Input() highlightExternalChange ! : boolean;\n @Input() hint ! : string|((data: { source: Field, value: any }) => string);\n @Input() hintHtml ! : string|((data: { source: Field, value: any }) => string);\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() inline ! : boolean;\n @Input() inlinePicker ! : boolean;\n @Input() inputAlign ! : string;\n @Input() inputAttributes ! : Record<string, string>;\n @Input() inputTag ! : string;\n @Input() inputType ! : string;\n @Input() inputWidth ! : string|number;\n @Input() items ! : object[]|string[]|object;\n @Input() keyStrokeChangeDelay ! : number;\n @Input() keyStrokeFilterDelay ! : number;\n @Input() labelCls ! : string|object;\n @Input() labelPosition ! : 'before'|'above'|null;\n @Input() labels ! : object[];\n @Input() labelWidth ! : string|number;\n @Input() listCls ! : string;\n @Input() listeners ! : ResourceComboListeners;\n @Input() listItemTpl ! : (record: Model|ComboModel) => string|void;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxLength ! : number;\n @Input() minChars ! : number;\n @Input() minLength ! : number;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() multiValueSeparator ! : string;\n @Input() name ! : string;\n @Input() overlayAnchor ! : boolean;\n @Input() owner ! : Widget|any;\n @Input() pickerAlignElement ! : string;\n @Input() pickerWidth ! : number|string;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() primaryFilter ! : CollectionFilterConfig;\n @Input() relayStoreEvents ! : boolean;\n @Input() revertOnEscape ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showEventColor ! : boolean;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() spellCheck ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabIndex ! : number;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() title ! : string;\n @Input() triggerAction ! : 'all'|'last'|null;\n @Input() type ! : 'resourcecombo';\n @Input() ui ! : string|object;\n @Input() validateFilter ! : boolean;\n @Input() validateOnInput ! : boolean;\n @Input() valueField ! : string|null;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() badge ! : string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() editable ! : boolean;\n @Input() extraData ! : any;\n @Input() filterOperator ! : CollectionCompareOperator;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() label ! : string;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() multiSelect ! : boolean;\n @Input() picker ! : ListConfig|List;\n @Input() placeholder ! : string;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : 'outlined'|'filled'|string;\n @Input() required ! : boolean;\n @Input() rtl ! : boolean;\n @Input() showRequiredIndicator ! : string;\n @Input() span ! : number;\n @Input() store ! : Store|StoreConfig;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() triggers ! : Record<string, FieldTriggerConfig>|Record<string, Widget>;\n @Input() value ! : object|number|string|string[]|number[];\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() content ! : string;\n @Input() focusVisible ! : boolean;\n @Input() formula ! : string;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() input ! : HTMLElement;\n @Input() parent ! : Widget;\n @Input() scrollable ! : Scroller;\n\n // Events emitters\n /**\n * The default action was performed (an item in the list was selected)\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {any} event.value The [value](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-valueField) of the selected record\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onAction: any = new EventEmitter<((event: { source: Combo, value: any, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when this field's value changes.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onChange: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fired when this field is [cleared](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#event-clear)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n */\n @Output() onClear: any = new EventEmitter<((event: { source: Field|any }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User typed into the field. Please note that the value attached to this event is the raw input field value and\n * not the combos value\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo.\n * @param {string} event.value Raw input value\n * @param {Event} event.event The triggering DOM event if any.\n */\n @Output() onInput: any = new EventEmitter<((event: { source: Combo, value: string, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * An item in the list was selected\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onSelect: any = new EventEmitter<((event: { source: Combo, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User clicked one of this field's [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {Core.widget.Widget} event.trigger The trigger activated by click or touch tap.\n */\n @Output() onTrigger: any = new EventEmitter<((event: { source: Field|any, trigger: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumResourceComboComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumResourceComboComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumResourceComboComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum ResourceFilter\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, Collection, CollectionConfig, DomConfig, Field, KeyMapConfig, List, MaskConfig, Model, ModelConfig, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { EventStore, ResourceFilter, ResourceFilterListeners, ResourceModel } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumResourceFilterProps = {\n // Configs\n /**\n * Configure as `true` to activate items on mouseover. This is used by the Combo\n * field when using a List as its dropdown.\n */\n activateOnMouseover ? : boolean\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * Configure as `true` to allow selecting groups (all the group child records will be toggled). Only\n * applicable when the store is grouped.\n */\n allowGroupSelect ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Configure as `true` to clear selection when clicking on empty space inside the List´s element.\n */\n clearSelectionOnEmptySpaceClick ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-cls)\n */\n cls ? : string|object\n /**\n * True to add a collapse icon to toggle groups being collapsed or expanded\n */\n collapsibleGroups ? : boolean\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * The model field to render into each list item\n */\n displayField ? : string\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * The text to show when the list is empty. If not set, the list will be empty.\n */\n emptyText ? : string\n /**\n * The [EventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore) to filter.\n * Events for resources which are deselected in this List will be filtered out.\n */\n eventStore ? : EventStore\n extraData ? : any\n /**\n * By default, deselecting list items filters only the [eventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-eventStore) so that\n * events for the deselected resources are hidden from view. The `resourceStore` is <strong>not</strong>\n * filtered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-filterResources)\n */\n filterResources ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Configure this as a function or the name of a function, which when passed a record in the\n * list, returns a CSS class name string to apply to its list item.\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n getItemCls ? : ((record: Model) => string)|string\n /**\n * Configure this as a function or the name of a function, which when passed a record in the\n * list, returns a style string to apply to its list item.\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n getItemStyle ? : ((record: Model) => string)|string\n /**\n * Template function which is passed a group record and the uppercased group field name. The text returned\n * will be rendered as the group header.\n * @param {Core.data.Model} record The record\n * @param {string} groupName The current group name\n * @returns {string}\n */\n groupHeaderTpl ? : (record: Model, groupName: string) => string\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * A function, or the name of a function in the ownership hierarchy which is used to determine\n * whether a record is selectable. By default, all records are selectable except group header\n * records in a grouped store.\n * @returns {boolean} `true` if the record is selectable\n */\n isSelectable ? : (() => boolean)|string\n /**\n * An array of Objects which are converted into records and used to create this\n * List's [store](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-store)\n */\n items ? : object[]\n /**\n * Template function (or name of a template function), which, when passed a record, returns the textual HTML for\n * that item. Defaults to a function returning the value of the record´s [displayField](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-displayField)\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n itemTpl ? : ((record: Model) => string)|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-listeners)\n */\n listeners ? : ResourceFilterListeners\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * An optional filter function to apply when loading resources from the project's\n * resource store. Defaults to loading all resources.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-masterFilter)\n * @param {Scheduler.model.ResourceModel} resource Resorce for filtering\n * @returns {boolean} Returns `true` to include the passed resource\n */\n masterFilter ? : ((resource: ResourceModel) => boolean)|string\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Configure as `false` to only allow selecting one resource at a time\n */\n multiSelect ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Whether this widget is read-only. This is only valid if the widget is an input\n * field, <strong>or contains input fields at any depth</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * Set to `true` to add a \"Select all\" item to the list to select/unselect all items at once.\n * Only applies when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-multiSelect) mode is enabled.\n */\n selectAllItem ? : boolean|string\n /**\n * A [Collection](https://bryntum.com/products/scheduler/docs/api/Core/util/Collection), or Collection config object to use to contain this List's selected\n * records.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-selected)\n */\n selected ? : object[]|number[]|string[]|Collection|CollectionConfig|CollectionConfig[]\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * A [Store](https://bryntum.com/products/scheduler/docs/api/Core/data/Store) which provides the records which map to List items. Each record is passed through the\n * [itemTpl](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-itemTpl) to produce the DOM structure of the List. May be generated from an array of [items](#Core/widget/List#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-store)\n */\n store ? : object|object[]|StoreConfig|Store|StoreConfig[]\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * The title to show at the top of the list.\n */\n title ? : string\n /**\n * Select/deselect all if `CMD`/`CTRL` is pressed when clicking\n */\n toggleAllIfCtrlPressed ? : boolean\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * Template function to provide a tooltip (textual, will be automatically HTML-encoded) shown when hovering an item.\n * @param {Core.data.Model} record The record representing the item\n * @returns {string}\n */\n tooltipTemplate ? : (record: Model) => string\n type ? : 'resourceFilter'|'resourcefilter'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-ui)\n */\n ui ? : string|object\n /**\n * Configure as `false` to not use the Resource`s color field to style the checkbox\n */\n useResourceColor ? : boolean\n /**\n * Controls virtualization of list items using the `IntersectionObserver` API to render items only when\n * scrolled into view. This is only useful for lists with complex markup, for simple lists it likely adds\n * overhead.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-virtualize)\n */\n virtualize ? : boolean|number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-resource-filter',\n template : ''\n})\nexport class BryntumResourceFilterComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ResourceFilter;\n\n public static instanceName = 'ResourceFilter';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeItem',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onItem',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onSelectionChange',\n 'onShow',\n 'onToggleGroup',\n 'onToggleNode'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumResourceFilterComponent.bryntumFeatureNames.concat([\n 'activateOnMouseover',\n 'adopt',\n 'align',\n 'alignSelf',\n 'allowGroupSelect',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'clearSelectionOnEmptySpaceClick',\n 'cls',\n 'collapsibleGroups',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'displayField',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'emptyText',\n 'eventStore',\n 'extraData',\n 'filterResources',\n 'flex',\n 'floating',\n 'getItemCls',\n 'getItemStyle',\n 'groupHeaderTpl',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'html',\n 'htmlCls',\n 'id',\n 'ignoreParentReadOnly',\n 'insertBefore',\n 'insertFirst',\n 'isSelectable',\n 'items',\n 'itemTpl',\n 'keyMap',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'masterFilter',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'multiSelect',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'selectAllItem',\n 'selected',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'span',\n 'store',\n 'tab',\n 'tag',\n 'textAlign',\n 'title',\n 'toggleAllIfCtrlPressed',\n 'tooltip',\n 'tooltipTemplate',\n 'type',\n 'ui',\n 'useResourceColor',\n 'virtualize',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'activateOnMouseover',\n 'adopt',\n 'align',\n 'allowGroupSelect',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'centered',\n 'clearSelectionOnEmptySpaceClick',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'displayField',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'eventStore',\n 'filterResources',\n 'floating',\n 'getItemCls',\n 'getItemStyle',\n 'groupHeaderTpl',\n 'hideAnimation',\n 'htmlCls',\n 'ignoreParentReadOnly',\n 'isSelectable',\n 'itemTpl',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'masterFilter',\n 'monitorResize',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'selectAllItem',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'tab',\n 'tag',\n 'textAlign',\n 'tooltipTemplate',\n 'type',\n 'ui',\n 'useResourceColor',\n 'virtualize',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumResourceFilterComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'collapsibleGroups',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'emptyText',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'insertBefore',\n 'insertFirst',\n 'items',\n 'keyMap',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'multiSelect',\n 'parent',\n 'readOnly',\n 'rtl',\n 'scrollable',\n 'selected',\n 'span',\n 'store',\n 'title',\n 'toggleAllIfCtrlPressed',\n 'tooltip',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: ResourceFilter;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() activateOnMouseover ! : boolean;\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() allowGroupSelect ! : boolean;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() clearSelectionOnEmptySpaceClick ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() displayField ! : string;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() eventStore ! : EventStore;\n @Input() filterResources ! : boolean;\n @Input() floating ! : boolean;\n @Input() getItemCls ! : ((record: Model) => string)|string;\n @Input() getItemStyle ! : ((record: Model) => string)|string;\n @Input() groupHeaderTpl ! : (record: Model, groupName: string) => string;\n @Input() hideAnimation ! : boolean|object;\n @Input() htmlCls ! : string|object;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() isSelectable ! : (() => boolean)|string;\n @Input() itemTpl ! : ((record: Model) => string)|string;\n @Input() listeners ! : ResourceFilterListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() masterFilter ! : ((resource: ResourceModel) => boolean)|string;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() selectAllItem ! : boolean|string;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tag ! : string;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() tooltipTemplate ! : (record: Model) => string;\n @Input() type ! : 'resourceFilter'|'resourcefilter';\n @Input() ui ! : string|object;\n @Input() useResourceColor ! : boolean;\n @Input() virtualize ! : boolean|number;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsibleGroups ! : boolean;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() emptyText ! : string;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : object[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() multiSelect ! : boolean;\n @Input() readOnly ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selected ! : Model|Model[]|string|string[]|number|number[]|Collection|object[]|CollectionConfig|ModelConfig[]|CollectionConfig[];\n @Input() span ! : number;\n @Input() store ! : object|object[]|StoreConfig|Store|StoreConfig[];\n @Input() title ! : string;\n @Input() toggleAllIfCtrlPressed ! : boolean;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() parent ! : Widget;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * User going to activate an item in the list either by pointer or keyboard.\n * The active record, list item index, and the triggering event are passed.\n * It is preventable by returning `false`\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {HTMLElement} event.item The clicked list element\n * @param {Core.data.Model} event.record Activated record\n * @param {number} event.index List item index\n * @param {Event} event.event Triggering event\n */\n @Output() onBeforeItem: any = new EventEmitter<((event: { source: List, item: HTMLElement, record: Model, index: number, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when this widget's selection changes\n * @param {object} event Event object\n * @param {string} event.value This field's value\n * @param {string} event.oldValue This field's previous value\n * @param {Core.widget.Field} event.source This ResourceFilter\n */\n @Output() onChange: any = new EventEmitter<((event: { value: string, oldValue: string, source: Field }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User activated an item in the list either by pointer or keyboard.\n * The active record, list item index, and the triggering event are passed.\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {HTMLElement} event.item The clicked list element\n * @param {Core.data.Model} event.record Activated record\n * @param {number} event.index List item index\n * @param {Event} event.event Triggering event\n */\n @Output() onItem: any = new EventEmitter<((event: { source: List, item: HTMLElement, record: Model, index: number, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired when selection changes\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {Core.data.Model[]} event.selected An array of the currently selected records\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { source: List, selected: Model[] }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Group item expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord Group record\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n */\n @Output() onToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, collapse: boolean }) => void)|string>();\n /**\n * Tree parent node expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.record The parent record which has been toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n */\n @Output() onToggleNode: any = new EventEmitter<((event: { record: Model, collapse: boolean }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumResourceFilterComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumResourceFilterComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumResourceFilterComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum Scheduler\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AjaxStore, AjaxStoreConfig, Base, Container, DomClassList, DomConfig, DurationConfig, DurationUnit, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Popup, Rectangle, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, EmptyTextDomConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridLocation, GridLocationConfig, GridSelectionMode, Group, GroupConfig, HeaderMenu, HeaderMenuConfig, MergeCells, MergeCellsConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, Search, SearchConfig, Sort, SortConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentModel, AssignmentModelConfig, AssignmentStore, AssignmentStoreConfig, ColumnLines, ColumnLinesConfig, SchedulerContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, Dependencies, DependenciesConfig, DependencyBaseModel, DependencyEdit, DependencyEditConfig, DependencyMenu, DependencyMenuConfig, DependencyModel, DependencyModelConfig, DependencyStore, DependencyStoreConfig, DropData, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventModel, EventModelConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResize, EventResizeConfig, EventResizeData, EventStore, EventStoreConfig, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, SchedulerColumnConfig, GroupSummary, GroupSummaryConfig, HeaderZoom, HeaderZoomConfig, Labels, LabelsConfig, LockRows, LockRowsConfig, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PdfExport, PdfExportConfig, PresetStore, Print, PrintConfig, ProjectModel, ProjectModelConfig, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceModel, ResourceModelConfig, ResourceStore, ResourceStoreConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerBase, SchedulerListeners, SchedulerResponsiveLevelConfig, SchedulerStateInfo, ScrollButtons, ScrollButtonsConfig, SimpleEventEdit, SimpleEventEditConfig, Split, SplitConfig, StickyEvents, StickyEventsConfig, Summary, SummaryConfig, TimeAxis, TimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumSchedulerProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * Set to `false` to not allow creating dependencies\n */\n allowCreate ? : boolean\n /**\n * Set it to `true` to allow dependency creation only for parent events (only applies to Scheduler Pro using the `NestedEvents` feature). Normally the nested event container\n * inside parent events cannot be scrolled when using dependencies, but by enabling this setting and limiting\n * to where dependencies can be drawn scrolling will be enabled.\n */\n allowCreateOnlyParent ? : boolean\n /**\n * `false` to require a drop on a target event bar side circle to define the dependency type.\n * If dropped on the event bar, the `defaultValue` of the DependencyModel `type` field will be used to\n * determine the target task side.\n */\n allowDropOnEventBar ? : boolean\n /**\n * Set to `false` if you don't want to allow events overlapping times for any one resource (defaults to `true`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-allowOverlap)\n */\n allowOverlap ? : boolean\n /**\n * Set to `true` to animate row removals caused by filtering.\n * @deprecated 7.0.0 Deprecated `animateFilterRemovals`. Use `transition.filterRemoval` instead\n */\n animateFilterRemovals ? : boolean\n /**\n * Controls if removing and inserting rows should be animated. Set to `false` to prevent those animations,\n * removing the related delays.\n * @deprecated 7.0.0 Deprecated `animateRemovingRows`. Use `transition.removeRecord` instead\n */\n animateRemovingRows ? : boolean\n /**\n * When the [Tree](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree) feature is in use and the Store is a tree store, this\n * config may be set to `true` to visually animate branch node expand and collapse operations.\n * *This is not supported in Scheduler and Gantt*\n * @deprecated 7.0.0 Deprecated `animateTreeNodeToggle`. Use `transition.toggleTreeNode` instead\n */\n animateTreeNodeToggle ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Inline assignments, will be loaded into an internally created AssignmentStore.\n */\n assignments ? : AssignmentModel[]|object[]|AssignmentModelConfig[]\n /**\n * The optional [AssignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore), holding assignments between resources and events.\n * Required for multi assignments.\n */\n assignmentStore ? : AssignmentStore|AssignmentStoreConfig\n /**\n * You can set this option to `false` to make the timeline panel start and end on the exact provided\n * [startDate](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-startDate)/[endDate](#Scheduler/view/TimelineBase#config-endDate) w/o adjusting them.\n */\n autoAdjustTimeAxis ? : boolean\n /**\n * If this config is set, then its `gesture` property (which defaults to `dblclick`) creates a\n * new event at the mouse or touch event's time point.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-autoCreate)\n * @param {'click','dblclick'} autoCreate.gesture The gesture to trigger auto creation of an event. Defaults to `dblclick`.\n * @param {boolean} autoCreate.useEventModelDefaults Set to `true` to set default duration based on the defaults specified by the [duration](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel#field-duration) and [durationUnit](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel#field-durationUnit) fields.\n * @param {'round','ceil','floor'} autoCreate.snapType The type of snapping to apply to the event start date. If omitted, the date will be floored to the time axis resolution.\n * @param {DurationConfig,string} autoCreate.step The increment to snap the event start date to.\n * @param {DurationConfig,string} autoCreate.duration The duration of the event to create. Defaults to 1 time axis tick.\n * @param {string} autoCreate.name The name of the event to create. Defaults to the `Object.newEvent` property from the locale.\n */\n autoCreate ? : boolean|string|{autoCreate: { gesture?: 'click'|'dblclick', useEventModelDefaults?: boolean, snapType?: 'round'|'ceil'|'floor', step?: DurationConfig|string, duration?: DurationConfig|string, name?: string }}\n /**\n * Automatically set grids height to fit all rows (no scrolling in the grid). In general you should avoid\n * using `autoHeight: true`, since it will bypass Grids virtual rendering and render all rows at once, which\n * in a larger grid is really bad for performance.\n */\n autoHeight ? : boolean\n /**\n * Controls how much space to leave between stacked event bars in px.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-barMargin)\n */\n barMargin ? : number\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-bbar)\n */\n bbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * Custom CSS classes to add to the panel's body element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-bodyCls)\n */\n bodyCls ? : string|object\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * This config defines the size of the start and end invisible parts of the timespan when [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-infiniteScroll) set to `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-bufferCoef)\n */\n bufferCoef ? : number\n /**\n * This config defines the scroll limit, which, when exceeded will cause a timespan shift.\n * The limit is calculated as the `panelWidth * [bufferCoef](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-bufferCoef) * bufferThreshold`. During scrolling, if the left or right side\n * has less than that of the rendered content - a shift is triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-bufferThreshold)\n */\n bufferThreshold ? : number\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * Set to `false` to crop text in grid cells without ellipsis (...). When enabled, cells containing pure\n * use `display : block`, instead of `display : flex` to allow ellipsis to work.\n * <strong>NOTE</strong> Only supported in browsers that support `:has()` CSS selector\n */\n cellEllipsis ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-cls)\n */\n cls ? : string|object\n /**\n * Controls whether the panel is collapsed (the body of the panel is hidden while only the header is\n * visible). Only valid if the panel is [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible).\n */\n collapsed ? : boolean\n /**\n * This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-collapsible)\n */\n collapsible ? : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n /**\n * Set to `false` to not show column lines. End result might be overruled by/differ between themes.\n */\n columnLines ? : boolean\n /**\n * Accepts column definitions for the grid during initialization. They will be used to create\n * [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-columns)\n */\n columns ? : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * Event which is used to show context menus.\n * Available options are: 'contextmenu', 'click', 'dblclick'.\n */\n contextMenuTriggerEvent ? : 'contextmenu'|'click'|'dblclick'\n /**\n * A tooltip config object that will be applied to the dependency creation [Tooltip](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip)\n */\n creationTooltip ? : TooltipConfig\n /**\n * A template function that will be called to generate the HTML contents of the dependency creation tooltip.\n * You can return either an HTML string or a [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object.\n * @param {object} data Data about the dependency being created\n * @param {Scheduler.model.TimeSpan} data.source The from event\n * @param {Scheduler.model.TimeSpan} data.target The target event\n * @param {string} data.fromSide The from side (start, end, top, bottom)\n * @param {string} data.toSide The target side (start, end, top, bottom)\n * @param {boolean} data.valid The validity of the dependency\n * @returns {string,DomConfig}\n */\n creationTooltipTemplate ? : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig\n /**\n * Supply a [CrudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/CrudManager) instance or a config object if you want to use\n * CrudManager for handling data.\n */\n crudManager ? : CrudManagerConfig|CrudManager\n /**\n * Class that should be used to instantiate a CrudManager in case it's provided as a simple object to\n * [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.\n */\n crudManagerClass ? : typeof CrudManager\n /**\n * Convenient shortcut to set data in grids store both during initialization and at runtime. Can also be\n * used to retrieve data at runtime, although we do recommend interacting with Grids store instead using\n * the [store](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-data)\n */\n data ? : object[]|Model[]|ModelConfig[]\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The date to display when used as a component of a Calendar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-date)\n */\n date ? : Date\n /**\n * A [DateHelper](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper) format string/function to use to create date output for view descriptions.\n * @param {Date} date The date to format.\n * @returns {string} The formatted date.\n */\n dateFormat ? : string|((date: Date) => string)\n /**\n * A string used to separate start and end dates in the [descriptionFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).\n */\n dateSeparator ? : string\n /**\n * Region to which columns are added when they have none specified\n */\n defaultRegion ? : string\n /**\n * Generic resource image, used when provided `imageUrl` or `image` fields or path calculated from resource\n * name are all invalid. If left blank, resource name initials will be shown when no image can be loaded.\n */\n defaultResourceImageName ? : string\n /**\n * Inline dependencies, will be loaded into an internally created DependencyStore.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * The optional [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore).\n */\n dependencyStore ? : DependencyStore|DependencyStoreConfig\n /**\n * The date format used by the default [descriptionRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionRenderer) for rendering the view's description.\n * If this value is `null`, the [dateFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-dateFormat) (and potentially [dateSeparator](#Scheduler/view/mixin/Describable#config-dateSeparator)) will\n * be used.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-descriptionFormat)\n * @param {Date} date The date to format.\n * @returns {string} The formatted date.\n */\n descriptionFormat ? : string|string[]|boolean[]|((date: Date) => string)|Function[]\n /**\n * A function that provides the textual description for this view. If provided, this function overrides the\n * [descriptionFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-descriptionRenderer)\n * @param {Core.widget.Widget} view The active view in case the function is in another scope.\n * @returns {string} Description string\n */\n descriptionRenderer ? : (view: Widget) => string\n /**\n * Configure as `false` to preserve selection when clicking the empty schedule area.\n */\n deselectAllOnScheduleClick ? : boolean\n /**\n * Configure as `true` to deselect a selected event upon click.\n */\n deselectOnClick ? : boolean\n /**\n * Set to `true` to destroy the store when the grid is destroyed.\n */\n destroyStore ? : boolean\n /**\n * Configure as `true` to destroy the Project and stores when `this` is destroyed.\n */\n destroyStores ? : boolean\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#function-getState) when there is a column\n * configured without an `id`. But the recommended action is to always configure columns with an `id` when\n * using states.\n */\n disableGridColumnIdWarning ? : boolean\n /**\n * Set to `true` to not get a warning when using another base class than GridRowModel for your grid data. If\n * you do, and would like to use the full feature set of the grid then include the fields from GridRowModel\n * in your model definition.\n */\n disableGridRowModelWarning ? : boolean\n /**\n * Defines how dates will be formatted in tooltips etc. This config has priority over similar config on the\n * view preset. For allowed values see [format](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper#function-format-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-displayDateFormat)\n */\n displayDateFormat ? : string\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * Make this Panel a docked drawer which slides out from one side of the browser viewport by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-drawer)\n * @param {'start','left','end','right','top','bottom'} side The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.\n * @param {string,number} size The size of the drawer in its collapsible axis.\n * @param {boolean} inline If using the [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.\n * @param {boolean,object} autoClose Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.\n * @param {boolean,string} autoClose.mousedown If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.\n * @param {boolean,string} autoClose.focusout If focus moves outside of the drawer, the drawer will automatically be hidden.\n * @param {string} autoClose.mouseout Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.\n * @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds\n */\n drawer ? : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number}\n /**\n * Decimal precision used when displaying durations, used by tooltips and DurationColumn.\n * Specify `false` to use raw value\n */\n durationDisplayPrecision ? : number|boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#typedef-EmptyTextDomConfig) block to display when there is no data to display in the grid.\n * When using multiple Grid regions, provide the `region` property to decide where the text is shown.\n * By default, it is shown in the first region.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-emptyText)\n */\n emptyText ? : string|EmptyTextDomConfig\n /**\n * Allow using [Delete] and [Backspace] to remove events/assignments\n */\n enableDeleteKey ? : boolean\n /**\n * Set to `false` if you don't want event bar DOM updates to animate.\n * @deprecated 7.0.0 Deprecated `enableEventAnimations`. Use `transition.changeEvent` instead\n */\n enableEventAnimations ? : boolean\n /**\n * Enables showing occurrences of recurring events across the scheduler's time axis. If you want to disable\n * the recurrence popup, you can choose set the `defaultAction` to `future` to affect all future\n * occurrences, or `single` to just affect the currently selected event.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-enableRecurringEvents)\n */\n enableRecurringEvents ? : boolean|{\n defaultAction?: 'single'|'future'\n }\n /**\n * Configure this as `true` to allow elements within cells to be styled as `position: sticky`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-enableSticky)\n */\n enableSticky ? : boolean\n /**\n * Set to `true` to allow text selection in the grid cells. Note, this cannot be used simultaneously with the\n * `RowReorder` feature.\n */\n enableTextSelection ? : boolean\n /**\n * When true, some features will start a project transaction, blocking the project queue, suspending\n * store events and preventing UI from updates. It behaves similar to\n * [instantUpdate](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-instantUpdate) set to `false`.\n * Set `false` to not use project queue.\n */\n enableTransactionalFeatures ? : boolean\n /**\n * Set to `true` to listen for CTRL-Z (CMD-Z on Mac OS) keyboard event and trigger undo (redo when SHIFT is\n * pressed). Only applicable when using a [StateTrackingManager](https://bryntum.com/products/scheduler/docs/api/Core/data/stm/StateTrackingManager).\n */\n enableUndoRedoKeys ? : boolean\n /**\n * The end date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-endDate)\n */\n endDate ? : Date|string\n /**\n * The name of the end date parameter that will be passed to in every `eventStore` load request.\n */\n endParamName ? : string\n /**\n * Field from EventModel displayed as text in the bar when rendering\n */\n eventBarTextField ? : string\n /**\n * Event color used by default. Events and resources can specify their own color, with priority order being:\n * Event -> Resource -> Scheduler default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-eventColor)\n */\n eventColor ? : EventColor\n /**\n * Defines how to handle overlapping events. Valid values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-eventLayout)\n */\n eventLayout ? : 'stack'|'pack'|'mixed'|'none'|{\n type?: 'stack'|'pack'|'mixed'|'none'\n }\n /**\n * An advanced setting that controls the maximum number of released event bars to keep in the DOM.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-eventReleaseThreshold)\n */\n eventReleaseThreshold ? : number\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * an event is rendered into the schedule to render the contents of the event. It's called with the event,\n * its resource and a `renderData` object which allows you to populate data placeholders inside the event\n * template.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-eventRenderer)\n * @param {object} detail An object containing the information needed to render an Event.\n * @param {Scheduler.model.EventModel} detail.eventRecord The event record.\n * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record.\n * @param {Scheduler.model.AssignmentModel} detail.assignmentRecord The assignment record.\n * @param {Scheduler.view.Scheduler} detail.scheduler The Scheduler instance.\n * @param {object} detail.renderData An object containing details about the event rendering.\n * @param {Scheduler.model.EventModel} detail.renderData.event The event record.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.cls An object whose property names represent the CSS class names to be added to the event bar element. Set a property's value to truthy or falsy to add or remove the class name based on the property name. Using this technique, you do not have to know whether the class is already there, or deal with concatenation.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.wrapperCls An object whose property names represent the CSS class names to be added to the event wrapper element. Set a property's value to truthy or falsy to add or remove the class name based on the property name. Using this technique, you do not have to know whether the class is already there, or deal with concatenation.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.iconCls An object whose property names represent the CSS class names to be added to an event icon element. Note that an element carrying this icon class is injected into the event element *after* the renderer completes, *before* the renderer's created content. To disable this if the renderer takes full control and creates content using the iconCls, you can set `renderData.iconCls = null`.\n * @param {number} detail.renderData.left Vertical offset position (in pixels) on the time axis.\n * @param {number} detail.renderData.width Width in pixels of the event element.\n * @param {number} detail.renderData.height Height in pixels of the event element.\n * @param {string,Record<string, string>} detail.renderData.style Inline styles for the event bar DOM element. Use either 'border: 1px solid black' or `{ border: '1px solid black' }`\n * @param {string,Record<string, string>} detail.renderData.wrapperStyle Inline styles for wrapper of the event bar DOM element. Use either 'border: 1px solid green' or `{ border: '1px solid green' }`\n * @param {'tonal','filled','bordered','traced','outlined','indented','line','dashed','minimal','rounded','calendar','interday','gantt',null} detail.renderData.eventStyle The `eventStyle` of the event. Use this to apply custom styles to the event DOM element\n * @param {string} detail.renderData.eventColor The `eventColor` of the event. Use this to set a custom color for the rendered event\n * @param {string} detail.renderData.ariaLabel A description of the event details used for screen readers\n * @param {DomConfig[]} detail.renderData.children An array of DOM configs used as children to the `b-sch-event` element. Can be populated with additional DOM configs to have more control over contents.\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig (or array thereof)\n */\n eventRenderer ? : (detail: { eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, scheduler: Scheduler, renderData: { event: EventModel, cls: DomClassList|string, wrapperCls: DomClassList|string, iconCls: DomClassList|string, left: number, width: number, height: number, style: string|Record<string, string>, wrapperStyle: string|Record<string, string>, eventStyle: 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null, eventColor: string, ariaLabel: string, children: DomConfig[] } }) => string|DomConfig|DomConfig[]\n /**\n * `this` reference for the [eventRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-eventRenderer) function\n */\n eventRendererThisObj ? : object\n /**\n * Inline events, will be loaded into an internally created EventStore.\n */\n events ? : EventModel[]|EventModelConfig[]\n /**\n * Configure as `true`, or set property to `true` to disable event selection.\n */\n eventSelectionDisabled ? : boolean\n /**\n * The [EventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore) holding the events to be rendered into the scheduler (required).\n */\n eventStore ? : EventStore|EventStoreConfig\n /**\n * Event style used by default. Events and resources can specify their own style, with priority order being:\n * Event -> Resource -> Scheduler default. Determines the appearance of the event by assigning a CSS class\n * to it. Available styles are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-eventStyle)\n */\n eventStyle ? : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null\n extraData ? : any\n /**\n * Set to `true` to stretch the last column in a grid with all fixed width columns\n * to fill extra available space if the grid's width is wider than the sum of all\n * configured column widths.\n */\n fillLastColumn ? : boolean\n /**\n * Specify `true` to force rendered events/tasks to fill entire ticks. This only affects rendering, start\n * and end dates retain their value on the data level.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-fillTicks)\n */\n fillTicks ? : boolean\n /**\n * Use fixed row height. Setting this to `true` will configure the underlying RowManager to use fixed row\n * height, which sacrifices the ability to use rows with variable height to gain a fraction better\n * performance.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-footer)\n */\n footer ? : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string\n /**\n * Set to `true` to force the time columns to fit to the available space (horizontal or vertical depends on mode).\n * Note that setting [suppressFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-suppressFit) to `true`, will disable `forceFit` functionality. Zooming\n * cannot be used when `forceFit` is set.\n */\n forceFit ? : boolean\n /**\n * An object which names formula prefixes which will be applied to all columns configured with\n * `formula : true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-formulaProviders)\n */\n formulaProviders ? : Record<string, FormulaProviderConfig>\n /**\n * Refresh entire row when a record changes (`true`) or, if possible, only the cells affected (`false`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * A method allowing you to define date boundaries that will constrain resize, create and drag drop\n * operations. The method will be called with the Resource record, and the Event record.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-getDateConstraints)\n * @param {Scheduler.model.ResourceModel} resourceRecord The resource record\n * @param {Scheduler.model.EventModel} eventRecord The event record\n * @returns {DateConstraint} Constraining `Object` containing `start` and `end` constraints. Omitting either will mean that end is not constrained. So you can prevent a resize or move from moving *before* a certain time while not constraining the end date.\n */\n getDateConstraints ? : (resourceRecord?: ResourceModel, eventRecord?: EventModel) => DateConstraint\n /**\n * Scheduler overrides Grid's default implementation of [getRowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-getRowHeight) to\n * pre-calculate row heights based on events in the rows.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-getRowHeight)\n * @param {Scheduler.model.ResourceModel} getRowHeight.record Resource record to determine row height for\n * @returns {number} Desired row height\n */\n getRowHeight ? : (getRowHeight: { record: ResourceModel }) => number\n /**\n * A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-header)\n */\n header ? : string|boolean|PanelHeader\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * Set to `true` to hide the footer elements\n */\n hideFooters ? : boolean\n /**\n * Set to `true` to hide the column header elements\n */\n hideHeaders ? : boolean\n /**\n * Set to `true` to hide the Grid's horizontal scrollbar(s)\n */\n hideHorizontalScrollbar ? : boolean\n /**\n * By default the row hover effect is not visible in the Scheduler part of the grid.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-hideRowHover)\n */\n hideRowHover ? : boolean\n /**\n * Configure as `true`, or set property to `true` to highlight dependent events as well when selecting an event.\n */\n highlightPredecessors ? : boolean\n /**\n * Configure as `true`, or set property to `true` to highlight dependent events as well when selecting an event.\n */\n highlightSuccessors ? : boolean\n /**\n * A CSS class to add to hovered row elements\n */\n hoverCls ? : string\n /**\n * An icon to show before the [title](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object describing an element to represent the icon.\n */\n icon ? : string|DomConfig\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Set to `true` to ignore reacting to DOM events (mouseover/mouseout etc) while scrolling. Useful if you\n * want to maximize scroll performance.\n */\n ignoreDomEventsWhileScrolling ? : boolean\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set to `true` to automatically adjust the panel timespan during scrolling in the time dimension,\n * when the scroller comes close to the start/end edges.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-infiniteScroll)\n */\n infiniteScroll ? : boolean\n /**\n * Maximum duration (in milliseconds) for the initial animation controlled by [useInitialAnimation](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-useInitialAnimation).\n */\n initialAnimationDuration ? : number\n /**\n * Convenience setting to align input fields of child widgets. By default, the Field input element is\n * placed immediately following the `label`. If you prefer to have all input fields aligned to the\n * right, set this config to `'end'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-inputFieldAlign)\n */\n inputFieldAlign ? : 'start'|'end'\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * A template method (empty by default) allowing you to control if an event can be selected or not.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-isEventSelectable)\n * @param {Scheduler.model.EventModel} event The event record\n * @returns {boolean} true if event can be selected, otherwise false\n */\n isEventSelectable ? : (event: EventModel) => boolean\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#keyboard-shortcuts) for details\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * By default, when the `EventStore` (and similar stores) is lazy loading, a loading indicator will be displayed\n * just below the timeline headers. Set this to `false` to prevent this indicator being shown.\n */\n lazyLoadingIndicator ? : boolean\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-listeners)\n */\n listeners ? : SchedulerListeners\n /**\n * *This property is for use when the Scheduler is used as a Calendar view - a `mode`.*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-listRangeMenu)\n */\n listRangeMenu ? : MenuConfig\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when a store is performing a remote\n * operation, or Crud Manager is loading data from the sever. Set to `null` to disable default load mask.\n */\n loadMask ? : string|MaskConfig|null\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when data is loading. The message and optional configuration from the\n * [loadMask](https://bryntum.com/products/scheduler/docs/api/Core/mixin/LoadMaskable#config-loadMask) config take priority over these options, just as they do\n * for `maskDefaults`, respectively.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when an error occurs loading data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-loadMaskError)\n */\n loadMaskError ? : MaskConfig|Mask|boolean\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * Time in ms until a longpress is triggered\n */\n longPressTime ? : number\n /**\n * This flag controls whether Scheduler should preserve its selection of events when loading a new dataset\n * (if selected event ids are included in the newly loaded dataset).\n */\n maintainSelectionOnDatasetChange ? : boolean\n /**\n * When `true`, events are sized and positioned based on rowHeight, resourceMargin and barMargin settings.\n * Set this to `false` if you want to control height and vertical position using CSS instead.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-managedEventSizing)\n */\n managedEventSizing ? : boolean\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * Grids change the `maskDefaults` to cover only their `body` element.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * Get/set end date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n maxDate ? : Date|string\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * The maximum time axis unit to display non-working ranges for ('hour' or 'day' etc).\n * When zooming to a view with a larger unit, no non-working time elements will be rendered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-maxTimeAxisUnit)\n */\n maxTimeAxisUnit ? : DurationUnit\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The maximum zoom level to which [zoomIn](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomIn) will work. Defaults to the number of\n * [ViewPresets](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) available, see [presets](#Scheduler/view/mixin/TimelineViewPresets#property-presets)\n * for information. Unless you have modified the collection of available presets, the max zoom level is\n * milliseconds.\n */\n maxZoomLevel ? : number\n /**\n * How to align milestones in relation to their startDate. Only applies when using a `milestoneLayoutMode`\n * other than `default`. Valid values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-milestoneAlign)\n */\n milestoneAlign ? : 'start'|'center'|'end'\n /**\n * Factor representing the average char width in pixels used to determine milestone width when configured\n * with `milestoneLayoutMode: 'estimate'`.\n */\n milestoneCharWidth ? : number\n /**\n * How to handle milestones during event layout. How the milestones are displayed when part of the layout\n * are controlled using [milestoneTextPosition](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-milestoneTextPosition).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-milestoneLayoutMode)\n */\n milestoneLayoutMode ? : 'default'|'estimate'|'data'|'measure'\n /**\n * Position of the milestone text:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-milestoneTextPosition)\n */\n milestoneTextPosition ? : 'inside'|'outside'|'always-outside'\n /**\n * Get/set start date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n minDate ? : Date|string\n /**\n * Grid's `min-height`. Defaults to `10em` to be sure that the Grid always has a height wherever it is\n * inserted.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-minHeight)\n */\n minHeight ? : string|number\n /**\n * *Experimental* Minimum size that events should be allowed to shrink to when using `pack` layout. If\n * packing leads to any event being smaller than this value, the row will grow in height instead to maintain\n * this minimum size.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-minPackSize)\n */\n minPackSize ? : number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * The minimum zoom level to which [zoomOut](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomOut) will work. Defaults to 0 (year ticks)\n */\n minZoomLevel ? : number\n /**\n * Scheduler mode. Supported values: horizontal, vertical\n */\n mode ? : 'horizontal'|'vertical'\n /**\n * Grid monitors window resize by default.\n */\n monitorResize ? : boolean\n /**\n * Configure as `true` to allow `CTRL/CMD+click` to select multiple events in the scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-multiEventSelect)\n */\n multiEventSelect ? : boolean|{\n ctrlKey?: boolean\n altKey?: boolean\n shiftKey?: boolean\n }\n /**\n * When an event bar has a width less than this value, it gets the CSS class `b-sch-event-narrow`\n * added. You may apply custom CSS rules using this class.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-narrowEventWidth)\n */\n narrowEventWidth ? : number\n /**\n * Override this method to provide a custom sort function to sort any overlapping events. This only applies\n * to the horizontal mode, where the order the events are sorted in determines their vertical placement\n * within a resource.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-overlappingEventSorter)\n * @param {Scheduler.model.EventModel} a First event\n * @param {Scheduler.model.EventModel} b Second event\n * @returns {number} Return -1 to display `a` above `b`, 1 for `b` above `a`\n */\n overlappingEventSorter ? : (a: EventModel, b: EventModel) => number\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-owner)\n */\n owner ? : Widget|any\n /**\n * Partners this Timeline panel with another Timeline in order to sync their region sizes (sub-grids like locked, normal will get the same width),\n * start and end dates, view preset, zoom level and scrolling position. All these values will be synced with the timeline defined as the `partner`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-partner)\n */\n partner ? : TimelineBase\n /**\n * Set to `true` to include `startDate` and `endDate` params indicating the currently viewed date range in\n * `EventStore` load requests (when loading using `AjaxStore` or `CrudManager` functionality).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-passStartEndParameters)\n */\n passStartEndParameters ? : boolean\n /**\n * Specify plugins (an array of classes) in config\n */\n plugins ? : Function[]\n /**\n * Maximum number of resources for which height is pre-calculated. If you have many events per\n * resource you might want to lower this number to gain some initial rendering performance.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-preCalculateHeightLimit)\n */\n preCalculateHeightLimit ? : number\n /**\n * True to preserve focused cell after loading new data\n */\n preserveFocusOnDatasetChange ? : boolean\n /**\n * Preserve the grid's vertical scroll position when changesets are applied, as in the case of remote\n * changes, or when stores are configured with [syncDataOnLoad](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-syncDataOnLoad).\n */\n preserveScroll ? : PreserveScrollOptions|boolean\n /**\n * Specify `true` to preserve vertical scroll position after store actions that trigger a `refresh` event,\n * such as loading new data and filtering.\n */\n preserveScrollOnDatasetChange ? : boolean\n /**\n * An array of [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) config objects\n * which describes the available timeline layouts for this scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-presets)\n */\n presets ? : ViewPresetConfig[]\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * A [ProjectModel](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel) instance or a config object. The project holds all Scheduler data.\n * Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-project)\n */\n project ? : ProjectModel|ProjectModelConfig|object\n /**\n * Range used to set the length of the time axis when used as a component of a Calendar. Suitable units are\n * `'month'`, `'week'` and `'day'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-range)\n */\n range ? : string|DurationConfig\n /**\n * Configure as `true` to make the scheduler read-only, by disabling any UIs for modifying data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * The confirmation dialog shown when a recurring event is edited.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-recurrenceConfirmationPopup)\n */\n recurrenceConfirmationPopup ? : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure this property to allow the widget/component to be resized. Pressing <kbd>Shift</kbd> while resizing will\n * constrain the aspect ratio.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resizable)\n */\n resizable ? : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n }\n /**\n * Set to `false` to only measure cell contents when double-clicking the edge between column headers.\n */\n resizeToFitIncludesHeader ? : boolean\n /**\n * A config object used to configure the resource columns in vertical mode.\n * See [ResourceHeader](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader) for more details on available properties.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resourceColumns)\n */\n resourceColumns ? : ResourceHeaderConfig\n /**\n * Resource image extension, used when creating image path from resource name.\n */\n resourceImageExtension ? : string\n /**\n * Path to load resource images from. Used by the resource header in vertical mode and the\n * [ResourceInfoColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceInfoColumn) in horizontal mode. Set this to display miniature\n * images for each resource using their `image` or `imageUrl` fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resourceImagePath)\n */\n resourceImagePath ? : string\n /**\n * Convenience config to set both [resourceImagePath](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerResourceRendering#config-resourceImagePath) and [resourceImageExtension](#Scheduler/view/mixin/SchedulerResourceRendering#config-resourceImageExtension).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resourceImages)\n */\n resourceImages ? : {\n path?: string\n extension?: string\n }\n /**\n * Control how much space to leave between the first event/last event and the resources edge (top/bottom\n * margin within the resource row in horizontal mode, left/right margin within the resource column in\n * vertical mode), in px. Defaults to the value of [barMargin](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-barMargin).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resourceMargin)\n */\n resourceMargin ? : number|ResourceMarginConfig\n /**\n * Inline resources, will be loaded into an internally created ResourceStore.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * The [ResourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore) holding the resources to be rendered into the scheduler (required).\n */\n resourceStore ? : ResourceStore|ResourceStoreConfig\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * a resource time range is rendered into the schedule. It's called with `resourceTimeRangeRecord`, `resourceRecord`,\n * and `renderData` params.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-resourceTimeRangeRenderer)\n * @param {object} detail An object containing the information needed to render a ResourceTimeRangeModel.\n * @param {Scheduler.model.ResourceTimeRangeModel} detail.resourceTimeRangeRecord The resource time range record.\n * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record.\n * @param {object} detail.renderData An object containing details about the event rendering.\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig object describing the markup\n */\n resourceTimeRangeRenderer ? : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[]\n /**\n * Inline resource time ranges, will be loaded into an internally created store if\n * [ResourceTimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges) is enabled.\n */\n resourceTimeRanges ? : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[]\n /**\n * Resource time ranges store instance or config object for [ResourceTimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges) feature.\n */\n resourceTimeRangeStore ? : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig\n /**\n * \"Break points\" for which responsive config to use.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-responsiveLevels)\n */\n responsiveLevels ? : Record<string, number|string|SchedulerResponsiveLevelConfig>\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * The height in pixels of Scheduler rows.\n */\n rowHeight ? : number\n /**\n * Set to `false` to not show row lines. End result might be overruled by/differ between themes.\n */\n rowLines ? : boolean\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-rtl)\n */\n rtl ? : boolean\n /**\n * Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/scheduler/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollable). Defaults to [Scroller](#Core/helper/util/Scroller).\n */\n scrollerClass ? : typeof Scroller\n /**\n * Specifies the maximum duration for extending the current [TimeSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan) to allow for smooth\n * scrolling to an event.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-scrollExtensionThreshold)\n */\n scrollExtensionThreshold ? : string|DurationConfig\n /**\n * Configuration values for the [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) at runtime.\n */\n scrollManager ? : ScrollManagerConfig|ScrollManager\n /**\n * Selection configuration settings, change these properties to control how selection works and what can be\n * selected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\n /**\n * Set to `false` to not select the resource of the event when clicking an event bar.\n */\n selectResourceOnEventNavigate ? : boolean\n /**\n * Set to `false` to not select the row/resource when clicking the empty area in a time axis cell.\n */\n selectResourceOnScheduleClick ? : boolean\n /**\n * <div class=\"note\">This property is for use when the Scheduler is used as a Calendar view - a `mode`.\n * it will have no effect on a Scheduler which is not inside a Calendar.</div>\n * The time range to move by when [next](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#function-next) or [previous](#Scheduler/view/SchedulerBase#function-previous) is called.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-shiftIncrement)\n */\n shiftIncrement ? : string|DurationConfig\n /**\n * `false` to not show a tooltip while creating a dependency\n */\n showCreationTooltip ? : boolean\n /**\n * Configure as `true` to have the grid show a red \"changed\" tag in cells whose\n * field value has changed and not yet been committed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\n /**\n * If set to `true` this will show a color field in the [EventEdit](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventEdit) editor and also a\n * picker in the [EventMenu](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventMenu). Both enables the user to choose a color which will be\n * applied to the event bar's background. See EventModel's\n * [eventColor](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/mixin/EventModelMixin#field-eventColor) config.\n * config.\n */\n showEventColorPickers ? : boolean\n /**\n * Set to `true` to show the lag in the tooltip\n */\n showLagInTooltip ? : boolean\n /**\n * Set to `false` to hide recurring fields in event editor, even if the\n * [Recurring Events](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/RecurringEvents#config-enableRecurringEvents) is `true`\n * and a recurring event is being edited.\n */\n showRecurringUI ? : boolean\n /**\n * Set to `true` to show a tooltip when hovering a dependency line\n */\n showTooltip ? : boolean\n /**\n * Set to `true` to snap to the current time resolution increment while interacting with scheduled events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-snap)\n */\n snap ? : boolean\n /**\n * Affects drag drop and resizing of events when [snap](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDateMapper#config-snap)\n * is enabled.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-snapRelativeToEventStartDate)\n */\n snapRelativeToEventStartDate ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * The start date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-startDate)\n */\n startDate ? : Date|string\n /**\n * The name of the start date parameter that will be passed to in every `eventStore` load request.\n */\n startParamName ? : string\n /**\n * This value can be one of the following:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-stateful)\n */\n stateful ? : boolean|object|string[]\n /**\n * The events that, when fired by this component, should trigger it to save its state by calling\n * [saveState](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-statefulEvents)\n */\n statefulEvents ? : object|string[]\n /**\n * The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)\n * (if explicitly specified) will be used as the `stateId`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/scheduler/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-stateProvider)\n */\n stateProvider ? : StateProvider\n /**\n * The properties of this settings object controls how grid is restored from state data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-stateSettings)\n */\n stateSettings ? : {\n restoreUnconfiguredColumns?: boolean\n }\n /**\n * When set, the text in the major time axis header sticks in the scrolling viewport as long as possible.\n */\n stickyHeaders ? : boolean\n /**\n * Store that holds records to display in the grid, or a store config object. If the configuration contains\n * a `readUrl`, an `AjaxStore` will be created.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-store)\n */\n store ? : Store|StoreConfig|AjaxStore|AjaxStoreConfig\n /**\n * An object containing widgets keyed by name. By default (when no `type` is given), strips are\n * [toolbars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-strips)\n */\n strips ? : Record<string, SchedulerContainerItemConfig>\n /**\n * An object containing sub grid configuration objects keyed by a `region` property.\n * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.\n * The 'normal' region defaults to use `flex: 1`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * Set to `true` to prevent auto calculating of a minimal [tickSize](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineEventRendering#property-tickSize)\n * to always fit the content to the screen size. Setting this property on `true` will disable [forceFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-forceFit) behaviour.\n */\n suppressFit ? : boolean\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when Crud Manager\n * is persisting changes on the server. Set to `null` to disable default sync mask.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * When this container is used as a tab in a TabPanel, these items are added to the\n * [TabBar](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar.\n * This creates a toolbar docked to the top of the panel immediately below the header.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-tbar)\n */\n tbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * CSS class used for terminals\n */\n terminalCls ? : string\n /**\n * Delay in ms before hiding the terminals when the mouse leaves an event bar or terminal.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-terminalHideDelay)\n */\n terminalHideDelay ? : number\n /**\n * Terminal offset from their initial position, in px. Positive values move terminals further away from the\n * event bar, negative values inside the event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-terminalOffset)\n */\n terminalOffset ? : number\n /**\n * Delay in ms before showing the terminals when hovering over an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-terminalShowDelay)\n */\n terminalShowDelay ? : number\n /**\n * Where (on event bar edges) to display terminals. The sides are `'start'`, `'top'`,\n * `'end'` and `'bottom'`\n */\n terminalSides ? : string[]\n /**\n * Terminal diameter in px, overrides the default CSS value for it (which might depend on theme).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-terminalSize)\n */\n terminalSize ? : number|string\n /**\n * The width/height (depending on vertical / horizontal mode) of all the time columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-tickSize)\n */\n tickSize ? : number\n /**\n * A [TimeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis) config object or instance, used to create a backing data store of\n * 'ticks' providing the input date data for the time axis of timeline panel. Created automatically if none\n * supplied.\n */\n timeAxis ? : TimeAxisConfig|TimeAxis\n /**\n * Inline time ranges, will be loaded into an internally created store if [TimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges)\n * is enabled.\n */\n timeRanges ? : TimeSpan[]|TimeSpanConfig[]\n /**\n * The time ranges store instance for [TimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges) feature.\n */\n timeRangeStore ? : Store|StoreConfig\n /**\n * Gets/sets the current time resolution object, which contains a unit identifier and an increment count\n * `{ unit, increment }`. This value means minimal task duration you can create using UI.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-timeResolution)\n */\n timeResolution ? : {\n increment?: number\n unit?: DurationUnit\n }|number\n /**\n * Set to a time zone or a UTC offset. This will set the projects\n * [timeZone](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) config accordingly. As this config is only a referer,\n * please see project's config [documentation](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) for more\n * information.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-timeZone)\n */\n timeZone ? : string|number\n /**\n * A title to display in the header or owning TabPanel. Causes creation and docking of a header\n * to the top if no header is configured.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each\n * property name is the reference by which an instantiated tool may be retrieved from the live\n * `[tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-tools)\n */\n tools ? : Record<string, ToolConfig>|null\n /**\n * A template function allowing you to configure the contents of the tooltip shown when hovering a\n * dependency line. You can return either an HTML string or a [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object.\n * @param {Scheduler.model.DependencyBaseModel} dependency The dependency record\n * @returns {string,DomConfig}\n */\n tooltipTemplate ? : (dependency: DependencyBaseModel) => string|DomConfig\n /**\n * Configure UI transitions for various actions in the grid.\n */\n transition ? : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n removeEvent?: boolean\n changeEvent?: boolean\n }\n /**\n * Animation transition duration in milliseconds.\n */\n transitionDuration ? : number\n /**\n * Configure as `true` to trigger `selectionChange` when removing a selected event/assignment.\n */\n triggerSelectionChangeOnRemove ? : boolean\n type ? : 'scheduler'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * By default, scrolling the schedule will update the [timelineContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#property-timelineContext) to reflect the new\n * currently hovered context. When displaying a large number of events on screen at the same time, this will\n * have a slight impact on scrolling performance. In such scenarios, opt out of this behavior by setting\n * this config to `false`.\n */\n updateTimelineContextOnScroll ? : boolean\n /**\n * By default, the day of week and week of month of the event's start date are used to create\n * helpful contextual recurrence types when editing a non-recurring event record and choosing\n * an initial recurrence type.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-useContextualRecurrenceRules)\n */\n useContextualRecurrenceRules ? : boolean\n /**\n * By default, scheduler fade events in on load. Specify `false` to prevent this animation or specify one\n * of the available animation types to use it (`true` equals `'fade-in'`):\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-useInitialAnimation)\n */\n useInitialAnimation ? : boolean|'fade-in'|'slide-from-left'|'slide-from-top'|string\n /**\n * The time axis column config for vertical [mode](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-mode).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-verticalTimeAxisColumn)\n */\n verticalTimeAxisColumn ? : VerticalTimeAxisColumnConfig\n /**\n * A string key used to lookup a predefined [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) (e.g. 'weekAndDay', 'hourAndDay'),\n * managed by [PresetManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/PresetManager). See [PresetManager](#Scheduler/preset/PresetManager) for more information.\n * Or a config object for a viewPreset.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-viewPreset)\n */\n viewPreset ? : string|ViewPresetConfig\n /**\n * A date to bring into view initially on the scrollable timeline.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-visibleDate)\n */\n visibleDate ? : Date|VisibleDate\n /**\n * Integer number indicating the size of timespan during zooming. When zooming, the timespan is adjusted to make\n * the scrolling area `visibleZoomFactor` times wider than the timeline area itself. Used in\n * [zoomToSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomToSpan) and [zoomToLevel](#Scheduler/view/mixin/TimelineZoomable#function-zoomToLevel) functions.\n */\n visibleZoomFactor ? : number\n /**\n * A valid JS day index between 0-6 (0: Sunday, 1: Monday etc.) to be considered the start day of the week.\n * When omitted, the week start day is retrieved from the active locale class.\n */\n weekStartDay ? : number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * An object with format `{ fromDay, toDay, fromHour, toHour }` that describes the working days and hours.\n * This object will be used to populate TimeAxis [include](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis#config-include) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-workingTime)\n */\n workingTime ? : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n }\n /**\n * Whether the originally rendered timespan should be preserved while zooming. By default, it is set to `false`,\n * meaning the timeline panel will adjust the currently rendered timespan to limit the amount of HTML content to\n * render. When setting this option to `true`, be careful not to allow to zoom a big timespan in seconds\n * resolution for example. That will cause <strong>a lot</strong> of HTML content to be rendered and affect performance. You\n * can use [minZoomLevel](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#config-minZoomLevel) and [maxZoomLevel](#Scheduler/view/mixin/TimelineZoomable#config-maxZoomLevel) config options for that.\n */\n zoomKeepsOriginalTimespan ? : boolean\n /**\n * If true, you can zoom in and out on the time axis using CTRL-key + mouse wheel.\n */\n zoomOnMouseWheel ? : boolean\n /**\n * True to zoom to time span when double-clicking a time axis cell.\n */\n zoomOnTimeAxisDoubleClick ? : boolean\n\n // Features\n /**\n * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ai/AIFilter)\n */\n aiFilterFeature ? : object|boolean|string|AIFilter|AIFilterConfig\n /**\n * Allows using `[Ctrl/CMD + C]`, `[Ctrl/CMD + X]` and `[Ctrl/CMD + V]` to cut, copy and paste cell or cell ranges. Also\n * makes cut, copy and paste actions available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellCopyPaste)\n */\n cellCopyPasteFeature ? : object|boolean|string|CellCopyPaste|CellCopyPasteConfig\n /**\n * Adding this feature to the grid and other Bryntum products which are based on the Grid (i.e. Scheduler, SchedulerPro, and Gantt)\n * enables cell editing. Any subclass of [Field](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu)\n */\n cellMenuFeature ? : object|boolean|string|CellMenu|CellMenuConfig\n /**\n * Displays a tooltip when hovering cells.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip)\n */\n cellTooltipFeature ? : object|boolean|string|CellTooltip|CellTooltipConfig\n /**\n * Adds interactive charting to a Grid. [Charts](https://bryntum.com/products/scheduler/docs/api/Chart/widget/Chart) can be created from a selection of Grid data\n * and updated in realtime as data changes. Supports many common chart types with extensive styling and customization\n * options.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnAutoWidth)\n */\n columnAutoWidthFeature ? : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig\n /**\n * Displays a toolbar while dragging column headers. Drop on a button in the toolbar to activate a certain function,\n * for example to group by that column. This feature simplifies certain operations on touch devices.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnDragToolbar)\n */\n columnDragToolbarFeature ? : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig\n /**\n * Displays column lines for ticks, with a different styling for major ticks (by default they are darker). If this\n * feature is disabled, no lines are shown. If it's enabled, line are shown for the tick level which is set in current\n * ViewPreset. Please see [columnLinesFor](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-columnLinesFor) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ColumnLines)\n */\n columnLinesFeature ? : object|boolean|string|ColumnLines|ColumnLinesConfig\n /**\n * Displays a column picker (to show/hide columns) in the header context menu. Columns can be displayed in sub menus\n * by region or tag. Grouped headers are displayed as menu hierarchies.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnPicker)\n */\n columnPickerFeature ? : object|boolean|string|ColumnPicker|ColumnPickerConfig\n /**\n * Allows user to rename columns by either right-clicking column header or using keyboard shortcuts when column header\n * is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnRename)\n */\n columnRenameFeature ? : object|boolean|string|ColumnRename|ColumnRenameConfig\n /**\n * Allows user to reorder columns by dragging headers. To get notified about column reorder listen to `change` event\n * on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnReorder)\n */\n columnReorderFeature ? : object|boolean|string|ColumnReorder|ColumnReorderConfig\n /**\n * Enables user to resize columns by dragging a handle on the right hand side of the header. To get notified about column\n * resize listen to `change` event on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnResize)\n */\n columnResizeFeature ? : object|boolean|string|ColumnResize|ColumnResizeConfig\n /**\n * Feature that draws dependencies between events. Uses a [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore) to determine which\n * dependencies to draw, if none is defined one will be created automatically. Dependencies can also be specified as\n * `scheduler.dependencies`, see example below:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Dependencies)\n */\n dependenciesFeature ? : object|boolean|string|Dependencies|DependenciesConfig\n /**\n * Feature that displays a popup containing fields for editing a dependency. Requires the\n * [Dependencies](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Dependencies) feature to be enabled. Double-click a dependency line in the demo below to\n * show the editor.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/DependencyEdit)\n */\n dependencyEditFeature ? : object|boolean|string|DependencyEdit|DependencyEditConfig\n /**\n * Displays a context menu when right-clicking dependency lines. Items are populated by other features and/or\n * application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/DependencyMenu)\n */\n dependencyMenuFeature ? : object|boolean|string|DependencyMenu|DependencyMenuConfig\n /**\n * Allow using <kbd>Ctrl</kbd>/<kbd>CMD</kbd> + <kbd>C</kbd>/<kbd>X</kbd> and <kbd>Ctrl</kbd>/<kbd>CMD</kbd> +\n * <kbd>V</kbd> to copy/cut and paste events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventCopyPaste)\n */\n eventCopyPasteFeature ? : object|boolean|string|EventCopyPaste|EventCopyPasteConfig\n /**\n * Allows user to drag and drop events within the scheduler, to change `startDate` or resource assignment.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDrag)\n */\n eventDragFeature ? : object|boolean|string|EventDrag|EventDragConfig\n /**\n * Feature that allows the user to create new events by dragging in empty parts of the scheduler rows.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDragCreate)\n */\n eventDragCreateFeature ? : object|boolean|string|EventDragCreate|EventDragCreateConfig\n /**\n * Enables users to click and drag to select events (or assignments in multi assignment mode) inside the Scheduler's\n * timeline. Press <kbd>CTRL</kbd>/<kbd>CMD</kbd> to extend an existing selection.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDragSelect)\n */\n eventDragSelectFeature ? : object|boolean|string|EventDragSelect|EventDragSelectConfig\n /**\n * Feature that displays a popup containing widgets for editing event data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventEdit)\n */\n eventEditFeature ? : object|boolean|string|EventEdit|EventEditConfig\n /**\n * Adds event filter menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventFilter)\n */\n eventFilterFeature ? : object|boolean|string|EventFilter|EventFilterConfig\n /**\n * Displays a context menu for events. Items are populated by other features and/or application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventMenu)\n */\n eventMenuFeature ? : object|boolean|string|EventMenu|EventMenuConfig\n /**\n * Feature that allows rendering non-working time ranges into event bars (weekends for Scheduler, effective calendar for\n * SchedulerPro):\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventNonWorkingTime)\n */\n eventNonWorkingTimeFeature ? : object|boolean|string|EventNonWorkingTime|EventNonWorkingTimeConfig\n /**\n * Feature that allows resizing an event by dragging its end.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventResize)\n */\n eventResizeFeature ? : object|boolean|string|EventResize|EventResizeConfig\n /**\n * Displays a tooltip when hovering events. The template used to render the tooltip can be customized, see [template](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-template).\n * Config options are also applied to the tooltip shown, see [Tooltip](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip) for available options.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip)\n */\n eventTooltipFeature ? : object|boolean|string|EventTooltip|EventTooltipConfig\n /**\n * A feature that allows exporting Scheduler data to Excel or CSV without involving the server. It uses\n * [TableExporter](https://bryntum.com/products/scheduler/docs/api/Grid/util/TableExporter) class as data provider, 3rd party provider to generate XLS files, and\n * [Microsoft XML specification](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.aspx).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|ExcelExporter|ExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/experimental/FileDrop)\n */\n fileDropFeature ? : object|boolean|string|FileDrop|FileDropConfig\n /**\n * This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over\n * with values based on the values in the original selected range. This is similar to functionality normally seen in\n * various spreadsheet applications.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FillHandle)\n */\n fillHandleFeature ? : object|boolean|string|FillHandle|FillHandleConfig\n /**\n * Feature that allows filtering of the grid by settings filters on columns. The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Filter)\n */\n filterFeature ? : object|boolean|string|Filter|FilterConfig\n /**\n * Feature that allows filtering of the grid by entering filters on column headers.\n * The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FilterBar)\n */\n filterBarFeature ? : object|boolean|string|FilterBar|FilterBarConfig\n /**\n * Enables rendering and handling of row groups. The actual grouping is done in the store, but triggered by\n * <kbd>shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,\n * one anywhere on grid). Use <kbd>shift</kbd> + <kbd>alt</kbd> + click, or the context menu, to remove a column\n * grouper.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * A special version of the Grid GroupSummary feature that enables summaries within scheduler. To use a single summary\n * it is easiest to configure [renderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary#config-renderer), for multiple summaries see [summaries](#Scheduler/feature/GroupSummary#config-summaries).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu)\n */\n headerMenuFeature ? : object|boolean|string|HeaderMenu|HeaderMenuConfig\n /**\n * Enables users to click and drag to zoom to a date range in Scheduler's header time axis. Only supported in horizontal\n * mode.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/HeaderZoom)\n */\n headerZoomFeature ? : object|boolean|string|HeaderZoom|HeaderZoomConfig\n /**\n * Displays labels at positions [top](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels#config-top), [right](#Scheduler/feature/Labels#config-right), [bottom](#Scheduler/feature/Labels#config-bottom) and\n * [left](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels#config-left).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels)\n */\n labelsFeature ? : object|boolean|string|Labels|LabelsConfig\n /**\n * This feature allows resources which satisfy a certain condition to be locked at the top of the scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|LockRows|LockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * Feature that allows styling of weekends (and other non-working time) by adding timeRanges for those days.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/NonWorkingTime)\n */\n nonWorkingTimeFeature ? : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig\n /**\n * Makes the scheduler's timeline pannable by dragging with the mouse. Try it out in the demo below.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Pan)\n */\n panFeature ? : object|boolean|string|Pan|PanConfig\n /**\n * Generates PDF/PNG files from the Scheduler component.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/PinColumns)\n */\n pinColumnsFeature ? : object|boolean|string|PinColumns|PinColumnsConfig\n /**\n * Allows printing Scheduler contents using browser print dialog.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/QuickFind)\n */\n quickFindFeature ? : object|boolean|string|QuickFind|QuickFindConfig\n /**\n * Makes the splitter between grid [sections](https://bryntum.com/products/scheduler/docs/api/Grid/view/SubGrid) draggable, to let users resize, and\n * collapse/expand the sections.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\n /**\n * Applicable only for Scheduler in `vertical` mode. Right click resource header cells to display a context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu)\n */\n resourceMenuFeature ? : object|boolean|string|ResourceMenu|ResourceMenuConfig\n /**\n * Feature that draws resource time ranges, shaded areas displayed behind events. These zones are similar to events in\n * that they have a start and end date but different in that they do not take part in the event layout, and they always\n * occupy full row height.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges)\n */\n resourceTimeRangesFeature ? : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig\n /**\n * Allow using [Ctrl/CMD + C/X] and [Ctrl/CMD + V] to copy/cut-and-paste rows. Also makes cut, copy and paste actions\n * available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowCopyPaste)\n */\n rowCopyPasteFeature ? : object|boolean|string|RowCopyPaste|RowCopyPasteConfig\n /**\n * This feature allows editing of entire rows in a grid in a docked panel which by default slides out from the right.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowEdit)\n */\n rowEditFeature ? : object|boolean|string|RowEdit|RowEditConfig\n /**\n * Enables expanding of Grid rows by either row click or double click, or by adding a separate Grid column which renders\n * a button that expands or collapses the row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowExpander)\n */\n rowExpanderFeature ? : object|boolean|string|RowExpander|RowExpanderConfig\n /**\n * This feature implements support for project transactions and used by default in Gantt. For general RowReorder feature\n * documentation see [RowReorder](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowReorder).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowReorder)\n */\n rowReorderFeature ? : object|boolean|string|RowReorder|RowReorderConfig\n /**\n * Enables user to change row height by dragging the bottom row border. After a resize operation, the [rowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowResize#config-applyToAllRows) is `false`) and the [eventLayout](#Scheduler/model/ResourceModel#field-eventLayout) of the dragged resource\n * row will be switched to `pack` as a result (only applies when `stack` is used by default).\n * `barMargin` and `resourceMargin` will also be shrunk as you reduce the height of a row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|RowResize|RowResizeConfig\n /**\n * Allow visually selecting a schedule \"cell\" by clicking, or [any other pointer gesture](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#config-triggerEvent).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext)\n */\n scheduleContextFeature ? : object|boolean|string|ScheduleContext|ScheduleContextConfig\n /**\n * Displays a context menu for empty parts of the schedule. Items are populated in the first place\n * by configurations of this Feature, then by other features and/or application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleMenu)\n */\n scheduleMenuFeature ? : object|boolean|string|ScheduleMenu|ScheduleMenuConfig\n /**\n * Feature that displays a tooltip containing the time at the mouse position when hovering empty parts of the schedule.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleTooltip)\n */\n scheduleTooltipFeature ? : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig\n /**\n * This feature injects buttons to the beginning and end of each row that will scroll to the next or previous event\n * outside the current view. It can optionally show a label along with the button, using the\n * [labelRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScrollButtons#config-labelRenderer). Only supported in horizontal [mode](#Scheduler/view/SchedulerBase#config-mode)\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScrollButtons)\n */\n scrollButtonsFeature ? : object|boolean|string|ScrollButtons|ScrollButtonsConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Search)\n */\n searchFeature ? : object|boolean|string|Search|SearchConfig\n /**\n * Feature that displays a text field to edit the event name.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/SimpleEventEdit)\n */\n simpleEventEditFeature ? : object|boolean|string|SimpleEventEdit|SimpleEventEditConfig\n /**\n * Allows sorting of grid by clicking (or tapping) headers, also displays which columns grid is sorted by (numbered if\n * using multisort). Use modifier keys for multisorting: [Ctrl/CMD + click] to add sorter, [Ctrl/CMD + Alt + click] to remove sorter.\n * The actual sorting is done by the store, see [Store.sort()](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Scheduler into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/StickyCells)\n */\n stickyCellsFeature ? : object|boolean|string|StickyCells|StickyCellsConfig\n /**\n * This feature applies native `position: sticky` to event contents in horizontal mode, keeping the contents in view as\n * long as possible on scroll. For vertical mode it uses a programmatic solution to achieve the same result.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/StickyEvents)\n */\n stickyEventsFeature ? : object|boolean|string|StickyEvents|StickyEventsConfig\n /**\n * Stripes rows by adding alternating CSS classes to all row elements (`b-even` and `b-odd`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * A special version of the Grid Summary feature. This feature displays a summary row in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Adds scheduler specific menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu)\n */\n timeAxisHeaderMenuFeature ? : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig\n /**\n * Feature that renders global ranges of time in the timeline. Use this feature to visualize a `range` like a 1 hr lunch\n * or some important point in time (a `line`, i.e. a range with 0 duration). This feature can also show a current time\n * indicator if you set [showCurrentTimeLine](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-showCurrentTimeLine) to true. To style the rendered elements, use the\n * [cls](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan#field-cls) field of the `TimeSpan` class.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges)\n */\n timeRangesFeature ? : object|boolean|string|TimeRanges|TimeRangesConfig\n /**\n * Feature that allows selection of a time span in the time axis header. When a time span is selected in the header,\n * a [timeSelectionChange](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeSelection#event-timeSelectionChange) event is fired.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeSelection)\n */\n timeSelectionFeature ? : object|boolean|string|TimeSelection|TimeSelectionConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/scheduler/docs/api/Grid/column/TreeColumn) among grids columns. That column will have its renderer replaced with a\n * tree renderer that adds padding and icon to give the appearance of a tree. The original renderer is preserved and\n * also called.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree)\n */\n treeFeature ? : object|boolean|string|Tree|TreeConfig\n /**\n * A feature that allows transforming a flat dataset (or the leaves of a hierarchical) into a tree by specifying a\n * record field per parent level. Parents are generated based on each leaf's value for those fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n /**\n * A feature allowing you to roll up and display values in the time axis cell for each parent row in a tree scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary)\n */\n treeSummaryFeature ? : object|boolean|string|TreeSummary|TreeSummaryConfig\n\n}\n\n@Component({\n selector : 'bryntum-scheduler',\n template : ''\n})\nexport class BryntumSchedulerComponent implements OnInit, OnDestroy {\n\n public static instanceClass = Scheduler;\n\n public static instanceName = 'Scheduler';\n\n private static bryntumEvents: string[] = [\n 'onAfterDependencyCreateDrop',\n 'onAfterDependencySave',\n 'onAfterDragCreate',\n 'onAfterEventDragSelect',\n 'onAfterEventDrop',\n 'onAfterEventEdit',\n 'onAfterEventSave',\n 'onAssignmentSelectionChange',\n 'onBeforeAssignmentDelete',\n 'onBeforeAssignmentSelectionChange',\n 'onBeforeAutoCreate',\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\n 'onBeforeContextShow',\n 'onBeforeCopy',\n 'onBeforeCSVExport',\n 'onBeforeDependencyAdd',\n 'onBeforeDependencyCreateDrag',\n 'onBeforeDependencyCreateFinalize',\n 'onBeforeDependencyDelete',\n 'onBeforeDependencyEdit',\n 'onBeforeDependencyEditShow',\n 'onBeforeDependencySave',\n 'onBeforeDestroy',\n 'onBeforeDragCreate',\n 'onBeforeDragCreateFinalize',\n 'onBeforeEventAdd',\n 'onBeforeEventDelete',\n 'onBeforeEventDrag',\n 'onBeforeEventDragSelect',\n 'onBeforeEventDropFinalize',\n 'onBeforeEventEdit',\n 'onBeforeEventEditShow',\n 'onBeforeEventResize',\n 'onBeforeEventResizeFinalize',\n 'onBeforeEventSave',\n 'onBeforeEventSelectionChange',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforePan',\n 'onBeforePaste',\n 'onBeforePdfExport',\n 'onBeforePresetChange',\n 'onBeforeRenderRow',\n 'onBeforeRenderRows',\n 'onBeforeRowCollapse',\n 'onBeforeRowExpand',\n 'onBeforeSelectedContextsShow',\n 'onBeforeSelectionChange',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeShowTerminals',\n 'onBeforeStartRowEdit',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onBeforeToggleGroup',\n 'onBeforeToggleNode',\n 'onCancelCellEdit',\n 'onCatchAll',\n 'onCellClick',\n 'onCellContextMenu',\n 'onCellDblClick',\n 'onCellMenuBeforeShow',\n 'onCellMenuItem',\n 'onCellMenuShow',\n 'onCellMenuToggleItem',\n 'onCellMouseEnter',\n 'onCellMouseLeave',\n 'onCellMouseOut',\n 'onCellMouseOver',\n 'onCollapse',\n 'onCollapseNode',\n 'onColumnDrag',\n 'onColumnDragStart',\n 'onColumnDrop',\n 'onColumnResize',\n 'onColumnResizeStart',\n 'onContextMenuItem',\n 'onContextMenuToggleItem',\n 'onCopy',\n 'onCurrentTimelineUpdate',\n 'onDataChange',\n 'onDateRangeChange',\n 'onDependenciesDrawn',\n 'onDependencyClick',\n 'onDependencyContextMenu',\n 'onDependencyCreateDragStart',\n 'onDependencyCreateDrop',\n 'onDependencyDblClick',\n 'onDependencyMenuBeforeShow',\n 'onDependencyMenuItem',\n 'onDependencyMenuShow',\n 'onDependencyMouseOut',\n 'onDependencyMouseOver',\n 'onDependencyValidationComplete',\n 'onDependencyValidationStart',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onDragCreateEnd',\n 'onDragCreateStart',\n 'onDragSelecting',\n 'onElementCreated',\n 'onEventAutoCreated',\n 'onEventClick',\n 'onEventContextMenu',\n 'onEventDblClick',\n 'onEventDrag',\n 'onEventDragAbort',\n 'onEventDragModeChange',\n 'onEventDragReset',\n 'onEventDragSelect',\n 'onEventDragStart',\n 'onEventDrop',\n 'onEventEditBeforeSetRecord',\n 'onEventKeyDown',\n 'onEventKeyUp',\n 'onEventMenuBeforeShow',\n 'onEventMenuItem',\n 'onEventMenuShow',\n 'onEventMouseDown',\n 'onEventMouseEnter',\n 'onEventMouseLeave',\n 'onEventMouseOut',\n 'onEventMouseOver',\n 'onEventMouseUp',\n 'onEventPartialResize',\n 'onEventResizeEnd',\n 'onEventResizeStart',\n 'onEventSelectionChange',\n 'onExpand',\n 'onExpandNode',\n 'onFileDrop',\n 'onFillHandleBeforeDragFinalize',\n 'onFillHandleDrag',\n 'onFillHandleDragAbort',\n 'onFillHandleDragEnd',\n 'onFillHandleDragStart',\n 'onFinishCellEdit',\n 'onFinishRowEdit',\n 'onFocusIn',\n 'onFocusOut',\n 'onGridRowBeforeDragStart',\n 'onGridRowBeforeDropFinalize',\n 'onGridRowDrag',\n 'onGridRowDragAbort',\n 'onGridRowDragStart',\n 'onGridRowDrop',\n 'onHeaderClick',\n 'onHeaderMenuBeforeShow',\n 'onHeaderMenuItem',\n 'onHeaderMenuShow',\n 'onHeaderMenuToggleItem',\n 'onHide',\n 'onLockRows',\n 'onMouseOut',\n 'onMouseOver',\n 'onNavigate',\n 'onNoZoomChange',\n 'onPaint',\n 'onPaste',\n 'onPasteNotAllowed',\n 'onPdfExport',\n 'onPresetChange',\n 'onReadOnly',\n 'onRecompose',\n 'onReleaseEvent',\n 'onRenderEvent',\n 'onRenderRow',\n 'onRenderRows',\n 'onResize',\n 'onResourceHeaderClick',\n 'onResourceHeaderContextmenu',\n 'onResourceHeaderDblclick',\n 'onResourceMenuBeforeShow',\n 'onResourceMenuItem',\n 'onResourceMenuShow',\n 'onResourceMenuToggleItem',\n 'onResourceTimeRangeClick',\n 'onResourceTimeRangeContextMenu',\n 'onResourceTimeRangeDblClick',\n 'onResourceTimeRangeMouseDown',\n 'onResourceTimeRangeMouseOut',\n 'onResourceTimeRangeMouseOver',\n 'onResourceTimeRangeMouseUp',\n 'onResponsive',\n 'onRowCollapse',\n 'onRowExpand',\n 'onRowMouseEnter',\n 'onRowMouseLeave',\n 'onScheduleClick',\n 'onScheduleContextMenu',\n 'onScheduleDblClick',\n 'onScheduleMenuBeforeShow',\n 'onScheduleMenuItem',\n 'onScheduleMenuShow',\n 'onScheduleMouseDown',\n 'onScheduleMouseEnter',\n 'onScheduleMouseLeave',\n 'onScheduleMouseMove',\n 'onScheduleMouseUp',\n 'onScroll',\n 'onScrollButtonClick',\n 'onSelectionChange',\n 'onSelectionModeChange',\n 'onShiftIncrementChange',\n 'onShow',\n 'onSplit',\n 'onSplitterCollapseClick',\n 'onSplitterDragEnd',\n 'onSplitterDragStart',\n 'onSplitterExpandClick',\n 'onStartCellEdit',\n 'onStartRowEdit',\n 'onSubGridCollapse',\n 'onSubGridExpand',\n 'onTickCellClick',\n 'onTickCellContextMenu',\n 'onTickCellDblClick',\n 'onTickCellMouseDown',\n 'onTickCellMouseUp',\n 'onTickSizeChange',\n 'onTimeAxisChange',\n 'onTimeAxisHeaderClick',\n 'onTimeAxisHeaderContextMenu',\n 'onTimeAxisHeaderDblClick',\n 'onTimeAxisHeaderMenuBeforeShow',\n 'onTimeAxisHeaderMenuItem',\n 'onTimeAxisHeaderMenuShow',\n 'onTimelineContextChange',\n 'onTimelineViewportResize',\n 'onTimeRangeHeaderClick',\n 'onTimeRangeHeaderContextMenu',\n 'onTimeRangeHeaderDblClick',\n 'onTimeSelectionChange',\n 'onTimeSelectionElementClick',\n 'onToggleGroup',\n 'onToggleNode',\n 'onToolClick',\n 'onUnlockRows',\n 'onUnsplit',\n 'onVisibleDateRangeChange'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'cellCopyPasteFeature',\n 'cellEditFeature',\n 'cellMenuFeature',\n 'cellTooltipFeature',\n 'chartsFeature',\n 'columnAutoWidthFeature',\n 'columnDragToolbarFeature',\n 'columnLinesFeature',\n 'columnPickerFeature',\n 'columnRenameFeature',\n 'columnReorderFeature',\n 'columnResizeFeature',\n 'dependenciesFeature',\n 'dependencyEditFeature',\n 'dependencyMenuFeature',\n 'eventCopyPasteFeature',\n 'eventDragFeature',\n 'eventDragCreateFeature',\n 'eventDragSelectFeature',\n 'eventEditFeature',\n 'eventFilterFeature',\n 'eventMenuFeature',\n 'eventNonWorkingTimeFeature',\n 'eventResizeFeature',\n 'eventTooltipFeature',\n 'excelExporterFeature',\n 'fileDropFeature',\n 'fillHandleFeature',\n 'filterFeature',\n 'filterBarFeature',\n 'groupFeature',\n 'groupSummaryFeature',\n 'headerMenuFeature',\n 'headerZoomFeature',\n 'labelsFeature',\n 'lockRowsFeature',\n 'mergeCellsFeature',\n 'nonWorkingTimeFeature',\n 'panFeature',\n 'pdfExportFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'resourceMenuFeature',\n 'resourceTimeRangesFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'scheduleContextFeature',\n 'scheduleMenuFeature',\n 'scheduleTooltipFeature',\n 'scrollButtonsFeature',\n 'searchFeature',\n 'simpleEventEditFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stickyEventsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'timeAxisHeaderMenuFeature',\n 'timeRangesFeature',\n 'timeSelectionFeature',\n 'treeFeature',\n 'treeGroupFeature',\n 'treeSummaryFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumSchedulerComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'alignSelf',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'allowDropOnEventBar',\n 'allowOverlap',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'assignments',\n 'assignmentStore',\n 'autoAdjustTimeAxis',\n 'autoCreate',\n 'autoHeight',\n 'barMargin',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'collapsible',\n 'color',\n 'column',\n 'columnLines',\n 'columns',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'creationTooltip',\n 'creationTooltipTemplate',\n 'crudManager',\n 'crudManagerClass',\n 'data',\n 'dataField',\n 'dataset',\n 'date',\n 'dateFormat',\n 'dateSeparator',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencies',\n 'dependencyStore',\n 'descriptionFormat',\n 'descriptionRenderer',\n 'deselectAllOnScheduleClick',\n 'deselectOnClick',\n 'destroyStore',\n 'destroyStores',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displayDateFormat',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'emptyText',\n 'enableDeleteKey',\n 'enableEventAnimations',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'enableUndoRedoKeys',\n 'endDate',\n 'endParamName',\n 'eventBarTextField',\n 'eventColor',\n 'eventLayout',\n 'eventReleaseThreshold',\n 'eventRenderer',\n 'eventRendererThisObj',\n 'events',\n 'eventSelectionDisabled',\n 'eventStore',\n 'eventStyle',\n 'extraData',\n 'fillLastColumn',\n 'fillTicks',\n 'fixedRowHeight',\n 'flex',\n 'footer',\n 'forceFit',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideHorizontalScrollbar',\n 'hideRowHover',\n 'highlightPredecessors',\n 'highlightSuccessors',\n 'hoverCls',\n 'icon',\n 'id',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'infiniteScroll',\n 'initialAnimationDuration',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isEventSelectable',\n 'keyMap',\n 'labelPosition',\n 'lazyLoadingIndicator',\n 'listeners',\n 'listRangeMenu',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'longPressTime',\n 'maintainSelectionOnDatasetChange',\n 'managedEventSizing',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxHeight',\n 'maxTimeAxisUnit',\n 'maxWidth',\n 'maxZoomLevel',\n 'milestoneAlign',\n 'milestoneCharWidth',\n 'milestoneLayoutMode',\n 'milestoneTextPosition',\n 'minDate',\n 'minHeight',\n 'minPackSize',\n 'minWidth',\n 'minZoomLevel',\n 'mode',\n 'monitorResize',\n 'multiEventSelect',\n 'narrowEventWidth',\n 'overlappingEventSorter',\n 'owner',\n 'partner',\n 'passStartEndParameters',\n 'plugins',\n 'preCalculateHeightLimit',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'presets',\n 'preventTooltipOnTouch',\n 'project',\n 'range',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumns',\n 'resourceImageExtension',\n 'resourceImagePath',\n 'resourceImages',\n 'resourceMargin',\n 'resources',\n 'resourceStore',\n 'resourceTimeRangeRenderer',\n 'resourceTimeRanges',\n 'resourceTimeRangeStore',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollerClass',\n 'scrollExtensionThreshold',\n 'scrollManager',\n 'selectionMode',\n 'selectResourceOnEventNavigate',\n 'selectResourceOnScheduleClick',\n 'shiftIncrement',\n 'showCreationTooltip',\n 'showDirty',\n 'showEventColorPickers',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTooltip',\n 'snap',\n 'snapRelativeToEventStartDate',\n 'span',\n 'startDate',\n 'startParamName',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stateSettings',\n 'stickyHeaders',\n 'store',\n 'strips',\n 'subGridConfigs',\n 'suppressFit',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'terminalCls',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSides',\n 'terminalSize',\n 'tickSize',\n 'timeAxis',\n 'timeRanges',\n 'timeRangeStore',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'triggerSelectionChangeOnRemove',\n 'type',\n 'ui',\n 'updateTimelineContextOnScroll',\n 'useContextualRecurrenceRules',\n 'useInitialAnimation',\n 'verticalTimeAxisColumn',\n 'viewPreset',\n 'visibleDate',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'width',\n 'workingTime',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'ariaDescription',\n 'ariaLabel',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'collapsible',\n 'color',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'creationTooltip',\n 'crudManagerClass',\n 'dataField',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'descriptionRenderer',\n 'deselectAllOnScheduleClick',\n 'deselectOnClick',\n 'destroyStore',\n 'destroyStores',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'enableDeleteKey',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'endParamName',\n 'eventBarTextField',\n 'eventRenderer',\n 'eventRendererThisObj',\n 'eventSelectionDisabled',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'hideHorizontalScrollbar',\n 'highlightPredecessors',\n 'highlightSuccessors',\n 'hoverCls',\n 'icon',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'listeners',\n 'listRangeMenu',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'maintainSelectionOnDatasetChange',\n 'managedEventSizing',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxTimeAxisUnit',\n 'minDate',\n 'mode',\n 'monitorResize',\n 'multiEventSelect',\n 'narrowEventWidth',\n 'owner',\n 'partner',\n 'passStartEndParameters',\n 'plugins',\n 'preCalculateHeightLimit',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumns',\n 'resourceImageExtension',\n 'resourceImagePath',\n 'resourceImages',\n 'resourceTimeRangeRenderer',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'scrollerClass',\n 'scrollExtensionThreshold',\n 'scrollManager',\n 'showCreationTooltip',\n 'showDirty',\n 'showEventColorPickers',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'snapRelativeToEventStartDate',\n 'startParamName',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stickyHeaders',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'terminalCls',\n 'terminalSides',\n 'timeAxis',\n 'triggerSelectionChangeOnRemove',\n 'type',\n 'ui',\n 'verticalTimeAxisColumn',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ];\n\n private static bryntumProps: string[] = BryntumSchedulerComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'allowDropOnEventBar',\n 'allowOverlap',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'assignments',\n 'assignmentStore',\n 'autoCreate',\n 'barMargin',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'creationTooltipTemplate',\n 'crudManager',\n 'data',\n 'dataset',\n 'date',\n 'dateFormat',\n 'dateSeparator',\n 'dependencies',\n 'dependencyStore',\n 'descriptionFormat',\n 'disabled',\n 'displayDateFormat',\n 'emptyText',\n 'enableEventAnimations',\n 'enableUndoRedoKeys',\n 'endDate',\n 'eventColor',\n 'eventLayout',\n 'eventReleaseThreshold',\n 'events',\n 'eventStore',\n 'eventStyle',\n 'extraData',\n 'fillTicks',\n 'flex',\n 'focusVisible',\n 'forceFit',\n 'hasChanges',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideRowHover',\n 'id',\n 'infiniteScroll',\n 'initialAnimationDuration',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isEngineReady',\n 'isEventSelectable',\n 'isNavigatingTimelineCells',\n 'keyMap',\n 'labelPosition',\n 'lazyLoadingIndicator',\n 'longPressTime',\n 'margin',\n 'maxHeight',\n 'maxWidth',\n 'maxZoomLevel',\n 'milestoneAlign',\n 'milestoneCharWidth',\n 'milestoneLayoutMode',\n 'milestoneTextPosition',\n 'minHeight',\n 'minPackSize',\n 'minWidth',\n 'minZoomLevel',\n 'originalStore',\n 'overlappingEventSorter',\n 'parent',\n 'preserveScroll',\n 'presets',\n 'project',\n 'range',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'rendition',\n 'resourceMargin',\n 'resources',\n 'resourceStore',\n 'resourceTimeRanges',\n 'resourceTimeRangeStore',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollLeft',\n 'scrollTop',\n 'scrollX',\n 'selectedAssignments',\n 'selectedCell',\n 'selectedCells',\n 'selectedEvents',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'selectResourceOnEventNavigate',\n 'selectResourceOnScheduleClick',\n 'shiftIncrement',\n 'showTooltip',\n 'snap',\n 'span',\n 'startDate',\n 'state',\n 'stateSettings',\n 'store',\n 'suppressFit',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSize',\n 'tickSize',\n 'timelineCell',\n 'timeRanges',\n 'timeRangeStore',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'tooltip',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'updateTimelineContextOnScroll',\n 'useContextualRecurrenceRules',\n 'useInitialAnimation',\n 'viewPreset',\n 'visibleDate',\n 'width',\n 'workingTime',\n 'zoomLevel'\n ]);\n\n private elementRef: ElementRef;\n public instance!: Scheduler;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() allowCreate ! : boolean;\n @Input() allowCreateOnlyParent ! : boolean;\n @Input() animateFilterRemovals ! : boolean;\n @Input() animateRemovingRows ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoAdjustTimeAxis ! : boolean;\n @Input() autoHeight ! : boolean;\n @Input() bbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() bodyCls ! : string|object;\n @Input() bubbleEvents ! : object;\n @Input() bufferCoef ! : number;\n @Input() bufferThreshold ! : number;\n @Input() collapsible ! : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() contentElementCls ! : string|object;\n @Input() contextMenuTriggerEvent ! : 'contextmenu'|'click'|'dblclick';\n @Input() creationTooltip ! : TooltipConfig;\n @Input() crudManagerClass ! : typeof CrudManager;\n @Input() dataField ! : string;\n @Input() defaultRegion ! : string;\n @Input() defaultResourceImageName ! : string;\n @Input() descriptionRenderer ! : (view: Widget) => string;\n @Input() deselectAllOnScheduleClick ! : boolean;\n @Input() deselectOnClick ! : boolean;\n @Input() destroyStore ! : boolean;\n @Input() destroyStores ! : boolean;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disableGridColumnIdWarning ! : boolean;\n @Input() disableGridRowModelWarning ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() drawer ! : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number};\n @Input() durationDisplayPrecision ! : number|boolean;\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() enableDeleteKey ! : boolean;\n @Input() enableRecurringEvents ! : boolean|{\n defaultAction?: 'single'|'future'\n };\n @Input() enableSticky ! : boolean;\n @Input() enableTextSelection ! : boolean;\n @Input() enableTransactionalFeatures ! : boolean;\n @Input() endParamName ! : string;\n @Input() eventBarTextField ! : string;\n @Input() eventRenderer ! : (detail: { eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, scheduler: Scheduler, renderData: { event: EventModel, cls: DomClassList|string, wrapperCls: DomClassList|string, iconCls: DomClassList|string, left: number, width: number, height: number, style: string|Record<string, string>, wrapperStyle: string|Record<string, string>, eventStyle: 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null, eventColor: string, ariaLabel: string, children: DomConfig[] } }) => string|DomConfig|DomConfig[];\n @Input() eventRendererThisObj ! : object;\n @Input() eventSelectionDisabled ! : boolean;\n @Input() fillLastColumn ! : boolean;\n @Input() fixedRowHeight ! : boolean;\n @Input() footer ! : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string;\n @Input() formulaProviders ! : Record<string, FormulaProviderConfig>;\n @Input() fullRowRefresh ! : boolean;\n @Input() getDateConstraints ! : (resourceRecord?: ResourceModel, eventRecord?: EventModel) => DateConstraint;\n @Input() getRowHeight ! : (getRowHeight: { record: ResourceModel }) => number;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() highlightPredecessors ! : boolean;\n @Input() highlightSuccessors ! : boolean;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreDomEventsWhileScrolling ! : boolean;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : SchedulerListeners;\n @Input() listRangeMenu ! : MenuConfig;\n @Input() loadMask ! : string|MaskConfig|null;\n @Input() loadMaskDefaults ! : MaskConfig;\n @Input() loadMaskError ! : MaskConfig|Mask|boolean;\n @Input() localizable ! : boolean;\n @Input() maintainSelectionOnDatasetChange ! : boolean;\n @Input() managedEventSizing ! : boolean;\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxDate ! : Date|string;\n @Input() maxTimeAxisUnit ! : DurationUnit;\n @Input() minDate ! : Date|string;\n @Input() mode ! : 'horizontal'|'vertical';\n @Input() monitorResize ! : boolean;\n @Input() multiEventSelect ! : boolean|{\n ctrlKey?: boolean\n altKey?: boolean\n shiftKey?: boolean\n };\n @Input() narrowEventWidth ! : number;\n @Input() owner ! : Widget|any;\n @Input() partner ! : TimelineBase;\n @Input() passStartEndParameters ! : boolean;\n @Input() plugins ! : Function[];\n @Input() preCalculateHeightLimit ! : number;\n @Input() preserveFocusOnDatasetChange ! : boolean;\n @Input() preserveScrollOnDatasetChange ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() resizable ! : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n };\n @Input() resizeToFitIncludesHeader ! : boolean;\n @Input() resourceColumns ! : ResourceHeaderConfig;\n @Input() resourceImageExtension ! : string;\n @Input() resourceImagePath ! : string;\n @Input() resourceImages ! : {\n path?: string\n extension?: string\n };\n @Input() resourceTimeRangeRenderer ! : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[];\n @Input() responsiveLevels ! : Record<string, number|string|SchedulerResponsiveLevelConfig>;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollerClass ! : typeof Scroller;\n @Input() scrollExtensionThreshold ! : string|DurationConfig;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() showCreationTooltip ! : boolean;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() showEventColorPickers ! : boolean;\n @Input() showLagInTooltip ! : boolean;\n @Input() showRecurringUI ! : boolean;\n @Input() snapRelativeToEventStartDate ! : boolean;\n @Input() startParamName ! : string;\n @Input() stateful ! : boolean|object|string[];\n @Input() statefulEvents ! : object|string[];\n @Input() stateId ! : string;\n @Input() stateProvider ! : StateProvider;\n @Input() stickyHeaders ! : boolean;\n @Input() strips ! : Record<string, SchedulerContainerItemConfig>;\n @Input() subGridConfigs ! : Record<string, SubGridConfig>;\n @Input() syncMask ! : string|MaskConfig|null;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() terminalCls ! : string;\n @Input() terminalSides ! : string[];\n @Input() timeAxis ! : TimeAxisConfig|TimeAxis;\n @Input() triggerSelectionChangeOnRemove ! : boolean;\n @Input() type ! : 'scheduler';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\n @Input() verticalTimeAxisColumn ! : VerticalTimeAxisColumnConfig;\n @Input() visibleZoomFactor ! : number;\n @Input() weekStartDay ! : number;\n @Input() weight ! : number;\n @Input() zoomKeepsOriginalTimespan ! : boolean;\n @Input() zoomOnMouseWheel ! : boolean;\n @Input() zoomOnTimeAxisDoubleClick ! : boolean;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() allowDropOnEventBar ! : boolean;\n @Input() allowOverlap ! : boolean;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() assignments ! : AssignmentModel[]|object[]|AssignmentModelConfig[];\n @Input() assignmentStore ! : AssignmentStore|AssignmentStoreConfig;\n @Input() autoCreate ! : boolean|string|{autoCreate: { gesture?: 'click'|'dblclick', useEventModelDefaults?: boolean, snapType?: 'round'|'ceil'|'floor', step?: DurationConfig|string, duration?: DurationConfig|string, name?: string }};\n @Input() barMargin ! : number;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cellEllipsis ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsed ! : boolean;\n @Input() column ! : number;\n @Input() columnLines ! : boolean;\n @Input() columns ! : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig;\n @Input() creationTooltipTemplate ! : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig;\n @Input() crudManager ! : CrudManager|CrudManagerConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() date ! : Date;\n @Input() dateFormat ! : string|((date: Date) => string);\n @Input() dateSeparator ! : string;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\n @Input() dependencyStore ! : DependencyStore|DependencyStoreConfig;\n @Input() descriptionFormat ! : string|string[]|boolean[]|((date: Date) => string)|Function[];\n @Input() disabled ! : boolean|'inert';\n @Input() displayDateFormat ! : string;\n @Input() emptyText ! : string|EmptyTextDomConfig;\n @Input() enableEventAnimations ! : boolean;\n @Input() enableUndoRedoKeys ! : boolean;\n @Input() endDate ! : Date|string;\n @Input() eventColor ! : EventColor;\n @Input() eventLayout ! : 'stack'|'pack'|'mixed'|'none'|{\n type?: 'stack'|'pack'|'mixed'|'none'\n };\n @Input() eventReleaseThreshold ! : number;\n @Input() events ! : EventModel[]|EventModelConfig[];\n @Input() eventStore ! : EventStore|EventStoreConfig;\n @Input() eventStyle ! : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null;\n @Input() extraData ! : any;\n @Input() fillTicks ! : boolean;\n @Input() flex ! : number|string;\n @Input() forceFit ! : boolean;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() hideFooters ! : boolean;\n @Input() hideHeaders ! : boolean;\n @Input() hideRowHover ! : boolean;\n @Input() id ! : string;\n @Input() infiniteScroll ! : boolean;\n @Input() initialAnimationDuration ! : number;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() isEventSelectable ! : (event: EventModel) => boolean;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() lazyLoadingIndicator ! : boolean;\n @Input() longPressTime ! : number;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maxWidth ! : string|number;\n @Input() maxZoomLevel ! : number;\n @Input() milestoneAlign ! : 'start'|'center'|'end';\n @Input() milestoneCharWidth ! : number;\n @Input() milestoneLayoutMode ! : 'default'|'estimate'|'data'|'measure';\n @Input() milestoneTextPosition ! : 'inside'|'outside'|'always-outside';\n @Input() minHeight ! : string|number;\n @Input() minPackSize ! : number;\n @Input() minWidth ! : string|number;\n @Input() minZoomLevel ! : number;\n @Input() overlappingEventSorter ! : (a: EventModel, b: EventModel) => number;\n @Input() preserveScroll ! : PreserveScrollOptions|boolean;\n @Input() presets ! : PresetStore|ViewPresetConfig[];\n @Input() project ! : ProjectModel|ProjectModelConfig|object;\n @Input() range ! : string|DurationConfig;\n @Input() readOnly ! : boolean;\n @Input() recurrenceConfirmationPopup ! : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() resourceMargin ! : number|ResourceMarginConfig;\n @Input() resources ! : ResourceModel[]|ResourceModelConfig[];\n @Input() resourceStore ! : ResourceStore|ResourceStoreConfig;\n @Input() resourceTimeRanges ! : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[];\n @Input() resourceTimeRangeStore ! : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig;\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() selectResourceOnEventNavigate ! : boolean;\n @Input() selectResourceOnScheduleClick ! : boolean;\n @Input() shiftIncrement ! : string|DurationConfig;\n @Input() showTooltip ! : boolean;\n @Input() snap ! : boolean;\n @Input() span ! : number;\n @Input() startDate ! : Date|string;\n @Input() stateSettings ! : {\n restoreUnconfiguredColumns?: boolean\n };\n @Input() store ! : Store|StoreConfig|AjaxStore|AjaxStoreConfig;\n @Input() suppressFit ! : boolean;\n @Input() terminalHideDelay ! : number;\n @Input() terminalOffset ! : number;\n @Input() terminalShowDelay ! : number;\n @Input() terminalSize ! : number|string;\n @Input() tickSize ! : number;\n @Input() timeRanges ! : TimeSpan[]|TimeSpanConfig[];\n @Input() timeRangeStore ! : Store|StoreConfig;\n @Input() timeResolution ! : {\n increment?: number\n unit?: DurationUnit\n }|number;\n @Input() timeZone ! : string|number;\n @Input() title ! : string;\n @Input() tools ! : Record<string, Tool|ToolConfig>|null|Record<string, Tool>|Record<string, ToolConfig>;\n @Input() tooltipTemplate ! : (dependency: DependencyBaseModel) => string|DomConfig;\n @Input() transition ! : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n removeEvent?: boolean\n changeEvent?: boolean\n };\n @Input() transitionDuration ! : number;\n @Input() updateTimelineContextOnScroll ! : boolean;\n @Input() useContextualRecurrenceRules ! : boolean;\n @Input() useInitialAnimation ! : boolean|'fade-in'|'slide-from-left'|'slide-from-top'|string;\n @Input() viewPreset ! : ViewPreset|ViewPresetConfig|string;\n @Input() visibleDate ! : object|Date|VisibleDate;\n @Input() width ! : number|string;\n @Input() workingTime ! : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n };\n\n // Properties only\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isEngineReady ! : boolean;\n @Input() isNavigatingTimelineCells ! : boolean;\n @Input() originalStore ! : Store;\n @Input() parent ! : Widget;\n @Input() scrollLeft ! : number;\n @Input() scrollTop ! : number;\n @Input() scrollX ! : number;\n @Input() selectedAssignments ! : AssignmentModel[];\n @Input() selectedCell ! : GridLocation|GridLocationConfig;\n @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];\n @Input() selectedEvents ! : EventModel[];\n @Input() selectedRecord ! : Model;\n @Input() selectedRecords ! : Model[]|number[];\n @Input() selectedRows ! : Model[]|number[];\n @Input() state ! : SchedulerStateInfo;\n @Input() timelineCell ! : TimelineContext;\n @Input() tooltip ! : string|TooltipConfig;\n @Input() zoomLevel ! : number;\n\n // Features\n @Input() aiFilterFeature ! : object|boolean|string|AIFilter|AIFilterConfig;\n @Input() cellCopyPasteFeature ! : object|boolean|string|CellCopyPaste|CellCopyPasteConfig;\n @Input() cellEditFeature ! : object|boolean|string|CellEdit|CellEditConfig;\n @Input() cellMenuFeature ! : object|boolean|string|CellMenu|CellMenuConfig;\n @Input() cellTooltipFeature ! : object|boolean|string|CellTooltip|CellTooltipConfig;\n @Input() chartsFeature ! : object|boolean|string|Charts|ChartsConfig;\n @Input() columnAutoWidthFeature ! : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig;\n @Input() columnDragToolbarFeature ! : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig;\n @Input() columnLinesFeature ! : object|boolean|string|ColumnLines|ColumnLinesConfig;\n @Input() columnPickerFeature ! : object|boolean|string|ColumnPicker|ColumnPickerConfig;\n @Input() columnRenameFeature ! : object|boolean|string|ColumnRename|ColumnRenameConfig;\n @Input() columnReorderFeature ! : object|boolean|string|ColumnReorder|ColumnReorderConfig;\n @Input() columnResizeFeature ! : object|boolean|string|ColumnResize|ColumnResizeConfig;\n @Input() dependenciesFeature ! : object|boolean|string|Dependencies|DependenciesConfig;\n @Input() dependencyEditFeature ! : object|boolean|string|DependencyEdit|DependencyEditConfig;\n @Input() dependencyMenuFeature ! : object|boolean|string|DependencyMenu|DependencyMenuConfig;\n @Input() eventCopyPasteFeature ! : object|boolean|string|EventCopyPaste|EventCopyPasteConfig;\n @Input() eventDragFeature ! : object|boolean|string|EventDrag|EventDragConfig;\n @Input() eventDragCreateFeature ! : object|boolean|string|EventDragCreate|EventDragCreateConfig;\n @Input() eventDragSelectFeature ! : object|boolean|string|EventDragSelect|EventDragSelectConfig;\n @Input() eventEditFeature ! : object|boolean|string|EventEdit|EventEditConfig;\n @Input() eventFilterFeature ! : object|boolean|string|EventFilter|EventFilterConfig;\n @Input() eventMenuFeature ! : object|boolean|string|EventMenu|EventMenuConfig;\n @Input() eventNonWorkingTimeFeature ! : object|boolean|string|EventNonWorkingTime|EventNonWorkingTimeConfig;\n @Input() eventResizeFeature ! : object|boolean|string|EventResize|EventResizeConfig;\n @Input() eventTooltipFeature ! : object|boolean|string|EventTooltip|EventTooltipConfig;\n @Input() excelExporterFeature ! : object|boolean|string|ExcelExporter|ExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() headerZoomFeature ! : object|boolean|string|HeaderZoom|HeaderZoomConfig;\n @Input() labelsFeature ! : object|boolean|string|Labels|LabelsConfig;\n @Input() lockRowsFeature ! : object|boolean|string|LockRows|LockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() nonWorkingTimeFeature ! : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig;\n @Input() panFeature ! : object|boolean|string|Pan|PanConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() resourceMenuFeature ! : object|boolean|string|ResourceMenu|ResourceMenuConfig;\n @Input() resourceTimeRangesFeature ! : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|RowResize|RowResizeConfig;\n @Input() scheduleContextFeature ! : object|boolean|string|ScheduleContext|ScheduleContextConfig;\n @Input() scheduleMenuFeature ! : object|boolean|string|ScheduleMenu|ScheduleMenuConfig;\n @Input() scheduleTooltipFeature ! : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig;\n @Input() scrollButtonsFeature ! : object|boolean|string|ScrollButtons|ScrollButtonsConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() simpleEventEditFeature ! : object|boolean|string|SimpleEventEdit|SimpleEventEditConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stickyEventsFeature ! : object|boolean|string|StickyEvents|StickyEventsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() timeAxisHeaderMenuFeature ! : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig;\n @Input() timeRangesFeature ! : object|boolean|string|TimeRanges|TimeRangesConfig;\n @Input() timeSelectionFeature ! : object|boolean|string|TimeSelection|TimeSelectionConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\n @Input() treeSummaryFeature ! : object|boolean|string|TreeSummary|TreeSummaryConfig;\n\n // Events emitters\n /**\n * Fired on the owning Scheduler/Gantt after a dependency drag creation operation finished, no matter to outcome\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {Scheduler.model.DependencyBaseModel} event.dependency The created dependency\n */\n @Output() onAfterDependencyCreateDrop: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependency: DependencyBaseModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget after a dependency is successfully saved using the\n * dependency edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance or Gantt instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be saved\n */\n @Output() onAfterDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler at the end of the drag create gesture whether or not\n * a new event was created by the gesture.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the created event record\n */\n @Output() onAfterDragCreate: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the selection is finished.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n */\n @Output() onAfterEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase }) => void)|string>();\n /**\n * Fired on the owning Scheduler after event drop\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords\n * @param {Scheduler.model.EventModel[]} event.eventRecords\n * @param {boolean} event.valid\n * @param {object} event.context\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onAfterEventDrop: any = new EventEmitter<((event: { source: Scheduler, assignmentRecords: AssignmentModel[], eventRecords: EventModel[], valid: boolean, context: object, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler after editor is closed by any action - save, delete or cancel\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {'save','delete','cancel'} event.action The action that was taken to end the edit. One of 'save', 'delete' or 'cancel'\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record that has been edited.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n * @param {Core.widget.Popup} event.editor The editor\n */\n @Output() onAfterEventEdit: any = new EventEmitter<((event: { source: Scheduler, action: 'save'|'delete'|'cancel', eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler after an event is successfully saved\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be saved\n */\n @Output() onAfterEventSave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel }) => void)|string>();\n /**\n * Fired any time there is a change to the assignments selected in the Scheduler.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.AssignmentModel[]} event.selected An array of the Assignments added to the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.deselected An array of the Assignments removed from the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.selection The new selection.\n */\n @Output() onAssignmentSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: AssignmentModel[], deselected: AssignmentModel[], selection: AssignmentModel[] }) => void)|string>();\n /**\n * Fires before an assignment is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or\n * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which\n * case records should be \"manually\" removed after confirmation:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeAssignmentDelete: any = new EventEmitter<((event: { source: Scheduler, assignmentRecords: AssignmentModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired any time there is going to be a change to the assignments selected in the Scheduler.\n * Returning `false` prevents the change\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.AssignmentModel[]} event.selected An array of assignments that will be added to the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.deselected An array of assignments that will be removed from the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.selection The currently selected assignments, before applying `selected` and `deselected`.\n */\n @Output() onBeforeAssignmentSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: AssignmentModel[], deselected: AssignmentModel[], selection: AssignmentModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires whenever the [autoCreate gesture](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-autoCreate) is detected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAutoCreate)\n * @param {object} event Event object\n * @param {Event} event.domEvent The DOM event which initiated the creation.\n * @param {Date} event.date The starting time of the event to be created.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource if the UI includes a resource.\n */\n @Output() onBeforeAutoCreate: any = new EventEmitter<((event: { domEvent: Event, date: Date, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is canceled, return `false` to prevent cancellation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n */\n @Output() onBeforeCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the row editing is canceled, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeCancelRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCancelRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCellEditStart: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before deleting a range of selected cell values by pressing `Backspace` or `Del`\n * buttons while [autoEdit](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {(Grid.util.GridLocation|Core.data.Model)[]} event.gridSelection An array of cell selectors or records that will have their values deleted (the records themselves will not get deleted, only visible column values).\n */\n @Output() onBeforeCellRangeDelete: any = new EventEmitter<((event: { source: Grid, gridSelection: (GridLocation|Model)[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires for each selected record on the owning Grid before editing a range of selected cell values\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Current selected record from the range\n * @param {string} event.field The field being changed\n * @param {any} event.value The value being set\n */\n @Output() onBeforeCellRangeEdit: any = new EventEmitter<((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onBeforeColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired when a column is dropped, and you can return false from a listener to abort the operation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onBeforeColumnDropFinalize: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column resize gesture. The resize is canceled if a listener returns\n * `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onBeforeColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler when the context [element](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#property-element) or\n * [widget](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#property-widget) is about to be shown.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeContextShow)\n * @param {object} event Event object\n * @param {Scheduler.feature.ScheduleContext} event.source The ScheduleContext feature instance\n * @param {Scheduler.util.TimelineContext} event.context The context object containing information about the clicked cell\n * @param {HTMLElement} event.element The context highlight element\n * @param {object} event.position The position and size of the context element. May be mutated by a handler.\n * @param {number} event.position.width The width of the context element\n * @param {number} event.position.height The height of the context element\n * @param {number} event.position.x The x coordinate of the context element\n * @param {number} event.position.y The y coordinate of the context element\n */\n @Output() onBeforeContextShow: any = new EventEmitter<((event: { source: ScheduleContext, context: TimelineContext, element: HTMLElement, position: { width: number, height: number, x: number, y: number } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a copy action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.data The string data about to be copied or cut\n * @param {boolean} event.isCut `true` if this is a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other beforeCopy events\n */\n @Output() onBeforeCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], data: string, isCut: boolean, entityName: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before CSV export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {Grid.column.Column[]} event.columns An array of columns to export\n * @param {Core.data.Model[]} event.rows An array of records to export\n * @param {string} event.lineDelimiter The CSV delimiter to separate lines\n * @param {string} event.columnDelimiter The CSV delimiter to separate values on one line\n */\n @Output() onBeforeCSVExport: any = new EventEmitter<((event: { config: ExportConfig, columns: Column[], rows: Model[], lineDelimiter: string, columnDelimiter: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is added from the dependency\n * edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependency edit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be added\n */\n @Output() onBeforeDependencyAdd: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt before a dependency creation drag operation starts. Return `false` to\n * prevent it\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n */\n @Output() onBeforeDependencyCreateDrag: any = new EventEmitter<((event: { source: TimeSpan }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency drag creation operation is about to finalize\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {'start','end','top','bottom'} event.fromSide The from side (start / end / top / bottom)\n * @param {'start','end','top','bottom'} event.toSide The to side (start / end / top / bottom)\n */\n @Output() onBeforeDependencyCreateFinalize: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is deleted from the dependency\n * edit popup, or when clicking the delete icon on a selected dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency record about to be deleted\n */\n @Output() onBeforeDependencyDelete: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before an dependency is displayed in the editor.\n * This may be listened for to allow an application to take over dependency editing duties. Return `false` to\n * stop the default editing UI from being shown or a `Promise` yielding `true` or `false` for async vetoing.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The record about to be shown in the editor.\n */\n @Output() onBeforeDependencyEdit: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for a dependency is available, but before it is shown. Allows\n * manipulating fields before the widget is shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The record about to be shown in the editor.\n * @param {Core.widget.Popup} event.editor The editor popup\n */\n @Output() onBeforeDependencyEditShow: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is saved using the dependency edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be saved\n * @param {object} event.values The new values\n */\n @Output() onBeforeDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel, values: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires on the owning Scheduler at the beginning of the drag gesture. Returning `false` from a listener prevents\n * the drag create operation from starting.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeDragCreate)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date The datetime associated with the drag start point.\n */\n @Output() onBeforeDragCreate: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, date: Date }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler to allow implementer to prevent immediate finalization by setting\n * `data.context.async = true` in the listener, to show a confirmation popup etc.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeDragCreateFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the new Event record\n * @param {object} event.context\n * @param {Date} event.context.startDate The start date of the event being created\n * @param {Date} event.context.endDate The end date of the event being created\n * @param {boolean} event.context.async Set true to handle drag create asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize drag create. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeDragCreateFinalize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, context: { startDate: Date, endDate: Date, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fires before an event is added. Can be triggered by schedule double click or drag create action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be added\n * @param {Scheduler.model.ResourceModel[]} event.resourceRecords Resources that the record is assigned to\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records\n */\n @Output() onBeforeEventAdd: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecords: ResourceModel[], assignmentRecords: AssignmentModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before an event is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or by the\n * event editor. Return `false` to immediately veto the removal (or a `Promise` yielding `true` or `false`\n * for async vetoing).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeEventDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeEventDelete: any = new EventEmitter<((event: { source: Scheduler|any, eventRecords: EventModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler before event dragging starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record the drag starts from\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag starts from\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onBeforeEventDrag: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler before drag selection starts. Return false to prevent the operation.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n * @param {Event} event.event The native browser DOM event\n */\n @Output() onBeforeEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler after the event drag operation completes, but before changing any data.\n * It allows implementer to use asynchronous validation/finalization by setting `context.async = true`\n * in the listener, for example, to show a confirmation popup, make async data request etc.\n * In such case, implementer need to call the `context.finalize()` method manually:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeEventDropFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {object} event.context\n * @param {DropData} event.context.dropData Information about the drop points for dragged events/assignments.\n * @param {boolean} event.context.async Set to `true` to not finalize the drag-drop operation immediately (e.g. to wait for user confirmation)\n * @param {Scheduler.model.EventModel[]} event.context.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.context.assignmentRecords Assignment records being dragged\n * @param {Scheduler.model.EventModel} event.context.targetEventRecord The event record (if any) where the drop happened\n * @param {Scheduler.model.ResourceModel} event.context.newResource Resource record for drop target\n * @param {boolean} event.context.valid Set this to `false` to abort the drop immediately.\n * @param {Function} event.context.finalize Call this method after an <strong>async</strong> finalization flow, to finalize the drag-drop operation. This method accepts one argument: pass `true` to update records, or `false` to ignore changes\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onBeforeEventDropFinalize: any = new EventEmitter<((event: { source: Scheduler, context: { dropData: DropData, async: boolean, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], targetEventRecord: EventModel, newResource: ResourceModel, valid: boolean, finalize: Function }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler before an event is displayed in an editor.\n * This may be listened for to allow an application to take over event editing duties. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeEventEdit)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n */\n @Output() onBeforeEventEdit: any = new EventEmitter<((event: { source: Scheduler, eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler when the editor for an event is available but before it is populated with\n * data and shown. Allows manipulating fields etc.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n * @param {Core.widget.Popup} event.editor The editor\n */\n @Output() onBeforeEventEditShow: any = new EventEmitter<((event: { source: Scheduler, eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fired on the owning Scheduler before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeEventResize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler to allow implementer to prevent immediate finalization by returning a promise\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeEventResizeFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {object} event.context [DEPRECATED] de-nested to outer params object\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Date} event.startDate New startDate (changed if resizing start side)\n * @param {Date} event.endDate New endDate (changed if resizing end side)\n * @param {Date} event.originalStartDate Start date before resize\n * @param {Date} event.originalEndDate End date before resize\n * @param {boolean} event.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n * @param {Event} event.event Browser event\n * @param {EventResizeData[]} event.resizeData Data of all events that are being resized\n */\n @Output() onBeforeEventResizeFinalize: any = new EventEmitter<((event: { source: Scheduler, context: object, eventRecord: EventModel, startDate: Date, endDate: Date, originalStartDate: Date, originalEndDate: Date, async: boolean, finalize: Function, event: Event, resizeData: EventResizeData[] }) => Promise<void>)|string>();\n /**\n * Fires on the owning Scheduler before an event is saved.\n * Return `false` to immediately prevent saving\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeEventSave)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be saved\n * @param {Scheduler.model.ResourceModel[]} event.resourceRecords The resources to which the event is assigned\n * @param {object} event.values The new values\n * @param {object} event.context Extended save context:\n * @param {boolean} event.context.async Set this to `true` in a listener to indicate that the listener will asynchronously decide to prevent or not the event save.\n * @param {Function} event.context.finalize Function to call to finalize the save. Used when `async` is `true`. Provide `false` to the function to prevent the save.\n */\n @Output() onBeforeEventSave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecords: ResourceModel[], values: object, context: { async?: boolean, finalize: Function } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired any time there is going to be a change to the events selected in the Scheduler.\n * Returning `false` prevents the change\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.EventModel[]} event.selected An array of events that will be added to the selection.\n * @param {Scheduler.model.EventModel[]} event.deselected An array of events that will be removed from the selection.\n * @param {Scheduler.model.EventModel[]} event.selection The currently selected events, before applying `selected` and `deselected`.\n */\n @Output() onBeforeEventSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: EventModel[], deselected: EventModel[], selection: EventModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before Excel export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {XLSColumn[]} event.columns An array of columns to export\n * @param {any[][]} event.rows An array of records to export\n */\n @Output() onBeforeExcelExport: any = new EventEmitter<((event: { config: ExportConfig, columns: XLSColumn[], rows: any[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before dragging of the FillHandle starts, return `false` to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onBeforeFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeFinishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before pan starts. Return `false` to prevent the operation.\n * @param {object} event Event object\n * @param {Event} event.event The native browser DOM event\n */\n @Output() onBeforePan: any = new EventEmitter<((event: { event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a paste action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData about to be pasted\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other beforePaste events\n * @param {string} event.text The raw text from clipboard\n */\n @Output() onBeforePaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, targetCell: GridLocation, entityName: string, text: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before export started. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {object} event.config Export config\n */\n @Output() onBeforePdfExport: any = new EventEmitter<((event: { config: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onBeforePresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row about to be rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onBeforeRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows are about to be rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onBeforeRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * This event fires before row collapse is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeRowCollapse)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowCollapse: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires before row expand is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeRowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowExpand: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler before the selected contexts are rendered.\n * The event is triggered only when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#config-multiSelect) is enabled\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeSelectedContextsShow)\n * @param {object} event Event object\n * @param {Scheduler.feature.ScheduleContext} event.source The ScheduleContext feature instance\n * @param {Scheduler.util.TimelineContext[]} event.selectedContexts The context objects containing information about the selected cells\n * @param {DomConfig} event.domConfig A [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) config object which is used to render the selected cell elements.\n */\n @Output() onBeforeSelectedContextsShow: any = new EventEmitter<((event: { source: ScheduleContext, selectedContexts: TimelineContext[], domConfig: DomConfig }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before the selection changes. Returning `false` from a listener prevents the change\n * @param {object} event Event object\n * @param {string} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records to be deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records to be selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the current selection, before applying `selected` and `deselected`\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells to be deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells to be selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the current selection, before applying `selectedCells` and `deselectedCells`\n */\n @Output() onBeforeSelectionChange: any = new EventEmitter<((event: { action: string, mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt before showing dependency terminals on a task or event. Return `false` to\n * prevent it\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The hovered task\n */\n @Output() onBeforeShowTerminals: any = new EventEmitter<((event: { source: TimeSpan }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is applied to the source. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {SchedulerStateInfo} event.state State object config\n */\n @Output() onBeforeStateApply: any = new EventEmitter<((event: { state: SchedulerStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is saved by the StateProvider. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {SchedulerStateInfo} event.state State object config\n */\n @Output() onBeforeStateSave: any = new EventEmitter<((event: { state: SchedulerStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a group is going to be expanded or collapsed using the UI.\n * Returning `false` from a listener prevents the operation\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {Event} event.domEvent The user interaction event (eg a `click` event) if the toggle request was instigated by user interaction.\n */\n @Output() onBeforeToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onBeforeToggleNode: any = new EventEmitter<((event: { source: Grid, record: Model, collapse: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid when editing is cancelled\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n * @param {Event} event.event Included if the cancellation was triggered by a DOM event\n */\n @Output() onCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation, event: Event }) => void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when user clicks in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user activates contextmenu in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellContextMenu: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user double clicks a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellDblClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning grid before the context menu is shown for a cell.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-cellMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning grid when an item is selected in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid after the context menu is shown for a cell.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onCellMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model, checked: boolean }) => void)|string>();\n /**\n * Fired when the mouse enters a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered cell\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the cell that the mouse left\n * @param {Grid.column.Column} event.column The column representing the cell that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a user moves the mouse out of a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOut: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user moves the mouse over a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOver: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fires when a Panel is collapsed using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onCollapse: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired before a parent node record is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been collapsed.\n */\n @Output() onCollapseNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object\n * to indicate whether the drop position is valid or not.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted (if not last).\n * @param {Event} event.event The browser event.\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to `true` or `false` to indicate whether the drop position is valid.\n */\n @Output() onColumnDrag: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, event: Event, context: { valid: boolean } }) => void)|string>();\n /**\n * This event is fired when a column drag gesture has started.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => void)|string>();\n /**\n * This event is always fired after a column is dropped. The `valid` param is `true` if the operation was not\n * vetoed and the column was moved in the column store.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {boolean} event.valid `true` if the operation was not vetoed.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onColumnDrop: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, valid: boolean, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired after a resize gesture is completed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The resized column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event is fired when a column resize gesture starts.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResizeStart: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event fires on the owning widget when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n */\n @Output() onContextMenuItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem }) => void)|string>();\n /**\n * This event fires on the owning widget when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {boolean} event.checked Checked or not\n */\n @Output() onContextMenuToggleItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem, checked: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a copy action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.copiedDataString The concatenated data string that was copied or cut\n * @param {boolean} event.isCut `true` if this was a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other copy events\n */\n @Output() onCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], copiedDataString: string, isCut: boolean, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the line indicating the current time is updated (see [currentTimeLineUpdateInterval](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-currentTimeLineUpdateInterval)).\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.date The current date\n */\n @Output() onCurrentTimelineUpdate: any = new EventEmitter<((event: { source: Scheduler, date: Date }) => void)|string>();\n /**\n * Fired when data in the store changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-dataChange)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owning grid\n * @param {Core.data.Store} event.store The originating store\n * @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`\n * @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)\n * @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`\n * @param {object} event.changes Passed for the `'update'` action, info on which record fields changed\n */\n @Output() onDataChange: any = new EventEmitter<((event: { source: Grid, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string>();\n /**\n * Fired when the range of dates encapsulated by the UI changes. This will be when\n * moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen\n * when zooming, or changing [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-viewPreset).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-dateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source This Scheduler/Gantt instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onDateRangeChange: any = new EventEmitter<((event: { source: TimelineBase, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fired when dependencies are rendered\n */\n @Output() onDependenciesDrawn: any = new EventEmitter<(() => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a click is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyClick: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a context menu event is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyContextMenu: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency creation drag operation starts\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n */\n @Output() onDependencyCreateDragStart: any = new EventEmitter<((event: { source: TimeSpan }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency drag creation operation succeeds\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {Scheduler.model.DependencyBaseModel} event.dependency The created dependency\n */\n @Output() onDependencyCreateDrop: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependency: DependencyBaseModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a double click is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyDblClick: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler before the context menu is shown for a dependency.\n * Allows manipulation of the items to show in the same way as in `processItems`. Returning `false` from a listener\n * prevents the menu from being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {HTMLElement} event.element\n * @param {MouseEvent} event.event Pointer event which triggered the context menu (if any)\n */\n @Output() onDependencyMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, dependencyRecord: DependencyModel, element: HTMLElement, event?: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {Core.widget.MenuItem} event.item The menu item\n * @param {HTMLElement} event.element The dependency element\n */\n @Output() onDependencyMenuItem: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel, item: MenuItem, element: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler after showing the context menu for an event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {HTMLElement} event.element The dependency element\n */\n @Output() onDependencyMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, dependencyRecord: DependencyModel, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the mouse moves out of a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOut: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the mouse moves over a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOver: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when asynchronous dependency validation completes\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {number} event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)\n */\n @Output() onDependencyValidationComplete: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when asynchronous dependency validation starts\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {number} event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)\n */\n @Output() onDependencyValidationStart: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the new event has been created.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The new `EventModel` record.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource for the row in which the event is being created.\n * @param {MouseEvent} event.event The ending mouseup event.\n * @param {HTMLElement} event.eventElement The DOM element representing the newly created event un the UI.\n */\n @Output() onDragCreateEnd: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the drag start has created a new Event record.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the new event.\n */\n @Output() onDragCreateStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires while drag selecting. UI will update with current range, but the cells will not be selected until\n * mouse up. This event can be listened for to perform actions while drag selecting.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source\n * @param {GridLocationConfig[],Grid.util.GridLocation[]} event.selectedCells The cells that is currently being dragged over\n * @param {Core.data.Model[]} event.selectedRecords The records that is currently being dragged over\n */\n @Output() onDragSelecting: any = new EventEmitter<((event: { source: Grid, selectedCells: GridLocationConfig[]|GridLocation[], selectedRecords: Model[] }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when a double click or drag gesture has created a new event and added it to the event store.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler.\n * @param {Scheduler.model.EventModel} event.eventRecord The new event record.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource assigned to the new event.\n */\n @Output() onEventAutoCreated: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel }) => void)|string>();\n /**\n * Triggered for click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventClick: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventContextMenu: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventDblClick: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler when event is dragged\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {Date} event.startDate Start date for the current location\n * @param {Date} event.endDate End date for the current location\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag started from\n * @param {Scheduler.model.ResourceModel} event.newResource Resource at the current location\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to `false` to signal that the current drop position is invalid.\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDrag: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], startDate: Date, endDate: Date, resourceRecord: ResourceModel, newResource: ResourceModel, context: { valid: boolean }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler after an event drag operation has been aborted\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDragAbort: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when drag mode is changed, for example when copy key is\n * pressed or released while dragging.\n * @param {object} event Event object\n * @param {string} event.mode Drag mode, could be either 'move', 'copy', or 'auto'\n */\n @Output() onEventDragModeChange: any = new EventEmitter<((event: { mode: string }) => void)|string>();\n /**\n * Fired on the owning Scheduler after an event drag operation regardless of the operation being cancelled or not\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n */\n @Output() onEventDragReset: any = new EventEmitter<((event: { source: Scheduler }) => void)|string>();\n /**\n * Fires on the owning Scheduler when the selection area is updated.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n * @param {Date} event.startDate The start date of the selection area\n * @param {Date} event.endDate The end date of the selection area\n * @param {Core.helper.util.Rectangle} event.rectangle The rectangle of the selection area\n * @param {Scheduler.model.AssignmentModel[]} event.selectedAssignments The selected assignments\n * @param {Scheduler.model.EventModel[]} event.selectedEvents The selected events\n */\n @Output() onEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase, startDate: Date, endDate: Date, rectangle: Rectangle, selectedAssignments: AssignmentModel[], selectedEvents: EventModel[] }) => void)|string>();\n /**\n * Fired on the owning Scheduler when event dragging starts\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag starts from\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDragStart: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler when an event is dropped\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel[]} event.eventRecords\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords\n * @param {HTMLElement} event.externalDropTarget The HTML element dropped upon, if drop happened on a valid external drop target\n * @param {boolean} event.isCopy\n * @param {object} event.context\n * @param {Scheduler.model.EventModel} event.context.targetEventRecord Event record for drop target\n * @param {Scheduler.model.ResourceModel} event.context.newResource Resource record for drop target\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDrop: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], externalDropTarget: HTMLElement, isCopy: boolean, context: { targetEventRecord: EventModel, newResource: ResourceModel }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired before the editor will load the event record data into its input fields. This is useful if you\n * want to modify the fields before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The editor widget\n * @param {Scheduler.model.EventModel} event.record The record\n */\n @Output() onEventEditBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: EventModel }) => void)|string>();\n /**\n * Triggered when a keydown event is observed if there are selected events.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The selected event records\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The selected assignment records\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onEventKeyDown: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], event: KeyboardEvent }) => void)|string>();\n /**\n * Triggered when a keyup event is observed if there are selected events.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The selected event records\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The selected assignment records\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onEventKeyUp: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], event: KeyboardEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler before the context menu is shown for an event. Allows manipulation of the items\n * to show in the same way as in `processItems`. Returning `false` from a listener prevents the menu from\n * being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.EventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n * @param {MouseEvent} event.event Pointer event which triggered the context menu (if any)\n */\n @Output() onEventMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement, event?: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Scheduler.model.EventModel} event.eventRecord\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onEventMenuItem: any = new EventEmitter<((event: { source: Scheduler, item: MenuItem, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler after showing the context menu for an event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.EventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onEventMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Triggered for mouse down on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseDown: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when the mouse enters an event bar.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseEnter: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when the mouse leaves an event bar.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseLeave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse out events within and when moving out of an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-eventMouseOut)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseOut: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse over events when moving into and within an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-eventMouseOver)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseOver: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseUp: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler on each resize move event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n * @param {EventResizeData[]} event.resizeData Resize data for selected events\n */\n @Output() onEventPartialResize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, startDate: Date, endDate: Date, element: HTMLElement, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {EventResizeData[]} event.resizeData Resize data for selected events\n */\n @Output() onEventResizeEnd: any = new EventEmitter<((event: { source: Scheduler, changed: boolean, eventRecord: EventModel, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler when event resizing starts\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n * @param {EventResizeData[]} event.resizeData Resize data for selected events. Only available when [resizeSelected](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventResize#config-resizeSelected) is `true`\n */\n @Output() onEventResizeStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fired any time there is a change to the events selected in the Scheduler.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.EventModel[]} event.selected An array of the Events added to the selection.\n * @param {Scheduler.model.EventModel[]} event.deselected An array of the Event removed from the selection.\n * @param {Scheduler.model.EventModel[]} event.selection The new selection.\n */\n @Output() onEventSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: EventModel[], deselected: EventModel[], selection: EventModel[] }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onExpand: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired after a parent node record is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been expanded.\n */\n @Output() onExpandNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * Fired when a file is dropped on the widget element\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The owning Grid instance\n * @param {DataTransferItem} event.file The dropped file descriptor\n * @param {DragEvent} event.domEvent The native DragEvent\n */\n @Output() onFileDrop: any = new EventEmitter<((event: { source: Grid, file: DataTransferItem, domEvent: DragEvent }) => void)|string>();\n /**\n * Fired before the FillHandle dragging is finalized and values are applied to cells, return `false` to prevent the\n * drag operation from applying data changes.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleBeforeDragFinalize: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while dragging the FillHandle.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDrag: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when a FillHandle drag operation is aborted.\n */\n @Output() onFillHandleDragAbort: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired after a FillHandle drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragEnd: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging of the FillHandle starts.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when cell editing is finished\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-finishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired before dragging starts, return false to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowBeforeDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the row drop operation is finalized. You can return false to abort the drop operation, or a\n * Promise yielding `true` / `false` which allows for asynchronous abort (e.g. first show user a confirmation dialog).\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the `record`, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowBeforeDropFinalize: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while the row is being dragged, in the listener function you have access to `context.insertBefore` a grid /\n * tree record, and additionally `context.parent` (a TreeNode) for trees. You can signal that the drop position is\n * valid or invalid by setting `context.valid = false;`\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid.\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrag: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a row drag operation is aborted\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDragAbort: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging starts.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => void)|string>();\n /**\n * Fired after the row drop operation has completed, regardless of validity\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid true or false depending on whether the drop position was valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the record, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrop: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a grid header is clicked on.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-headerClick)\n * @param {object} event Event object\n * @param {Event} event.domEvent The triggering DOM event.\n * @param {Grid.column.Column} event.column The column clicked on.\n */\n @Output() onHeaderClick: any = new EventEmitter<((event: { domEvent: Event, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid before the context menu is shown for a header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-headerMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid when a check item is toggled in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {boolean} event.checked Checked or not\n */\n @Output() onHeaderMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, checked: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires when row locking is enabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The created clone\n */\n @Output() onLockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Mouse moved out from element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOut: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Mouse moved in over element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOver: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Fired when a user gesture causes the active item to change.\n * @param {object} event Event object\n * @param {Event} event.event The browser event which instigated navigation. May be a click or key or focus event.\n * @param {HTMLElement,null} event.item The newly active item, or `null` if focus moved out.\n * @param {HTMLElement,null} event.oldItem The previously active item, or `null` if focus is moving in.\n */\n @Output() onNavigate: any = new EventEmitter<((event: { event: Event, item: HTMLElement|null, oldItem: HTMLElement|null }) => void)|string>();\n /**\n * Fires when the requested date range cannot fit into any zoom level higher than the current level.\n * @param {object} event Event object\n * @param {number} event.currentZoomLevel The current zoom level\n * @param {Date} event.startDate The requested start date\n * @param {Date} event.endDate The requested end date\n */\n @Output() onNoZoomChange: any = new EventEmitter<((event: { currentZoomLevel: number, startDate: Date, endDate: Date }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a paste action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData that was pasted\n * @param {Core.data.Model[]} event.modifiedRecords The records which have been modified due to the paste action\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other paste events\n */\n @Output() onPaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, modifiedRecords: Model[], targetCell: GridLocation, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Scheduler if a paste action is not allowed. Depending on if the EventStore is using\n * [singleAssignment](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-singleAssignment) or the configuration of\n * [copyPasteAction](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventCopyPaste#config-copyPasteAction), either the `eventRecords` or the `assignmentRecords` param will be populated\n * with record copies.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Owner scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The event records about to be pasted\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be pasted\n * @param {Scheduler.model.EventModel[]} event.originalEventRecords The event records that were copied\n * @param {Scheduler.model.AssignmentModel[]} event.originalAssignmentRecords The assignment records that were copied\n * @param {Date} event.date The paste date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The target resource record\n * @param {boolean} event.isCut `true` if this is a cut action\n * @param {string} event.entityName 'event' to distinguish this event from other `pasteNotAllowed` events\n * @param {'overlappingEvents','resourceReadOnly'} event.reason A string id to use for displaying an error message to the user.\n */\n @Output() onPasteNotAllowed: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], originalEventRecords: EventModel[], originalAssignmentRecords: AssignmentModel[], date: Date, resourceRecord: ResourceModel, isCut: boolean, entityName: string, reason: 'overlappingEvents'|'resourceReadOnly' }) => void)|string>();\n /**\n * Fires on the owning Grid when export has finished\n * @param {object} event Event object\n * @param {Response} event.response Optional response, if received\n * @param {Error} event.error Optional error, if exception occurred\n */\n @Output() onPdfExport: any = new EventEmitter<((event: { response?: any, error?: Error }) => void)|string>();\n /**\n * Fired after the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) has changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.centerDate The new center date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onPresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, centerDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired after releasing an event, useful to cleanup of custom content added on `renderEvent` or in `eventRenderer`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord The event record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord The assignment record\n * @param {object} event.renderData An object containing details about the event rendering\n * @param {HTMLElement} event.element The event bar element\n */\n @Output() onReleaseEvent: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, renderData: object, element: HTMLElement }) => void)|string>();\n /**\n * Fired after rendering an event, when its element is available in DOM.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord The event record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord The assignment record\n * @param {object} event.renderData An object containing details about the event rendering, see [eventRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-eventRenderer) for details\n * @param {boolean} event.isRepaint `true` if this render is a repaint of the event, updating its existing element\n * @param {boolean} event.isReusingElement `true` if this render lead to the event reusing a released events element\n * @param {HTMLElement} event.element The event bar element\n */\n @Output() onRenderEvent: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, renderData: object, isRepaint: boolean, isReusingElement: boolean, element: HTMLElement }) => void)|string>();\n /**\n * Fires after a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row that has been rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows have been rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired when clicking a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderClick: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * Fired when activating context menu on a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderContextmenu: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * Fired when double clicking a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderDblclick: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * This event fires on the owning scheduler before the context menu is shown for a resource.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-resourceMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n */\n @Output() onResourceMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning scheduler after the context menu is shown for a resource.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onResourceMenuToggleItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, resourceRecord: ResourceModel, checked: boolean }) => void)|string>();\n /**\n * Triggered for click on a resource time range. Only triggered if the ResourceTimeRange feature is configured with\n * `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeContextMenu: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeDblClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse down ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseDown: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse out of a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOut: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse over on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOver: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseUp: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Grid resize lead to a new responsive level being applied\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Grid that was resized\n * @param {string} event.level New responsive level (small, large, etc)\n * @param {number} event.width New width in px\n * @param {string} event.oldLevel Old responsive level\n * @param {number} event.oldWidth Old width in px\n */\n @Output() onResponsive: any = new EventEmitter<((event: { grid: Grid, level: string, width: number, oldLevel: string, oldWidth: number }) => void)|string>();\n /**\n * This event fires when a row has finished collapsing.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onRowCollapse: any = new EventEmitter<((event: { record: Model }) => void)|string>();\n /**\n * This event fires when a row expand has finished expanding.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-rowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n * @param {object} event.expandedElements An object with the Grid region name as property and the expanded body element as value\n * @param {Core.widget.Widget} event.widget In case of expanding a Widget, this will be a reference to the instance created by the actual expansion. If there is multiple Grid regions, use the `widgets` param instead.\n * @param {object} event.widgets In case of expanding a Widget, this will be an object with the Grid region name as property and the reference to the widget instance created by the actual expansion\n */\n @Output() onRowExpand: any = new EventEmitter<((event: { record: Model, expandedElements: object, widget: Widget, widgets: object }) => void)|string>();\n /**\n * Fired when the mouse enters a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered row\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the row that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleClick: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user right-clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleContextMenu: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user double-clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Index of double-clicked resource\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleDblClick: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget before the context menu is shown for the schedule.\n * Allows manipulation of the items to show in the same way as in `processItems`. Returning `false` from a listener\n * prevents the menu from being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onScheduleMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, resourceRecord: ResourceModel, date: Date, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {HTMLElement} event.element\n */\n @Output() onScheduleMenuItem: any = new EventEmitter<((event: { source: Scheduler, item: MenuItem, resourceRecord: ResourceModel, date: Date, element: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget after showing the context menu for the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {HTMLElement} event.targetElement\n */\n @Output() onScheduleMenuShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, menu: Menu, resourceRecord: ResourceModel, date: Date, targetElement: HTMLElement }) => void)|string>();\n /**\n * Triggered when user mousedowns over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseDown: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when mouse enters an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseEnter: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when mouse leaves an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseLeave: any = new EventEmitter<((event: { source: Scheduler, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user moves mouse over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseMove: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user mouseups over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseUp: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Grid has scrolled vertically\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {number} event.scrollTop The vertical scroll position.\n */\n @Output() onScroll: any = new EventEmitter<((event: { source: Grid, scrollTop: number }) => void)|string>();\n /**\n * Fires on owner when the scroll button is clicked, return `false` to prevent default scroll behavior\n * @param {object} event Event object\n * @param {Event} event.domEvent DOM event\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n */\n @Output() onScrollButtonClick: any = new EventEmitter<((event: { domEvent: Event, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * The selection has been changed.\n * @param {object} event Event object\n * @param {'select','deselect'} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the new selection.\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the new selection.\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { action: 'select'|'deselect', mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => void)|string>();\n /**\n * The selectionMode configuration has been changed.\n * @param {object} event Event object\n * @param {object} event.selectionMode The new [selectionMode](https://bryntum.com/products/scheduler/docs/api/Grid/view/mixin/GridSelection#config-selectionMode)\n */\n @Output() onSelectionModeChange: any = new EventEmitter<((event: { selectionMode: object }) => void)|string>();\n /**\n * Fired when the [shiftIncrement](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#property-shiftIncrement) of this view changes.\n * *This event is only fired when used as a mode of a Calendar*\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source This Scheduler/Gantt instance.\n * @param {object} event.old The shift increment *if any*.\n * @param {object} event.new The shift increment\n */\n @Output() onShiftIncrementChange: any = new EventEmitter<((event: { source: TimelineBase, old?: object, new: object }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires when splitting the Grid.\n * @param {object} event Event object\n * @param {Grid.view.GridBase[]} event.subViews The sub views created by the split\n * @param {object} event.options The options passed to the split call\n * @param {'horizontal','vertical','both'} event.options.direction The direction of the split\n * @param {Grid.column.Column} event.options.atColumn The column to split at\n * @param {Core.data.Model} event.options.atRecord The record to split at\n */\n @Output() onSplit: any = new EventEmitter<((event: { subViews: GridBase[], options: { direction: 'horizontal'|'vertical'|'both', atColumn: Column, atRecord: Model } }) => void)|string>();\n /**\n * Fired by the Grid when the collapse icon is clicked. Return `false` to prevent the default collapse action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterCollapseClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired by the Grid after a sub-grid has been resized using the splitter\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The resized subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragEnd: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when a sub-grid resize gesture starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid about to be resized\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragStart: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when the expand icon is clicked. Return `false` to prevent the default expand action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterExpandClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onStartCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => void)|string>();\n /**\n * Fires after a sub grid is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridCollapse: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Fires after a sub grid is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridExpand: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Triggered for click on a tick cell. Only triggered if the TreeSummary feature is configured with\n * `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellClick: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellContextMenu: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellDblClick: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse down on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellMouseDown: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellMouseUp: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when the tick size changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-tickSizeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {number} event.tickSize The tick size in pixels\n */\n @Output() onTickSizeChange: any = new EventEmitter<((event: { source: Scheduler, tickSize: number }) => void)|string>();\n /**\n * Fired when the timeaxis has changed, for example by zooming or configuring a new time span.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {object} event.config Config object used to reconfigure the time axis.\n * @param {Date} event.config.startDate New start date (if supplied)\n * @param {Date} event.config.endDate New end date (if supplied)\n */\n @Output() onTimeAxisChange: any = new EventEmitter<((event: { source: Scheduler, config: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fires after a click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a right click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderContextMenu: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a double click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderDblClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget before the context menu is shown for the time axis header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-timeAxisHeaderMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * Fired when the pointer-activated [timelineContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDomEvents#property-timelineContext) has changed.\n * @param {object} event Event object\n * @param {Scheduler.util.TimelineContext} event.oldContext The tick/resource context being deactivated.\n * @param {Scheduler.util.TimelineContext} event.context The tick/resource context being activated.\n */\n @Output() onTimelineContextChange: any = new EventEmitter<((event: { oldContext: TimelineContext, context: TimelineContext }) => void)|string>();\n /**\n * Fired when the *scheduler* viewport (not the overall Scheduler element) changes size.\n * This happens when the grid changes height, or when the subgrid which encapsulates the\n * scheduler column changes width.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Scheduler\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onTimelineViewportResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a right click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderContextMenu: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a double click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderDblClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when time selection changes\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.startDate The selected range start date, or `undefined`\n * @param {Date} event.endDate The selected range end date, or `undefined`\n */\n @Output() onTimeSelectionChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date }) => void)|string>();\n /**\n * Triggered when clicking the time selection header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.startDate The selected range start date\n * @param {Date} event.endDate The selected range end date\n * @param {Event} event.domEvent The raw DOM event\n */\n @Output() onTimeSelectionElementClick: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date, domEvent: Event }) => void)|string>();\n /**\n * Fired when one or more groups are expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {boolean} event.allRecords True if this event is part of toggling all groups\n */\n @Output() onToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, allRecords?: boolean }) => void)|string>();\n /**\n * Fired after a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onToggleNode: any = new EventEmitter<((event: { record: Model, collapse: boolean }) => void)|string>();\n /**\n * A header [tool](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-tools) has been clicked.\n * @param {object} event Event object\n * @param {Core.widget.Tool} event.source This Panel.\n * @param {Core.widget.Tool} event.tool The tool which is being clicked.\n */\n @Output() onToolClick: any = new EventEmitter<((event: { source: Tool, tool: Tool }) => void)|string>();\n /**\n * Fires when row locking is disabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The locked clone that will be destroyed\n */\n @Output() onUnlockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Fires when un-splitting the Grid.\n */\n @Output() onUnsplit: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the range of dates visible within the viewport changes. This will be when\n * scrolling along a time axis.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-visibleDateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onVisibleDateRangeChange: any = new EventEmitter<((event: { source: Scheduler, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumSchedulerComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n // Backwards compatibility for gridInstance, schedulerInstance etc.\n // @ts-ignore\n me[StringHelper.uncapitalize(instanceName) + 'Instance'] = me.instance;\n // \n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumSchedulerComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumSchedulerComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum SchedulerBase\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AjaxStore, AjaxStoreConfig, Base, Container, DomClassList, DomConfig, DurationConfig, DurationUnit, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Popup, Rectangle, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, EmptyTextDomConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridLocation, GridLocationConfig, GridSelectionMode, Group, GroupConfig, HeaderMenu, HeaderMenuConfig, MergeCells, MergeCellsConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, Search, SearchConfig, Sort, SortConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentModel, AssignmentModelConfig, AssignmentStore, AssignmentStoreConfig, ColumnLines, ColumnLinesConfig, SchedulerContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, Dependencies, DependenciesConfig, DependencyBaseModel, DependencyEdit, DependencyEditConfig, DependencyMenu, DependencyMenuConfig, DependencyModel, DependencyModelConfig, DependencyStore, DependencyStoreConfig, DropData, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventModel, EventModelConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResize, EventResizeConfig, EventResizeData, EventStore, EventStoreConfig, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, SchedulerColumnConfig, GroupSummary, GroupSummaryConfig, HeaderZoom, HeaderZoomConfig, Labels, LabelsConfig, LockRows, LockRowsConfig, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PdfExport, PdfExportConfig, PresetStore, Print, PrintConfig, ProjectModel, ProjectModelConfig, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceModel, ResourceModelConfig, ResourceStore, ResourceStoreConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerBase, SchedulerBaseListeners, SchedulerResponsiveLevelConfig, SchedulerStateInfo, ScrollButtons, ScrollButtonsConfig, SimpleEventEdit, SimpleEventEditConfig, Split, SplitConfig, StickyEvents, StickyEventsConfig, Summary, SummaryConfig, TimeAxis, TimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumSchedulerBaseProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * Set to `false` to not allow creating dependencies\n */\n allowCreate ? : boolean\n /**\n * Set it to `true` to allow dependency creation only for parent events (only applies to Scheduler Pro using the `NestedEvents` feature). Normally the nested event container\n * inside parent events cannot be scrolled when using dependencies, but by enabling this setting and limiting\n * to where dependencies can be drawn scrolling will be enabled.\n */\n allowCreateOnlyParent ? : boolean\n /**\n * `false` to require a drop on a target event bar side circle to define the dependency type.\n * If dropped on the event bar, the `defaultValue` of the DependencyModel `type` field will be used to\n * determine the target task side.\n */\n allowDropOnEventBar ? : boolean\n /**\n * Set to `false` if you don't want to allow events overlapping times for any one resource (defaults to `true`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-allowOverlap)\n */\n allowOverlap ? : boolean\n /**\n * Set to `true` to animate row removals caused by filtering.\n * @deprecated 7.0.0 Deprecated `animateFilterRemovals`. Use `transition.filterRemoval` instead\n */\n animateFilterRemovals ? : boolean\n /**\n * Controls if removing and inserting rows should be animated. Set to `false` to prevent those animations,\n * removing the related delays.\n * @deprecated 7.0.0 Deprecated `animateRemovingRows`. Use `transition.removeRecord` instead\n */\n animateRemovingRows ? : boolean\n /**\n * When the [Tree](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree) feature is in use and the Store is a tree store, this\n * config may be set to `true` to visually animate branch node expand and collapse operations.\n * *This is not supported in Scheduler and Gantt*\n * @deprecated 7.0.0 Deprecated `animateTreeNodeToggle`. Use `transition.toggleTreeNode` instead\n */\n animateTreeNodeToggle ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Inline assignments, will be loaded into an internally created AssignmentStore.\n */\n assignments ? : AssignmentModel[]|object[]|AssignmentModelConfig[]\n /**\n * The optional [AssignmentStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore), holding assignments between resources and events.\n * Required for multi assignments.\n */\n assignmentStore ? : AssignmentStore|AssignmentStoreConfig\n /**\n * You can set this option to `false` to make the timeline panel start and end on the exact provided\n * [startDate](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-startDate)/[endDate](#Scheduler/view/TimelineBase#config-endDate) w/o adjusting them.\n */\n autoAdjustTimeAxis ? : boolean\n /**\n * If this config is set, then its `gesture` property (which defaults to `dblclick`) creates a\n * new event at the mouse or touch event's time point.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-autoCreate)\n * @param {'click','dblclick'} autoCreate.gesture The gesture to trigger auto creation of an event. Defaults to `dblclick`.\n * @param {boolean} autoCreate.useEventModelDefaults Set to `true` to set default duration based on the defaults specified by the [duration](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel#field-duration) and [durationUnit](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/EventModel#field-durationUnit) fields.\n * @param {'round','ceil','floor'} autoCreate.snapType The type of snapping to apply to the event start date. If omitted, the date will be floored to the time axis resolution.\n * @param {DurationConfig,string} autoCreate.step The increment to snap the event start date to.\n * @param {DurationConfig,string} autoCreate.duration The duration of the event to create. Defaults to 1 time axis tick.\n * @param {string} autoCreate.name The name of the event to create. Defaults to the `Object.newEvent` property from the locale.\n */\n autoCreate ? : boolean|string|{autoCreate: { gesture?: 'click'|'dblclick', useEventModelDefaults?: boolean, snapType?: 'round'|'ceil'|'floor', step?: DurationConfig|string, duration?: DurationConfig|string, name?: string }}\n /**\n * Automatically set grids height to fit all rows (no scrolling in the grid). In general you should avoid\n * using `autoHeight: true`, since it will bypass Grids virtual rendering and render all rows at once, which\n * in a larger grid is really bad for performance.\n */\n autoHeight ? : boolean\n /**\n * Controls how much space to leave between stacked event bars in px.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-barMargin)\n */\n barMargin ? : number\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-bbar)\n */\n bbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * Custom CSS classes to add to the panel's body element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-bodyCls)\n */\n bodyCls ? : string|object\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * This config defines the size of the start and end invisible parts of the timespan when [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-infiniteScroll) set to `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-bufferCoef)\n */\n bufferCoef ? : number\n /**\n * This config defines the scroll limit, which, when exceeded will cause a timespan shift.\n * The limit is calculated as the `panelWidth * [bufferCoef](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-bufferCoef) * bufferThreshold`. During scrolling, if the left or right side\n * has less than that of the rendered content - a shift is triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-bufferThreshold)\n */\n bufferThreshold ? : number\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * Set to `false` to crop text in grid cells without ellipsis (...). When enabled, cells containing pure\n * use `display : block`, instead of `display : flex` to allow ellipsis to work.\n * <strong>NOTE</strong> Only supported in browsers that support `:has()` CSS selector\n */\n cellEllipsis ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-cls)\n */\n cls ? : string|object\n /**\n * Controls whether the panel is collapsed (the body of the panel is hidden while only the header is\n * visible). Only valid if the panel is [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible).\n */\n collapsed ? : boolean\n /**\n * This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-collapsible)\n */\n collapsible ? : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n /**\n * Set to `false` to not show column lines. End result might be overruled by/differ between themes.\n */\n columnLines ? : boolean\n /**\n * Accepts column definitions for the grid during initialization. They will be used to create\n * [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-columns)\n */\n columns ? : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * Event which is used to show context menus.\n * Available options are: 'contextmenu', 'click', 'dblclick'.\n */\n contextMenuTriggerEvent ? : 'contextmenu'|'click'|'dblclick'\n /**\n * A tooltip config object that will be applied to the dependency creation [Tooltip](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip)\n */\n creationTooltip ? : TooltipConfig\n /**\n * A template function that will be called to generate the HTML contents of the dependency creation tooltip.\n * You can return either an HTML string or a [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object.\n * @param {object} data Data about the dependency being created\n * @param {Scheduler.model.TimeSpan} data.source The from event\n * @param {Scheduler.model.TimeSpan} data.target The target event\n * @param {string} data.fromSide The from side (start, end, top, bottom)\n * @param {string} data.toSide The target side (start, end, top, bottom)\n * @param {boolean} data.valid The validity of the dependency\n * @returns {string,DomConfig}\n */\n creationTooltipTemplate ? : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig\n /**\n * Supply a [CrudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/CrudManager) instance or a config object if you want to use\n * CrudManager for handling data.\n */\n crudManager ? : CrudManagerConfig|CrudManager\n /**\n * Class that should be used to instantiate a CrudManager in case it's provided as a simple object to\n * [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.\n */\n crudManagerClass ? : typeof CrudManager\n /**\n * Convenient shortcut to set data in grids store both during initialization and at runtime. Can also be\n * used to retrieve data at runtime, although we do recommend interacting with Grids store instead using\n * the [store](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-data)\n */\n data ? : object[]|Model[]|ModelConfig[]\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The date to display when used as a component of a Calendar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-date)\n */\n date ? : Date\n /**\n * A [DateHelper](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper) format string/function to use to create date output for view descriptions.\n * @param {Date} date The date to format.\n * @returns {string} The formatted date.\n */\n dateFormat ? : string|((date: Date) => string)\n /**\n * A string used to separate start and end dates in the [descriptionFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).\n */\n dateSeparator ? : string\n /**\n * Region to which columns are added when they have none specified\n */\n defaultRegion ? : string\n /**\n * Generic resource image, used when provided `imageUrl` or `image` fields or path calculated from resource\n * name are all invalid. If left blank, resource name initials will be shown when no image can be loaded.\n */\n defaultResourceImageName ? : string\n /**\n * Inline dependencies, will be loaded into an internally created DependencyStore.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * The optional [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore).\n */\n dependencyStore ? : DependencyStore|DependencyStoreConfig\n /**\n * The date format used by the default [descriptionRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionRenderer) for rendering the view's description.\n * If this value is `null`, the [dateFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-dateFormat) (and potentially [dateSeparator](#Scheduler/view/mixin/Describable#config-dateSeparator)) will\n * be used.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-descriptionFormat)\n * @param {Date} date The date to format.\n * @returns {string} The formatted date.\n */\n descriptionFormat ? : string|string[]|boolean[]|((date: Date) => string)|Function[]\n /**\n * A function that provides the textual description for this view. If provided, this function overrides the\n * [descriptionFormat](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-descriptionRenderer)\n * @param {Core.widget.Widget} view The active view in case the function is in another scope.\n * @returns {string} Description string\n */\n descriptionRenderer ? : (view: Widget) => string\n /**\n * Configure as `false` to preserve selection when clicking the empty schedule area.\n */\n deselectAllOnScheduleClick ? : boolean\n /**\n * Configure as `true` to deselect a selected event upon click.\n */\n deselectOnClick ? : boolean\n /**\n * Set to `true` to destroy the store when the grid is destroyed.\n */\n destroyStore ? : boolean\n /**\n * Configure as `true` to destroy the Project and stores when `this` is destroyed.\n */\n destroyStores ? : boolean\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#function-getState) when there is a column\n * configured without an `id`. But the recommended action is to always configure columns with an `id` when\n * using states.\n */\n disableGridColumnIdWarning ? : boolean\n /**\n * Set to `true` to not get a warning when using another base class than GridRowModel for your grid data. If\n * you do, and would like to use the full feature set of the grid then include the fields from GridRowModel\n * in your model definition.\n */\n disableGridRowModelWarning ? : boolean\n /**\n * Defines how dates will be formatted in tooltips etc. This config has priority over similar config on the\n * view preset. For allowed values see [format](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper#function-format-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-displayDateFormat)\n */\n displayDateFormat ? : string\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * Make this Panel a docked drawer which slides out from one side of the browser viewport by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-drawer)\n * @param {'start','left','end','right','top','bottom'} side The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.\n * @param {string,number} size The size of the drawer in its collapsible axis.\n * @param {boolean} inline If using the [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.\n * @param {boolean,object} autoClose Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.\n * @param {boolean,string} autoClose.mousedown If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.\n * @param {boolean,string} autoClose.focusout If focus moves outside of the drawer, the drawer will automatically be hidden.\n * @param {string} autoClose.mouseout Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.\n * @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds\n */\n drawer ? : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number}\n /**\n * Decimal precision used when displaying durations, used by tooltips and DurationColumn.\n * Specify `false` to use raw value\n */\n durationDisplayPrecision ? : number|boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#typedef-EmptyTextDomConfig) block to display when there is no data to display in the grid.\n * When using multiple Grid regions, provide the `region` property to decide where the text is shown.\n * By default, it is shown in the first region.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-emptyText)\n */\n emptyText ? : string|EmptyTextDomConfig\n /**\n * Allow using [Delete] and [Backspace] to remove events/assignments\n */\n enableDeleteKey ? : boolean\n /**\n * Set to `false` if you don't want event bar DOM updates to animate.\n * @deprecated 7.0.0 Deprecated `enableEventAnimations`. Use `transition.changeEvent` instead\n */\n enableEventAnimations ? : boolean\n /**\n * Enables showing occurrences of recurring events across the scheduler's time axis. If you want to disable\n * the recurrence popup, you can choose set the `defaultAction` to `future` to affect all future\n * occurrences, or `single` to just affect the currently selected event.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-enableRecurringEvents)\n */\n enableRecurringEvents ? : boolean|{\n defaultAction?: 'single'|'future'\n }\n /**\n * Configure this as `true` to allow elements within cells to be styled as `position: sticky`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-enableSticky)\n */\n enableSticky ? : boolean\n /**\n * Set to `true` to allow text selection in the grid cells. Note, this cannot be used simultaneously with the\n * `RowReorder` feature.\n */\n enableTextSelection ? : boolean\n /**\n * When true, some features will start a project transaction, blocking the project queue, suspending\n * store events and preventing UI from updates. It behaves similar to\n * [instantUpdate](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-instantUpdate) set to `false`.\n * Set `false` to not use project queue.\n */\n enableTransactionalFeatures ? : boolean\n /**\n * Set to `true` to listen for CTRL-Z (CMD-Z on Mac OS) keyboard event and trigger undo (redo when SHIFT is\n * pressed). Only applicable when using a [StateTrackingManager](https://bryntum.com/products/scheduler/docs/api/Core/data/stm/StateTrackingManager).\n */\n enableUndoRedoKeys ? : boolean\n /**\n * The end date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-endDate)\n */\n endDate ? : Date|string\n /**\n * The name of the end date parameter that will be passed to in every `eventStore` load request.\n */\n endParamName ? : string\n /**\n * Field from EventModel displayed as text in the bar when rendering\n */\n eventBarTextField ? : string\n /**\n * Event color used by default. Events and resources can specify their own color, with priority order being:\n * Event -> Resource -> Scheduler default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-eventColor)\n */\n eventColor ? : EventColor\n /**\n * Defines how to handle overlapping events. Valid values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-eventLayout)\n */\n eventLayout ? : 'stack'|'pack'|'mixed'|'none'|{\n type?: 'stack'|'pack'|'mixed'|'none'\n }\n /**\n * An advanced setting that controls the maximum number of released event bars to keep in the DOM.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-eventReleaseThreshold)\n */\n eventReleaseThreshold ? : number\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * an event is rendered into the schedule to render the contents of the event. It's called with the event,\n * its resource and a `renderData` object which allows you to populate data placeholders inside the event\n * template.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-eventRenderer)\n * @param {object} detail An object containing the information needed to render an Event.\n * @param {Scheduler.model.EventModel} detail.eventRecord The event record.\n * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record.\n * @param {Scheduler.model.AssignmentModel} detail.assignmentRecord The assignment record.\n * @param {Scheduler.view.Scheduler} detail.scheduler The Scheduler instance.\n * @param {object} detail.renderData An object containing details about the event rendering.\n * @param {Scheduler.model.EventModel} detail.renderData.event The event record.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.cls An object whose property names represent the CSS class names to be added to the event bar element. Set a property's value to truthy or falsy to add or remove the class name based on the property name. Using this technique, you do not have to know whether the class is already there, or deal with concatenation.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.wrapperCls An object whose property names represent the CSS class names to be added to the event wrapper element. Set a property's value to truthy or falsy to add or remove the class name based on the property name. Using this technique, you do not have to know whether the class is already there, or deal with concatenation.\n * @param {Core.helper.util.DomClassList,string} detail.renderData.iconCls An object whose property names represent the CSS class names to be added to an event icon element. Note that an element carrying this icon class is injected into the event element *after* the renderer completes, *before* the renderer's created content. To disable this if the renderer takes full control and creates content using the iconCls, you can set `renderData.iconCls = null`.\n * @param {number} detail.renderData.left Vertical offset position (in pixels) on the time axis.\n * @param {number} detail.renderData.width Width in pixels of the event element.\n * @param {number} detail.renderData.height Height in pixels of the event element.\n * @param {string,Record<string, string>} detail.renderData.style Inline styles for the event bar DOM element. Use either 'border: 1px solid black' or `{ border: '1px solid black' }`\n * @param {string,Record<string, string>} detail.renderData.wrapperStyle Inline styles for wrapper of the event bar DOM element. Use either 'border: 1px solid green' or `{ border: '1px solid green' }`\n * @param {'tonal','filled','bordered','traced','outlined','indented','line','dashed','minimal','rounded','calendar','interday','gantt',null} detail.renderData.eventStyle The `eventStyle` of the event. Use this to apply custom styles to the event DOM element\n * @param {string} detail.renderData.eventColor The `eventColor` of the event. Use this to set a custom color for the rendered event\n * @param {string} detail.renderData.ariaLabel A description of the event details used for screen readers\n * @param {DomConfig[]} detail.renderData.children An array of DOM configs used as children to the `b-sch-event` element. Can be populated with additional DOM configs to have more control over contents.\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig (or array thereof)\n */\n eventRenderer ? : (detail: { eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, scheduler: Scheduler, renderData: { event: EventModel, cls: DomClassList|string, wrapperCls: DomClassList|string, iconCls: DomClassList|string, left: number, width: number, height: number, style: string|Record<string, string>, wrapperStyle: string|Record<string, string>, eventStyle: 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null, eventColor: string, ariaLabel: string, children: DomConfig[] } }) => string|DomConfig|DomConfig[]\n /**\n * `this` reference for the [eventRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-eventRenderer) function\n */\n eventRendererThisObj ? : object\n /**\n * Inline events, will be loaded into an internally created EventStore.\n */\n events ? : EventModel[]|EventModelConfig[]\n /**\n * Configure as `true`, or set property to `true` to disable event selection.\n */\n eventSelectionDisabled ? : boolean\n /**\n * The [EventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore) holding the events to be rendered into the scheduler (required).\n */\n eventStore ? : EventStore|EventStoreConfig\n /**\n * Event style used by default. Events and resources can specify their own style, with priority order being:\n * Event -> Resource -> Scheduler default. Determines the appearance of the event by assigning a CSS class\n * to it. Available styles are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-eventStyle)\n */\n eventStyle ? : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null\n extraData ? : any\n /**\n * Set to `true` to stretch the last column in a grid with all fixed width columns\n * to fill extra available space if the grid's width is wider than the sum of all\n * configured column widths.\n */\n fillLastColumn ? : boolean\n /**\n * Specify `true` to force rendered events/tasks to fill entire ticks. This only affects rendering, start\n * and end dates retain their value on the data level.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-fillTicks)\n */\n fillTicks ? : boolean\n /**\n * Use fixed row height. Setting this to `true` will configure the underlying RowManager to use fixed row\n * height, which sacrifices the ability to use rows with variable height to gain a fraction better\n * performance.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-footer)\n */\n footer ? : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string\n /**\n * Set to `true` to force the time columns to fit to the available space (horizontal or vertical depends on mode).\n * Note that setting [suppressFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-suppressFit) to `true`, will disable `forceFit` functionality. Zooming\n * cannot be used when `forceFit` is set.\n */\n forceFit ? : boolean\n /**\n * An object which names formula prefixes which will be applied to all columns configured with\n * `formula : true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-formulaProviders)\n */\n formulaProviders ? : Record<string, FormulaProviderConfig>\n /**\n * Refresh entire row when a record changes (`true`) or, if possible, only the cells affected (`false`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * A method allowing you to define date boundaries that will constrain resize, create and drag drop\n * operations. The method will be called with the Resource record, and the Event record.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-getDateConstraints)\n * @param {Scheduler.model.ResourceModel} resourceRecord The resource record\n * @param {Scheduler.model.EventModel} eventRecord The event record\n * @returns {DateConstraint} Constraining `Object` containing `start` and `end` constraints. Omitting either will mean that end is not constrained. So you can prevent a resize or move from moving *before* a certain time while not constraining the end date.\n */\n getDateConstraints ? : (resourceRecord?: ResourceModel, eventRecord?: EventModel) => DateConstraint\n /**\n * Scheduler overrides Grid's default implementation of [getRowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-getRowHeight) to\n * pre-calculate row heights based on events in the rows.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-getRowHeight)\n * @param {Scheduler.model.ResourceModel} getRowHeight.record Resource record to determine row height for\n * @returns {number} Desired row height\n */\n getRowHeight ? : (getRowHeight: { record: ResourceModel }) => number\n /**\n * A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-header)\n */\n header ? : string|boolean|PanelHeader\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * Set to `true` to hide the footer elements\n */\n hideFooters ? : boolean\n /**\n * Set to `true` to hide the column header elements\n */\n hideHeaders ? : boolean\n /**\n * Set to `true` to hide the Grid's horizontal scrollbar(s)\n */\n hideHorizontalScrollbar ? : boolean\n /**\n * By default the row hover effect is not visible in the Scheduler part of the grid.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-hideRowHover)\n */\n hideRowHover ? : boolean\n /**\n * Configure as `true`, or set property to `true` to highlight dependent events as well when selecting an event.\n */\n highlightPredecessors ? : boolean\n /**\n * Configure as `true`, or set property to `true` to highlight dependent events as well when selecting an event.\n */\n highlightSuccessors ? : boolean\n /**\n * A CSS class to add to hovered row elements\n */\n hoverCls ? : string\n /**\n * An icon to show before the [title](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object describing an element to represent the icon.\n */\n icon ? : string|DomConfig\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Set to `true` to ignore reacting to DOM events (mouseover/mouseout etc) while scrolling. Useful if you\n * want to maximize scroll performance.\n */\n ignoreDomEventsWhileScrolling ? : boolean\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set to `true` to automatically adjust the panel timespan during scrolling in the time dimension,\n * when the scroller comes close to the start/end edges.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-infiniteScroll)\n */\n infiniteScroll ? : boolean\n /**\n * Maximum duration (in milliseconds) for the initial animation controlled by [useInitialAnimation](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-useInitialAnimation).\n */\n initialAnimationDuration ? : number\n /**\n * Convenience setting to align input fields of child widgets. By default, the Field input element is\n * placed immediately following the `label`. If you prefer to have all input fields aligned to the\n * right, set this config to `'end'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-inputFieldAlign)\n */\n inputFieldAlign ? : 'start'|'end'\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * A template method (empty by default) allowing you to control if an event can be selected or not.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-isEventSelectable)\n * @param {Scheduler.model.EventModel} event The event record\n * @returns {boolean} true if event can be selected, otherwise false\n */\n isEventSelectable ? : (event: EventModel) => boolean\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#keyboard-shortcuts) for details\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * By default, when the `EventStore` (and similar stores) is lazy loading, a loading indicator will be displayed\n * just below the timeline headers. Set this to `false` to prevent this indicator being shown.\n */\n lazyLoadingIndicator ? : boolean\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-listeners)\n */\n listeners ? : SchedulerBaseListeners\n /**\n * *This property is for use when the Scheduler is used as a Calendar view - a `mode`.*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-listRangeMenu)\n */\n listRangeMenu ? : MenuConfig\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when a store is performing a remote\n * operation, or Crud Manager is loading data from the sever. Set to `null` to disable default load mask.\n */\n loadMask ? : string|MaskConfig|null\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when data is loading. The message and optional configuration from the\n * [loadMask](https://bryntum.com/products/scheduler/docs/api/Core/mixin/LoadMaskable#config-loadMask) config take priority over these options, just as they do\n * for `maskDefaults`, respectively.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when an error occurs loading data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-loadMaskError)\n */\n loadMaskError ? : MaskConfig|Mask|boolean\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * Time in ms until a longpress is triggered\n */\n longPressTime ? : number\n /**\n * This flag controls whether Scheduler should preserve its selection of events when loading a new dataset\n * (if selected event ids are included in the newly loaded dataset).\n */\n maintainSelectionOnDatasetChange ? : boolean\n /**\n * When `true`, events are sized and positioned based on rowHeight, resourceMargin and barMargin settings.\n * Set this to `false` if you want to control height and vertical position using CSS instead.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-managedEventSizing)\n */\n managedEventSizing ? : boolean\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * Grids change the `maskDefaults` to cover only their `body` element.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * Get/set end date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n maxDate ? : Date|string\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * The maximum time axis unit to display non-working ranges for ('hour' or 'day' etc).\n * When zooming to a view with a larger unit, no non-working time elements will be rendered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-maxTimeAxisUnit)\n */\n maxTimeAxisUnit ? : DurationUnit\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The maximum zoom level to which [zoomIn](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomIn) will work. Defaults to the number of\n * [ViewPresets](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) available, see [presets](#Scheduler/view/mixin/TimelineViewPresets#property-presets)\n * for information. Unless you have modified the collection of available presets, the max zoom level is\n * milliseconds.\n */\n maxZoomLevel ? : number\n /**\n * How to align milestones in relation to their startDate. Only applies when using a `milestoneLayoutMode`\n * other than `default`. Valid values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-milestoneAlign)\n */\n milestoneAlign ? : 'start'|'center'|'end'\n /**\n * Factor representing the average char width in pixels used to determine milestone width when configured\n * with `milestoneLayoutMode: 'estimate'`.\n */\n milestoneCharWidth ? : number\n /**\n * How to handle milestones during event layout. How the milestones are displayed when part of the layout\n * are controlled using [milestoneTextPosition](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-milestoneTextPosition).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-milestoneLayoutMode)\n */\n milestoneLayoutMode ? : 'default'|'estimate'|'data'|'measure'\n /**\n * Position of the milestone text:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-milestoneTextPosition)\n */\n milestoneTextPosition ? : 'inside'|'outside'|'always-outside'\n /**\n * Get/set start date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n minDate ? : Date|string\n /**\n * Grid's `min-height`. Defaults to `10em` to be sure that the Grid always has a height wherever it is\n * inserted.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-minHeight)\n */\n minHeight ? : string|number\n /**\n * *Experimental* Minimum size that events should be allowed to shrink to when using `pack` layout. If\n * packing leads to any event being smaller than this value, the row will grow in height instead to maintain\n * this minimum size.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-minPackSize)\n */\n minPackSize ? : number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * The minimum zoom level to which [zoomOut](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomOut) will work. Defaults to 0 (year ticks)\n */\n minZoomLevel ? : number\n /**\n * Scheduler mode. Supported values: horizontal, vertical\n */\n mode ? : 'horizontal'|'vertical'\n /**\n * Grid monitors window resize by default.\n */\n monitorResize ? : boolean\n /**\n * Configure as `true` to allow `CTRL/CMD+click` to select multiple events in the scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-multiEventSelect)\n */\n multiEventSelect ? : boolean|{\n ctrlKey?: boolean\n altKey?: boolean\n shiftKey?: boolean\n }\n /**\n * When an event bar has a width less than this value, it gets the CSS class `b-sch-event-narrow`\n * added. You may apply custom CSS rules using this class.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-narrowEventWidth)\n */\n narrowEventWidth ? : number\n /**\n * Override this method to provide a custom sort function to sort any overlapping events. This only applies\n * to the horizontal mode, where the order the events are sorted in determines their vertical placement\n * within a resource.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-overlappingEventSorter)\n * @param {Scheduler.model.EventModel} a First event\n * @param {Scheduler.model.EventModel} b Second event\n * @returns {number} Return -1 to display `a` above `b`, 1 for `b` above `a`\n */\n overlappingEventSorter ? : (a: EventModel, b: EventModel) => number\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-owner)\n */\n owner ? : Widget|any\n /**\n * Partners this Timeline panel with another Timeline in order to sync their region sizes (sub-grids like locked, normal will get the same width),\n * start and end dates, view preset, zoom level and scrolling position. All these values will be synced with the timeline defined as the `partner`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-partner)\n */\n partner ? : TimelineBase\n /**\n * Set to `true` to include `startDate` and `endDate` params indicating the currently viewed date range in\n * `EventStore` load requests (when loading using `AjaxStore` or `CrudManager` functionality).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-passStartEndParameters)\n */\n passStartEndParameters ? : boolean\n /**\n * Specify plugins (an array of classes) in config\n */\n plugins ? : Function[]\n /**\n * Maximum number of resources for which height is pre-calculated. If you have many events per\n * resource you might want to lower this number to gain some initial rendering performance.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-preCalculateHeightLimit)\n */\n preCalculateHeightLimit ? : number\n /**\n * True to preserve focused cell after loading new data\n */\n preserveFocusOnDatasetChange ? : boolean\n /**\n * Preserve the grid's vertical scroll position when changesets are applied, as in the case of remote\n * changes, or when stores are configured with [syncDataOnLoad](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-syncDataOnLoad).\n */\n preserveScroll ? : PreserveScrollOptions|boolean\n /**\n * Specify `true` to preserve vertical scroll position after store actions that trigger a `refresh` event,\n * such as loading new data and filtering.\n */\n preserveScrollOnDatasetChange ? : boolean\n /**\n * An array of [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) config objects\n * which describes the available timeline layouts for this scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-presets)\n */\n presets ? : ViewPresetConfig[]\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * A [ProjectModel](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel) instance or a config object. The project holds all Scheduler data.\n * Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-project)\n */\n project ? : ProjectModel|ProjectModelConfig|object\n /**\n * Range used to set the length of the time axis when used as a component of a Calendar. Suitable units are\n * `'month'`, `'week'` and `'day'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-range)\n */\n range ? : string|DurationConfig\n /**\n * Configure as `true` to make the scheduler read-only, by disabling any UIs for modifying data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * The confirmation dialog shown when a recurring event is edited.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-recurrenceConfirmationPopup)\n */\n recurrenceConfirmationPopup ? : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure this property to allow the widget/component to be resized. Pressing <kbd>Shift</kbd> while resizing will\n * constrain the aspect ratio.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resizable)\n */\n resizable ? : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n }\n /**\n * Set to `false` to only measure cell contents when double-clicking the edge between column headers.\n */\n resizeToFitIncludesHeader ? : boolean\n /**\n * A config object used to configure the resource columns in vertical mode.\n * See [ResourceHeader](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader) for more details on available properties.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resourceColumns)\n */\n resourceColumns ? : ResourceHeaderConfig\n /**\n * Resource image extension, used when creating image path from resource name.\n */\n resourceImageExtension ? : string\n /**\n * Path to load resource images from. Used by the resource header in vertical mode and the\n * [ResourceInfoColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceInfoColumn) in horizontal mode. Set this to display miniature\n * images for each resource using their `image` or `imageUrl` fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resourceImagePath)\n */\n resourceImagePath ? : string\n /**\n * Convenience config to set both [resourceImagePath](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerResourceRendering#config-resourceImagePath) and [resourceImageExtension](#Scheduler/view/mixin/SchedulerResourceRendering#config-resourceImageExtension).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resourceImages)\n */\n resourceImages ? : {\n path?: string\n extension?: string\n }\n /**\n * Control how much space to leave between the first event/last event and the resources edge (top/bottom\n * margin within the resource row in horizontal mode, left/right margin within the resource column in\n * vertical mode), in px. Defaults to the value of [barMargin](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-barMargin).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resourceMargin)\n */\n resourceMargin ? : number|ResourceMarginConfig\n /**\n * Inline resources, will be loaded into an internally created ResourceStore.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * The [ResourceStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore) holding the resources to be rendered into the scheduler (required).\n */\n resourceStore ? : ResourceStore|ResourceStoreConfig\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * a resource time range is rendered into the schedule. It's called with `resourceTimeRangeRecord`, `resourceRecord`,\n * and `renderData` params.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-resourceTimeRangeRenderer)\n * @param {object} detail An object containing the information needed to render a ResourceTimeRangeModel.\n * @param {Scheduler.model.ResourceTimeRangeModel} detail.resourceTimeRangeRecord The resource time range record.\n * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record.\n * @param {object} detail.renderData An object containing details about the event rendering.\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig object describing the markup\n */\n resourceTimeRangeRenderer ? : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[]\n /**\n * Inline resource time ranges, will be loaded into an internally created store if\n * [ResourceTimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges) is enabled.\n */\n resourceTimeRanges ? : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[]\n /**\n * Resource time ranges store instance or config object for [ResourceTimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges) feature.\n */\n resourceTimeRangeStore ? : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig\n /**\n * \"Break points\" for which responsive config to use.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-responsiveLevels)\n */\n responsiveLevels ? : Record<string, number|string|SchedulerResponsiveLevelConfig>\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * The height in pixels of Scheduler rows.\n */\n rowHeight ? : number\n /**\n * Set to `false` to not show row lines. End result might be overruled by/differ between themes.\n */\n rowLines ? : boolean\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-rtl)\n */\n rtl ? : boolean\n /**\n * Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/scheduler/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollable). Defaults to [Scroller](#Core/helper/util/Scroller).\n */\n scrollerClass ? : typeof Scroller\n /**\n * Specifies the maximum duration for extending the current [TimeSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan) to allow for smooth\n * scrolling to an event.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-scrollExtensionThreshold)\n */\n scrollExtensionThreshold ? : string|DurationConfig\n /**\n * Configuration values for the [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) at runtime.\n */\n scrollManager ? : ScrollManagerConfig|ScrollManager\n /**\n * Selection configuration settings, change these properties to control how selection works and what can be\n * selected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\n /**\n * Set to `false` to not select the resource of the event when clicking an event bar.\n */\n selectResourceOnEventNavigate ? : boolean\n /**\n * Set to `false` to not select the row/resource when clicking the empty area in a time axis cell.\n */\n selectResourceOnScheduleClick ? : boolean\n /**\n * <div class=\"note\">This property is for use when the Scheduler is used as a Calendar view - a `mode`.\n * it will have no effect on a Scheduler which is not inside a Calendar.</div>\n * The time range to move by when [next](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#function-next) or [previous](#Scheduler/view/SchedulerBase#function-previous) is called.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-shiftIncrement)\n */\n shiftIncrement ? : string|DurationConfig\n /**\n * `false` to not show a tooltip while creating a dependency\n */\n showCreationTooltip ? : boolean\n /**\n * Configure as `true` to have the grid show a red \"changed\" tag in cells whose\n * field value has changed and not yet been committed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\n /**\n * If set to `true` this will show a color field in the [EventEdit](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventEdit) editor and also a\n * picker in the [EventMenu](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventMenu). Both enables the user to choose a color which will be\n * applied to the event bar's background. See EventModel's\n * [eventColor](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/mixin/EventModelMixin#field-eventColor) config.\n * config.\n */\n showEventColorPickers ? : boolean\n /**\n * Set to `true` to show the lag in the tooltip\n */\n showLagInTooltip ? : boolean\n /**\n * Set to `false` to hide recurring fields in event editor, even if the\n * [Recurring Events](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/RecurringEvents#config-enableRecurringEvents) is `true`\n * and a recurring event is being edited.\n */\n showRecurringUI ? : boolean\n /**\n * Set to `true` to show a tooltip when hovering a dependency line\n */\n showTooltip ? : boolean\n /**\n * Set to `true` to snap to the current time resolution increment while interacting with scheduled events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-snap)\n */\n snap ? : boolean\n /**\n * Affects drag drop and resizing of events when [snap](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDateMapper#config-snap)\n * is enabled.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-snapRelativeToEventStartDate)\n */\n snapRelativeToEventStartDate ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * The start date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-startDate)\n */\n startDate ? : Date|string\n /**\n * The name of the start date parameter that will be passed to in every `eventStore` load request.\n */\n startParamName ? : string\n /**\n * This value can be one of the following:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-stateful)\n */\n stateful ? : boolean|object|string[]\n /**\n * The events that, when fired by this component, should trigger it to save its state by calling\n * [saveState](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-statefulEvents)\n */\n statefulEvents ? : object|string[]\n /**\n * The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)\n * (if explicitly specified) will be used as the `stateId`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/scheduler/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-stateProvider)\n */\n stateProvider ? : StateProvider\n /**\n * The properties of this settings object controls how grid is restored from state data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-stateSettings)\n */\n stateSettings ? : {\n restoreUnconfiguredColumns?: boolean\n }\n /**\n * When set, the text in the major time axis header sticks in the scrolling viewport as long as possible.\n */\n stickyHeaders ? : boolean\n /**\n * Store that holds records to display in the grid, or a store config object. If the configuration contains\n * a `readUrl`, an `AjaxStore` will be created.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-store)\n */\n store ? : Store|StoreConfig|AjaxStore|AjaxStoreConfig\n /**\n * An object containing widgets keyed by name. By default (when no `type` is given), strips are\n * [toolbars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-strips)\n */\n strips ? : Record<string, SchedulerContainerItemConfig>\n /**\n * An object containing sub grid configuration objects keyed by a `region` property.\n * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.\n * The 'normal' region defaults to use `flex: 1`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * Set to `true` to prevent auto calculating of a minimal [tickSize](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineEventRendering#property-tickSize)\n * to always fit the content to the screen size. Setting this property on `true` will disable [forceFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-forceFit) behaviour.\n */\n suppressFit ? : boolean\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when Crud Manager\n * is persisting changes on the server. Set to `null` to disable default sync mask.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * When this container is used as a tab in a TabPanel, these items are added to the\n * [TabBar](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar.\n * This creates a toolbar docked to the top of the panel immediately below the header.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-tbar)\n */\n tbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * CSS class used for terminals\n */\n terminalCls ? : string\n /**\n * Delay in ms before hiding the terminals when the mouse leaves an event bar or terminal.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-terminalHideDelay)\n */\n terminalHideDelay ? : number\n /**\n * Terminal offset from their initial position, in px. Positive values move terminals further away from the\n * event bar, negative values inside the event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-terminalOffset)\n */\n terminalOffset ? : number\n /**\n * Delay in ms before showing the terminals when hovering over an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-terminalShowDelay)\n */\n terminalShowDelay ? : number\n /**\n * Where (on event bar edges) to display terminals. The sides are `'start'`, `'top'`,\n * `'end'` and `'bottom'`\n */\n terminalSides ? : string[]\n /**\n * Terminal diameter in px, overrides the default CSS value for it (which might depend on theme).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-terminalSize)\n */\n terminalSize ? : number|string\n /**\n * The width/height (depending on vertical / horizontal mode) of all the time columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-tickSize)\n */\n tickSize ? : number\n /**\n * A [TimeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis) config object or instance, used to create a backing data store of\n * 'ticks' providing the input date data for the time axis of timeline panel. Created automatically if none\n * supplied.\n */\n timeAxis ? : TimeAxisConfig|TimeAxis\n /**\n * Inline time ranges, will be loaded into an internally created store if [TimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges)\n * is enabled.\n */\n timeRanges ? : TimeSpan[]|TimeSpanConfig[]\n /**\n * The time ranges store instance for [TimeRanges](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges) feature.\n */\n timeRangeStore ? : Store|StoreConfig\n /**\n * Gets/sets the current time resolution object, which contains a unit identifier and an increment count\n * `{ unit, increment }`. This value means minimal task duration you can create using UI.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-timeResolution)\n */\n timeResolution ? : {\n increment?: number\n unit?: DurationUnit\n }|number\n /**\n * Set to a time zone or a UTC offset. This will set the projects\n * [timeZone](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) config accordingly. As this config is only a referer,\n * please see project's config [documentation](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) for more\n * information.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-timeZone)\n */\n timeZone ? : string|number\n /**\n * A title to display in the header or owning TabPanel. Causes creation and docking of a header\n * to the top if no header is configured.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each\n * property name is the reference by which an instantiated tool may be retrieved from the live\n * `[tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-tools)\n */\n tools ? : Record<string, ToolConfig>|null\n /**\n * A template function allowing you to configure the contents of the tooltip shown when hovering a\n * dependency line. You can return either an HTML string or a [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object.\n * @param {Scheduler.model.DependencyBaseModel} dependency The dependency record\n * @returns {string,DomConfig}\n */\n tooltipTemplate ? : (dependency: DependencyBaseModel) => string|DomConfig\n /**\n * Configure UI transitions for various actions in the grid.\n */\n transition ? : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n removeEvent?: boolean\n changeEvent?: boolean\n }\n /**\n * Animation transition duration in milliseconds.\n */\n transitionDuration ? : number\n /**\n * Configure as `true` to trigger `selectionChange` when removing a selected event/assignment.\n */\n triggerSelectionChangeOnRemove ? : boolean\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * By default, scrolling the schedule will update the [timelineContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#property-timelineContext) to reflect the new\n * currently hovered context. When displaying a large number of events on screen at the same time, this will\n * have a slight impact on scrolling performance. In such scenarios, opt out of this behavior by setting\n * this config to `false`.\n */\n updateTimelineContextOnScroll ? : boolean\n /**\n * By default, the day of week and week of month of the event's start date are used to create\n * helpful contextual recurrence types when editing a non-recurring event record and choosing\n * an initial recurrence type.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-useContextualRecurrenceRules)\n */\n useContextualRecurrenceRules ? : boolean\n /**\n * By default, scheduler fade events in on load. Specify `false` to prevent this animation or specify one\n * of the available animation types to use it (`true` equals `'fade-in'`):\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-useInitialAnimation)\n */\n useInitialAnimation ? : boolean|'fade-in'|'slide-from-left'|'slide-from-top'|string\n /**\n * The time axis column config for vertical [mode](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-mode).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-verticalTimeAxisColumn)\n */\n verticalTimeAxisColumn ? : VerticalTimeAxisColumnConfig\n /**\n * A string key used to lookup a predefined [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) (e.g. 'weekAndDay', 'hourAndDay'),\n * managed by [PresetManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/PresetManager). See [PresetManager](#Scheduler/preset/PresetManager) for more information.\n * Or a config object for a viewPreset.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-viewPreset)\n */\n viewPreset ? : string|ViewPresetConfig\n /**\n * A date to bring into view initially on the scrollable timeline.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-visibleDate)\n */\n visibleDate ? : Date|VisibleDate\n /**\n * Integer number indicating the size of timespan during zooming. When zooming, the timespan is adjusted to make\n * the scrolling area `visibleZoomFactor` times wider than the timeline area itself. Used in\n * [zoomToSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomToSpan) and [zoomToLevel](#Scheduler/view/mixin/TimelineZoomable#function-zoomToLevel) functions.\n */\n visibleZoomFactor ? : number\n /**\n * A valid JS day index between 0-6 (0: Sunday, 1: Monday etc.) to be considered the start day of the week.\n * When omitted, the week start day is retrieved from the active locale class.\n */\n weekStartDay ? : number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * An object with format `{ fromDay, toDay, fromHour, toHour }` that describes the working days and hours.\n * This object will be used to populate TimeAxis [include](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis#config-include) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-workingTime)\n */\n workingTime ? : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n }\n /**\n * Whether the originally rendered timespan should be preserved while zooming. By default, it is set to `false`,\n * meaning the timeline panel will adjust the currently rendered timespan to limit the amount of HTML content to\n * render. When setting this option to `true`, be careful not to allow to zoom a big timespan in seconds\n * resolution for example. That will cause <strong>a lot</strong> of HTML content to be rendered and affect performance. You\n * can use [minZoomLevel](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#config-minZoomLevel) and [maxZoomLevel](#Scheduler/view/mixin/TimelineZoomable#config-maxZoomLevel) config options for that.\n */\n zoomKeepsOriginalTimespan ? : boolean\n /**\n * If true, you can zoom in and out on the time axis using CTRL-key + mouse wheel.\n */\n zoomOnMouseWheel ? : boolean\n /**\n * True to zoom to time span when double-clicking a time axis cell.\n */\n zoomOnTimeAxisDoubleClick ? : boolean\n\n // Features\n /**\n * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ai/AIFilter)\n */\n aiFilterFeature ? : object|boolean|string|AIFilter|AIFilterConfig\n /**\n * Allows using `[Ctrl/CMD + C]`, `[Ctrl/CMD + X]` and `[Ctrl/CMD + V]` to cut, copy and paste cell or cell ranges. Also\n * makes cut, copy and paste actions available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellCopyPaste)\n */\n cellCopyPasteFeature ? : object|boolean|string|CellCopyPaste|CellCopyPasteConfig\n /**\n * Adding this feature to the grid and other Bryntum products which are based on the Grid (i.e. Scheduler, SchedulerPro, and Gantt)\n * enables cell editing. Any subclass of [Field](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu)\n */\n cellMenuFeature ? : object|boolean|string|CellMenu|CellMenuConfig\n /**\n * Displays a tooltip when hovering cells.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip)\n */\n cellTooltipFeature ? : object|boolean|string|CellTooltip|CellTooltipConfig\n /**\n * Adds interactive charting to a Grid. [Charts](https://bryntum.com/products/scheduler/docs/api/Chart/widget/Chart) can be created from a selection of Grid data\n * and updated in realtime as data changes. Supports many common chart types with extensive styling and customization\n * options.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnAutoWidth)\n */\n columnAutoWidthFeature ? : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig\n /**\n * Displays a toolbar while dragging column headers. Drop on a button in the toolbar to activate a certain function,\n * for example to group by that column. This feature simplifies certain operations on touch devices.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnDragToolbar)\n */\n columnDragToolbarFeature ? : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig\n /**\n * Displays column lines for ticks, with a different styling for major ticks (by default they are darker). If this\n * feature is disabled, no lines are shown. If it's enabled, line are shown for the tick level which is set in current\n * ViewPreset. Please see [columnLinesFor](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-columnLinesFor) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ColumnLines)\n */\n columnLinesFeature ? : object|boolean|string|ColumnLines|ColumnLinesConfig\n /**\n * Displays a column picker (to show/hide columns) in the header context menu. Columns can be displayed in sub menus\n * by region or tag. Grouped headers are displayed as menu hierarchies.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnPicker)\n */\n columnPickerFeature ? : object|boolean|string|ColumnPicker|ColumnPickerConfig\n /**\n * Allows user to rename columns by either right-clicking column header or using keyboard shortcuts when column header\n * is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnRename)\n */\n columnRenameFeature ? : object|boolean|string|ColumnRename|ColumnRenameConfig\n /**\n * Allows user to reorder columns by dragging headers. To get notified about column reorder listen to `change` event\n * on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnReorder)\n */\n columnReorderFeature ? : object|boolean|string|ColumnReorder|ColumnReorderConfig\n /**\n * Enables user to resize columns by dragging a handle on the right hand side of the header. To get notified about column\n * resize listen to `change` event on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnResize)\n */\n columnResizeFeature ? : object|boolean|string|ColumnResize|ColumnResizeConfig\n /**\n * Feature that draws dependencies between events. Uses a [DependencyStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore) to determine which\n * dependencies to draw, if none is defined one will be created automatically. Dependencies can also be specified as\n * `scheduler.dependencies`, see example below:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Dependencies)\n */\n dependenciesFeature ? : object|boolean|string|Dependencies|DependenciesConfig\n /**\n * Feature that displays a popup containing fields for editing a dependency. Requires the\n * [Dependencies](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Dependencies) feature to be enabled. Double-click a dependency line in the demo below to\n * show the editor.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/DependencyEdit)\n */\n dependencyEditFeature ? : object|boolean|string|DependencyEdit|DependencyEditConfig\n /**\n * Displays a context menu when right-clicking dependency lines. Items are populated by other features and/or\n * application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/DependencyMenu)\n */\n dependencyMenuFeature ? : object|boolean|string|DependencyMenu|DependencyMenuConfig\n /**\n * Allow using <kbd>Ctrl</kbd>/<kbd>CMD</kbd> + <kbd>C</kbd>/<kbd>X</kbd> and <kbd>Ctrl</kbd>/<kbd>CMD</kbd> +\n * <kbd>V</kbd> to copy/cut and paste events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventCopyPaste)\n */\n eventCopyPasteFeature ? : object|boolean|string|EventCopyPaste|EventCopyPasteConfig\n /**\n * Allows user to drag and drop events within the scheduler, to change `startDate` or resource assignment.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDrag)\n */\n eventDragFeature ? : object|boolean|string|EventDrag|EventDragConfig\n /**\n * Feature that allows the user to create new events by dragging in empty parts of the scheduler rows.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDragCreate)\n */\n eventDragCreateFeature ? : object|boolean|string|EventDragCreate|EventDragCreateConfig\n /**\n * Enables users to click and drag to select events (or assignments in multi assignment mode) inside the Scheduler's\n * timeline. Press <kbd>CTRL</kbd>/<kbd>CMD</kbd> to extend an existing selection.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventDragSelect)\n */\n eventDragSelectFeature ? : object|boolean|string|EventDragSelect|EventDragSelectConfig\n /**\n * Feature that displays a popup containing widgets for editing event data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventEdit)\n */\n eventEditFeature ? : object|boolean|string|EventEdit|EventEditConfig\n /**\n * Adds event filter menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventFilter)\n */\n eventFilterFeature ? : object|boolean|string|EventFilter|EventFilterConfig\n /**\n * Displays a context menu for events. Items are populated by other features and/or application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventMenu)\n */\n eventMenuFeature ? : object|boolean|string|EventMenu|EventMenuConfig\n /**\n * Feature that allows rendering non-working time ranges into event bars (weekends for Scheduler, effective calendar for\n * SchedulerPro):\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventNonWorkingTime)\n */\n eventNonWorkingTimeFeature ? : object|boolean|string|EventNonWorkingTime|EventNonWorkingTimeConfig\n /**\n * Feature that allows resizing an event by dragging its end.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventResize)\n */\n eventResizeFeature ? : object|boolean|string|EventResize|EventResizeConfig\n /**\n * Displays a tooltip when hovering events. The template used to render the tooltip can be customized, see [template](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-template).\n * Config options are also applied to the tooltip shown, see [Tooltip](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip) for available options.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip)\n */\n eventTooltipFeature ? : object|boolean|string|EventTooltip|EventTooltipConfig\n /**\n * A feature that allows exporting Scheduler data to Excel or CSV without involving the server. It uses\n * [TableExporter](https://bryntum.com/products/scheduler/docs/api/Grid/util/TableExporter) class as data provider, 3rd party provider to generate XLS files, and\n * [Microsoft XML specification](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.aspx).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|ExcelExporter|ExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/experimental/FileDrop)\n */\n fileDropFeature ? : object|boolean|string|FileDrop|FileDropConfig\n /**\n * This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over\n * with values based on the values in the original selected range. This is similar to functionality normally seen in\n * various spreadsheet applications.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FillHandle)\n */\n fillHandleFeature ? : object|boolean|string|FillHandle|FillHandleConfig\n /**\n * Feature that allows filtering of the grid by settings filters on columns. The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Filter)\n */\n filterFeature ? : object|boolean|string|Filter|FilterConfig\n /**\n * Feature that allows filtering of the grid by entering filters on column headers.\n * The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FilterBar)\n */\n filterBarFeature ? : object|boolean|string|FilterBar|FilterBarConfig\n /**\n * Enables rendering and handling of row groups. The actual grouping is done in the store, but triggered by\n * <kbd>shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,\n * one anywhere on grid). Use <kbd>shift</kbd> + <kbd>alt</kbd> + click, or the context menu, to remove a column\n * grouper.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * A special version of the Grid GroupSummary feature that enables summaries within scheduler. To use a single summary\n * it is easiest to configure [renderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary#config-renderer), for multiple summaries see [summaries](#Scheduler/feature/GroupSummary#config-summaries).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu)\n */\n headerMenuFeature ? : object|boolean|string|HeaderMenu|HeaderMenuConfig\n /**\n * Enables users to click and drag to zoom to a date range in Scheduler's header time axis. Only supported in horizontal\n * mode.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/HeaderZoom)\n */\n headerZoomFeature ? : object|boolean|string|HeaderZoom|HeaderZoomConfig\n /**\n * Displays labels at positions [top](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels#config-top), [right](#Scheduler/feature/Labels#config-right), [bottom](#Scheduler/feature/Labels#config-bottom) and\n * [left](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels#config-left).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Labels)\n */\n labelsFeature ? : object|boolean|string|Labels|LabelsConfig\n /**\n * This feature allows resources which satisfy a certain condition to be locked at the top of the scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|LockRows|LockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * Feature that allows styling of weekends (and other non-working time) by adding timeRanges for those days.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/NonWorkingTime)\n */\n nonWorkingTimeFeature ? : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig\n /**\n * Makes the scheduler's timeline pannable by dragging with the mouse. Try it out in the demo below.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Pan)\n */\n panFeature ? : object|boolean|string|Pan|PanConfig\n /**\n * Generates PDF/PNG files from the Scheduler component.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/PinColumns)\n */\n pinColumnsFeature ? : object|boolean|string|PinColumns|PinColumnsConfig\n /**\n * Allows printing Scheduler contents using browser print dialog.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/QuickFind)\n */\n quickFindFeature ? : object|boolean|string|QuickFind|QuickFindConfig\n /**\n * Makes the splitter between grid [sections](https://bryntum.com/products/scheduler/docs/api/Grid/view/SubGrid) draggable, to let users resize, and\n * collapse/expand the sections.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\n /**\n * Applicable only for Scheduler in `vertical` mode. Right click resource header cells to display a context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu)\n */\n resourceMenuFeature ? : object|boolean|string|ResourceMenu|ResourceMenuConfig\n /**\n * Feature that draws resource time ranges, shaded areas displayed behind events. These zones are similar to events in\n * that they have a start and end date but different in that they do not take part in the event layout, and they always\n * occupy full row height.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges)\n */\n resourceTimeRangesFeature ? : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig\n /**\n * Allow using [Ctrl/CMD + C/X] and [Ctrl/CMD + V] to copy/cut-and-paste rows. Also makes cut, copy and paste actions\n * available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowCopyPaste)\n */\n rowCopyPasteFeature ? : object|boolean|string|RowCopyPaste|RowCopyPasteConfig\n /**\n * This feature allows editing of entire rows in a grid in a docked panel which by default slides out from the right.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowEdit)\n */\n rowEditFeature ? : object|boolean|string|RowEdit|RowEditConfig\n /**\n * Enables expanding of Grid rows by either row click or double click, or by adding a separate Grid column which renders\n * a button that expands or collapses the row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowExpander)\n */\n rowExpanderFeature ? : object|boolean|string|RowExpander|RowExpanderConfig\n /**\n * This feature implements support for project transactions and used by default in Gantt. For general RowReorder feature\n * documentation see [RowReorder](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowReorder).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowReorder)\n */\n rowReorderFeature ? : object|boolean|string|RowReorder|RowReorderConfig\n /**\n * Enables user to change row height by dragging the bottom row border. After a resize operation, the [rowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowResize#config-applyToAllRows) is `false`) and the [eventLayout](#Scheduler/model/ResourceModel#field-eventLayout) of the dragged resource\n * row will be switched to `pack` as a result (only applies when `stack` is used by default).\n * `barMargin` and `resourceMargin` will also be shrunk as you reduce the height of a row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|RowResize|RowResizeConfig\n /**\n * Allow visually selecting a schedule \"cell\" by clicking, or [any other pointer gesture](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#config-triggerEvent).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext)\n */\n scheduleContextFeature ? : object|boolean|string|ScheduleContext|ScheduleContextConfig\n /**\n * Displays a context menu for empty parts of the schedule. Items are populated in the first place\n * by configurations of this Feature, then by other features and/or application code.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleMenu)\n */\n scheduleMenuFeature ? : object|boolean|string|ScheduleMenu|ScheduleMenuConfig\n /**\n * Feature that displays a tooltip containing the time at the mouse position when hovering empty parts of the schedule.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleTooltip)\n */\n scheduleTooltipFeature ? : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig\n /**\n * This feature injects buttons to the beginning and end of each row that will scroll to the next or previous event\n * outside the current view. It can optionally show a label along with the button, using the\n * [labelRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScrollButtons#config-labelRenderer). Only supported in horizontal [mode](#Scheduler/view/SchedulerBase#config-mode)\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScrollButtons)\n */\n scrollButtonsFeature ? : object|boolean|string|ScrollButtons|ScrollButtonsConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Search)\n */\n searchFeature ? : object|boolean|string|Search|SearchConfig\n /**\n * Feature that displays a text field to edit the event name.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/SimpleEventEdit)\n */\n simpleEventEditFeature ? : object|boolean|string|SimpleEventEdit|SimpleEventEditConfig\n /**\n * Allows sorting of grid by clicking (or tapping) headers, also displays which columns grid is sorted by (numbered if\n * using multisort). Use modifier keys for multisorting: [Ctrl/CMD + click] to add sorter, [Ctrl/CMD + Alt + click] to remove sorter.\n * The actual sorting is done by the store, see [Store.sort()](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Scheduler into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/StickyCells)\n */\n stickyCellsFeature ? : object|boolean|string|StickyCells|StickyCellsConfig\n /**\n * This feature applies native `position: sticky` to event contents in horizontal mode, keeping the contents in view as\n * long as possible on scroll. For vertical mode it uses a programmatic solution to achieve the same result.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/StickyEvents)\n */\n stickyEventsFeature ? : object|boolean|string|StickyEvents|StickyEventsConfig\n /**\n * Stripes rows by adding alternating CSS classes to all row elements (`b-even` and `b-odd`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * A special version of the Grid Summary feature. This feature displays a summary row in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Adds scheduler specific menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu)\n */\n timeAxisHeaderMenuFeature ? : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig\n /**\n * Feature that renders global ranges of time in the timeline. Use this feature to visualize a `range` like a 1 hr lunch\n * or some important point in time (a `line`, i.e. a range with 0 duration). This feature can also show a current time\n * indicator if you set [showCurrentTimeLine](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-showCurrentTimeLine) to true. To style the rendered elements, use the\n * [cls](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan#field-cls) field of the `TimeSpan` class.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges)\n */\n timeRangesFeature ? : object|boolean|string|TimeRanges|TimeRangesConfig\n /**\n * Feature that allows selection of a time span in the time axis header. When a time span is selected in the header,\n * a [timeSelectionChange](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeSelection#event-timeSelectionChange) event is fired.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeSelection)\n */\n timeSelectionFeature ? : object|boolean|string|TimeSelection|TimeSelectionConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/scheduler/docs/api/Grid/column/TreeColumn) among grids columns. That column will have its renderer replaced with a\n * tree renderer that adds padding and icon to give the appearance of a tree. The original renderer is preserved and\n * also called.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree)\n */\n treeFeature ? : object|boolean|string|Tree|TreeConfig\n /**\n * A feature that allows transforming a flat dataset (or the leaves of a hierarchical) into a tree by specifying a\n * record field per parent level. Parents are generated based on each leaf's value for those fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n /**\n * A feature allowing you to roll up and display values in the time axis cell for each parent row in a tree scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary)\n */\n treeSummaryFeature ? : object|boolean|string|TreeSummary|TreeSummaryConfig\n\n}\n\n@Component({\n selector : 'bryntum-scheduler-base',\n template : ''\n})\nexport class BryntumSchedulerBaseComponent implements OnInit, OnDestroy {\n\n public static instanceClass = SchedulerBase;\n\n public static instanceName = 'SchedulerBase';\n\n private static bryntumEvents: string[] = [\n 'onAfterDependencyCreateDrop',\n 'onAfterDependencySave',\n 'onAfterDragCreate',\n 'onAfterEventDragSelect',\n 'onAfterEventDrop',\n 'onAfterEventEdit',\n 'onAfterEventSave',\n 'onAssignmentSelectionChange',\n 'onBeforeAssignmentDelete',\n 'onBeforeAssignmentSelectionChange',\n 'onBeforeAutoCreate',\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\n 'onBeforeContextShow',\n 'onBeforeCopy',\n 'onBeforeCSVExport',\n 'onBeforeDependencyAdd',\n 'onBeforeDependencyCreateDrag',\n 'onBeforeDependencyCreateFinalize',\n 'onBeforeDependencyDelete',\n 'onBeforeDependencyEdit',\n 'onBeforeDependencyEditShow',\n 'onBeforeDependencySave',\n 'onBeforeDestroy',\n 'onBeforeDragCreate',\n 'onBeforeDragCreateFinalize',\n 'onBeforeEventAdd',\n 'onBeforeEventDelete',\n 'onBeforeEventDrag',\n 'onBeforeEventDragSelect',\n 'onBeforeEventDropFinalize',\n 'onBeforeEventEdit',\n 'onBeforeEventEditShow',\n 'onBeforeEventResize',\n 'onBeforeEventResizeFinalize',\n 'onBeforeEventSave',\n 'onBeforeEventSelectionChange',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforePan',\n 'onBeforePaste',\n 'onBeforePdfExport',\n 'onBeforePresetChange',\n 'onBeforeRenderRow',\n 'onBeforeRenderRows',\n 'onBeforeRowCollapse',\n 'onBeforeRowExpand',\n 'onBeforeSelectedContextsShow',\n 'onBeforeSelectionChange',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeShowTerminals',\n 'onBeforeStartRowEdit',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onBeforeToggleGroup',\n 'onBeforeToggleNode',\n 'onCancelCellEdit',\n 'onCatchAll',\n 'onCellClick',\n 'onCellContextMenu',\n 'onCellDblClick',\n 'onCellMenuBeforeShow',\n 'onCellMenuItem',\n 'onCellMenuShow',\n 'onCellMenuToggleItem',\n 'onCellMouseEnter',\n 'onCellMouseLeave',\n 'onCellMouseOut',\n 'onCellMouseOver',\n 'onCollapse',\n 'onCollapseNode',\n 'onColumnDrag',\n 'onColumnDragStart',\n 'onColumnDrop',\n 'onColumnResize',\n 'onColumnResizeStart',\n 'onContextMenuItem',\n 'onContextMenuToggleItem',\n 'onCopy',\n 'onCurrentTimelineUpdate',\n 'onDataChange',\n 'onDateRangeChange',\n 'onDependenciesDrawn',\n 'onDependencyClick',\n 'onDependencyContextMenu',\n 'onDependencyCreateDragStart',\n 'onDependencyCreateDrop',\n 'onDependencyDblClick',\n 'onDependencyMenuBeforeShow',\n 'onDependencyMenuItem',\n 'onDependencyMenuShow',\n 'onDependencyMouseOut',\n 'onDependencyMouseOver',\n 'onDependencyValidationComplete',\n 'onDependencyValidationStart',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onDragCreateEnd',\n 'onDragCreateStart',\n 'onDragSelecting',\n 'onElementCreated',\n 'onEventAutoCreated',\n 'onEventClick',\n 'onEventContextMenu',\n 'onEventDblClick',\n 'onEventDrag',\n 'onEventDragAbort',\n 'onEventDragModeChange',\n 'onEventDragReset',\n 'onEventDragSelect',\n 'onEventDragStart',\n 'onEventDrop',\n 'onEventEditBeforeSetRecord',\n 'onEventKeyDown',\n 'onEventKeyUp',\n 'onEventMenuBeforeShow',\n 'onEventMenuItem',\n 'onEventMenuShow',\n 'onEventMouseDown',\n 'onEventMouseEnter',\n 'onEventMouseLeave',\n 'onEventMouseOut',\n 'onEventMouseOver',\n 'onEventMouseUp',\n 'onEventPartialResize',\n 'onEventResizeEnd',\n 'onEventResizeStart',\n 'onEventSelectionChange',\n 'onExpand',\n 'onExpandNode',\n 'onFileDrop',\n 'onFillHandleBeforeDragFinalize',\n 'onFillHandleDrag',\n 'onFillHandleDragAbort',\n 'onFillHandleDragEnd',\n 'onFillHandleDragStart',\n 'onFinishCellEdit',\n 'onFinishRowEdit',\n 'onFocusIn',\n 'onFocusOut',\n 'onGridRowBeforeDragStart',\n 'onGridRowBeforeDropFinalize',\n 'onGridRowDrag',\n 'onGridRowDragAbort',\n 'onGridRowDragStart',\n 'onGridRowDrop',\n 'onHeaderClick',\n 'onHeaderMenuBeforeShow',\n 'onHeaderMenuItem',\n 'onHeaderMenuShow',\n 'onHeaderMenuToggleItem',\n 'onHide',\n 'onLockRows',\n 'onMouseOut',\n 'onMouseOver',\n 'onNavigate',\n 'onNoZoomChange',\n 'onPaint',\n 'onPaste',\n 'onPasteNotAllowed',\n 'onPdfExport',\n 'onPresetChange',\n 'onReadOnly',\n 'onRecompose',\n 'onReleaseEvent',\n 'onRenderEvent',\n 'onRenderRow',\n 'onRenderRows',\n 'onResize',\n 'onResourceHeaderClick',\n 'onResourceHeaderContextmenu',\n 'onResourceHeaderDblclick',\n 'onResourceMenuBeforeShow',\n 'onResourceMenuItem',\n 'onResourceMenuShow',\n 'onResourceMenuToggleItem',\n 'onResourceTimeRangeClick',\n 'onResourceTimeRangeContextMenu',\n 'onResourceTimeRangeDblClick',\n 'onResourceTimeRangeMouseDown',\n 'onResourceTimeRangeMouseOut',\n 'onResourceTimeRangeMouseOver',\n 'onResourceTimeRangeMouseUp',\n 'onResponsive',\n 'onRowCollapse',\n 'onRowExpand',\n 'onRowMouseEnter',\n 'onRowMouseLeave',\n 'onScheduleClick',\n 'onScheduleContextMenu',\n 'onScheduleDblClick',\n 'onScheduleMenuBeforeShow',\n 'onScheduleMenuItem',\n 'onScheduleMenuShow',\n 'onScheduleMouseDown',\n 'onScheduleMouseEnter',\n 'onScheduleMouseLeave',\n 'onScheduleMouseMove',\n 'onScheduleMouseUp',\n 'onScroll',\n 'onScrollButtonClick',\n 'onSelectionChange',\n 'onSelectionModeChange',\n 'onShiftIncrementChange',\n 'onShow',\n 'onSplit',\n 'onSplitterCollapseClick',\n 'onSplitterDragEnd',\n 'onSplitterDragStart',\n 'onSplitterExpandClick',\n 'onStartCellEdit',\n 'onStartRowEdit',\n 'onSubGridCollapse',\n 'onSubGridExpand',\n 'onTickCellClick',\n 'onTickCellContextMenu',\n 'onTickCellDblClick',\n 'onTickCellMouseDown',\n 'onTickCellMouseUp',\n 'onTickSizeChange',\n 'onTimeAxisChange',\n 'onTimeAxisHeaderClick',\n 'onTimeAxisHeaderContextMenu',\n 'onTimeAxisHeaderDblClick',\n 'onTimeAxisHeaderMenuBeforeShow',\n 'onTimeAxisHeaderMenuItem',\n 'onTimeAxisHeaderMenuShow',\n 'onTimelineContextChange',\n 'onTimelineViewportResize',\n 'onTimeRangeHeaderClick',\n 'onTimeRangeHeaderContextMenu',\n 'onTimeRangeHeaderDblClick',\n 'onTimeSelectionChange',\n 'onTimeSelectionElementClick',\n 'onToggleGroup',\n 'onToggleNode',\n 'onToolClick',\n 'onUnlockRows',\n 'onUnsplit',\n 'onVisibleDateRangeChange'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'cellCopyPasteFeature',\n 'cellEditFeature',\n 'cellMenuFeature',\n 'cellTooltipFeature',\n 'chartsFeature',\n 'columnAutoWidthFeature',\n 'columnDragToolbarFeature',\n 'columnLinesFeature',\n 'columnPickerFeature',\n 'columnRenameFeature',\n 'columnReorderFeature',\n 'columnResizeFeature',\n 'dependenciesFeature',\n 'dependencyEditFeature',\n 'dependencyMenuFeature',\n 'eventCopyPasteFeature',\n 'eventDragFeature',\n 'eventDragCreateFeature',\n 'eventDragSelectFeature',\n 'eventEditFeature',\n 'eventFilterFeature',\n 'eventMenuFeature',\n 'eventNonWorkingTimeFeature',\n 'eventResizeFeature',\n 'eventTooltipFeature',\n 'excelExporterFeature',\n 'fileDropFeature',\n 'fillHandleFeature',\n 'filterFeature',\n 'filterBarFeature',\n 'groupFeature',\n 'groupSummaryFeature',\n 'headerMenuFeature',\n 'headerZoomFeature',\n 'labelsFeature',\n 'lockRowsFeature',\n 'mergeCellsFeature',\n 'nonWorkingTimeFeature',\n 'panFeature',\n 'pdfExportFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'resourceMenuFeature',\n 'resourceTimeRangesFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'scheduleContextFeature',\n 'scheduleMenuFeature',\n 'scheduleTooltipFeature',\n 'scrollButtonsFeature',\n 'searchFeature',\n 'simpleEventEditFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stickyEventsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'timeAxisHeaderMenuFeature',\n 'timeRangesFeature',\n 'timeSelectionFeature',\n 'treeFeature',\n 'treeGroupFeature',\n 'treeSummaryFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumSchedulerBaseComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'alignSelf',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'allowDropOnEventBar',\n 'allowOverlap',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'assignments',\n 'assignmentStore',\n 'autoAdjustTimeAxis',\n 'autoCreate',\n 'autoHeight',\n 'barMargin',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'collapsible',\n 'color',\n 'column',\n 'columnLines',\n 'columns',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'creationTooltip',\n 'creationTooltipTemplate',\n 'crudManager',\n 'crudManagerClass',\n 'data',\n 'dataField',\n 'dataset',\n 'date',\n 'dateFormat',\n 'dateSeparator',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencies',\n 'dependencyStore',\n 'descriptionFormat',\n 'descriptionRenderer',\n 'deselectAllOnScheduleClick',\n 'deselectOnClick',\n 'destroyStore',\n 'destroyStores',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displayDateFormat',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'emptyText',\n 'enableDeleteKey',\n 'enableEventAnimations',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'enableUndoRedoKeys',\n 'endDate',\n 'endParamName',\n 'eventBarTextField',\n 'eventColor',\n 'eventLayout',\n 'eventReleaseThreshold',\n 'eventRenderer',\n 'eventRendererThisObj',\n 'events',\n 'eventSelectionDisabled',\n 'eventStore',\n 'eventStyle',\n 'extraData',\n 'fillLastColumn',\n 'fillTicks',\n 'fixedRowHeight',\n 'flex',\n 'footer',\n 'forceFit',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideHorizontalScrollbar',\n 'hideRowHover',\n 'highlightPredecessors',\n 'highlightSuccessors',\n 'hoverCls',\n 'icon',\n 'id',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'infiniteScroll',\n 'initialAnimationDuration',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isEventSelectable',\n 'keyMap',\n 'labelPosition',\n 'lazyLoadingIndicator',\n 'listeners',\n 'listRangeMenu',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'longPressTime',\n 'maintainSelectionOnDatasetChange',\n 'managedEventSizing',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxHeight',\n 'maxTimeAxisUnit',\n 'maxWidth',\n 'maxZoomLevel',\n 'milestoneAlign',\n 'milestoneCharWidth',\n 'milestoneLayoutMode',\n 'milestoneTextPosition',\n 'minDate',\n 'minHeight',\n 'minPackSize',\n 'minWidth',\n 'minZoomLevel',\n 'mode',\n 'monitorResize',\n 'multiEventSelect',\n 'narrowEventWidth',\n 'overlappingEventSorter',\n 'owner',\n 'partner',\n 'passStartEndParameters',\n 'plugins',\n 'preCalculateHeightLimit',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'presets',\n 'preventTooltipOnTouch',\n 'project',\n 'range',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumns',\n 'resourceImageExtension',\n 'resourceImagePath',\n 'resourceImages',\n 'resourceMargin',\n 'resources',\n 'resourceStore',\n 'resourceTimeRangeRenderer',\n 'resourceTimeRanges',\n 'resourceTimeRangeStore',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollerClass',\n 'scrollExtensionThreshold',\n 'scrollManager',\n 'selectionMode',\n 'selectResourceOnEventNavigate',\n 'selectResourceOnScheduleClick',\n 'shiftIncrement',\n 'showCreationTooltip',\n 'showDirty',\n 'showEventColorPickers',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTooltip',\n 'snap',\n 'snapRelativeToEventStartDate',\n 'span',\n 'startDate',\n 'startParamName',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stateSettings',\n 'stickyHeaders',\n 'store',\n 'strips',\n 'subGridConfigs',\n 'suppressFit',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'terminalCls',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSides',\n 'terminalSize',\n 'tickSize',\n 'timeAxis',\n 'timeRanges',\n 'timeRangeStore',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'triggerSelectionChangeOnRemove',\n 'ui',\n 'updateTimelineContextOnScroll',\n 'useContextualRecurrenceRules',\n 'useInitialAnimation',\n 'verticalTimeAxisColumn',\n 'viewPreset',\n 'visibleDate',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'width',\n 'workingTime',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'ariaDescription',\n 'ariaLabel',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'collapsible',\n 'color',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'creationTooltip',\n 'crudManagerClass',\n 'dataField',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'descriptionRenderer',\n 'deselectAllOnScheduleClick',\n 'deselectOnClick',\n 'destroyStore',\n 'destroyStores',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'enableDeleteKey',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'endParamName',\n 'eventBarTextField',\n 'eventRenderer',\n 'eventRendererThisObj',\n 'eventSelectionDisabled',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'hideHorizontalScrollbar',\n 'highlightPredecessors',\n 'highlightSuccessors',\n 'hoverCls',\n 'icon',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'listeners',\n 'listRangeMenu',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'maintainSelectionOnDatasetChange',\n 'managedEventSizing',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxTimeAxisUnit',\n 'minDate',\n 'mode',\n 'monitorResize',\n 'multiEventSelect',\n 'narrowEventWidth',\n 'owner',\n 'partner',\n 'passStartEndParameters',\n 'plugins',\n 'preCalculateHeightLimit',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumns',\n 'resourceImageExtension',\n 'resourceImagePath',\n 'resourceImages',\n 'resourceTimeRangeRenderer',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'scrollerClass',\n 'scrollExtensionThreshold',\n 'scrollManager',\n 'showCreationTooltip',\n 'showDirty',\n 'showEventColorPickers',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'snapRelativeToEventStartDate',\n 'startParamName',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stickyHeaders',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'terminalCls',\n 'terminalSides',\n 'timeAxis',\n 'triggerSelectionChangeOnRemove',\n 'ui',\n 'verticalTimeAxisColumn',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ];\n\n private static bryntumProps: string[] = BryntumSchedulerBaseComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'allowDropOnEventBar',\n 'allowOverlap',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'assignments',\n 'assignmentStore',\n 'autoCreate',\n 'barMargin',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'creationTooltipTemplate',\n 'crudManager',\n 'data',\n 'dataset',\n 'date',\n 'dateFormat',\n 'dateSeparator',\n 'dependencies',\n 'dependencyStore',\n 'descriptionFormat',\n 'disabled',\n 'displayDateFormat',\n 'emptyText',\n 'enableEventAnimations',\n 'enableUndoRedoKeys',\n 'endDate',\n 'eventColor',\n 'eventLayout',\n 'eventReleaseThreshold',\n 'events',\n 'eventStore',\n 'eventStyle',\n 'extraData',\n 'fillTicks',\n 'flex',\n 'focusVisible',\n 'forceFit',\n 'hasChanges',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideRowHover',\n 'id',\n 'infiniteScroll',\n 'initialAnimationDuration',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isEngineReady',\n 'isEventSelectable',\n 'isNavigatingTimelineCells',\n 'keyMap',\n 'labelPosition',\n 'lazyLoadingIndicator',\n 'longPressTime',\n 'margin',\n 'maxHeight',\n 'maxWidth',\n 'maxZoomLevel',\n 'milestoneAlign',\n 'milestoneCharWidth',\n 'milestoneLayoutMode',\n 'milestoneTextPosition',\n 'minHeight',\n 'minPackSize',\n 'minWidth',\n 'minZoomLevel',\n 'originalStore',\n 'overlappingEventSorter',\n 'parent',\n 'preserveScroll',\n 'presets',\n 'project',\n 'range',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'rendition',\n 'resourceMargin',\n 'resources',\n 'resourceStore',\n 'resourceTimeRanges',\n 'resourceTimeRangeStore',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollLeft',\n 'scrollTop',\n 'scrollX',\n 'selectedAssignments',\n 'selectedCell',\n 'selectedCells',\n 'selectedEvents',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'selectResourceOnEventNavigate',\n 'selectResourceOnScheduleClick',\n 'shiftIncrement',\n 'showTooltip',\n 'snap',\n 'span',\n 'startDate',\n 'state',\n 'stateSettings',\n 'store',\n 'suppressFit',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSize',\n 'tickSize',\n 'timelineCell',\n 'timeRanges',\n 'timeRangeStore',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'tooltip',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'updateTimelineContextOnScroll',\n 'useContextualRecurrenceRules',\n 'useInitialAnimation',\n 'viewPreset',\n 'visibleDate',\n 'width',\n 'workingTime',\n 'zoomLevel'\n ]);\n\n private elementRef: ElementRef;\n public instance!: SchedulerBase;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() allowCreate ! : boolean;\n @Input() allowCreateOnlyParent ! : boolean;\n @Input() animateFilterRemovals ! : boolean;\n @Input() animateRemovingRows ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoAdjustTimeAxis ! : boolean;\n @Input() autoHeight ! : boolean;\n @Input() bbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() bodyCls ! : string|object;\n @Input() bubbleEvents ! : object;\n @Input() bufferCoef ! : number;\n @Input() bufferThreshold ! : number;\n @Input() collapsible ! : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() contentElementCls ! : string|object;\n @Input() contextMenuTriggerEvent ! : 'contextmenu'|'click'|'dblclick';\n @Input() creationTooltip ! : TooltipConfig;\n @Input() crudManagerClass ! : typeof CrudManager;\n @Input() dataField ! : string;\n @Input() defaultRegion ! : string;\n @Input() defaultResourceImageName ! : string;\n @Input() descriptionRenderer ! : (view: Widget) => string;\n @Input() deselectAllOnScheduleClick ! : boolean;\n @Input() deselectOnClick ! : boolean;\n @Input() destroyStore ! : boolean;\n @Input() destroyStores ! : boolean;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disableGridColumnIdWarning ! : boolean;\n @Input() disableGridRowModelWarning ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() drawer ! : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number};\n @Input() durationDisplayPrecision ! : number|boolean;\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() enableDeleteKey ! : boolean;\n @Input() enableRecurringEvents ! : boolean|{\n defaultAction?: 'single'|'future'\n };\n @Input() enableSticky ! : boolean;\n @Input() enableTextSelection ! : boolean;\n @Input() enableTransactionalFeatures ! : boolean;\n @Input() endParamName ! : string;\n @Input() eventBarTextField ! : string;\n @Input() eventRenderer ! : (detail: { eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, scheduler: Scheduler, renderData: { event: EventModel, cls: DomClassList|string, wrapperCls: DomClassList|string, iconCls: DomClassList|string, left: number, width: number, height: number, style: string|Record<string, string>, wrapperStyle: string|Record<string, string>, eventStyle: 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null, eventColor: string, ariaLabel: string, children: DomConfig[] } }) => string|DomConfig|DomConfig[];\n @Input() eventRendererThisObj ! : object;\n @Input() eventSelectionDisabled ! : boolean;\n @Input() fillLastColumn ! : boolean;\n @Input() fixedRowHeight ! : boolean;\n @Input() footer ! : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string;\n @Input() formulaProviders ! : Record<string, FormulaProviderConfig>;\n @Input() fullRowRefresh ! : boolean;\n @Input() getDateConstraints ! : (resourceRecord?: ResourceModel, eventRecord?: EventModel) => DateConstraint;\n @Input() getRowHeight ! : (getRowHeight: { record: ResourceModel }) => number;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() highlightPredecessors ! : boolean;\n @Input() highlightSuccessors ! : boolean;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreDomEventsWhileScrolling ! : boolean;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : SchedulerBaseListeners;\n @Input() listRangeMenu ! : MenuConfig;\n @Input() loadMask ! : string|MaskConfig|null;\n @Input() loadMaskDefaults ! : MaskConfig;\n @Input() loadMaskError ! : MaskConfig|Mask|boolean;\n @Input() localizable ! : boolean;\n @Input() maintainSelectionOnDatasetChange ! : boolean;\n @Input() managedEventSizing ! : boolean;\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxDate ! : Date|string;\n @Input() maxTimeAxisUnit ! : DurationUnit;\n @Input() minDate ! : Date|string;\n @Input() mode ! : 'horizontal'|'vertical';\n @Input() monitorResize ! : boolean;\n @Input() multiEventSelect ! : boolean|{\n ctrlKey?: boolean\n altKey?: boolean\n shiftKey?: boolean\n };\n @Input() narrowEventWidth ! : number;\n @Input() owner ! : Widget|any;\n @Input() partner ! : TimelineBase;\n @Input() passStartEndParameters ! : boolean;\n @Input() plugins ! : Function[];\n @Input() preCalculateHeightLimit ! : number;\n @Input() preserveFocusOnDatasetChange ! : boolean;\n @Input() preserveScrollOnDatasetChange ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() resizable ! : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n };\n @Input() resizeToFitIncludesHeader ! : boolean;\n @Input() resourceColumns ! : ResourceHeaderConfig;\n @Input() resourceImageExtension ! : string;\n @Input() resourceImagePath ! : string;\n @Input() resourceImages ! : {\n path?: string\n extension?: string\n };\n @Input() resourceTimeRangeRenderer ! : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[];\n @Input() responsiveLevels ! : Record<string, number|string|SchedulerResponsiveLevelConfig>;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollerClass ! : typeof Scroller;\n @Input() scrollExtensionThreshold ! : string|DurationConfig;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() showCreationTooltip ! : boolean;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() showEventColorPickers ! : boolean;\n @Input() showLagInTooltip ! : boolean;\n @Input() showRecurringUI ! : boolean;\n @Input() snapRelativeToEventStartDate ! : boolean;\n @Input() startParamName ! : string;\n @Input() stateful ! : boolean|object|string[];\n @Input() statefulEvents ! : object|string[];\n @Input() stateId ! : string;\n @Input() stateProvider ! : StateProvider;\n @Input() stickyHeaders ! : boolean;\n @Input() strips ! : Record<string, SchedulerContainerItemConfig>;\n @Input() subGridConfigs ! : Record<string, SubGridConfig>;\n @Input() syncMask ! : string|MaskConfig|null;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() terminalCls ! : string;\n @Input() terminalSides ! : string[];\n @Input() timeAxis ! : TimeAxisConfig|TimeAxis;\n @Input() triggerSelectionChangeOnRemove ! : boolean;\n @Input() ui ! : 'plain'|'toolbar'|string|object;\n @Input() verticalTimeAxisColumn ! : VerticalTimeAxisColumnConfig;\n @Input() visibleZoomFactor ! : number;\n @Input() weekStartDay ! : number;\n @Input() weight ! : number;\n @Input() zoomKeepsOriginalTimespan ! : boolean;\n @Input() zoomOnMouseWheel ! : boolean;\n @Input() zoomOnTimeAxisDoubleClick ! : boolean;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() allowDropOnEventBar ! : boolean;\n @Input() allowOverlap ! : boolean;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() assignments ! : AssignmentModel[]|object[]|AssignmentModelConfig[];\n @Input() assignmentStore ! : AssignmentStore|AssignmentStoreConfig;\n @Input() autoCreate ! : boolean|string|{autoCreate: { gesture?: 'click'|'dblclick', useEventModelDefaults?: boolean, snapType?: 'round'|'ceil'|'floor', step?: DurationConfig|string, duration?: DurationConfig|string, name?: string }};\n @Input() barMargin ! : number;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cellEllipsis ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsed ! : boolean;\n @Input() column ! : number;\n @Input() columnLines ! : boolean;\n @Input() columns ! : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig;\n @Input() creationTooltipTemplate ! : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig;\n @Input() crudManager ! : CrudManager|CrudManagerConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() date ! : Date;\n @Input() dateFormat ! : string|((date: Date) => string);\n @Input() dateSeparator ! : string;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\n @Input() dependencyStore ! : DependencyStore|DependencyStoreConfig;\n @Input() descriptionFormat ! : string|string[]|boolean[]|((date: Date) => string)|Function[];\n @Input() disabled ! : boolean|'inert';\n @Input() displayDateFormat ! : string;\n @Input() emptyText ! : string|EmptyTextDomConfig;\n @Input() enableEventAnimations ! : boolean;\n @Input() enableUndoRedoKeys ! : boolean;\n @Input() endDate ! : Date|string;\n @Input() eventColor ! : EventColor;\n @Input() eventLayout ! : 'stack'|'pack'|'mixed'|'none'|{\n type?: 'stack'|'pack'|'mixed'|'none'\n };\n @Input() eventReleaseThreshold ! : number;\n @Input() events ! : EventModel[]|EventModelConfig[];\n @Input() eventStore ! : EventStore|EventStoreConfig;\n @Input() eventStyle ! : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null;\n @Input() extraData ! : any;\n @Input() fillTicks ! : boolean;\n @Input() flex ! : number|string;\n @Input() forceFit ! : boolean;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() hideFooters ! : boolean;\n @Input() hideHeaders ! : boolean;\n @Input() hideRowHover ! : boolean;\n @Input() id ! : string;\n @Input() infiniteScroll ! : boolean;\n @Input() initialAnimationDuration ! : number;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() isEventSelectable ! : (event: EventModel) => boolean;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() lazyLoadingIndicator ! : boolean;\n @Input() longPressTime ! : number;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maxWidth ! : string|number;\n @Input() maxZoomLevel ! : number;\n @Input() milestoneAlign ! : 'start'|'center'|'end';\n @Input() milestoneCharWidth ! : number;\n @Input() milestoneLayoutMode ! : 'default'|'estimate'|'data'|'measure';\n @Input() milestoneTextPosition ! : 'inside'|'outside'|'always-outside';\n @Input() minHeight ! : string|number;\n @Input() minPackSize ! : number;\n @Input() minWidth ! : string|number;\n @Input() minZoomLevel ! : number;\n @Input() overlappingEventSorter ! : (a: EventModel, b: EventModel) => number;\n @Input() preserveScroll ! : PreserveScrollOptions|boolean;\n @Input() presets ! : PresetStore|ViewPresetConfig[];\n @Input() project ! : ProjectModel|ProjectModelConfig|object;\n @Input() range ! : string|DurationConfig;\n @Input() readOnly ! : boolean;\n @Input() recurrenceConfirmationPopup ! : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() resourceMargin ! : number|ResourceMarginConfig;\n @Input() resources ! : ResourceModel[]|ResourceModelConfig[];\n @Input() resourceStore ! : ResourceStore|ResourceStoreConfig;\n @Input() resourceTimeRanges ! : ResourceTimeRangeModel[]|ResourceTimeRangeModelConfig[];\n @Input() resourceTimeRangeStore ! : ResourceTimeRangeStore|ResourceTimeRangeStoreConfig;\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() selectResourceOnEventNavigate ! : boolean;\n @Input() selectResourceOnScheduleClick ! : boolean;\n @Input() shiftIncrement ! : string|DurationConfig;\n @Input() showTooltip ! : boolean;\n @Input() snap ! : boolean;\n @Input() span ! : number;\n @Input() startDate ! : Date|string;\n @Input() stateSettings ! : {\n restoreUnconfiguredColumns?: boolean\n };\n @Input() store ! : Store|StoreConfig|AjaxStore|AjaxStoreConfig;\n @Input() suppressFit ! : boolean;\n @Input() terminalHideDelay ! : number;\n @Input() terminalOffset ! : number;\n @Input() terminalShowDelay ! : number;\n @Input() terminalSize ! : number|string;\n @Input() tickSize ! : number;\n @Input() timeRanges ! : TimeSpan[]|TimeSpanConfig[];\n @Input() timeRangeStore ! : Store|StoreConfig;\n @Input() timeResolution ! : {\n increment?: number\n unit?: DurationUnit\n }|number;\n @Input() timeZone ! : string|number;\n @Input() title ! : string;\n @Input() tools ! : Record<string, Tool|ToolConfig>|null|Record<string, Tool>|Record<string, ToolConfig>;\n @Input() tooltipTemplate ! : (dependency: DependencyBaseModel) => string|DomConfig;\n @Input() transition ! : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n removeEvent?: boolean\n changeEvent?: boolean\n };\n @Input() transitionDuration ! : number;\n @Input() updateTimelineContextOnScroll ! : boolean;\n @Input() useContextualRecurrenceRules ! : boolean;\n @Input() useInitialAnimation ! : boolean|'fade-in'|'slide-from-left'|'slide-from-top'|string;\n @Input() viewPreset ! : ViewPreset|ViewPresetConfig|string;\n @Input() visibleDate ! : object|Date|VisibleDate;\n @Input() width ! : number|string;\n @Input() workingTime ! : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n };\n\n // Properties only\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isEngineReady ! : boolean;\n @Input() isNavigatingTimelineCells ! : boolean;\n @Input() originalStore ! : Store;\n @Input() parent ! : Widget;\n @Input() scrollLeft ! : number;\n @Input() scrollTop ! : number;\n @Input() scrollX ! : number;\n @Input() selectedAssignments ! : AssignmentModel[];\n @Input() selectedCell ! : GridLocation|GridLocationConfig;\n @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];\n @Input() selectedEvents ! : EventModel[];\n @Input() selectedRecord ! : Model;\n @Input() selectedRecords ! : Model[]|number[];\n @Input() selectedRows ! : Model[]|number[];\n @Input() state ! : SchedulerStateInfo;\n @Input() timelineCell ! : TimelineContext;\n @Input() tooltip ! : string|TooltipConfig;\n @Input() zoomLevel ! : number;\n\n // Features\n @Input() aiFilterFeature ! : object|boolean|string|AIFilter|AIFilterConfig;\n @Input() cellCopyPasteFeature ! : object|boolean|string|CellCopyPaste|CellCopyPasteConfig;\n @Input() cellEditFeature ! : object|boolean|string|CellEdit|CellEditConfig;\n @Input() cellMenuFeature ! : object|boolean|string|CellMenu|CellMenuConfig;\n @Input() cellTooltipFeature ! : object|boolean|string|CellTooltip|CellTooltipConfig;\n @Input() chartsFeature ! : object|boolean|string|Charts|ChartsConfig;\n @Input() columnAutoWidthFeature ! : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig;\n @Input() columnDragToolbarFeature ! : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig;\n @Input() columnLinesFeature ! : object|boolean|string|ColumnLines|ColumnLinesConfig;\n @Input() columnPickerFeature ! : object|boolean|string|ColumnPicker|ColumnPickerConfig;\n @Input() columnRenameFeature ! : object|boolean|string|ColumnRename|ColumnRenameConfig;\n @Input() columnReorderFeature ! : object|boolean|string|ColumnReorder|ColumnReorderConfig;\n @Input() columnResizeFeature ! : object|boolean|string|ColumnResize|ColumnResizeConfig;\n @Input() dependenciesFeature ! : object|boolean|string|Dependencies|DependenciesConfig;\n @Input() dependencyEditFeature ! : object|boolean|string|DependencyEdit|DependencyEditConfig;\n @Input() dependencyMenuFeature ! : object|boolean|string|DependencyMenu|DependencyMenuConfig;\n @Input() eventCopyPasteFeature ! : object|boolean|string|EventCopyPaste|EventCopyPasteConfig;\n @Input() eventDragFeature ! : object|boolean|string|EventDrag|EventDragConfig;\n @Input() eventDragCreateFeature ! : object|boolean|string|EventDragCreate|EventDragCreateConfig;\n @Input() eventDragSelectFeature ! : object|boolean|string|EventDragSelect|EventDragSelectConfig;\n @Input() eventEditFeature ! : object|boolean|string|EventEdit|EventEditConfig;\n @Input() eventFilterFeature ! : object|boolean|string|EventFilter|EventFilterConfig;\n @Input() eventMenuFeature ! : object|boolean|string|EventMenu|EventMenuConfig;\n @Input() eventNonWorkingTimeFeature ! : object|boolean|string|EventNonWorkingTime|EventNonWorkingTimeConfig;\n @Input() eventResizeFeature ! : object|boolean|string|EventResize|EventResizeConfig;\n @Input() eventTooltipFeature ! : object|boolean|string|EventTooltip|EventTooltipConfig;\n @Input() excelExporterFeature ! : object|boolean|string|ExcelExporter|ExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() headerZoomFeature ! : object|boolean|string|HeaderZoom|HeaderZoomConfig;\n @Input() labelsFeature ! : object|boolean|string|Labels|LabelsConfig;\n @Input() lockRowsFeature ! : object|boolean|string|LockRows|LockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() nonWorkingTimeFeature ! : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig;\n @Input() panFeature ! : object|boolean|string|Pan|PanConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() resourceMenuFeature ! : object|boolean|string|ResourceMenu|ResourceMenuConfig;\n @Input() resourceTimeRangesFeature ! : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|RowResize|RowResizeConfig;\n @Input() scheduleContextFeature ! : object|boolean|string|ScheduleContext|ScheduleContextConfig;\n @Input() scheduleMenuFeature ! : object|boolean|string|ScheduleMenu|ScheduleMenuConfig;\n @Input() scheduleTooltipFeature ! : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig;\n @Input() scrollButtonsFeature ! : object|boolean|string|ScrollButtons|ScrollButtonsConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() simpleEventEditFeature ! : object|boolean|string|SimpleEventEdit|SimpleEventEditConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stickyEventsFeature ! : object|boolean|string|StickyEvents|StickyEventsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() timeAxisHeaderMenuFeature ! : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig;\n @Input() timeRangesFeature ! : object|boolean|string|TimeRanges|TimeRangesConfig;\n @Input() timeSelectionFeature ! : object|boolean|string|TimeSelection|TimeSelectionConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\n @Input() treeSummaryFeature ! : object|boolean|string|TreeSummary|TreeSummaryConfig;\n\n // Events emitters\n /**\n * Fired on the owning Scheduler/Gantt after a dependency drag creation operation finished, no matter to outcome\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {Scheduler.model.DependencyBaseModel} event.dependency The created dependency\n */\n @Output() onAfterDependencyCreateDrop: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependency: DependencyBaseModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget after a dependency is successfully saved using the\n * dependency edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance or Gantt instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be saved\n */\n @Output() onAfterDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler at the end of the drag create gesture whether or not\n * a new event was created by the gesture.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the created event record\n */\n @Output() onAfterDragCreate: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the selection is finished.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n */\n @Output() onAfterEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase }) => void)|string>();\n /**\n * Fired on the owning Scheduler after event drop\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords\n * @param {Scheduler.model.EventModel[]} event.eventRecords\n * @param {boolean} event.valid\n * @param {object} event.context\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onAfterEventDrop: any = new EventEmitter<((event: { source: Scheduler, assignmentRecords: AssignmentModel[], eventRecords: EventModel[], valid: boolean, context: object, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler after editor is closed by any action - save, delete or cancel\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {'save','delete','cancel'} event.action The action that was taken to end the edit. One of 'save', 'delete' or 'cancel'\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record that has been edited.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n * @param {Core.widget.Popup} event.editor The editor\n */\n @Output() onAfterEventEdit: any = new EventEmitter<((event: { source: Scheduler, action: 'save'|'delete'|'cancel', eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler after an event is successfully saved\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be saved\n */\n @Output() onAfterEventSave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel }) => void)|string>();\n /**\n * Fired any time there is a change to the assignments selected in the Scheduler.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.AssignmentModel[]} event.selected An array of the Assignments added to the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.deselected An array of the Assignments removed from the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.selection The new selection.\n */\n @Output() onAssignmentSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: AssignmentModel[], deselected: AssignmentModel[], selection: AssignmentModel[] }) => void)|string>();\n /**\n * Fires before an assignment is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or\n * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which\n * case records should be \"manually\" removed after confirmation:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeAssignmentDelete: any = new EventEmitter<((event: { source: Scheduler, assignmentRecords: AssignmentModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired any time there is going to be a change to the assignments selected in the Scheduler.\n * Returning `false` prevents the change\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.AssignmentModel[]} event.selected An array of assignments that will be added to the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.deselected An array of assignments that will be removed from the selection.\n * @param {Scheduler.model.AssignmentModel[]} event.selection The currently selected assignments, before applying `selected` and `deselected`.\n */\n @Output() onBeforeAssignmentSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: AssignmentModel[], deselected: AssignmentModel[], selection: AssignmentModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires whenever the [autoCreate gesture](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-autoCreate) is detected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAutoCreate)\n * @param {object} event Event object\n * @param {Event} event.domEvent The DOM event which initiated the creation.\n * @param {Date} event.date The starting time of the event to be created.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource if the UI includes a resource.\n */\n @Output() onBeforeAutoCreate: any = new EventEmitter<((event: { domEvent: Event, date: Date, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is canceled, return `false` to prevent cancellation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n */\n @Output() onBeforeCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the row editing is canceled, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeCancelRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCancelRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCellEditStart: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before deleting a range of selected cell values by pressing `Backspace` or `Del`\n * buttons while [autoEdit](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {(Grid.util.GridLocation|Core.data.Model)[]} event.gridSelection An array of cell selectors or records that will have their values deleted (the records themselves will not get deleted, only visible column values).\n */\n @Output() onBeforeCellRangeDelete: any = new EventEmitter<((event: { source: Grid, gridSelection: (GridLocation|Model)[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires for each selected record on the owning Grid before editing a range of selected cell values\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Current selected record from the range\n * @param {string} event.field The field being changed\n * @param {any} event.value The value being set\n */\n @Output() onBeforeCellRangeEdit: any = new EventEmitter<((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onBeforeColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired when a column is dropped, and you can return false from a listener to abort the operation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onBeforeColumnDropFinalize: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column resize gesture. The resize is canceled if a listener returns\n * `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onBeforeColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler when the context [element](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#property-element) or\n * [widget](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#property-widget) is about to be shown.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeContextShow)\n * @param {object} event Event object\n * @param {Scheduler.feature.ScheduleContext} event.source The ScheduleContext feature instance\n * @param {Scheduler.util.TimelineContext} event.context The context object containing information about the clicked cell\n * @param {HTMLElement} event.element The context highlight element\n * @param {object} event.position The position and size of the context element. May be mutated by a handler.\n * @param {number} event.position.width The width of the context element\n * @param {number} event.position.height The height of the context element\n * @param {number} event.position.x The x coordinate of the context element\n * @param {number} event.position.y The y coordinate of the context element\n */\n @Output() onBeforeContextShow: any = new EventEmitter<((event: { source: ScheduleContext, context: TimelineContext, element: HTMLElement, position: { width: number, height: number, x: number, y: number } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a copy action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.data The string data about to be copied or cut\n * @param {boolean} event.isCut `true` if this is a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other beforeCopy events\n */\n @Output() onBeforeCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], data: string, isCut: boolean, entityName: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before CSV export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {Grid.column.Column[]} event.columns An array of columns to export\n * @param {Core.data.Model[]} event.rows An array of records to export\n * @param {string} event.lineDelimiter The CSV delimiter to separate lines\n * @param {string} event.columnDelimiter The CSV delimiter to separate values on one line\n */\n @Output() onBeforeCSVExport: any = new EventEmitter<((event: { config: ExportConfig, columns: Column[], rows: Model[], lineDelimiter: string, columnDelimiter: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is added from the dependency\n * edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependency edit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be added\n */\n @Output() onBeforeDependencyAdd: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt before a dependency creation drag operation starts. Return `false` to\n * prevent it\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n */\n @Output() onBeforeDependencyCreateDrag: any = new EventEmitter<((event: { source: TimeSpan }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency drag creation operation is about to finalize\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {'start','end','top','bottom'} event.fromSide The from side (start / end / top / bottom)\n * @param {'start','end','top','bottom'} event.toSide The to side (start / end / top / bottom)\n */\n @Output() onBeforeDependencyCreateFinalize: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, fromSide: 'start'|'end'|'top'|'bottom', toSide: 'start'|'end'|'top'|'bottom' }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is deleted from the dependency\n * edit popup, or when clicking the delete icon on a selected dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency record about to be deleted\n */\n @Output() onBeforeDependencyDelete: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before an dependency is displayed in the editor.\n * This may be listened for to allow an application to take over dependency editing duties. Return `false` to\n * stop the default editing UI from being shown or a `Promise` yielding `true` or `false` for async vetoing.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The record about to be shown in the editor.\n */\n @Output() onBeforeDependencyEdit: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for a dependency is available, but before it is shown. Allows\n * manipulating fields before the widget is shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.feature.DependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The record about to be shown in the editor.\n * @param {Core.widget.Popup} event.editor The editor popup\n */\n @Output() onBeforeDependencyEditShow: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: DependencyEdit, dependencyRecord: DependencyModel, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a dependency is saved using the dependency edit popup\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler or Gantt instance\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord The dependency about to be saved\n * @param {object} event.values The new values\n */\n @Output() onBeforeDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel, values: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires on the owning Scheduler at the beginning of the drag gesture. Returning `false` from a listener prevents\n * the drag create operation from starting.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeDragCreate)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date The datetime associated with the drag start point.\n */\n @Output() onBeforeDragCreate: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, date: Date }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler to allow implementer to prevent immediate finalization by setting\n * `data.context.async = true` in the listener, to show a confirmation popup etc.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeDragCreateFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the new Event record\n * @param {object} event.context\n * @param {Date} event.context.startDate The start date of the event being created\n * @param {Date} event.context.endDate The end date of the event being created\n * @param {boolean} event.context.async Set true to handle drag create asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize drag create. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeDragCreateFinalize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, context: { startDate: Date, endDate: Date, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fires before an event is added. Can be triggered by schedule double click or drag create action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be added\n * @param {Scheduler.model.ResourceModel[]} event.resourceRecords Resources that the record is assigned to\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records\n */\n @Output() onBeforeEventAdd: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecords: ResourceModel[], assignmentRecords: AssignmentModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before an event is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or by the\n * event editor. Return `false` to immediately veto the removal (or a `Promise` yielding `true` or `false`\n * for async vetoing).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeEventDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeEventDelete: any = new EventEmitter<((event: { source: Scheduler|any, eventRecords: EventModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler before event dragging starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record the drag starts from\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag starts from\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onBeforeEventDrag: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler before drag selection starts. Return false to prevent the operation.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n * @param {Event} event.event The native browser DOM event\n */\n @Output() onBeforeEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler after the event drag operation completes, but before changing any data.\n * It allows implementer to use asynchronous validation/finalization by setting `context.async = true`\n * in the listener, for example, to show a confirmation popup, make async data request etc.\n * In such case, implementer need to call the `context.finalize()` method manually:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeEventDropFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {object} event.context\n * @param {DropData} event.context.dropData Information about the drop points for dragged events/assignments.\n * @param {boolean} event.context.async Set to `true` to not finalize the drag-drop operation immediately (e.g. to wait for user confirmation)\n * @param {Scheduler.model.EventModel[]} event.context.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.context.assignmentRecords Assignment records being dragged\n * @param {Scheduler.model.EventModel} event.context.targetEventRecord The event record (if any) where the drop happened\n * @param {Scheduler.model.ResourceModel} event.context.newResource Resource record for drop target\n * @param {boolean} event.context.valid Set this to `false` to abort the drop immediately.\n * @param {Function} event.context.finalize Call this method after an <strong>async</strong> finalization flow, to finalize the drag-drop operation. This method accepts one argument: pass `true` to update records, or `false` to ignore changes\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onBeforeEventDropFinalize: any = new EventEmitter<((event: { source: Scheduler, context: { dropData: DropData, async: boolean, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], targetEventRecord: EventModel, newResource: ResourceModel, valid: boolean, finalize: Function }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler before an event is displayed in an editor.\n * This may be listened for to allow an application to take over event editing duties. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeEventEdit)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n */\n @Output() onBeforeEventEdit: any = new EventEmitter<((event: { source: Scheduler, eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler when the editor for an event is available but before it is populated with\n * data and shown. Allows manipulating fields etc.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.feature.EventEdit} event.eventEdit The eventEdit feature\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The Resource record for the event. If the event is being created, it will not contain a resource, so this parameter specifies the resource the event is being created for.\n * @param {HTMLElement} event.eventElement The element which represents the event in the scheduler display.\n * @param {Core.widget.Popup} event.editor The editor\n */\n @Output() onBeforeEventEditShow: any = new EventEmitter<((event: { source: Scheduler, eventEdit: EventEdit, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fired on the owning Scheduler before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeEventResize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler to allow implementer to prevent immediate finalization by returning a promise\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeEventResizeFinalize)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {object} event.context [DEPRECATED] de-nested to outer params object\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Date} event.startDate New startDate (changed if resizing start side)\n * @param {Date} event.endDate New endDate (changed if resizing end side)\n * @param {Date} event.originalStartDate Start date before resize\n * @param {Date} event.originalEndDate End date before resize\n * @param {boolean} event.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n * @param {Event} event.event Browser event\n * @param {EventResizeData[]} event.resizeData Data of all events that are being resized\n */\n @Output() onBeforeEventResizeFinalize: any = new EventEmitter<((event: { source: Scheduler, context: object, eventRecord: EventModel, startDate: Date, endDate: Date, originalStartDate: Date, originalEndDate: Date, async: boolean, finalize: Function, event: Event, resizeData: EventResizeData[] }) => Promise<void>)|string>();\n /**\n * Fires on the owning Scheduler before an event is saved.\n * Return `false` to immediately prevent saving\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeEventSave)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord The record about to be saved\n * @param {Scheduler.model.ResourceModel[]} event.resourceRecords The resources to which the event is assigned\n * @param {object} event.values The new values\n * @param {object} event.context Extended save context:\n * @param {boolean} event.context.async Set this to `true` in a listener to indicate that the listener will asynchronously decide to prevent or not the event save.\n * @param {Function} event.context.finalize Function to call to finalize the save. Used when `async` is `true`. Provide `false` to the function to prevent the save.\n */\n @Output() onBeforeEventSave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecords: ResourceModel[], values: object, context: { async?: boolean, finalize: Function } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired any time there is going to be a change to the events selected in the Scheduler.\n * Returning `false` prevents the change\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.EventModel[]} event.selected An array of events that will be added to the selection.\n * @param {Scheduler.model.EventModel[]} event.deselected An array of events that will be removed from the selection.\n * @param {Scheduler.model.EventModel[]} event.selection The currently selected events, before applying `selected` and `deselected`.\n */\n @Output() onBeforeEventSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: EventModel[], deselected: EventModel[], selection: EventModel[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before Excel export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {XLSColumn[]} event.columns An array of columns to export\n * @param {any[][]} event.rows An array of records to export\n */\n @Output() onBeforeExcelExport: any = new EventEmitter<((event: { config: ExportConfig, columns: XLSColumn[], rows: any[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before dragging of the FillHandle starts, return `false` to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onBeforeFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeFinishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before pan starts. Return `false` to prevent the operation.\n * @param {object} event Event object\n * @param {Event} event.event The native browser DOM event\n */\n @Output() onBeforePan: any = new EventEmitter<((event: { event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a paste action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData about to be pasted\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other beforePaste events\n * @param {string} event.text The raw text from clipboard\n */\n @Output() onBeforePaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, targetCell: GridLocation, entityName: string, text: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before export started. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {object} event.config Export config\n */\n @Output() onBeforePdfExport: any = new EventEmitter<((event: { config: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onBeforePresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row about to be rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onBeforeRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows are about to be rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onBeforeRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * This event fires before row collapse is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeRowCollapse)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowCollapse: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires before row expand is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeRowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowExpand: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired on the owning Scheduler before the selected contexts are rendered.\n * The event is triggered only when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext#config-multiSelect) is enabled\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeSelectedContextsShow)\n * @param {object} event Event object\n * @param {Scheduler.feature.ScheduleContext} event.source The ScheduleContext feature instance\n * @param {Scheduler.util.TimelineContext[]} event.selectedContexts The context objects containing information about the selected cells\n * @param {DomConfig} event.domConfig A [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) config object which is used to render the selected cell elements.\n */\n @Output() onBeforeSelectedContextsShow: any = new EventEmitter<((event: { source: ScheduleContext, selectedContexts: TimelineContext[], domConfig: DomConfig }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before the selection changes. Returning `false` from a listener prevents the change\n * @param {object} event Event object\n * @param {string} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records to be deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records to be selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the current selection, before applying `selected` and `deselected`\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells to be deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells to be selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the current selection, before applying `selectedCells` and `deselectedCells`\n */\n @Output() onBeforeSelectionChange: any = new EventEmitter<((event: { action: string, mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt before showing dependency terminals on a task or event. Return `false` to\n * prevent it\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The hovered task\n */\n @Output() onBeforeShowTerminals: any = new EventEmitter<((event: { source: TimeSpan }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is applied to the source. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {SchedulerStateInfo} event.state State object config\n */\n @Output() onBeforeStateApply: any = new EventEmitter<((event: { state: SchedulerStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is saved by the StateProvider. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {SchedulerStateInfo} event.state State object config\n */\n @Output() onBeforeStateSave: any = new EventEmitter<((event: { state: SchedulerStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a group is going to be expanded or collapsed using the UI.\n * Returning `false` from a listener prevents the operation\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {Event} event.domEvent The user interaction event (eg a `click` event) if the toggle request was instigated by user interaction.\n */\n @Output() onBeforeToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onBeforeToggleNode: any = new EventEmitter<((event: { source: Grid, record: Model, collapse: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid when editing is cancelled\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n * @param {Event} event.event Included if the cancellation was triggered by a DOM event\n */\n @Output() onCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation, event: Event }) => void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when user clicks in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user activates contextmenu in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellContextMenu: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user double clicks a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellDblClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning grid before the context menu is shown for a cell.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-cellMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning grid when an item is selected in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid after the context menu is shown for a cell.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onCellMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model, checked: boolean }) => void)|string>();\n /**\n * Fired when the mouse enters a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered cell\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the cell that the mouse left\n * @param {Grid.column.Column} event.column The column representing the cell that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a user moves the mouse out of a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOut: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user moves the mouse over a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOver: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fires when a Panel is collapsed using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onCollapse: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired before a parent node record is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been collapsed.\n */\n @Output() onCollapseNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object\n * to indicate whether the drop position is valid or not.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted (if not last).\n * @param {Event} event.event The browser event.\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to `true` or `false` to indicate whether the drop position is valid.\n */\n @Output() onColumnDrag: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, event: Event, context: { valid: boolean } }) => void)|string>();\n /**\n * This event is fired when a column drag gesture has started.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => void)|string>();\n /**\n * This event is always fired after a column is dropped. The `valid` param is `true` if the operation was not\n * vetoed and the column was moved in the column store.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {boolean} event.valid `true` if the operation was not vetoed.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onColumnDrop: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, valid: boolean, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired after a resize gesture is completed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The resized column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event is fired when a column resize gesture starts.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResizeStart: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event fires on the owning widget when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n */\n @Output() onContextMenuItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem }) => void)|string>();\n /**\n * This event fires on the owning widget when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {boolean} event.checked Checked or not\n */\n @Output() onContextMenuToggleItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem, checked: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a copy action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.copiedDataString The concatenated data string that was copied or cut\n * @param {boolean} event.isCut `true` if this was a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other copy events\n */\n @Output() onCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], copiedDataString: string, isCut: boolean, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the line indicating the current time is updated (see [currentTimeLineUpdateInterval](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-currentTimeLineUpdateInterval)).\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.date The current date\n */\n @Output() onCurrentTimelineUpdate: any = new EventEmitter<((event: { source: Scheduler, date: Date }) => void)|string>();\n /**\n * Fired when data in the store changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-dataChange)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owning grid\n * @param {Core.data.Store} event.store The originating store\n * @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`\n * @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)\n * @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`\n * @param {object} event.changes Passed for the `'update'` action, info on which record fields changed\n */\n @Output() onDataChange: any = new EventEmitter<((event: { source: Grid, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string>();\n /**\n * Fired when the range of dates encapsulated by the UI changes. This will be when\n * moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen\n * when zooming, or changing [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-viewPreset).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-dateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source This Scheduler/Gantt instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onDateRangeChange: any = new EventEmitter<((event: { source: TimelineBase, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fired when dependencies are rendered\n */\n @Output() onDependenciesDrawn: any = new EventEmitter<(() => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a click is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyClick: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a context menu event is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyContextMenu: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency creation drag operation starts\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n */\n @Output() onDependencyCreateDragStart: any = new EventEmitter<((event: { source: TimeSpan }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when a dependency drag creation operation succeeds\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {Scheduler.model.DependencyBaseModel} event.dependency The created dependency\n */\n @Output() onDependencyCreateDrop: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependency: DependencyBaseModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when a double click is registered on a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyDblClick: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler before the context menu is shown for a dependency.\n * Allows manipulation of the items to show in the same way as in `processItems`. Returning `false` from a listener\n * prevents the menu from being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {HTMLElement} event.element\n * @param {MouseEvent} event.event Pointer event which triggered the context menu (if any)\n */\n @Output() onDependencyMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, dependencyRecord: DependencyModel, element: HTMLElement, event?: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {Core.widget.MenuItem} event.item The menu item\n * @param {HTMLElement} event.element The dependency element\n */\n @Output() onDependencyMenuItem: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: DependencyModel, item: MenuItem, element: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler after showing the context menu for an event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.DependencyModel} event.dependencyRecord Dependency record for which the menu was triggered\n * @param {HTMLElement} event.element The dependency element\n */\n @Output() onDependencyMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, dependencyRecord: DependencyModel, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the mouse moves out of a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOut: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the mouse moves over a dependency line.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Scheduler.model.DependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOver: any = new EventEmitter<((event: { source: Scheduler, dependency: DependencyModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when asynchronous dependency validation completes\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {number} event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)\n */\n @Output() onDependencyValidationComplete: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string>();\n /**\n * Fired on the owning Scheduler/Gantt when asynchronous dependency validation starts\n * @param {object} event Event object\n * @param {Scheduler.model.TimeSpan} event.source The source task\n * @param {Scheduler.model.TimeSpan} event.target The target task\n * @param {number} event.dependencyType The dependency type, see [Type](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/DependencyBaseModel#property-Type-static)\n */\n @Output() onDependencyValidationStart: any = new EventEmitter<((event: { source: TimeSpan, target: TimeSpan, dependencyType: number }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the new event has been created.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The new `EventModel` record.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource for the row in which the event is being created.\n * @param {MouseEvent} event.event The ending mouseup event.\n * @param {HTMLElement} event.eventElement The DOM element representing the newly created event un the UI.\n */\n @Output() onDragCreateEnd: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the drag start has created a new Event record.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel} event.eventRecord The event record being created\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {HTMLElement} event.eventElement The element representing the new event.\n */\n @Output() onDragCreateStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Fires while drag selecting. UI will update with current range, but the cells will not be selected until\n * mouse up. This event can be listened for to perform actions while drag selecting.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source\n * @param {GridLocationConfig[],Grid.util.GridLocation[]} event.selectedCells The cells that is currently being dragged over\n * @param {Core.data.Model[]} event.selectedRecords The records that is currently being dragged over\n */\n @Output() onDragSelecting: any = new EventEmitter<((event: { source: Grid, selectedCells: GridLocationConfig[]|GridLocation[], selectedRecords: Model[] }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when a double click or drag gesture has created a new event and added it to the event store.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler.\n * @param {Scheduler.model.EventModel} event.eventRecord The new event record.\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource assigned to the new event.\n */\n @Output() onEventAutoCreated: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel }) => void)|string>();\n /**\n * Triggered for click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventClick: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventContextMenu: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventDblClick: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler when event is dragged\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {Date} event.startDate Start date for the current location\n * @param {Date} event.endDate End date for the current location\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag started from\n * @param {Scheduler.model.ResourceModel} event.newResource Resource at the current location\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to `false` to signal that the current drop position is invalid.\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDrag: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], startDate: Date, endDate: Date, resourceRecord: ResourceModel, newResource: ResourceModel, context: { valid: boolean }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler after an event drag operation has been aborted\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDragAbort: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when drag mode is changed, for example when copy key is\n * pressed or released while dragging.\n * @param {object} event Event object\n * @param {string} event.mode Drag mode, could be either 'move', 'copy', or 'auto'\n */\n @Output() onEventDragModeChange: any = new EventEmitter<((event: { mode: string }) => void)|string>();\n /**\n * Fired on the owning Scheduler after an event drag operation regardless of the operation being cancelled or not\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n */\n @Output() onEventDragReset: any = new EventEmitter<((event: { source: Scheduler }) => void)|string>();\n /**\n * Fires on the owning Scheduler when the selection area is updated.\n * @param {object} event Event object\n * @param {Scheduler.view.SchedulerBase} event.source The Scheduler instance\n * @param {Date} event.startDate The start date of the selection area\n * @param {Date} event.endDate The end date of the selection area\n * @param {Core.helper.util.Rectangle} event.rectangle The rectangle of the selection area\n * @param {Scheduler.model.AssignmentModel[]} event.selectedAssignments The selected assignments\n * @param {Scheduler.model.EventModel[]} event.selectedEvents The selected events\n */\n @Output() onEventDragSelect: any = new EventEmitter<((event: { source: SchedulerBase, startDate: Date, endDate: Date, rectangle: Rectangle, selectedAssignments: AssignmentModel[], selectedEvents: EventModel[] }) => void)|string>();\n /**\n * Fired on the owning Scheduler when event dragging starts\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the drag starts from\n * @param {Scheduler.model.EventModel[]} event.eventRecords Event records being dragged\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords Assignment records being dragged\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDragStart: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler when an event is dropped\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Scheduler.model.EventModel[]} event.eventRecords\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords\n * @param {HTMLElement} event.externalDropTarget The HTML element dropped upon, if drop happened on a valid external drop target\n * @param {boolean} event.isCopy\n * @param {object} event.context\n * @param {Scheduler.model.EventModel} event.context.targetEventRecord Event record for drop target\n * @param {Scheduler.model.ResourceModel} event.context.newResource Resource record for drop target\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onEventDrop: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], externalDropTarget: HTMLElement, isCopy: boolean, context: { targetEventRecord: EventModel, newResource: ResourceModel }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired before the editor will load the event record data into its input fields. This is useful if you\n * want to modify the fields before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The editor widget\n * @param {Scheduler.model.EventModel} event.record The record\n */\n @Output() onEventEditBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: EventModel }) => void)|string>();\n /**\n * Triggered when a keydown event is observed if there are selected events.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The selected event records\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The selected assignment records\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onEventKeyDown: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], event: KeyboardEvent }) => void)|string>();\n /**\n * Triggered when a keyup event is observed if there are selected events.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The selected event records\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The selected assignment records\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onEventKeyUp: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], event: KeyboardEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler before the context menu is shown for an event. Allows manipulation of the items\n * to show in the same way as in `processItems`. Returning `false` from a listener prevents the menu from\n * being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.EventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n * @param {MouseEvent} event.event Pointer event which triggered the context menu (if any)\n */\n @Output() onEventMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement, event?: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Scheduler.model.EventModel} event.eventRecord\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onEventMenuItem: any = new EventEmitter<((event: { source: Scheduler, item: MenuItem, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler after showing the context menu for an event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.EventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onEventMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => void)|string>();\n /**\n * Triggered for mouse down on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseDown: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when the mouse enters an event bar.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseEnter: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when the mouse leaves an event bar.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseLeave: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse out events within and when moving out of an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-eventMouseOut)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseOut: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse over events when moving into and within an event bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-eventMouseOver)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseOver: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up on an event.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord Event record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventMouseUp: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, assignmentRecord: AssignmentModel, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Scheduler on each resize move event\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n * @param {EventResizeData[]} event.resizeData Resize data for selected events\n */\n @Output() onEventPartialResize: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, startDate: Date, endDate: Date, element: HTMLElement, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {EventResizeData[]} event.resizeData Resize data for selected events\n */\n @Output() onEventResizeEnd: any = new EventEmitter<((event: { source: Scheduler, changed: boolean, eventRecord: EventModel, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler when event resizing starts\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.EventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n * @param {EventResizeData[]} event.resizeData Resize data for selected events. Only available when [resizeSelected](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventResize#config-resizeSelected) is `true`\n */\n @Output() onEventResizeStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, event: MouseEvent, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fired any time there is a change to the events selected in the Scheduler.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {'select','deselect','update','clear'} event.action One of the actions 'select', 'deselect', 'update', 'clear'\n * @param {Scheduler.model.EventModel[]} event.selected An array of the Events added to the selection.\n * @param {Scheduler.model.EventModel[]} event.deselected An array of the Event removed from the selection.\n * @param {Scheduler.model.EventModel[]} event.selection The new selection.\n */\n @Output() onEventSelectionChange: any = new EventEmitter<((event: { source: Scheduler, action: 'select'|'deselect'|'update'|'clear', selected: EventModel[], deselected: EventModel[], selection: EventModel[] }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onExpand: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired after a parent node record is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been expanded.\n */\n @Output() onExpandNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * Fired when a file is dropped on the widget element\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The owning Grid instance\n * @param {DataTransferItem} event.file The dropped file descriptor\n * @param {DragEvent} event.domEvent The native DragEvent\n */\n @Output() onFileDrop: any = new EventEmitter<((event: { source: Grid, file: DataTransferItem, domEvent: DragEvent }) => void)|string>();\n /**\n * Fired before the FillHandle dragging is finalized and values are applied to cells, return `false` to prevent the\n * drag operation from applying data changes.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleBeforeDragFinalize: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while dragging the FillHandle.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDrag: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when a FillHandle drag operation is aborted.\n */\n @Output() onFillHandleDragAbort: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired after a FillHandle drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragEnd: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging of the FillHandle starts.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when cell editing is finished\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-finishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired before dragging starts, return false to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowBeforeDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the row drop operation is finalized. You can return false to abort the drop operation, or a\n * Promise yielding `true` / `false` which allows for asynchronous abort (e.g. first show user a confirmation dialog).\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the `record`, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowBeforeDropFinalize: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while the row is being dragged, in the listener function you have access to `context.insertBefore` a grid /\n * tree record, and additionally `context.parent` (a TreeNode) for trees. You can signal that the drop position is\n * valid or invalid by setting `context.valid = false;`\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid.\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrag: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a row drag operation is aborted\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDragAbort: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging starts.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => void)|string>();\n /**\n * Fired after the row drop operation has completed, regardless of validity\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid true or false depending on whether the drop position was valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the record, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrop: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a grid header is clicked on.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-headerClick)\n * @param {object} event Event object\n * @param {Event} event.domEvent The triggering DOM event.\n * @param {Grid.column.Column} event.column The column clicked on.\n */\n @Output() onHeaderClick: any = new EventEmitter<((event: { domEvent: Event, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid before the context menu is shown for a header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-headerMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid when a check item is toggled in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {boolean} event.checked Checked or not\n */\n @Output() onHeaderMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, checked: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires when row locking is enabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The created clone\n */\n @Output() onLockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Mouse moved out from element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOut: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Mouse moved in over element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOver: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Fired when a user gesture causes the active item to change.\n * @param {object} event Event object\n * @param {Event} event.event The browser event which instigated navigation. May be a click or key or focus event.\n * @param {HTMLElement,null} event.item The newly active item, or `null` if focus moved out.\n * @param {HTMLElement,null} event.oldItem The previously active item, or `null` if focus is moving in.\n */\n @Output() onNavigate: any = new EventEmitter<((event: { event: Event, item: HTMLElement|null, oldItem: HTMLElement|null }) => void)|string>();\n /**\n * Fires when the requested date range cannot fit into any zoom level higher than the current level.\n * @param {object} event Event object\n * @param {number} event.currentZoomLevel The current zoom level\n * @param {Date} event.startDate The requested start date\n * @param {Date} event.endDate The requested end date\n */\n @Output() onNoZoomChange: any = new EventEmitter<((event: { currentZoomLevel: number, startDate: Date, endDate: Date }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a paste action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData that was pasted\n * @param {Core.data.Model[]} event.modifiedRecords The records which have been modified due to the paste action\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other paste events\n */\n @Output() onPaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, modifiedRecords: Model[], targetCell: GridLocation, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Scheduler if a paste action is not allowed. Depending on if the EventStore is using\n * [singleAssignment](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-singleAssignment) or the configuration of\n * [copyPasteAction](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventCopyPaste#config-copyPasteAction), either the `eventRecords` or the `assignmentRecords` param will be populated\n * with record copies.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Owner scheduler\n * @param {Scheduler.model.EventModel[]} event.eventRecords The event records about to be pasted\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be pasted\n * @param {Scheduler.model.EventModel[]} event.originalEventRecords The event records that were copied\n * @param {Scheduler.model.AssignmentModel[]} event.originalAssignmentRecords The assignment records that were copied\n * @param {Date} event.date The paste date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The target resource record\n * @param {boolean} event.isCut `true` if this is a cut action\n * @param {string} event.entityName 'event' to distinguish this event from other `pasteNotAllowed` events\n * @param {'overlappingEvents','resourceReadOnly'} event.reason A string id to use for displaying an error message to the user.\n */\n @Output() onPasteNotAllowed: any = new EventEmitter<((event: { source: Scheduler, eventRecords: EventModel[], assignmentRecords: AssignmentModel[], originalEventRecords: EventModel[], originalAssignmentRecords: AssignmentModel[], date: Date, resourceRecord: ResourceModel, isCut: boolean, entityName: string, reason: 'overlappingEvents'|'resourceReadOnly' }) => void)|string>();\n /**\n * Fires on the owning Grid when export has finished\n * @param {object} event Event object\n * @param {Response} event.response Optional response, if received\n * @param {Error} event.error Optional error, if exception occurred\n */\n @Output() onPdfExport: any = new EventEmitter<((event: { response?: any, error?: Error }) => void)|string>();\n /**\n * Fired after the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) has changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.centerDate The new center date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onPresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, centerDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired after releasing an event, useful to cleanup of custom content added on `renderEvent` or in `eventRenderer`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord The event record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord The assignment record\n * @param {object} event.renderData An object containing details about the event rendering\n * @param {HTMLElement} event.element The event bar element\n */\n @Output() onReleaseEvent: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, renderData: object, element: HTMLElement }) => void)|string>();\n /**\n * Fired after rendering an event, when its element is available in DOM.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.EventModel} event.eventRecord The event record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord The assignment record\n * @param {object} event.renderData An object containing details about the event rendering, see [eventRenderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerEventRendering#config-eventRenderer) for details\n * @param {boolean} event.isRepaint `true` if this render is a repaint of the event, updating its existing element\n * @param {boolean} event.isReusingElement `true` if this render lead to the event reusing a released events element\n * @param {HTMLElement} event.element The event bar element\n */\n @Output() onRenderEvent: any = new EventEmitter<((event: { source: Scheduler, eventRecord: EventModel, resourceRecord: ResourceModel, assignmentRecord: AssignmentModel, renderData: object, isRepaint: boolean, isReusingElement: boolean, element: HTMLElement }) => void)|string>();\n /**\n * Fires after a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row that has been rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows have been rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired when clicking a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderClick: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * Fired when activating context menu on a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderContextmenu: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * Fired when double clicking a resource header cell\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n * @param {Event} event.event The event\n */\n @Output() onResourceHeaderDblclick: any = new EventEmitter<((event: { source: Scheduler, resourceRecord: ResourceModel, event: Event }) => void)|string>();\n /**\n * This event fires on the owning scheduler before the context menu is shown for a resource.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-resourceMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n */\n @Output() onResourceMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning scheduler after the context menu is shown for a resource.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onResourceMenuToggleItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, resourceRecord: ResourceModel, checked: boolean }) => void)|string>();\n /**\n * Triggered for click on a resource time range. Only triggered if the ResourceTimeRange feature is configured with\n * `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeContextMenu: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeDblClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse down ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseDown: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse out of a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOut: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse over on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOver: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseUp: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Grid resize lead to a new responsive level being applied\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Grid that was resized\n * @param {string} event.level New responsive level (small, large, etc)\n * @param {number} event.width New width in px\n * @param {string} event.oldLevel Old responsive level\n * @param {number} event.oldWidth Old width in px\n */\n @Output() onResponsive: any = new EventEmitter<((event: { grid: Grid, level: string, width: number, oldLevel: string, oldWidth: number }) => void)|string>();\n /**\n * This event fires when a row has finished collapsing.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onRowCollapse: any = new EventEmitter<((event: { record: Model }) => void)|string>();\n /**\n * This event fires when a row expand has finished expanding.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-rowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n * @param {object} event.expandedElements An object with the Grid region name as property and the expanded body element as value\n * @param {Core.widget.Widget} event.widget In case of expanding a Widget, this will be a reference to the instance created by the actual expansion. If there is multiple Grid regions, use the `widgets` param instead.\n * @param {object} event.widgets In case of expanding a Widget, this will be an object with the Grid region name as property and the reference to the widget instance created by the actual expansion\n */\n @Output() onRowExpand: any = new EventEmitter<((event: { record: Model, expandedElements: object, widget: Widget, widgets: object }) => void)|string>();\n /**\n * Fired when the mouse enters a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered row\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the row that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleClick: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user right-clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleContextMenu: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user double-clicks an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Index of double-clicked resource\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleDblClick: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget before the context menu is shown for the schedule.\n * Allows manipulation of the items to show in the same way as in `processItems`. Returning `false` from a listener\n * prevents the menu from being shown.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {Scheduler.model.AssignmentModel} event.assignmentRecord Assignment record, if assignments are used\n * @param {HTMLElement} event.eventElement\n */\n @Output() onScheduleMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, resourceRecord: ResourceModel, date: Date, assignmentRecord: AssignmentModel, eventElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {HTMLElement} event.element\n */\n @Output() onScheduleMenuItem: any = new EventEmitter<((event: { source: Scheduler, item: MenuItem, resourceRecord: ResourceModel, date: Date, element: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget after showing the context menu for the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Scheduler.model.ResourceModel} event.resourceRecord\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {HTMLElement} event.targetElement\n */\n @Output() onScheduleMenuShow: any = new EventEmitter<((event: { source: Scheduler, items: Record<string, MenuItemEntry>, menu: Menu, resourceRecord: ResourceModel, date: Date, targetElement: HTMLElement }) => void)|string>();\n /**\n * Triggered when user mousedowns over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseDown: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when mouse enters an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseEnter: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when mouse leaves an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseLeave: any = new EventEmitter<((event: { source: Scheduler, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user moves mouse over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Scheduler.model.TimeSpan} event.tick A record which encapsulates the time axis tick clicked on.\n * @param {number} event.tickIndex The index of the time axis tick clicked on.\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseMove: any = new EventEmitter<((event: { source: Scheduler, date: Date, tick: TimeSpan, tickIndex: number, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when user mouseups over an empty area in the schedule.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Date} event.date Date at mouse position\n * @param {Date} event.tickStartDate The start date of the current time axis tick\n * @param {Date} event.tickEndDate The end date of the current time axis tick\n * @param {Grid.row.Row} event.row Row under the mouse (in horizontal mode only)\n * @param {number} event.index Resource index\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onScheduleMouseUp: any = new EventEmitter<((event: { source: Scheduler, date: Date, tickStartDate: Date, tickEndDate: Date, row: Row, index: number, resourceRecord: ResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Grid has scrolled vertically\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {number} event.scrollTop The vertical scroll position.\n */\n @Output() onScroll: any = new EventEmitter<((event: { source: Grid, scrollTop: number }) => void)|string>();\n /**\n * Fires on owner when the scroll button is clicked, return `false` to prevent default scroll behavior\n * @param {object} event Event object\n * @param {Event} event.domEvent DOM event\n * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource record\n */\n @Output() onScrollButtonClick: any = new EventEmitter<((event: { domEvent: Event, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * The selection has been changed.\n * @param {object} event Event object\n * @param {'select','deselect'} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the new selection.\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the new selection.\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { action: 'select'|'deselect', mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => void)|string>();\n /**\n * The selectionMode configuration has been changed.\n * @param {object} event Event object\n * @param {object} event.selectionMode The new [selectionMode](https://bryntum.com/products/scheduler/docs/api/Grid/view/mixin/GridSelection#config-selectionMode)\n */\n @Output() onSelectionModeChange: any = new EventEmitter<((event: { selectionMode: object }) => void)|string>();\n /**\n * Fired when the [shiftIncrement](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#property-shiftIncrement) of this view changes.\n * *This event is only fired when used as a mode of a Calendar*\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source This Scheduler/Gantt instance.\n * @param {object} event.old The shift increment *if any*.\n * @param {object} event.new The shift increment\n */\n @Output() onShiftIncrementChange: any = new EventEmitter<((event: { source: TimelineBase, old?: object, new: object }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires when splitting the Grid.\n * @param {object} event Event object\n * @param {Grid.view.GridBase[]} event.subViews The sub views created by the split\n * @param {object} event.options The options passed to the split call\n * @param {'horizontal','vertical','both'} event.options.direction The direction of the split\n * @param {Grid.column.Column} event.options.atColumn The column to split at\n * @param {Core.data.Model} event.options.atRecord The record to split at\n */\n @Output() onSplit: any = new EventEmitter<((event: { subViews: GridBase[], options: { direction: 'horizontal'|'vertical'|'both', atColumn: Column, atRecord: Model } }) => void)|string>();\n /**\n * Fired by the Grid when the collapse icon is clicked. Return `false` to prevent the default collapse action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterCollapseClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired by the Grid after a sub-grid has been resized using the splitter\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The resized subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragEnd: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when a sub-grid resize gesture starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid about to be resized\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragStart: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when the expand icon is clicked. Return `false` to prevent the default expand action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterExpandClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onStartCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => void)|string>();\n /**\n * Fires after a sub grid is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridCollapse: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Fires after a sub grid is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridExpand: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Triggered for click on a tick cell. Only triggered if the TreeSummary feature is configured with\n * `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellClick: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellContextMenu: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellDblClick: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse down on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellMouseDown: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up on a tick cell. Only triggered if the TreeSummary feature is configured\n * with `[enableMouseEvents](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.TreeSummary} event.feature The TreeSummary feature\n * @param {Date} event.startDate Tick start date\n * @param {Date} event.endDate Tick end date\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTickCellMouseUp: any = new EventEmitter<((event: { source: Scheduler, feature: TreeSummary, startDate: Date, endDate: Date, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when the tick size changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-tickSizeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {number} event.tickSize The tick size in pixels\n */\n @Output() onTickSizeChange: any = new EventEmitter<((event: { source: Scheduler, tickSize: number }) => void)|string>();\n /**\n * Fired when the timeaxis has changed, for example by zooming or configuring a new time span.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {object} event.config Config object used to reconfigure the time axis.\n * @param {Date} event.config.startDate New start date (if supplied)\n * @param {Date} event.config.endDate New end date (if supplied)\n */\n @Output() onTimeAxisChange: any = new EventEmitter<((event: { source: Scheduler, config: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fires after a click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a right click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderContextMenu: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a double click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderDblClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget before the context menu is shown for the time axis header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-timeAxisHeaderMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * Fired when the pointer-activated [timelineContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDomEvents#property-timelineContext) has changed.\n * @param {object} event Event object\n * @param {Scheduler.util.TimelineContext} event.oldContext The tick/resource context being deactivated.\n * @param {Scheduler.util.TimelineContext} event.context The tick/resource context being activated.\n */\n @Output() onTimelineContextChange: any = new EventEmitter<((event: { oldContext: TimelineContext, context: TimelineContext }) => void)|string>();\n /**\n * Fired when the *scheduler* viewport (not the overall Scheduler element) changes size.\n * This happens when the grid changes height, or when the subgrid which encapsulates the\n * scheduler column changes width.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Scheduler\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onTimelineViewportResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a right click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderContextMenu: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a double click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderDblClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when time selection changes\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.startDate The selected range start date, or `undefined`\n * @param {Date} event.endDate The selected range end date, or `undefined`\n */\n @Output() onTimeSelectionChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date }) => void)|string>();\n /**\n * Triggered when clicking the time selection header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.startDate The selected range start date\n * @param {Date} event.endDate The selected range end date\n * @param {Event} event.domEvent The raw DOM event\n */\n @Output() onTimeSelectionElementClick: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date, domEvent: Event }) => void)|string>();\n /**\n * Fired when one or more groups are expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {boolean} event.allRecords True if this event is part of toggling all groups\n */\n @Output() onToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, allRecords?: boolean }) => void)|string>();\n /**\n * Fired after a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onToggleNode: any = new EventEmitter<((event: { record: Model, collapse: boolean }) => void)|string>();\n /**\n * A header [tool](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-tools) has been clicked.\n * @param {object} event Event object\n * @param {Core.widget.Tool} event.source This Panel.\n * @param {Core.widget.Tool} event.tool The tool which is being clicked.\n */\n @Output() onToolClick: any = new EventEmitter<((event: { source: Tool, tool: Tool }) => void)|string>();\n /**\n * Fires when row locking is disabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The locked clone that will be destroyed\n */\n @Output() onUnlockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Fires when un-splitting the Grid.\n */\n @Output() onUnsplit: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the range of dates visible within the viewport changes. This will be when\n * scrolling along a time axis.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-visibleDateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onVisibleDateRangeChange: any = new EventEmitter<((event: { source: Scheduler, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumSchedulerBaseComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n // Backwards compatibility for gridInstance, schedulerInstance etc.\n // @ts-ignore\n me[StringHelper.uncapitalize(instanceName) + 'Instance'] = me.instance;\n // \n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumSchedulerBaseComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumSchedulerBaseComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum SchedulerDatePicker\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, CalendarPanel, Container, DatePicker, DomConfig, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Month, MonthConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Rectangle, Scroller, ScrollerConfig, StateProvider, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { SchedulerContainerItemConfig, SchedulerContainerLayoutConfig, EventModel, EventStore, SchedulerDatePicker, SchedulerDatePickerListeners } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumSchedulerDatePickerProps = {\n // Configs\n /**\n * The date that the user has navigated to using the UI *prior* to setting the widget's\n * value by selecting it. The initial default is today's date. Can also be supplied as a `YYYY-MM-DD` date\n * string.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-activeDate)\n */\n activeDate ? : Date|'today'|string\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * By default, when navigating through time, the next time\n * block will be animated in from the appropriate direction.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-animateTimeShift)\n */\n animateTimeShift ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Update assigned [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record) automatically on field changes\n */\n autoUpdateRecord ? : boolean\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-bbar)\n */\n bbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * Custom CSS classes to add to the panel's body element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-bodyCls)\n */\n bodyCls ? : string|object\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * A function (or the name of a function) which creates content in, and may mutate a day cell element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-cellRenderer)\n * @param {object} renderData\n * @param {HTMLElement} renderData.cell The cell's encapsulating element. This has the `b-calendar-panel-cell` class and is the element which receives focus, so this should be the target of any accessibility attributes.\n * @param {HTMLElement} renderData.innerCell The inner element of the cell which contains the date number. This is the `aspect-ratio : 1` element which contains the date. It is not recommeneded to mutate this element. Instead use the `cellPayload` element (see below).\n * @param {HTMLElement} renderData.cellPayload An empty, absolutely positioned element, by default docked at the bottom of the cell. Content may be added to this element to augment cell content.\n * @param {Date} renderData.date The date for the cell\n * @param {number} renderData.day The day for the cell (`0` to `6` for Sunday to Saturday)\n * @param {number[]} renderData.rowIndex The row index, 0 to month row count (6 if [sixWeeks](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-sixWeeks) is `true`)\n * @param {HTMLElement} renderData.row The row element encapsulating the week which the cell is a part of\n * @param {Core.widget.CalendarPanel} renderData.source The widget being rendered\n * @param {number[]} renderData.cellIndex The cell index in the whole panel. May be from `0` to up to `42`\n * @param {number[]} renderData.columnIndex The column index, `0` to `6`\n * @param {number[]} renderData.visibleColumnIndex The visible column index taking hidden non working days into account\n * @returns {string,DomConfig,void}\n */\n cellRenderer ? : ((renderData: { cell: HTMLElement, innerCell: HTMLElement, cellPayload: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-cls)\n */\n cls ? : string|object\n /**\n * Controls whether the panel is collapsed (the body of the panel is hidden while only the header is\n * visible). Only valid if the panel is [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible).\n */\n collapsed ? : boolean\n /**\n * This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-collapsible)\n */\n collapsible ? : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The initially selected date (or a `YYYY-MM-DD` date string).\n */\n date ? : Date|string\n /**\n * The [DateHelper](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper) format string to format the day names.\n */\n dayNameFormat ? : string\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * A [query](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which\n * focus should be directed by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-defaultFocus)\n * @param {Core.widget.Widget} widget Widget passed to method\n * @returns {boolean} truthy value if widget is the default one\n */\n defaultFocus ? : ((widget: Widget) => boolean)|string\n /**\n * A config object containing default settings to apply to all child widgets.\n */\n defaults ? : SchedulerContainerItemConfig\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * The class name to add to disabled calendar cells.\n */\n disabledCls ? : string\n /**\n * Either an array of `Date` objects which are to be disabled (or date strings), or\n * a function (or the name of a function), which, when passed a `Date` returns `true` if the\n * date is disabled. Disabled dates cannot be interacted with.\n * @param {Date} date Date to check\n * @returns {boolean} Returns `true` if the provided date is disabled\n */\n disabledDates ? : ((date: Date) => boolean)|string|Date[]|string[]\n /**\n * Configure as `true` to render non working days as [disabledDates](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-disabledDates).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-disableNonWorkingDays)\n */\n disableNonWorkingDays ? : boolean\n /**\n * Configure this as true to disable pointer interaction with cells which are outside the\n * range of the current month.\n */\n disableOtherMonthCells ? : boolean\n /**\n * Configure as `true` to render Saturdays and Sundays as [disabledDates](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-disabledDates).\n */\n disableWeekends ? : boolean\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * This property is only valid if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-multiSelect) is set to `'range'`\n * or `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-dragSelect)\n */\n dragSelect ? : boolean\n /**\n * Make this Panel a docked drawer which slides out from one side of the browser viewport by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-drawer)\n * @param {'start','left','end','right','top','bottom'} side The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.\n * @param {string,number} size The size of the drawer in its collapsible axis.\n * @param {boolean} inline If using the [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.\n * @param {boolean,object} autoClose Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.\n * @param {boolean,string} autoClose.mousedown If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.\n * @param {boolean,string} autoClose.focusout If focus moves outside of the drawer, the drawer will automatically be hidden.\n * @param {string} autoClose.mouseout Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.\n * @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds\n */\n drawer ? : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number}\n /**\n * By default, the month and year are editable. Configure this as `false` to prevent that.\n */\n editMonth ? : boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * A function, or the name of a function in the ownership hierarchy to filter which events\n * are collected into the day cell data blocks.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-eventFilter)\n * @param {Scheduler.model.EventModel} event Event for filtering\n * @returns {boolean} Return `true` to include the passed event\n */\n eventFilter ? : ((event: EventModel) => boolean)|string\n /**\n * The [event store](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore) from which the in-cell event presence\n * indicators are drawn.\n */\n eventStore ? : EventStore\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * By default, disabled dates cannot be navigated to, and they are skipped over\n * during keyboard navigation. Configure this as `true` to enable navigation to\n * disabled dates.\n */\n focusDisabledDates ? : boolean\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-footer)\n */\n footer ? : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string\n /**\n * A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-header)\n */\n header ? : string|boolean|PanelHeader\n /**\n * A function (or the name of a function) which creates content in, and may mutate a day header element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-headerRenderer)\n * @param {HTMLElement} cell The header element\n * @param {number} columnIndex The day column. Will be in the range `0` to `6`\n * @param {number} weekDay The canonical day number where Monday is `0` and Sunday is `6`\n * @returns {string,DomConfig,void}\n */\n headerRenderer ? : ((cell: HTMLElement, columnIndex: number, weekDay: number) => string|DomConfig|void)|string\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Configure this as `true` to hide cells which are outside the range of the current month.\n */\n hideOtherMonthCells ? : boolean\n /**\n * Specify `true` to make this container hide when it has no visible children (Either empty\n * or all children hidden).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-hideWhenEmpty)\n */\n hideWhenEmpty ? : boolean\n /**\n * Configure as `true` to add a highlighted border and background to the week row which\n * encapsulates the selected date.\n */\n highlightSelectedWeek ? : boolean\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * An icon to show before the [title](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object describing an element to represent the icon.\n */\n icon ? : string|DomConfig\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * By default, the year is visible. Configure this as `false` to prevent that.\n */\n includeYear ? : boolean\n /**\n * Convenience setting to align input fields of child widgets. By default, the Field input element is\n * placed immediately following the `label`. If you prefer to have all input fields aligned to the\n * right, set this config to `'end'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-inputFieldAlign)\n */\n inputFieldAlign ? : 'start'|'end'\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An optional CSS class to add to child items of this container.\n */\n itemCls ? : string\n /**\n * An object containing typed child widget config objects or Widgets. May also be specified\n * as an array.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-items)\n */\n items ? : Record<string, SchedulerContainerItemConfig|MenuItemEntry>|(SchedulerContainerItemConfig|MenuItemEntry|Widget)[]\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * The short name of a helper class which manages rendering and styling of child items.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-layout)\n */\n layout ? : string|SchedulerContainerLayoutConfig\n /**\n * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-layoutStyle)\n */\n layoutStyle ? : object\n /**\n * An array of [child item](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into\n * instances only when this Container is rendered, rather than eagerly at construct time.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-lazyItems)\n */\n lazyItems ? : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|Widget[]\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-listeners)\n */\n listeners ? : SchedulerDatePickerListeners\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The maximum selectable date. Selection of and navigation to dates after\n * this date will not be possible.\n */\n maxDate ? : Date\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * By default, day cells flex to share available Panel width equally.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-minColumnWidth)\n */\n minColumnWidth ? : number\n /**\n * The minimum selectable date. Selection of and navigation to dates prior\n * to this date will not be possible.\n */\n minDate ? : Date\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * By default, week rows flex to share available Panel height equally.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-minRowHeight)\n */\n minRowHeight ? : number|string\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * A [Month](https://bryntum.com/products/scheduler/docs/api/Core/util/Month) Month utility object which encapsulates this Panel's month\n * and provides contextual information and navigation services.\n */\n month ? : Month|MonthConfig\n /**\n * The format string to use to create the text of the month button.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-monthButtonFormat)\n */\n monthButtonFormat ? : string\n /**\n * Configure as `true` to enable selecting multiple discontiguous date ranges using\n * click and Shift+click to create ranges and Ctrl+click to select/deselect individual dates.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-multiSelect)\n */\n multiSelect ? : boolean|'range'|'simple'\n /**\n * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items)\n * config. For example, a specialized [Menu](https://bryntum.com/products/scheduler/docs/api/Core/widget/Menu) subclass may have a `namedItems` default\n * value defined like this:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-namedItems)\n */\n namedItems ? : Record<string, SchedulerContainerItemConfig>\n /**\n * The class name to add to calendar cells which are [nonWorkingDays](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-nonWorkingDays).\n */\n nonWorkingDayCls ? : string\n /**\n * Non-working days as an object where keys are day indices, 0-6 (Sunday-Saturday), and the value is `true`.\n * Defaults to [nonWorkingDays](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper#property-nonWorkingDays-static).\n */\n nonWorkingDays ? : Record<number, boolean>\n /**\n * The class name to add to calendar cells which are in the previous or next month.\n */\n otherMonthCls ? : string\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Whether this widget is read-only. This is only valid if the widget is an input\n * field, <strong>or contains input fields at any depth</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * [Record](https://bryntum.com/products/scheduler/docs/api/Core/data/Model) whose values will be used to populate fields in the container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-record)\n */\n record ? : Model\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * If [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-multiSelect) is configured as `true`, this is an array of dates\n * which are selected. There may be multiple, discontiguous date ranges.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-selection)\n */\n selection ? : Date[]|string[]\n /**\n * Configure as `true` to render past dates in a lighter text color.\n */\n shadePastDates ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * How to show presence of events in the configured [eventStore](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-eventStore) in the\n * day cells. Values may be:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-showEvents)\n */\n showEvents ? : boolean|'count'|'heatmap'\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Configure as `true` to show a week number column at the start of the calendar block.\n */\n showWeekColumn ? : boolean\n /**\n * Configure as `true` to always show a six-week calendar.\n */\n sixWeeks ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * This value can be one of the following:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-stateful)\n */\n stateful ? : boolean|object|string[]\n /**\n * The events that, when fired by this component, should trigger it to save its state by calling\n * [saveState](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-statefulEvents)\n */\n statefulEvents ? : object|string[]\n /**\n * The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)\n * (if explicitly specified) will be used as the `stateId`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/scheduler/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-stateProvider)\n */\n stateProvider ? : StateProvider\n /**\n * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record),\n * without falling back to `ref`.\n */\n strictRecordMapping ? : boolean\n /**\n * An object containing widgets keyed by name. By default (when no `type` is given), strips are\n * [toolbars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-strips)\n */\n strips ? : Record<string, SchedulerContainerItemConfig>\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * When this container is used as a tab in a TabPanel, these items are added to the\n * [TabBar](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar.\n * This creates a toolbar docked to the top of the panel immediately below the header.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tbar)\n */\n tbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`\n * which specifies a default max-width that makes long text more readable.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-textContent)\n */\n textContent ? : boolean\n /**\n * A config object to create a tooltip which will show on hover of a date cell including disabled, weekend,\n * and \"other month\" cells.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tip)\n */\n tip ? : TooltipConfig\n /**\n * A title to display in the header or owning TabPanel. Causes creation and docking of a header\n * to the top if no header is configured.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-title)\n */\n title ? : string\n /**\n * The class name to add to the calendar cell which contains today's date.\n */\n todayCls ? : string\n /**\n * The [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each\n * property name is the reference by which an instantiated tool may be retrieved from the live\n * `[tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tools)\n */\n tools ? : Record<string, ToolConfig>|null\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * By default, tabbing within a Panel is not contained, ie you can TAB out of the Panel\n * forwards or backwards.\n * Configure this as `true` to disallow tabbing out of the Panel, and make tabbing circular within this Panel.\n */\n trapFocus ? : boolean\n type ? : 'datepicker'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * The header text for the week number column, if shown.\n */\n weekColumnHeader ? : string\n /**\n * The class name to add to calendar cells which are weekend dates.\n */\n weekendCls ? : string\n /**\n * A function (or the name of a function) which creates content in, and may mutate the week cell element at the start of a week row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-weekRenderer)\n * @param {HTMLElement} weekCell The header element\n * @param {number[]} week An array containing `[year, weekNumber]`\n * @returns {string,DomConfig,void}\n */\n weekRenderer ? : ((weekCell: HTMLElement, week: number[]) => string|DomConfig|void)|string\n /**\n * The week start day, 0 meaning Sunday, 6 meaning Saturday.\n * Defaults to [weekStartDay](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper#property-weekStartDay-static).\n */\n weekStartDay ? : number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-scheduler-date-picker',\n template : ''\n})\nexport class BryntumSchedulerDatePickerComponent implements OnInit, OnDestroy {\n\n public static instanceClass = SchedulerDatePicker;\n\n public static instanceName = 'SchedulerDatePicker';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeRefresh',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onCatchAll',\n 'onCellClick',\n 'onCollapse',\n 'onDateChange',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onElementCreated',\n 'onExpand',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onRefresh',\n 'onResize',\n 'onSelectionChange',\n 'onShow',\n 'onToolClick',\n 'onWeekCellClick'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumSchedulerDatePickerComponent.bryntumFeatureNames.concat([\n 'activeDate',\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'animateTimeShift',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellRenderer',\n 'centered',\n 'cls',\n 'collapsed',\n 'collapsible',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'date',\n 'dayNameFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disabledCls',\n 'disabledDates',\n 'disableNonWorkingDays',\n 'disableOtherMonthCells',\n 'disableWeekends',\n 'dock',\n 'draggable',\n 'dragSelect',\n 'drawer',\n 'editMonth',\n 'elementAttributes',\n 'eventFilter',\n 'eventStore',\n 'extraData',\n 'flex',\n 'floating',\n 'focusDisabledDates',\n 'footer',\n 'header',\n 'headerRenderer',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hideOtherMonthCells',\n 'hideWhenEmpty',\n 'highlightSelectedWeek',\n 'html',\n 'htmlCls',\n 'icon',\n 'id',\n 'ignoreParentReadOnly',\n 'includeYear',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'itemCls',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minColumnWidth',\n 'minDate',\n 'minHeight',\n 'minRowHeight',\n 'minWidth',\n 'monitorResize',\n 'month',\n 'monthButtonFormat',\n 'multiSelect',\n 'namedItems',\n 'nonWorkingDayCls',\n 'nonWorkingDays',\n 'otherMonthCls',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'record',\n 'relayStoreEvents',\n 'rendition',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'selection',\n 'shadePastDates',\n 'showAnimation',\n 'showEvents',\n 'showTooltipWhenDisabled',\n 'showWeekColumn',\n 'sixWeeks',\n 'span',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'strictRecordMapping',\n 'strips',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'tbar',\n 'textAlign',\n 'textContent',\n 'tip',\n 'title',\n 'todayCls',\n 'tools',\n 'tooltip',\n 'trapFocus',\n 'type',\n 'ui',\n 'weekColumnHeader',\n 'weekendCls',\n 'weekRenderer',\n 'weekStartDay',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'activeDate',\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'cellRenderer',\n 'centered',\n 'collapsible',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'dayNameFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'disabledCls',\n 'disabledDates',\n 'disableNonWorkingDays',\n 'disableOtherMonthCells',\n 'disableWeekends',\n 'dock',\n 'draggable',\n 'drawer',\n 'editMonth',\n 'elementAttributes',\n 'eventFilter',\n 'eventStore',\n 'floating',\n 'focusDisabledDates',\n 'footer',\n 'header',\n 'headerRenderer',\n 'hideAnimation',\n 'hideOtherMonthCells',\n 'hideWhenEmpty',\n 'htmlCls',\n 'icon',\n 'ignoreParentReadOnly',\n 'includeYear',\n 'itemCls',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'minColumnWidth',\n 'minDate',\n 'minRowHeight',\n 'monitorResize',\n 'month',\n 'monthButtonFormat',\n 'multiSelect',\n 'namedItems',\n 'nonWorkingDayCls',\n 'nonWorkingDays',\n 'otherMonthCls',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showEvents',\n 'showTooltipWhenDisabled',\n 'showWeekColumn',\n 'sixWeeks',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'strips',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'tbar',\n 'textAlign',\n 'textContent',\n 'tip',\n 'todayCls',\n 'trapFocus',\n 'type',\n 'ui',\n 'weekendCls',\n 'weekRenderer',\n 'weekStartDay',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumSchedulerDatePickerComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'animateTimeShift',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'collapsed',\n 'column',\n 'content',\n 'dataset',\n 'date',\n 'disabled',\n 'dragSelect',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'hasChanges',\n 'height',\n 'hidden',\n 'highlightSelectedWeek',\n 'html',\n 'id',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isSettingValues',\n 'isValid',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'readOnly',\n 'record',\n 'rendition',\n 'rtl',\n 'scrollable',\n 'selection',\n 'shadePastDates',\n 'span',\n 'state',\n 'strictRecordMapping',\n 'title',\n 'tools',\n 'tooltip',\n 'values',\n 'weekColumnHeader',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: SchedulerDatePicker;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() activeDate ! : Date|'today'|string;\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoUpdateRecord ! : boolean;\n @Input() bbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() bodyCls ! : string|object;\n @Input() bubbleEvents ! : object;\n @Input() cellRenderer ! : ((renderData: { cell: HTMLElement, innerCell: HTMLElement, cellPayload: HTMLElement, date: Date, day: number, rowIndex: number[], row: HTMLElement, source: CalendarPanel, cellIndex: number[], columnIndex: number[], visibleColumnIndex: number[] }) => string|DomConfig|void)|string;\n @Input() centered ! : boolean;\n @Input() collapsible ! : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() dayNameFormat ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() defaultFocus ! : ((widget: Widget) => boolean)|string;\n @Input() defaults ! : SchedulerContainerItemConfig;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disabledCls ! : string;\n @Input() disabledDates ! : ((date: Date) => boolean)|string|Date[]|string[];\n @Input() disableNonWorkingDays ! : boolean;\n @Input() disableOtherMonthCells ! : boolean;\n @Input() disableWeekends ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() drawer ! : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number};\n @Input() editMonth ! : boolean;\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() eventFilter ! : ((event: EventModel) => boolean)|string;\n @Input() eventStore ! : EventStore;\n @Input() floating ! : boolean;\n @Input() focusDisabledDates ! : boolean;\n @Input() footer ! : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() headerRenderer ! : ((cell: HTMLElement, columnIndex: number, weekDay: number) => string|DomConfig|void)|string;\n @Input() hideAnimation ! : boolean|object;\n @Input() hideOtherMonthCells ! : boolean;\n @Input() hideWhenEmpty ! : boolean;\n @Input() htmlCls ! : string|object;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() includeYear ! : boolean;\n @Input() itemCls ! : string;\n @Input() lazyItems ! : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|Widget[];\n @Input() listeners ! : SchedulerDatePickerListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxDate ! : Date;\n @Input() minColumnWidth ! : number;\n @Input() minDate ! : Date;\n @Input() minRowHeight ! : number|string;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() month ! : Month|MonthConfig;\n @Input() monthButtonFormat ! : string;\n @Input() multiSelect ! : boolean|'range'|'simple';\n @Input() namedItems ! : Record<string, SchedulerContainerItemConfig>;\n @Input() nonWorkingDayCls ! : string;\n @Input() nonWorkingDays ! : Record<number, boolean>;\n @Input() otherMonthCls ! : string;\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showEvents ! : boolean|'count'|'heatmap';\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() showWeekColumn ! : boolean;\n @Input() sixWeeks ! : boolean;\n @Input() stateful ! : boolean|object|string[];\n @Input() statefulEvents ! : object|string[];\n @Input() stateId ! : string;\n @Input() stateProvider ! : StateProvider;\n @Input() strips ! : Record<string, SchedulerContainerItemConfig>;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tag ! : string;\n @Input() tbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() textContent ! : boolean;\n @Input() tip ! : TooltipConfig;\n @Input() todayCls ! : string;\n @Input() trapFocus ! : boolean;\n @Input() type ! : 'datepicker';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\n @Input() weekendCls ! : string;\n @Input() weekRenderer ! : ((weekCell: HTMLElement, week: number[]) => string|DomConfig|void)|string;\n @Input() weekStartDay ! : number;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() animateTimeShift ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsed ! : boolean;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() date ! : Date|string;\n @Input() disabled ! : boolean|'inert';\n @Input() dragSelect ! : boolean;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() highlightSelectedWeek ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : (SchedulerContainerItemConfig|MenuItemConfig|Widget)[]|Record<string, SchedulerContainerItemConfig|MenuItemConfig>|Widget[]|Record<string, SchedulerContainerItemConfig|MenuItemEntry>|(SchedulerContainerItemConfig|MenuItemEntry|Widget)[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() layout ! : Layout|string|SchedulerContainerLayoutConfig;\n @Input() layoutStyle ! : object;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() readOnly ! : boolean;\n @Input() record ! : Model;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selection ! : Date[]|string[];\n @Input() shadePastDates ! : boolean;\n @Input() span ! : number;\n @Input() strictRecordMapping ! : boolean;\n @Input() title ! : string;\n @Input() tools ! : Record<string, Tool|ToolConfig>|null|Record<string, Tool>|Record<string, ToolConfig>;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() weekColumnHeader ! : string;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isSettingValues ! : boolean;\n @Input() isValid ! : boolean;\n @Input() parent ! : Widget;\n @Input() state ! : any;\n @Input() values ! : Record<string, object>;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before this CalendarPanel refreshes in response to changes in its month.\n * @param {object} event Event object\n * @param {Core.widget.DatePicker} event.source This DatePicker.\n */\n @Output() onBeforeRefresh: any = new EventEmitter<((event: { source: DatePicker }) => void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is applied to the source. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {any} event.state State object config\n */\n @Output() onBeforeStateApply: any = new EventEmitter<((event: { state: any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is saved by the StateProvider. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {any} event.state State object config\n */\n @Output() onBeforeStateSave: any = new EventEmitter<((event: { state: any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when a date cell is clicked.\n * @param {object} event Event object\n * @param {HTMLElement} event.cell The clicked cell element.\n * @param {Date} event.date The date represented by the cell.\n * @param {number[]} event.week The week array `[year, weekNumber]`.\n * @param {Event} event.domEvent The original DOM event.\n */\n @Output() onCellClick: any = new EventEmitter<((event: { cell: HTMLElement, date: Date, week: number[], domEvent: Event }) => void)|string>();\n /**\n * Fires when a Panel is collapsed using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onCollapse: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fires when the date of this CalendarPanel is set.\n * @param {object} event Event object\n * @param {Date} event.value The new date.\n * @param {Date} event.oldValue The old date.\n * @param {object} event.changes An object which contains properties which indicate what part of the date changed.\n * @param {boolean} event.changes.d True if the date changed in any way.\n * @param {boolean} event.changes.w True if the week changed (including same week in a different year).\n * @param {boolean} event.changes.m True if the month changed (including same month in a different year).\n * @param {boolean} event.changes.y True if the year changed.\n */\n @Output() onDateChange: any = new EventEmitter<((event: { value: Date, oldValue: Date, changes: { d: boolean, w: boolean, m: boolean, y: boolean } }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onExpand: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fires when this CalendarPanel refreshes.\n */\n @Output() onRefresh: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fires when a date or date range is selected. If [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-multiSelect) is specified,\n * this will fire upon deselection and selection of dates.\n * @param {object} event Event object\n * @param {Date[]} event.selection The selected dates. If [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-multiSelect) is specified this may be a two element array specifying start and end dates.\n * @param {Date[]} event.oldSelection The previously selected dates. If [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-multiSelect) is specified this may be a two element array specifying start and end dates.\n * @param {boolean} event.userAction This will be `true` if the change was caused by user interaction as opposed to programmatic setting.\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { selection: Date[], oldSelection: Date[], userAction: boolean }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * A header [tool](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-tools) has been clicked.\n * @param {object} event Event object\n * @param {Core.widget.Tool} event.source This Panel.\n * @param {Core.widget.Tool} event.tool The tool which is being clicked.\n */\n @Output() onToolClick: any = new EventEmitter<((event: { source: Tool, tool: Tool }) => void)|string>();\n /**\n * Fired when a week number cell is clicked.\n * @param {object} event Event object\n * @param {Date} event.date The start date of the week.\n * @param {number[]} event.week The week array `[year, weekNumber]`.\n * @param {Event} event.domEvent The original DOM event.\n */\n @Output() onWeekCellClick: any = new EventEmitter<((event: { date: Date, week: number[], domEvent: Event }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumSchedulerDatePickerComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumSchedulerDatePickerComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumSchedulerDatePickerComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum TimelineHistogram\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AjaxStore, AjaxStoreConfig, Base, Container, DomConfig, DurationUnit, FormulaProviderConfig, Histogram, HistogramConfig, HistogramSeries, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, Tooltip, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, EmptyTextDomConfig, ExcelExporter as GridExcelExporter, ExcelExporterConfig as GridExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, HeaderMenu, HeaderMenuConfig, LockRows as GridLockRows, LockRowsConfig as GridLockRowsConfig, MergeCells, MergeCellsConfig, PdfExport as GridPdfExport, PdfExportConfig as GridPdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print as GridPrint, PrintConfig as GridPrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowResize as GridRowResize, RowResizeConfig as GridRowResizeConfig, Search, SearchConfig, Sort, SortConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentModel, ColumnLines, ColumnLinesConfig, SchedulerContainerItemConfig, EventColor, EventModel, SchedulerColumnConfig, GroupSummary, GroupSummaryConfig, HeaderZoom, HeaderZoomConfig, HistogramRenderData, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PresetStore, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceMenu, ResourceMenuConfig, ResourceModel, ResourceTimeRangeModel, ResourceTimeRanges, ResourceTimeRangesConfig, RowReorder, RowReorderConfig, ScaleColumnConfig, ScalePoint, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, Split, SplitConfig, Summary, SummaryConfig, TimeAxis, TimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSpan, TimelineBase, TimelineContext, TimelineHistogram, TimelineHistogramListeners, TimelineStateInfo, VerticalTimeAxisColumn, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumTimelineHistogramProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * A function used for aggregating child records histogram data entries to their parent entry.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-aggregateDataEntry)\n * @param {object} aggregateDataEntry.aggregated Target parent data entry to aggregate the entry into.\n * @param {object} aggregateDataEntry.entry Current entry to aggregate into `aggregated`.\n * @param {number} aggregateDataEntry.arrayIndex Index of current array (index of the record among other records being aggregated).\n * @param {object[]} aggregateDataEntry.entryIndex Index of `entry` in the current array.\n * @returns {object} Return value becomes the value of the `aggregated` parameter on the next invocation of this function.\n */\n aggregateDataEntry ? : ((aggregateDataEntry: { aggregated: object, entry: object, arrayIndex: number, entryIndex: object[] }) => object)|string\n /**\n * When `true` the component will automatically calculate data for group records\n * based on the groups members data by calling [getGroupRecordHistogramData](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#function-getGroupRecordHistogramData) method.\n */\n aggregateHistogramDataForGroups ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * Set to `true` to animate row removals caused by filtering.\n * @deprecated 7.0.0 Deprecated `animateFilterRemovals`. Use `transition.filterRemoval` instead\n */\n animateFilterRemovals ? : boolean\n /**\n * Controls if removing and inserting rows should be animated. Set to `false` to prevent those animations,\n * removing the related delays.\n * @deprecated 7.0.0 Deprecated `animateRemovingRows`. Use `transition.removeRecord` instead\n */\n animateRemovingRows ? : boolean\n /**\n * When the [Tree](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree) feature is in use and the Store is a tree store, this\n * config may be set to `true` to visually animate branch node expand and collapse operations.\n * *This is not supported in Scheduler and Gantt*\n * @deprecated 7.0.0 Deprecated `animateTreeNodeToggle`. Use `transition.toggleTreeNode` instead\n */\n animateTreeNodeToggle ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * You can set this option to `false` to make the timeline panel start and end on the exact provided\n * [startDate](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-startDate)/[endDate](#Scheduler/view/TimelineBase#config-endDate) w/o adjusting them.\n */\n autoAdjustTimeAxis ? : boolean\n /**\n * Automatically set grids height to fit all rows (no scrolling in the grid). In general you should avoid\n * using `autoHeight: true`, since it will bypass Grids virtual rendering and render all rows at once, which\n * in a larger grid is really bad for performance.\n */\n autoHeight ? : boolean\n /**\n * Controls how much space to leave between stacked event bars in px.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-barMargin)\n */\n barMargin ? : number\n /**\n * A Function which returns the tooltip text to display when hovering a bar.\n * The following parameters are passed:\n * @param {object} context The tooltip context info\n * @param {object} context.datum The histogram bar being hovered info\n * @param {Core.widget.Tooltip} context.tip The tooltip instance\n * @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement\n * @param {HTMLElement} context.activeTarget The target element that triggered the show\n * @param {Event} context.event The raw DOM event\n * @param {Core.data.Model} context.record The record which value the hovered bar displays.\n * @returns {string} Tooltip HTML content\n */\n barTooltipTemplate ? : (context: { datum: object, tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event, record: Model }) => string\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-bbar)\n */\n bbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * Custom CSS classes to add to the panel's body element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-bodyCls)\n */\n bodyCls ? : string|object\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * This config defines the size of the start and end invisible parts of the timespan when [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-infiniteScroll) set to `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-bufferCoef)\n */\n bufferCoef ? : number\n /**\n * This config defines the scroll limit, which, when exceeded will cause a timespan shift.\n * The limit is calculated as the `panelWidth * [bufferCoef](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineScroll#config-bufferCoef) * bufferThreshold`. During scrolling, if the left or right side\n * has less than that of the rendered content - a shift is triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-bufferThreshold)\n */\n bufferThreshold ? : number\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * Set to `false` to crop text in grid cells without ellipsis (...). When enabled, cells containing pure\n * use `display : block`, instead of `display : flex` to allow ellipsis to work.\n * <strong>NOTE</strong> Only supported in browsers that support `:has()` CSS selector\n */\n cellEllipsis ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-cls)\n */\n cls ? : string|object\n /**\n * Controls whether the panel is collapsed (the body of the panel is hidden while only the header is\n * visible). Only valid if the panel is [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible).\n */\n collapsed ? : boolean\n /**\n * This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-collapsible)\n */\n collapsible ? : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n /**\n * Set to `false` to not show column lines. End result might be overruled by/differ between themes.\n */\n columnLines ? : boolean\n /**\n * Accepts column definitions for the grid during initialization. They will be used to create\n * [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-columns)\n */\n columns ? : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * Event which is used to show context menus.\n * Available options are: 'contextmenu', 'click', 'dblclick'.\n */\n contextMenuTriggerEvent ? : 'contextmenu'|'click'|'dblclick'\n /**\n * Convenient shortcut to set data in grids store both during initialization and at runtime. Can also be\n * used to retrieve data at runtime, although we do recommend interacting with Grids store instead using\n * the [store](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-data)\n */\n data ? : object[]|Model[]|ModelConfig[]\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Record field from which the histogram data will be collected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-dataModelField)\n */\n dataModelField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * Region to which columns are added when they have none specified\n */\n defaultRegion ? : string\n /**\n * Set to `true` to destroy the store when the grid is destroyed.\n */\n destroyStore ? : boolean\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#function-getState) when there is a column\n * configured without an `id`. But the recommended action is to always configure columns with an `id` when\n * using states.\n */\n disableGridColumnIdWarning ? : boolean\n /**\n * Set to `true` to not get a warning when using another base class than GridRowModel for your grid data. If\n * you do, and would like to use the full feature set of the grid then include the fields from GridRowModel\n * in your model definition.\n */\n disableGridRowModelWarning ? : boolean\n /**\n * Defines how dates will be formatted in tooltips etc. This config has priority over similar config on the\n * view preset. For allowed values see [format](https://bryntum.com/products/scheduler/docs/api/Core/helper/DateHelper#function-format-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-displayDateFormat)\n */\n displayDateFormat ? : string\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * Make this Panel a docked drawer which slides out from one side of the browser viewport by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-drawer)\n * @param {'start','left','end','right','top','bottom'} side The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.\n * @param {string,number} size The size of the drawer in its collapsible axis.\n * @param {boolean} inline If using the [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.\n * @param {boolean,object} autoClose Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.\n * @param {boolean,string} autoClose.mousedown If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.\n * @param {boolean,string} autoClose.focusout If focus moves outside of the drawer, the drawer will automatically be hidden.\n * @param {string} autoClose.mouseout Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.\n * @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds\n */\n drawer ? : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number}\n /**\n * Decimal precision used when displaying durations, used by tooltips and DurationColumn.\n * Specify `false` to use raw value\n */\n durationDisplayPrecision ? : number|boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#typedef-EmptyTextDomConfig) block to display when there is no data to display in the grid.\n * When using multiple Grid regions, provide the `region` property to decide where the text is shown.\n * By default, it is shown in the first region.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-emptyText)\n */\n emptyText ? : string|EmptyTextDomConfig\n /**\n * Set to `false` if you don't want event bar DOM updates to animate.\n * @deprecated 7.0.0 Deprecated `enableEventAnimations`. Use `transition.changeEvent` instead\n */\n enableEventAnimations ? : boolean\n /**\n * Enables showing occurrences of recurring events across the scheduler's time axis. If you want to disable\n * the recurrence popup, you can choose set the `defaultAction` to `future` to affect all future\n * occurrences, or `single` to just affect the currently selected event.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-enableRecurringEvents)\n */\n enableRecurringEvents ? : boolean|{\n defaultAction?: 'single'|'future'\n }\n /**\n * Configure this as `true` to allow elements within cells to be styled as `position: sticky`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-enableSticky)\n */\n enableSticky ? : boolean\n /**\n * Set to `true` to allow text selection in the grid cells. Note, this cannot be used simultaneously with the\n * `RowReorder` feature.\n */\n enableTextSelection ? : boolean\n /**\n * Set to `true` to listen for CTRL-Z (CMD-Z on Mac OS) keyboard event and trigger undo (redo when SHIFT is\n * pressed). Only applicable when using a [StateTrackingManager](https://bryntum.com/products/scheduler/docs/api/Core/data/stm/StateTrackingManager).\n */\n enableUndoRedoKeys ? : boolean\n /**\n * The end date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-endDate)\n */\n endDate ? : Date|string\n /**\n * Event color used by default. Events and resources can specify their own color, with priority order being:\n * Event -> Resource -> Scheduler default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-eventColor)\n */\n eventColor ? : EventColor\n /**\n * Event style used by default. Events and resources can specify their own style, with priority order being:\n * Event -> Resource -> Scheduler default. Determines the appearance of the event by assigning a CSS class\n * to it. Available styles are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-eventStyle)\n */\n eventStyle ? : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null\n extraData ? : any\n /**\n * Set to `true` to stretch the last column in a grid with all fixed width columns\n * to fill extra available space if the grid's width is wider than the sum of all\n * configured column widths.\n */\n fillLastColumn ? : boolean\n /**\n * Specify `true` to force rendered events/tasks to fill entire ticks. This only affects rendering, start\n * and end dates retain their value on the data level.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-fillTicks)\n */\n fillTicks ? : boolean\n /**\n * Use fixed row height. Setting this to `true` will configure the underlying RowManager to use fixed row\n * height, which sacrifices the ability to use rows with variable height to gain a fraction better\n * performance.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-footer)\n */\n footer ? : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string\n /**\n * Set to `true` to force the time columns to fit to the available space (horizontal or vertical depends on mode).\n * Note that setting [suppressFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-suppressFit) to `true`, will disable `forceFit` functionality. Zooming\n * cannot be used when `forceFit` is set.\n */\n forceFit ? : boolean\n /**\n * An object which names formula prefixes which will be applied to all columns configured with\n * `formula : true`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-formulaProviders)\n */\n formulaProviders ? : Record<string, FormulaProviderConfig>\n /**\n * Refresh entire row when a record changes (`true`) or, if possible, only the cells affected (`false`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * A Function which returns a CSS class name to add to a rectangle element.\n * The following parameters are passed:\n * @param {HistogramSeries} series The series being rendered\n * @param {DomConfig} domConfig The rectangle configuration object\n * @param {object} datum The datum being rendered\n * @param {number} index The index of the datum being rendered\n * @param {HistogramRenderData} renderData Current render data giving access to the record, row and cell being rendered.\n * @returns {string} CSS classes of the rectangle element\n */\n getBarClass ? : (series: HistogramSeries, domConfig: DomConfig, datum: object, index: number, renderData: HistogramRenderData) => string\n /**\n * A Function which if provided should return a DOM configuration object for a bar\n * (a `RECT` element representing a single \"bar\"-type value).\n * The function is passed a default prepared DOM configuration\n * in an argument which then can be processed and returned.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getBarDOMConfig)\n * @param {HistogramSeries} series The series being rendered\n * @param {DomConfig} domConfig The rectangle DOM configuration object\n * @param {object} datum The datum being rendered\n * @param {number} index The index of the datum being rendered\n * @param {HistogramRenderData} renderData Current render data giving access to the record, row and cell being rendered.\n * @returns {object} Resulting DOM configuration object. If no value returned the bar is not displayed.\n */\n getBarDOMConfig ? : (series: HistogramSeries, domConfig: DomConfig, datum: object, index: number, renderData: HistogramRenderData) => object\n /**\n * A Function which returns the text to render inside a bar.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getBarText)\n * @param {object} datum The datum being rendered\n * @param {number} index The index of the datum being rendered\n * @param {HistogramSeries} series The series (provided if histogram widget [singleTextForAllBars](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram#config-singleTextForAllBars) is `false`)\n * @param {HistogramRenderData} renderData Current render data giving access to the record, row and cell being rendered.\n * @returns {string} Text to render inside the bar\n */\n getBarText ? : (datum: object, index: number, series: HistogramSeries, renderData: HistogramRenderData) => string\n /**\n * A Function which returns a DOM configuration object for text elements.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getBarTextDOMConfig)\n * @param {DomConfig} domConfig The `TEXT` element DOM configuration object\n * @param {object} datum The datum being rendered\n * @param {number} index The index of the datum being rendered\n * @param {HistogramSeries} series The series (provided if histogram widget [singleTextForAllBars](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram#config-singleTextForAllBars) is `false`)\n * @param {HistogramRenderData} renderData Current render data giving access to the record, row and cell being rendered.\n * @returns {object} The `TEXT` element DOM configuration object. If no value returned the text element is not displayed.\n */\n getBarTextDOMConfig ? : (domConfig: DomConfig, datum: object, index: number, series: HistogramSeries, renderData: HistogramRenderData) => object\n /**\n * Function that extracts a record histogram data entry for aggregating.\n * By default it returns the entry as is. Override the function if you need a more complex way\n * to retrieve the value for aggregating.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getDataEntryForAggregating)\n * @param {object} getDataEntryForAggregating.entry Current data entry.\n * @returns {object} Entry to aggregate\n */\n getDataEntryForAggregating ? : ((getDataEntryForAggregating: { entry: object }) => object)|string\n /**\n * A Function which returns a CSS class name to add to a path element\n * built for an `outline` type series.\n * The following parameters are passed:\n * @param {HistogramSeries} series The series being rendered\n * @param {object[]} data The series data\n * @param {HistogramRenderData} renderData Current render data giving access to the record, row and cell being rendered.\n * @returns {string} CSS class name of the path element\n */\n getOutlineClass ? : (series: HistogramSeries, data: object[], renderData: HistogramRenderData) => string\n /**\n * A Function which if provided should return a DOM configuration object for\n * a `path` element built for an `outline` type series.\n * The function accepts a default prepared DOM configuration\n * in an argument which then can be processed and returned.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getOutlineDOMConfig)\n * @param {HistogramSeries} series The series being rendered\n * @param {DomConfig} domConfig The `path` element DOM configuration object\n * @param {object[]} data The series data\n * @returns {object} Resulting DOM configuration object. If no value returned the path is not displayed.\n */\n getOutlineDOMConfig ? : (series: HistogramSeries, domConfig: DomConfig, data: object[]) => object\n /**\n * A function, or name of a function which builds histogram data for the provided record.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getRecordData)\n * @param {Core.data.Model} getRecordData.record Record to get histogram data for.\n * @param {object} aggregationContext Context object passed in case the data is being retrieved as a part of some parent record data collecting.\n * @returns {object} Histogram data.\n */\n getRecordData ? : ((getRecordData: { record: Model }, aggregationContext?: object) => object)|string\n /**\n * A function called for each row to determine its height. It is passed a [record](https://bryntum.com/products/scheduler/docs/api/Core/data/Model) and\n * expected to return the desired height of that records row. If the function returns a falsy value, Grids\n * configured [rowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-getRowHeight)\n * @param {Core.data.Model} getRowHeight.record Record to determine row height for\n * @returns {number} Desired row height\n */\n getRowHeight ? : (getRowHeight: { record: Model }) => number\n /**\n * When set to `true` (default) the component reacts on time axis changes\n * (zooming or changing the displayed time span), clears the histogram data cache of the records\n * and then refreshes the view.\n */\n hardRefreshOnTimeAxisReconfigure ? : boolean\n /**\n * A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-header)\n */\n header ? : string|boolean|PanelHeader\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * Set to `true` to hide the footer elements\n */\n hideFooters ? : boolean\n /**\n * Set to `true` to hide the column header elements\n */\n hideHeaders ? : boolean\n /**\n * Set to `true` to hide the Grid's horizontal scrollbar(s)\n */\n hideHorizontalScrollbar ? : boolean\n /**\n * By default the row hover effect is not visible in the Scheduler part of the grid.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-hideRowHover)\n */\n hideRowHover ? : boolean\n /**\n * An instance or a configuration object of the underlying [Histogram](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram)\n * component that is used under the hood to render actual charts.\n * In case a configuration object is provided the built class is defined with\n * [histogramWidgetClass](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-histogramWidgetClass) config.\n */\n histogramWidget ? : Histogram|HistogramConfig\n /**\n * The class used for building the [histogram widget](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#property-histogramWidget)\n */\n histogramWidgetClass ? : Histogram\n /**\n * A CSS class to add to hovered row elements\n */\n hoverCls ? : string\n /**\n * An icon to show before the [title](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/scheduler/docs/api/Core/helper/DomHelper#typedef-DomConfig) object describing an element to represent the icon.\n */\n icon ? : string|DomConfig\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Set to `true` to ignore reacting to DOM events (mouseover/mouseout etc) while scrolling. Useful if you\n * want to maximize scroll performance.\n */\n ignoreDomEventsWhileScrolling ? : boolean\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Set to `true` to automatically adjust the panel timespan during scrolling in the time dimension,\n * when the scroller comes close to the start/end edges.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-infiniteScroll)\n */\n infiniteScroll ? : boolean\n /**\n * A function that initializes a target group record entry.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-initAggregatedDataEntry)\n * @returns {object} Target aggregated entry\n */\n initAggregatedDataEntry ? : (() => object)|string\n /**\n * Convenience setting to align input fields of child widgets. By default, the Field input element is\n * placed immediately following the `label`. If you prefer to have all input fields aligned to the\n * right, set this config to `'end'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-inputFieldAlign)\n */\n inputFieldAlign ? : 'start'|'end'\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/scheduler/docs/api/Grid/view/Grid#keyboard-shortcuts) for details\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-listeners)\n */\n listeners ? : TimelineHistogramListeners\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when a store is performing a remote\n * operation, or Crud Manager is loading data from the sever. Set to `null` to disable default load mask.\n */\n loadMask ? : string|MaskConfig|null\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when data is loading. The message and optional configuration from the\n * [loadMask](https://bryntum.com/products/scheduler/docs/api/Core/mixin/LoadMaskable#config-loadMask) config take priority over these options, just as they do\n * for `maskDefaults`, respectively.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object to adjust the [maskDefaults](#Core/widget/Widget#config-maskDefaults)\n * when an error occurs loading data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-loadMaskError)\n */\n loadMaskError ? : MaskConfig|Mask|boolean\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * Time in ms until a longpress is triggered\n */\n longPressTime ? : number\n /**\n * When `true`, events are sized and positioned based on rowHeight, resourceMargin and barMargin settings.\n * Set this to `false` if you want to control height and vertical position using CSS instead.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-managedEventSizing)\n */\n managedEventSizing ? : boolean\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * Grids change the `maskDefaults` to cover only their `body` element.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * Get/set end date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n maxDate ? : Date|string\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * The maximum time axis unit to display non-working ranges for ('hour' or 'day' etc).\n * When zooming to a view with a larger unit, no non-working time elements will be rendered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-maxTimeAxisUnit)\n */\n maxTimeAxisUnit ? : DurationUnit\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The maximum zoom level to which [zoomIn](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomIn) will work. Defaults to the number of\n * [ViewPresets](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) available, see [presets](#Scheduler/view/mixin/TimelineViewPresets#property-presets)\n * for information. Unless you have modified the collection of available presets, the max zoom level is\n * milliseconds.\n */\n maxZoomLevel ? : number\n /**\n * Get/set start date limit of the timeline.\n * Actions such as timeline scrolling, all types of timeline zooms and shifts\n * will respect this limit.\n */\n minDate ? : Date|string\n /**\n * Grid's `min-height`. Defaults to `10em` to be sure that the Grid always has a height wherever it is\n * inserted.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-minHeight)\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * The minimum zoom level to which [zoomOut](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomOut) will work. Defaults to 0 (year ticks)\n */\n minZoomLevel ? : number\n /**\n * Grid monitors window resize by default.\n */\n monitorResize ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-owner)\n */\n owner ? : Widget|any\n /**\n * Partners this Timeline panel with another Timeline in order to sync their region sizes (sub-grids like locked, normal will get the same width),\n * start and end dates, view preset, zoom level and scrolling position. All these values will be synced with the timeline defined as the `partner`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-partner)\n */\n partner ? : TimelineBase\n /**\n * Specify plugins (an array of classes) in config\n */\n plugins ? : Function[]\n /**\n * True to preserve focused cell after loading new data\n */\n preserveFocusOnDatasetChange ? : boolean\n /**\n * Preserve the grid's vertical scroll position when changesets are applied, as in the case of remote\n * changes, or when stores are configured with [syncDataOnLoad](https://bryntum.com/products/scheduler/docs/api/Core/data/Store#config-syncDataOnLoad).\n */\n preserveScroll ? : PreserveScrollOptions|boolean\n /**\n * Specify `true` to preserve vertical scroll position after store actions that trigger a `refresh` event,\n * such as loading new data and filtering.\n */\n preserveScrollOnDatasetChange ? : boolean\n /**\n * An array of [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) config objects\n * which describes the available timeline layouts for this scheduler.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-presets)\n */\n presets ? : ViewPresetConfig[]\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Set to `true` to make the grid read-only, by disabling any UIs for modifying data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * The confirmation dialog shown when a recurring event is edited.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-recurrenceConfirmationPopup)\n */\n recurrenceConfirmationPopup ? : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure this property to allow the widget/component to be resized. Pressing <kbd>Shift</kbd> while resizing will\n * constrain the aspect ratio.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-resizable)\n */\n resizable ? : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n }\n /**\n * Set to `false` to only measure cell contents when double-clicking the edge between column headers.\n */\n resizeToFitIncludesHeader ? : boolean\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * a resource time range is rendered into the schedule. It's called with `resourceTimeRangeRecord`, `resourceRecord`,\n * and `renderData` params.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-resourceTimeRangeRenderer)\n * @param {object} detail An object containing the information needed to render a ResourceTimeRangeModel.\n * @param {Scheduler.model.ResourceTimeRangeModel} detail.resourceTimeRangeRecord The resource time range record.\n * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record.\n * @param {object} detail.renderData An object containing details about the event rendering.\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig object describing the markup\n */\n resourceTimeRangeRenderer ? : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[]\n /**\n * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-responsiveLevels)\n */\n responsiveLevels ? : Record<string, number|string|ResponsiveLevelConfig>\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * Row height in pixels. This allows the default height for rows to be controlled. Note that it may be\n * overriden by specifying a [rowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-rowHeight)\n */\n rowHeight ? : number\n /**\n * Set to `false` to not show row lines. End result might be overruled by/differ between themes.\n */\n rowLines ? : boolean\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-rtl)\n */\n rtl ? : boolean\n /**\n * An object with configuration for the [ScaleColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ScaleColumn).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-scaleColumn)\n */\n scaleColumn ? : ScaleColumnConfig\n /**\n * Array of objects representing the [scale column](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramScaleColumn#config-scaleColumn) scale points.\n * The config basically is a mapping to the column [scalePoints](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ScaleColumn#config-scalePoints)\n * config.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-scalePoints)\n */\n scalePoints ? : ScalePoint[]\n /**\n * Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/scheduler/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-scrollable). Defaults to [Scroller](#Core/helper/util/Scroller).\n */\n scrollerClass ? : typeof Scroller\n /**\n * Configuration values for the [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/scheduler/docs/api/Core/util/ScrollManager) at runtime.\n */\n scrollManager ? : ScrollManagerConfig|ScrollManager\n /**\n * Selection configuration settings, change these properties to control how selection works and what can be\n * selected.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\n /**\n * Object enumerating data series for the histogram.\n * The object keys are treated as the series identifiers and values are objects that\n * must contain two properties:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-series)\n */\n series ? : Record<string, HistogramSeries>\n /**\n * Set to `true` if you want to display a tooltip when hovering an allocation bar. You can also pass a\n * [Tooltip#configs](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip#configs) config object.\n * Please use [barTooltipTemplate](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-barTooltipTemplate) function to customize the tooltip contents.\n */\n showBarTip ? : boolean|TooltipConfig\n /**\n * Set to `true` to display the [bar tooltip](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-showBarTip) when navigating the timeaxis cells\n * using [ScheduleContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleContext) feature.\n * The tooltip is disabled by default when navigating to make the navigation easier.\n */\n showBarTipWhenNavigatingTimeAxis ? : boolean\n /**\n * Configure as `true` to have the grid show a red \"changed\" tag in cells whose\n * field value has changed and not yet been committed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\n /**\n * Set to `true` to snap to the current time resolution increment while interacting with scheduled events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-snap)\n */\n snap ? : boolean\n /**\n * Affects drag drop and resizing of events when [snap](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDateMapper#config-snap)\n * is enabled.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-snapRelativeToEventStartDate)\n */\n snapRelativeToEventStartDate ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * The start date of the timeline (if not configure with [infiniteScroll](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-startDate)\n */\n startDate ? : Date|string\n /**\n * This value can be one of the following:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-stateful)\n */\n stateful ? : boolean|object|string[]\n /**\n * The events that, when fired by this component, should trigger it to save its state by calling\n * [saveState](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-statefulEvents)\n */\n statefulEvents ? : object|string[]\n /**\n * The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)\n * (if explicitly specified) will be used as the `stateId`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/scheduler/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/scheduler/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-stateProvider)\n */\n stateProvider ? : StateProvider\n /**\n * The properties of this settings object controls how grid is restored from state data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-stateSettings)\n */\n stateSettings ? : {\n restoreUnconfiguredColumns?: boolean\n }\n /**\n * When set, the text in the major time axis header sticks in the scrolling viewport as long as possible.\n */\n stickyHeaders ? : boolean\n /**\n * Store that holds records to display in the grid, or a store config object. If the configuration contains\n * a `readUrl`, an `AjaxStore` will be created.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-store)\n */\n store ? : Store|StoreConfig|AjaxStore|AjaxStoreConfig\n /**\n * An object containing widgets keyed by name. By default (when no `type` is given), strips are\n * [toolbars](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-strips)\n */\n strips ? : Record<string, SchedulerContainerItemConfig>\n /**\n * An object containing sub grid configuration objects keyed by a `region` property.\n * By default, grid has a 'locked' region (if configured with locked columns) and a 'normal' region.\n * The 'normal' region defaults to use `flex: 1`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * Set to `true` to prevent auto calculating of a minimal [tickSize](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineEventRendering#property-tickSize)\n * to always fit the content to the screen size. Setting this property on `true` will disable [forceFit](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-forceFit) behaviour.\n */\n suppressFit ? : boolean\n /**\n * A [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object, or a message to be shown when Crud Manager\n * is persisting changes on the server. Set to `null` to disable default sync mask.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * When this container is used as a tab in a TabPanel, these items are added to the\n * [TabBar](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar),\n * or array of config objects representing the child items of a Toolbar.\n * This creates a toolbar docked to the top of the panel immediately below the header.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-tbar)\n */\n tbar ? : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\n /**\n * The width/height (depending on vertical / horizontal mode) of all the time columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-tickSize)\n */\n tickSize ? : number\n /**\n * A [TimeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis) config object or instance, used to create a backing data store of\n * 'ticks' providing the input date data for the time axis of timeline panel. Created automatically if none\n * supplied.\n */\n timeAxis ? : TimeAxisConfig|TimeAxis\n /**\n * Gets/sets the current time resolution object, which contains a unit identifier and an increment count\n * `{ unit, increment }`. This value means minimal task duration you can create using UI.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-timeResolution)\n */\n timeResolution ? : {\n increment?: number\n unit?: DurationUnit\n }|number\n /**\n * Set to a time zone or a UTC offset. This will set the projects\n * [timeZone](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) config accordingly. As this config is only a referer,\n * please see project's config [documentation](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel#config-timeZone) for more\n * information.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-timeZone)\n */\n timeZone ? : string|number\n /**\n * A title to display in the header or owning TabPanel. Causes creation and docking of a header\n * to the top if no header is configured.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each\n * property name is the reference by which an instantiated tool may be retrieved from the live\n * `[tools](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-tools)\n */\n tools ? : Record<string, ToolConfig>|null\n /**\n * Configure UI transitions for various actions in the grid.\n */\n transition ? : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n }\n /**\n * Animation transition duration in milliseconds.\n */\n transitionDuration ? : number\n type ? : 'timelinehistogram'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * A string key used to lookup a predefined [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) (e.g. 'weekAndDay', 'hourAndDay'),\n * managed by [PresetManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/PresetManager). See [PresetManager](#Scheduler/preset/PresetManager) for more information.\n * Or a config object for a viewPreset.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-viewPreset)\n */\n viewPreset ? : string|ViewPresetConfig\n /**\n * A date to bring into view initially on the scrollable timeline.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-visibleDate)\n */\n visibleDate ? : Date|VisibleDate\n /**\n * Integer number indicating the size of timespan during zooming. When zooming, the timespan is adjusted to make\n * the scrolling area `visibleZoomFactor` times wider than the timeline area itself. Used in\n * [zoomToSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomToSpan) and [zoomToLevel](#Scheduler/view/mixin/TimelineZoomable#function-zoomToLevel) functions.\n */\n visibleZoomFactor ? : number\n /**\n * A valid JS day index between 0-6 (0: Sunday, 1: Monday etc.) to be considered the start day of the week.\n * When omitted, the week start day is retrieved from the active locale class.\n */\n weekStartDay ? : number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * An object with format `{ fromDay, toDay, fromHour, toHour }` that describes the working days and hours.\n * This object will be used to populate TimeAxis [include](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis#config-include) property.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-workingTime)\n */\n workingTime ? : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n }\n /**\n * Whether the originally rendered timespan should be preserved while zooming. By default, it is set to `false`,\n * meaning the timeline panel will adjust the currently rendered timespan to limit the amount of HTML content to\n * render. When setting this option to `true`, be careful not to allow to zoom a big timespan in seconds\n * resolution for example. That will cause <strong>a lot</strong> of HTML content to be rendered and affect performance. You\n * can use [minZoomLevel](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineZoomable#config-minZoomLevel) and [maxZoomLevel](#Scheduler/view/mixin/TimelineZoomable#config-maxZoomLevel) config options for that.\n */\n zoomKeepsOriginalTimespan ? : boolean\n /**\n * If true, you can zoom in and out on the time axis using CTRL-key + mouse wheel.\n */\n zoomOnMouseWheel ? : boolean\n /**\n * True to zoom to time span when double-clicking a time axis cell.\n */\n zoomOnTimeAxisDoubleClick ? : boolean\n\n // Features\n /**\n * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ai/AIFilter)\n */\n aiFilterFeature ? : object|boolean|string|AIFilter|AIFilterConfig\n /**\n * Allows using `[Ctrl/CMD + C]`, `[Ctrl/CMD + X]` and `[Ctrl/CMD + V]` to cut, copy and paste cell or cell ranges. Also\n * makes cut, copy and paste actions available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellCopyPaste)\n */\n cellCopyPasteFeature ? : object|boolean|string|CellCopyPaste|CellCopyPasteConfig\n /**\n * Adding this feature to the grid and other Bryntum products which are based on the Grid (i.e. Scheduler, SchedulerPro, and Gantt)\n * enables cell editing. Any subclass of [Field](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu)\n */\n cellMenuFeature ? : object|boolean|string|CellMenu|CellMenuConfig\n /**\n * Displays a tooltip when hovering cells.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip)\n */\n cellTooltipFeature ? : object|boolean|string|CellTooltip|CellTooltipConfig\n /**\n * Adds interactive charting to a Grid. [Charts](https://bryntum.com/products/scheduler/docs/api/Chart/widget/Chart) can be created from a selection of Grid data\n * and updated in realtime as data changes. Supports many common chart types with extensive styling and customization\n * options.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnAutoWidth)\n */\n columnAutoWidthFeature ? : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig\n /**\n * Displays a toolbar while dragging column headers. Drop on a button in the toolbar to activate a certain function,\n * for example to group by that column. This feature simplifies certain operations on touch devices.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnDragToolbar)\n */\n columnDragToolbarFeature ? : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig\n /**\n * Displays column lines for ticks, with a different styling for major ticks (by default they are darker). If this\n * feature is disabled, no lines are shown. If it's enabled, line are shown for the tick level which is set in current\n * ViewPreset. Please see [columnLinesFor](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-columnLinesFor) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ColumnLines)\n */\n columnLinesFeature ? : object|boolean|string|ColumnLines|ColumnLinesConfig\n /**\n * Displays a column picker (to show/hide columns) in the header context menu. Columns can be displayed in sub menus\n * by region or tag. Grouped headers are displayed as menu hierarchies.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnPicker)\n */\n columnPickerFeature ? : object|boolean|string|ColumnPicker|ColumnPickerConfig\n /**\n * Allows user to rename columns by either right-clicking column header or using keyboard shortcuts when column header\n * is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnRename)\n */\n columnRenameFeature ? : object|boolean|string|ColumnRename|ColumnRenameConfig\n /**\n * Allows user to reorder columns by dragging headers. To get notified about column reorder listen to `change` event\n * on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnReorder)\n */\n columnReorderFeature ? : object|boolean|string|ColumnReorder|ColumnReorderConfig\n /**\n * Enables user to resize columns by dragging a handle on the right hand side of the header. To get notified about column\n * resize listen to `change` event on [columns](https://bryntum.com/products/scheduler/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/ColumnResize)\n */\n columnResizeFeature ? : object|boolean|string|ColumnResize|ColumnResizeConfig\n /**\n * A feature that allows exporting Grid data to Excel or CSV without involving the server. It uses\n * [TableExporter](https://bryntum.com/products/scheduler/docs/api/Grid/util/TableExporter) class as data provider, 3rd party provider to generate XLS files, and\n * [Microsoft XML specification](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.aspx).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|GridExcelExporter|GridExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/experimental/FileDrop)\n */\n fileDropFeature ? : object|boolean|string|FileDrop|FileDropConfig\n /**\n * This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over\n * with values based on the values in the original selected range. This is similar to functionality normally seen in\n * various spreadsheet applications.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FillHandle)\n */\n fillHandleFeature ? : object|boolean|string|FillHandle|FillHandleConfig\n /**\n * Feature that allows filtering of the grid by settings filters on columns. The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Filter)\n */\n filterFeature ? : object|boolean|string|Filter|FilterConfig\n /**\n * Feature that allows filtering of the grid by entering filters on column headers.\n * The actual filtering is done by the store.\n * For info on programmatically handling filters, see [StoreFilter](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/FilterBar)\n */\n filterBarFeature ? : object|boolean|string|FilterBar|FilterBarConfig\n /**\n * Enables rendering and handling of row groups. The actual grouping is done in the store, but triggered by\n * <kbd>shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,\n * one anywhere on grid). Use <kbd>shift</kbd> + <kbd>alt</kbd> + click, or the context menu, to remove a column\n * grouper.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * A special version of the Grid GroupSummary feature that enables summaries within scheduler. To use a single summary\n * it is easiest to configure [renderer](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary#config-renderer), for multiple summaries see [summaries](#Scheduler/feature/GroupSummary#config-summaries).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu)\n */\n headerMenuFeature ? : object|boolean|string|HeaderMenu|HeaderMenuConfig\n /**\n * Enables users to click and drag to zoom to a date range in Scheduler's header time axis. Only supported in horizontal\n * mode.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/HeaderZoom)\n */\n headerZoomFeature ? : object|boolean|string|HeaderZoom|HeaderZoomConfig\n /**\n * This feature allows records which satisfy a certain condition to be locked at the top of the grid.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|GridLockRows|GridLockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/scheduler/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * Feature that allows styling of weekends (and other non-working time) by adding timeRanges for those days.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/NonWorkingTime)\n */\n nonWorkingTimeFeature ? : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig\n /**\n * Makes the scheduler's timeline pannable by dragging with the mouse. Try it out in the demo below.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Pan)\n */\n panFeature ? : object|boolean|string|Pan|PanConfig\n /**\n * Generates PDF/PNG files from the Grid component.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|GridPdfExport|GridPdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/PinColumns)\n */\n pinColumnsFeature ? : object|boolean|string|PinColumns|PinColumnsConfig\n /**\n * Allows printing Grid contents using browser print dialog.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/export/Print)\n */\n printFeature ? : object|boolean|string|GridPrint|GridPrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/QuickFind)\n */\n quickFindFeature ? : object|boolean|string|QuickFind|QuickFindConfig\n /**\n * Makes the splitter between grid [sections](https://bryntum.com/products/scheduler/docs/api/Grid/view/SubGrid) draggable, to let users resize, and\n * collapse/expand the sections.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\n /**\n * Applicable only for Scheduler in `vertical` mode. Right click resource header cells to display a context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu)\n */\n resourceMenuFeature ? : object|boolean|string|ResourceMenu|ResourceMenuConfig\n /**\n * Feature that draws resource time ranges, shaded areas displayed behind events. These zones are similar to events in\n * that they have a start and end date but different in that they do not take part in the event layout, and they always\n * occupy full row height.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceTimeRanges)\n */\n resourceTimeRangesFeature ? : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig\n /**\n * Allow using [Ctrl/CMD + C/X] and [Ctrl/CMD + V] to copy/cut-and-paste rows. Also makes cut, copy and paste actions\n * available via the cell context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowCopyPaste)\n */\n rowCopyPasteFeature ? : object|boolean|string|RowCopyPaste|RowCopyPasteConfig\n /**\n * This feature allows editing of entire rows in a grid in a docked panel which by default slides out from the right.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowEdit)\n */\n rowEditFeature ? : object|boolean|string|RowEdit|RowEditConfig\n /**\n * Enables expanding of Grid rows by either row click or double click, or by adding a separate Grid column which renders\n * a button that expands or collapses the row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowExpander)\n */\n rowExpanderFeature ? : object|boolean|string|RowExpander|RowExpanderConfig\n /**\n * This feature implements support for project transactions and used by default in Gantt. For general RowReorder feature\n * documentation see [RowReorder](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowReorder).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/RowReorder)\n */\n rowReorderFeature ? : object|boolean|string|RowReorder|RowReorderConfig\n /**\n * Enables user to change row height by dragging the bottom row border. After a resize operation, the [rowHeight](https://bryntum.com/products/scheduler/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|GridRowResize|GridRowResizeConfig\n /**\n * Feature that displays a tooltip containing the time at the mouse position when hovering empty parts of the schedule.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ScheduleTooltip)\n */\n scheduleTooltipFeature ? : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Search)\n */\n searchFeature ? : object|boolean|string|Search|SearchConfig\n /**\n * Allows sorting of grid by clicking (or tapping) headers, also displays which columns grid is sorted by (numbered if\n * using multisort). Use modifier keys for multisorting: [Ctrl/CMD + click] to add sorter, [Ctrl/CMD + Alt + click] to remove sorter.\n * The actual sorting is done by the store, see [Store.sort()](https://bryntum.com/products/scheduler/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Scheduler into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/StickyCells)\n */\n stickyCellsFeature ? : object|boolean|string|StickyCells|StickyCellsConfig\n /**\n * Stripes rows by adding alternating CSS classes to all row elements (`b-even` and `b-odd`).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * A special version of the Grid Summary feature. This feature displays a summary row in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Adds scheduler specific menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu)\n */\n timeAxisHeaderMenuFeature ? : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig\n /**\n * Feature that renders global ranges of time in the timeline. Use this feature to visualize a `range` like a 1 hr lunch\n * or some important point in time (a `line`, i.e. a range with 0 duration). This feature can also show a current time\n * indicator if you set [showCurrentTimeLine](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-showCurrentTimeLine) to true. To style the rendered elements, use the\n * [cls](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/TimeSpan#field-cls) field of the `TimeSpan` class.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges)\n */\n timeRangesFeature ? : object|boolean|string|TimeRanges|TimeRangesConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/scheduler/docs/api/Grid/column/TreeColumn) among grids columns. That column will have its renderer replaced with a\n * tree renderer that adds padding and icon to give the appearance of a tree. The original renderer is preserved and\n * also called.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/Tree)\n */\n treeFeature ? : object|boolean|string|Tree|TreeConfig\n /**\n * A feature that allows transforming a flat dataset (or the leaves of a hierarchical) into a tree by specifying a\n * record field per parent level. Parents are generated based on each leaf's value for those fields.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n\n}\n\n@Component({\n selector : 'bryntum-timeline-histogram',\n template : ''\n})\nexport class BryntumTimelineHistogramComponent implements OnInit, OnDestroy {\n\n public static instanceClass = TimelineHistogram;\n\n public static instanceName = 'TimelineHistogram';\n\n private static bryntumEvents: string[] = [\n 'onBeforeAssignmentDelete',\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\n 'onBeforeCopy',\n 'onBeforeCSVExport',\n 'onBeforeDestroy',\n 'onBeforeEventDelete',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforeHistogramDataCacheSet',\n 'onBeforePan',\n 'onBeforePaste',\n 'onBeforePdfExport',\n 'onBeforePresetChange',\n 'onBeforeRenderHistogramRow',\n 'onBeforeRenderRecordHistogram',\n 'onBeforeRenderRow',\n 'onBeforeRenderRows',\n 'onBeforeRowCollapse',\n 'onBeforeRowExpand',\n 'onBeforeSelectionChange',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeStartRowEdit',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onBeforeToggleGroup',\n 'onBeforeToggleNode',\n 'onCancelCellEdit',\n 'onCatchAll',\n 'onCellClick',\n 'onCellContextMenu',\n 'onCellDblClick',\n 'onCellMenuBeforeShow',\n 'onCellMenuItem',\n 'onCellMenuShow',\n 'onCellMenuToggleItem',\n 'onCellMouseEnter',\n 'onCellMouseLeave',\n 'onCellMouseOut',\n 'onCellMouseOver',\n 'onCollapse',\n 'onCollapseNode',\n 'onColumnDrag',\n 'onColumnDragStart',\n 'onColumnDrop',\n 'onColumnResize',\n 'onColumnResizeStart',\n 'onContextMenuItem',\n 'onContextMenuToggleItem',\n 'onCopy',\n 'onCurrentTimelineUpdate',\n 'onDataChange',\n 'onDateRangeChange',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onDragSelecting',\n 'onElementCreated',\n 'onExpand',\n 'onExpandNode',\n 'onFileDrop',\n 'onFillHandleBeforeDragFinalize',\n 'onFillHandleDrag',\n 'onFillHandleDragAbort',\n 'onFillHandleDragEnd',\n 'onFillHandleDragStart',\n 'onFinishCellEdit',\n 'onFinishRowEdit',\n 'onFocusIn',\n 'onFocusOut',\n 'onGridRowBeforeDragStart',\n 'onGridRowBeforeDropFinalize',\n 'onGridRowDrag',\n 'onGridRowDragAbort',\n 'onGridRowDragStart',\n 'onGridRowDrop',\n 'onHeaderClick',\n 'onHeaderMenuBeforeShow',\n 'onHeaderMenuItem',\n 'onHeaderMenuShow',\n 'onHeaderMenuToggleItem',\n 'onHide',\n 'onHistogramDataCacheSet',\n 'onLockRows',\n 'onMouseOut',\n 'onMouseOver',\n 'onNoZoomChange',\n 'onPaint',\n 'onPaste',\n 'onPdfExport',\n 'onPresetChange',\n 'onReadOnly',\n 'onRecompose',\n 'onRenderRow',\n 'onRenderRows',\n 'onResize',\n 'onResourceMenuBeforeShow',\n 'onResourceMenuItem',\n 'onResourceMenuShow',\n 'onResourceMenuToggleItem',\n 'onResourceTimeRangeClick',\n 'onResourceTimeRangeContextMenu',\n 'onResourceTimeRangeDblClick',\n 'onResourceTimeRangeMouseDown',\n 'onResourceTimeRangeMouseOut',\n 'onResourceTimeRangeMouseOver',\n 'onResourceTimeRangeMouseUp',\n 'onResponsive',\n 'onRowCollapse',\n 'onRowExpand',\n 'onRowMouseEnter',\n 'onRowMouseLeave',\n 'onScroll',\n 'onSelectionChange',\n 'onSelectionModeChange',\n 'onShow',\n 'onSplit',\n 'onSplitterCollapseClick',\n 'onSplitterDragEnd',\n 'onSplitterDragStart',\n 'onSplitterExpandClick',\n 'onStartCellEdit',\n 'onStartRowEdit',\n 'onSubGridCollapse',\n 'onSubGridExpand',\n 'onTickSizeChange',\n 'onTimeAxisChange',\n 'onTimeAxisHeaderClick',\n 'onTimeAxisHeaderContextMenu',\n 'onTimeAxisHeaderDblClick',\n 'onTimeAxisHeaderMenuBeforeShow',\n 'onTimeAxisHeaderMenuItem',\n 'onTimeAxisHeaderMenuShow',\n 'onTimelineContextChange',\n 'onTimelineViewportResize',\n 'onTimeRangeHeaderClick',\n 'onTimeRangeHeaderContextMenu',\n 'onTimeRangeHeaderDblClick',\n 'onToggleGroup',\n 'onToggleNode',\n 'onToolClick',\n 'onUnlockRows',\n 'onUnsplit',\n 'onVisibleDateRangeChange'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'cellCopyPasteFeature',\n 'cellEditFeature',\n 'cellMenuFeature',\n 'cellTooltipFeature',\n 'chartsFeature',\n 'columnAutoWidthFeature',\n 'columnDragToolbarFeature',\n 'columnLinesFeature',\n 'columnPickerFeature',\n 'columnRenameFeature',\n 'columnReorderFeature',\n 'columnResizeFeature',\n 'excelExporterFeature',\n 'fileDropFeature',\n 'fillHandleFeature',\n 'filterFeature',\n 'filterBarFeature',\n 'groupFeature',\n 'groupSummaryFeature',\n 'headerMenuFeature',\n 'headerZoomFeature',\n 'lockRowsFeature',\n 'mergeCellsFeature',\n 'nonWorkingTimeFeature',\n 'panFeature',\n 'pdfExportFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'resourceMenuFeature',\n 'resourceTimeRangesFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'scheduleTooltipFeature',\n 'searchFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'timeAxisHeaderMenuFeature',\n 'timeRangesFeature',\n 'treeFeature',\n 'treeGroupFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumTimelineHistogramComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'aggregateDataEntry',\n 'aggregateHistogramDataForGroups',\n 'alignSelf',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'barMargin',\n 'barTooltipTemplate',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'collapsible',\n 'color',\n 'column',\n 'columnLines',\n 'columns',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'data',\n 'dataField',\n 'dataModelField',\n 'dataset',\n 'defaultRegion',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displayDateFormat',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'emptyText',\n 'enableEventAnimations',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableUndoRedoKeys',\n 'endDate',\n 'eventColor',\n 'eventStyle',\n 'extraData',\n 'fillLastColumn',\n 'fillTicks',\n 'fixedRowHeight',\n 'flex',\n 'footer',\n 'forceFit',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getBarClass',\n 'getBarDOMConfig',\n 'getBarText',\n 'getBarTextDOMConfig',\n 'getDataEntryForAggregating',\n 'getOutlineClass',\n 'getOutlineDOMConfig',\n 'getRecordData',\n 'getRowHeight',\n 'hardRefreshOnTimeAxisReconfigure',\n 'header',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideHorizontalScrollbar',\n 'hideRowHover',\n 'histogramWidget',\n 'histogramWidgetClass',\n 'hoverCls',\n 'icon',\n 'id',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'infiniteScroll',\n 'initAggregatedDataEntry',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'labelPosition',\n 'listeners',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'longPressTime',\n 'managedEventSizing',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxHeight',\n 'maxTimeAxisUnit',\n 'maxWidth',\n 'maxZoomLevel',\n 'minDate',\n 'minHeight',\n 'minWidth',\n 'minZoomLevel',\n 'monitorResize',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'presets',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceTimeRangeRenderer',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scaleColumn',\n 'scalePoints',\n 'scrollable',\n 'scrollerClass',\n 'scrollManager',\n 'selectionMode',\n 'series',\n 'showBarTip',\n 'showBarTipWhenNavigatingTimeAxis',\n 'showDirty',\n 'snap',\n 'snapRelativeToEventStartDate',\n 'span',\n 'startDate',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stateSettings',\n 'stickyHeaders',\n 'store',\n 'strips',\n 'subGridConfigs',\n 'suppressFit',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'tickSize',\n 'timeAxis',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'transition',\n 'transitionDuration',\n 'type',\n 'ui',\n 'viewPreset',\n 'visibleDate',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'width',\n 'workingTime',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'aggregateDataEntry',\n 'aggregateHistogramDataForGroups',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'ariaDescription',\n 'ariaLabel',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'barTooltipTemplate',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'collapsible',\n 'color',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'dataField',\n 'dataModelField',\n 'defaultRegion',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getBarClass',\n 'getBarDOMConfig',\n 'getBarText',\n 'getBarTextDOMConfig',\n 'getDataEntryForAggregating',\n 'getOutlineClass',\n 'getOutlineDOMConfig',\n 'getRecordData',\n 'getRowHeight',\n 'hardRefreshOnTimeAxisReconfigure',\n 'header',\n 'hideHorizontalScrollbar',\n 'histogramWidgetClass',\n 'hoverCls',\n 'icon',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'initAggregatedDataEntry',\n 'listeners',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'managedEventSizing',\n 'maskDefaults',\n 'masked',\n 'maxDate',\n 'maxTimeAxisUnit',\n 'minDate',\n 'monitorResize',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceTimeRangeRenderer',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'scaleColumn',\n 'scrollerClass',\n 'scrollManager',\n 'series',\n 'showBarTipWhenNavigatingTimeAxis',\n 'showDirty',\n 'snapRelativeToEventStartDate',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stickyHeaders',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'timeAxis',\n 'type',\n 'ui',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ];\n\n private static bryntumProps: string[] = BryntumTimelineHistogramComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'barMargin',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'data',\n 'dataset',\n 'disabled',\n 'displayDateFormat',\n 'emptyText',\n 'enableEventAnimations',\n 'enableUndoRedoKeys',\n 'endDate',\n 'eventColor',\n 'eventStyle',\n 'extraData',\n 'fillTicks',\n 'flex',\n 'focusVisible',\n 'forceFit',\n 'hasChanges',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideRowHover',\n 'histogramWidget',\n 'id',\n 'infiniteScroll',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'labelPosition',\n 'longPressTime',\n 'margin',\n 'maxHeight',\n 'maxWidth',\n 'maxZoomLevel',\n 'minHeight',\n 'minWidth',\n 'minZoomLevel',\n 'originalStore',\n 'parent',\n 'preserveScroll',\n 'presets',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'rendition',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scalePoints',\n 'scrollable',\n 'scrollLeft',\n 'scrollTop',\n 'scrollX',\n 'selectedCell',\n 'selectedCells',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'showBarTip',\n 'snap',\n 'span',\n 'startDate',\n 'state',\n 'stateSettings',\n 'store',\n 'suppressFit',\n 'tickSize',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'tools',\n 'tooltip',\n 'transition',\n 'transitionDuration',\n 'viewPreset',\n 'visibleDate',\n 'width',\n 'workingTime',\n 'zoomLevel'\n ]);\n\n private elementRef: ElementRef;\n public instance!: TimelineHistogram;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() aggregateDataEntry ! : ((aggregateDataEntry: { aggregated: object, entry: object, arrayIndex: number, entryIndex: object[] }) => object)|string;\n @Input() aggregateHistogramDataForGroups ! : boolean;\n @Input() animateFilterRemovals ! : boolean;\n @Input() animateRemovingRows ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoAdjustTimeAxis ! : boolean;\n @Input() autoHeight ! : boolean;\n @Input() barTooltipTemplate ! : (context: { datum: object, tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event, record: Model }) => string;\n @Input() bbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() bodyCls ! : string|object;\n @Input() bubbleEvents ! : object;\n @Input() bufferCoef ! : number;\n @Input() bufferThreshold ! : number;\n @Input() collapsible ! : boolean|PanelCollapserConfig|PanelCollapserOverlayConfig;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() contentElementCls ! : string|object;\n @Input() contextMenuTriggerEvent ! : 'contextmenu'|'click'|'dblclick';\n @Input() dataField ! : string;\n @Input() dataModelField ! : string;\n @Input() defaultRegion ! : string;\n @Input() destroyStore ! : boolean;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disableGridColumnIdWarning ! : boolean;\n @Input() disableGridRowModelWarning ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() drawer ! : boolean|{side?: 'start'|'left'|'end'|'right'|'top'|'bottom', size?: string|number, inline?: boolean, autoClose: { mousedown?: boolean|string, focusout?: boolean|string, mouseout?: string }, autoCloseDelay?: number};\n @Input() durationDisplayPrecision ! : number|boolean;\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() enableRecurringEvents ! : boolean|{\n defaultAction?: 'single'|'future'\n };\n @Input() enableSticky ! : boolean;\n @Input() enableTextSelection ! : boolean;\n @Input() fillLastColumn ! : boolean;\n @Input() fixedRowHeight ! : boolean;\n @Input() footer ! : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string;\n @Input() formulaProviders ! : Record<string, FormulaProviderConfig>;\n @Input() fullRowRefresh ! : boolean;\n @Input() getBarClass ! : (series: HistogramSeries, domConfig: DomConfig, datum: object, index: number, renderData: HistogramRenderData) => string;\n @Input() getBarDOMConfig ! : (series: HistogramSeries, domConfig: DomConfig, datum: object, index: number, renderData: HistogramRenderData) => object;\n @Input() getBarText ! : (datum: object, index: number, series: HistogramSeries, renderData: HistogramRenderData) => string;\n @Input() getBarTextDOMConfig ! : (domConfig: DomConfig, datum: object, index: number, series: HistogramSeries, renderData: HistogramRenderData) => object;\n @Input() getDataEntryForAggregating ! : ((getDataEntryForAggregating: { entry: object }) => object)|string;\n @Input() getOutlineClass ! : (series: HistogramSeries, data: object[], renderData: HistogramRenderData) => string;\n @Input() getOutlineDOMConfig ! : (series: HistogramSeries, domConfig: DomConfig, data: object[]) => object;\n @Input() getRecordData ! : ((getRecordData: { record: Model }, aggregationContext?: object) => object)|string;\n @Input() getRowHeight ! : (getRowHeight: { record: Model }) => number;\n @Input() hardRefreshOnTimeAxisReconfigure ! : boolean;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() histogramWidgetClass ! : Histogram;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreDomEventsWhileScrolling ! : boolean;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() initAggregatedDataEntry ! : (() => object)|string;\n @Input() listeners ! : TimelineHistogramListeners;\n @Input() loadMask ! : string|MaskConfig|null;\n @Input() loadMaskDefaults ! : MaskConfig;\n @Input() loadMaskError ! : MaskConfig|Mask|boolean;\n @Input() localizable ! : boolean;\n @Input() managedEventSizing ! : boolean;\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxDate ! : Date|string;\n @Input() maxTimeAxisUnit ! : DurationUnit;\n @Input() minDate ! : Date|string;\n @Input() monitorResize ! : boolean;\n @Input() owner ! : Widget|any;\n @Input() partner ! : TimelineBase;\n @Input() plugins ! : Function[];\n @Input() preserveFocusOnDatasetChange ! : boolean;\n @Input() preserveScrollOnDatasetChange ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() resizable ! : boolean|{\n minWidth?: number\n maxWidth?: number\n minHeight?: number\n maxHeight?: number\n handles?: object\n };\n @Input() resizeToFitIncludesHeader ! : boolean;\n @Input() resourceTimeRangeRenderer ! : (detail: { resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, renderData: object }) => string|DomConfig|DomConfig[];\n @Input() responsiveLevels ! : Record<string, number|string|ResponsiveLevelConfig>;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scaleColumn ! : ScaleColumnConfig;\n @Input() scrollerClass ! : typeof Scroller;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() series ! : Record<string, HistogramSeries>;\n @Input() showBarTipWhenNavigatingTimeAxis ! : boolean;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() snapRelativeToEventStartDate ! : boolean;\n @Input() stateful ! : boolean|object|string[];\n @Input() statefulEvents ! : object|string[];\n @Input() stateId ! : string;\n @Input() stateProvider ! : StateProvider;\n @Input() stickyHeaders ! : boolean;\n @Input() strips ! : Record<string, SchedulerContainerItemConfig>;\n @Input() subGridConfigs ! : Record<string, SubGridConfig>;\n @Input() syncMask ! : string|MaskConfig|null;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tbar ! : (SchedulerContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() timeAxis ! : TimeAxisConfig|TimeAxis;\n @Input() type ! : 'timelinehistogram';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\n @Input() visibleZoomFactor ! : number;\n @Input() weekStartDay ! : number;\n @Input() weight ! : number;\n @Input() zoomKeepsOriginalTimespan ! : boolean;\n @Input() zoomOnMouseWheel ! : boolean;\n @Input() zoomOnTimeAxisDoubleClick ! : boolean;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() barMargin ! : number;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cellEllipsis ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsed ! : boolean;\n @Input() column ! : number;\n @Input() columnLines ! : boolean;\n @Input() columns ! : ColumnStore|SchedulerColumnConfig[]|ColumnStoreConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() displayDateFormat ! : string;\n @Input() emptyText ! : string|EmptyTextDomConfig;\n @Input() enableEventAnimations ! : boolean;\n @Input() enableUndoRedoKeys ! : boolean;\n @Input() endDate ! : Date|string;\n @Input() eventColor ! : EventColor;\n @Input() eventStyle ! : 'tonal'|'filled'|'bordered'|'traced'|'outlined'|'indented'|'line'|'dashed'|'minimal'|'rounded'|'calendar'|'interday'|'gantt'|null;\n @Input() extraData ! : any;\n @Input() fillTicks ! : boolean;\n @Input() flex ! : number|string;\n @Input() forceFit ! : boolean;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() hideFooters ! : boolean;\n @Input() hideHeaders ! : boolean;\n @Input() hideRowHover ! : boolean;\n @Input() histogramWidget ! : Histogram|HistogramConfig;\n @Input() id ! : string;\n @Input() infiniteScroll ! : boolean;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() longPressTime ! : number;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maxWidth ! : string|number;\n @Input() maxZoomLevel ! : number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() minZoomLevel ! : number;\n @Input() preserveScroll ! : PreserveScrollOptions|boolean;\n @Input() presets ! : PresetStore|ViewPresetConfig[];\n @Input() readOnly ! : boolean;\n @Input() recurrenceConfirmationPopup ! : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scalePoints ! : ScalePoint[];\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() showBarTip ! : boolean|TooltipConfig;\n @Input() snap ! : boolean;\n @Input() span ! : number;\n @Input() startDate ! : Date|string;\n @Input() stateSettings ! : {\n restoreUnconfiguredColumns?: boolean\n };\n @Input() store ! : Store|StoreConfig|AjaxStore|AjaxStoreConfig;\n @Input() suppressFit ! : boolean;\n @Input() tickSize ! : number;\n @Input() timeResolution ! : {\n increment?: number\n unit?: DurationUnit\n }|number;\n @Input() timeZone ! : string|number;\n @Input() title ! : string;\n @Input() tools ! : Record<string, Tool|ToolConfig>|null|Record<string, Tool>|Record<string, ToolConfig>;\n @Input() transition ! : {\n insertRecord?: boolean\n removeRecord?: boolean\n toggleColumn?: boolean\n expandCollapseColumn?: boolean\n toggleRegion?: boolean\n toggleTreeNode?: boolean\n toggleGroup?: boolean\n filterRemoval?: boolean\n };\n @Input() transitionDuration ! : number;\n @Input() viewPreset ! : ViewPreset|ViewPresetConfig|string;\n @Input() visibleDate ! : object|Date|VisibleDate;\n @Input() width ! : number|string;\n @Input() workingTime ! : {\n fromDay?: number\n toDay?: number\n fromHour?: number\n toHour?: number\n };\n\n // Properties only\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() originalStore ! : Store;\n @Input() parent ! : Widget;\n @Input() scrollLeft ! : number;\n @Input() scrollTop ! : number;\n @Input() scrollX ! : number;\n @Input() selectedCell ! : GridLocation|GridLocationConfig;\n @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];\n @Input() selectedRecord ! : Model;\n @Input() selectedRecords ! : Model[]|number[];\n @Input() selectedRows ! : Model[]|number[];\n @Input() state ! : TimelineStateInfo;\n @Input() tooltip ! : string|TooltipConfig;\n @Input() zoomLevel ! : number;\n\n // Features\n @Input() aiFilterFeature ! : object|boolean|string|AIFilter|AIFilterConfig;\n @Input() cellCopyPasteFeature ! : object|boolean|string|CellCopyPaste|CellCopyPasteConfig;\n @Input() cellEditFeature ! : object|boolean|string|CellEdit|CellEditConfig;\n @Input() cellMenuFeature ! : object|boolean|string|CellMenu|CellMenuConfig;\n @Input() cellTooltipFeature ! : object|boolean|string|CellTooltip|CellTooltipConfig;\n @Input() chartsFeature ! : object|boolean|string|Charts|ChartsConfig;\n @Input() columnAutoWidthFeature ! : object|boolean|string|ColumnAutoWidth|ColumnAutoWidthConfig;\n @Input() columnDragToolbarFeature ! : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig;\n @Input() columnLinesFeature ! : object|boolean|string|ColumnLines|ColumnLinesConfig;\n @Input() columnPickerFeature ! : object|boolean|string|ColumnPicker|ColumnPickerConfig;\n @Input() columnRenameFeature ! : object|boolean|string|ColumnRename|ColumnRenameConfig;\n @Input() columnReorderFeature ! : object|boolean|string|ColumnReorder|ColumnReorderConfig;\n @Input() columnResizeFeature ! : object|boolean|string|ColumnResize|ColumnResizeConfig;\n @Input() excelExporterFeature ! : object|boolean|string|GridExcelExporter|GridExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() headerZoomFeature ! : object|boolean|string|HeaderZoom|HeaderZoomConfig;\n @Input() lockRowsFeature ! : object|boolean|string|GridLockRows|GridLockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() nonWorkingTimeFeature ! : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig;\n @Input() panFeature ! : object|boolean|string|Pan|PanConfig;\n @Input() pdfExportFeature ! : object|boolean|string|GridPdfExport|GridPdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|GridPrint|GridPrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() resourceMenuFeature ! : object|boolean|string|ResourceMenu|ResourceMenuConfig;\n @Input() resourceTimeRangesFeature ! : object|boolean|string|ResourceTimeRanges|ResourceTimeRangesConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|GridRowResize|GridRowResizeConfig;\n @Input() scheduleTooltipFeature ! : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() timeAxisHeaderMenuFeature ! : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig;\n @Input() timeRangesFeature ! : object|boolean|string|TimeRanges|TimeRangesConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\n\n // Events emitters\n /**\n * Fires before an assignment is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or\n * by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which\n * case records should be \"manually\" removed after confirmation:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeAssignmentDelete: any = new EventEmitter<((event: { source: Scheduler, assignmentRecords: AssignmentModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is canceled, return `false` to prevent cancellation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n */\n @Output() onBeforeCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the row editing is canceled, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeCancelRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCancelRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeCellEditStart: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before deleting a range of selected cell values by pressing `Backspace` or `Del`\n * buttons while [autoEdit](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {(Grid.util.GridLocation|Core.data.Model)[]} event.gridSelection An array of cell selectors or records that will have their values deleted (the records themselves will not get deleted, only visible column values).\n */\n @Output() onBeforeCellRangeDelete: any = new EventEmitter<((event: { source: Grid, gridSelection: (GridLocation|Model)[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires for each selected record on the owning Grid before editing a range of selected cell values\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Current selected record from the range\n * @param {string} event.field The field being changed\n * @param {any} event.value The value being set\n */\n @Output() onBeforeCellRangeEdit: any = new EventEmitter<((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onBeforeColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired when a column is dropped, and you can return false from a listener to abort the operation.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onBeforeColumnDropFinalize: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired prior to starting a column resize gesture. The resize is canceled if a listener returns\n * `false`.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onBeforeColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a copy action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.data The string data about to be copied or cut\n * @param {boolean} event.isCut `true` if this is a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other beforeCopy events\n */\n @Output() onBeforeCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], data: string, isCut: boolean, entityName: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before CSV export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {Grid.column.Column[]} event.columns An array of columns to export\n * @param {Core.data.Model[]} event.rows An array of records to export\n * @param {string} event.lineDelimiter The CSV delimiter to separate lines\n * @param {string} event.columnDelimiter The CSV delimiter to separate values on one line\n */\n @Output() onBeforeCSVExport: any = new EventEmitter<((event: { config: ExportConfig, columns: Column[], rows: Model[], lineDelimiter: string, columnDelimiter: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires before an event is removed. Can be triggered by user pressing [DELETE] or [BACKSPACE] or by the\n * event editor. Return `false` to immediately veto the removal (or a `Promise` yielding `true` or `false`\n * for async vetoing).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeEventDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance\n * @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted\n * @param {object} event.context Additional removal context:\n * @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.\n * @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.\n */\n @Output() onBeforeEventDelete: any = new EventEmitter<((event: { source: Scheduler|any, eventRecords: EventModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before Excel export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {ExportConfig} event.config Export config\n * @param {XLSColumn[]} event.columns An array of columns to export\n * @param {any[][]} event.rows An array of records to export\n */\n @Output() onBeforeExcelExport: any = new EventEmitter<((event: { config: ExportConfig, columns: XLSColumn[], rows: any[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before dragging of the FillHandle starts, return `false` to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onBeforeFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before the cell editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeFinishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before the component stores a record's histogram data into the cache.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeHistogramDataCacheSet)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineHistogram} event.source The component instance\n * @param {Core.data.Model} event.record Record the histogram data of which is ready.\n * @param {object} event.data The record histogram data.\n */\n @Output() onBeforeHistogramDataCacheSet: any = new EventEmitter<((event: { source: TimelineHistogram, record: Model, data: object }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before pan starts. Return `false` to prevent the operation.\n * @param {object} event Event object\n * @param {Event} event.event The native browser DOM event\n */\n @Output() onBeforePan: any = new EventEmitter<((event: { event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before a paste action is performed, return `false` to prevent the action\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData about to be pasted\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other beforePaste events\n * @param {string} event.text The raw text from clipboard\n */\n @Output() onBeforePaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, targetCell: GridLocation, entityName: string, text: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before export started. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {object} event.config Export config\n */\n @Output() onBeforePdfExport: any = new EventEmitter<((event: { config: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) is changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onBeforePresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before the component renders a row.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeRenderHistogramRow)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineHistogram} event.source The component instance\n * @param {Core.data.Model} event.record Record the histogram data of which is ready.\n * @param {HistogramConfig} event.histogramConfig Configuration object that will be applied to `histogramWidget`.\n * @param {Core.widget.graph.Histogram} event.histogramWidget The underlying widget that is used to render a chart.\n */\n @Output() onBeforeRenderHistogramRow: any = new EventEmitter<((event: { source: TimelineHistogram, record: Model, histogramConfig: HistogramConfig, histogramWidget: Histogram }) => void)|string>();\n /**\n * Fires before the component renders a histogram in a cell.\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineHistogram} event.source The component instance\n * @param {Core.data.Model} event.record Record the histogram data of which is ready.\n * @param {HistogramConfig} event.histogramConfig Configuration object that will be applied to `histogramWidget`.\n * @param {Core.widget.graph.Histogram} event.histogramWidget The underlying widget that is used to render a chart.\n */\n @Output() onBeforeRenderRecordHistogram: any = new EventEmitter<((event: { source: TimelineHistogram, record: Model, histogramConfig: HistogramConfig, histogramWidget: Histogram }) => void)|string>();\n /**\n * Fires before a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row about to be rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onBeforeRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows are about to be rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onBeforeRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * This event fires before row collapse is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeRowCollapse)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowCollapse: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires before row expand is started.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeRowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onBeforeRowExpand: any = new EventEmitter<((event: { record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before the selection changes. Returning `false` from a listener prevents the change\n * @param {object} event Event object\n * @param {string} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records to be deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records to be selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the current selection, before applying `selected` and `deselected`\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells to be deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells to be selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the current selection, before applying `selectedCells` and `deselectedCells`\n */\n @Output() onBeforeSelectionChange: any = new EventEmitter<((event: { action: string, mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid before editing starts, return `false` to prevent editing\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onBeforeStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is applied to the source. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {GridStateInfo} event.state State object config\n */\n @Output() onBeforeStateApply: any = new EventEmitter<((event: { state: GridStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before state is saved by the StateProvider. Allows editing the state object or preventing the operation.\n * @param {object} event Event object\n * @param {GridStateInfo} event.state State object config\n */\n @Output() onBeforeStateSave: any = new EventEmitter<((event: { state: GridStateInfo }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a group is going to be expanded or collapsed using the UI.\n * Returning `false` from a listener prevents the operation\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {Event} event.domEvent The user interaction event (eg a `click` event) if the toggle request was instigated by user interaction.\n */\n @Output() onBeforeToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onBeforeToggleNode: any = new EventEmitter<((event: { source: Grid, record: Model, collapse: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid when editing is cancelled\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation} event.editorContext Editing context\n * @param {Event} event.event Included if the cancellation was triggered by a DOM event\n */\n @Output() onCancelCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: GridLocation, event: Event }) => void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when user clicks in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user activates contextmenu in a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellContextMenu: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user double clicks a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellDblClick: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * This event fires on the owning grid before the context menu is shown for a cell.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-cellMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning grid when an item is selected in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid after the context menu is shown for a cell.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n */\n @Output() onCellMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, record: Model }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the cell context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {Core.data.Model} event.record Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onCellMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, record: Model, checked: boolean }) => void)|string>();\n /**\n * Fired when the mouse enters a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered cell\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the cell that the mouse left\n * @param {Grid.column.Column} event.column The column representing the cell that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a user moves the mouse out of a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOut: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when user moves the mouse over a grid cell\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid The grid instance\n * @param {Core.data.Model} event.record The record representing the row\n * @param {Grid.column.Column} event.column The column to which the cell belongs\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {HTMLElement} event.target The target element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onCellMouseOver: any = new EventEmitter<((event: { grid: Grid, record: Model, column: Column, cellElement: HTMLElement, target: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fires when a Panel is collapsed using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onCollapse: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired before a parent node record is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been collapsed.\n */\n @Output() onCollapseNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object\n * to indicate whether the drop position is valid or not.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted (if not last).\n * @param {Event} event.event The browser event.\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to `true` or `false` to indicate whether the drop position is valid.\n */\n @Output() onColumnDrag: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, event: Event, context: { valid: boolean } }) => void)|string>();\n /**\n * This event is fired when a column drag gesture has started.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Event} event.event The browser event.\n */\n @Output() onColumnDragStart: any = new EventEmitter<((event: { source: Grid, column: Column, event: Event }) => void)|string>();\n /**\n * This event is always fired after a column is dropped. The `valid` param is `true` if the operation was not\n * vetoed and the column was moved in the column store.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance.\n * @param {Grid.column.Column} event.column The dragged column.\n * @param {Grid.column.Column} event.insertBefore The column before which the dragged column will be inserted.\n * @param {Grid.column.Column} event.newParent The new parent column.\n * @param {boolean} event.valid `true` if the operation was not vetoed.\n * @param {Event} event.event The browser event.\n * @param {string} event.region The region where the column was dropped.\n */\n @Output() onColumnDrop: any = new EventEmitter<((event: { source: Grid, column: Column, insertBefore: Column, newParent: Column, valid: boolean, event: Event, region: string }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event is fired after a resize gesture is completed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The resized column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResize: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event is fired when a column resize gesture starts.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Grid.column.Column} event.column The column\n * @param {Event} event.domEvent The browser event\n */\n @Output() onColumnResizeStart: any = new EventEmitter<((event: { source: Grid, column: Column, domEvent: Event }) => void)|string>();\n /**\n * This event fires on the owning widget when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n */\n @Output() onContextMenuItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem }) => void)|string>();\n /**\n * This event fires on the owning widget when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The owning widget\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {boolean} event.checked Checked or not\n */\n @Output() onContextMenuToggleItem: any = new EventEmitter<((event: { source: Widget, menu: Menu, item: MenuItem, checked: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a copy action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {Grid.util.GridLocation[]} event.cells The cells about to be copied or cut\n * @param {string} event.copiedDataString The concatenated data string that was copied or cut\n * @param {boolean} event.isCut `true` if this was a cut action\n * @param {string} event.entityName 'cell' to distinguish this event from other copy events\n */\n @Output() onCopy: any = new EventEmitter<((event: { source: Grid, cells: GridLocation[], copiedDataString: string, isCut: boolean, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Scheduler/Gantt when the line indicating the current time is updated (see [currentTimeLineUpdateInterval](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeRanges#config-currentTimeLineUpdateInterval)).\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Date} event.date The current date\n */\n @Output() onCurrentTimelineUpdate: any = new EventEmitter<((event: { source: Scheduler, date: Date }) => void)|string>();\n /**\n * Fired when data in the store changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-dataChange)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owning grid\n * @param {Core.data.Store} event.store The originating store\n * @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`\n * @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)\n * @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`\n * @param {object} event.changes Passed for the `'update'` action, info on which record fields changed\n */\n @Output() onDataChange: any = new EventEmitter<((event: { source: Grid, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string>();\n /**\n * Fired when the range of dates encapsulated by the UI changes. This will be when\n * moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen\n * when zooming, or changing [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-viewPreset).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-dateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source This Scheduler/Gantt instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onDateRangeChange: any = new EventEmitter<((event: { source: TimelineBase, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Fires while drag selecting. UI will update with current range, but the cells will not be selected until\n * mouse up. This event can be listened for to perform actions while drag selecting.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source\n * @param {GridLocationConfig[],Grid.util.GridLocation[]} event.selectedCells The cells that is currently being dragged over\n * @param {Core.data.Model[]} event.selectedRecords The records that is currently being dragged over\n */\n @Output() onDragSelecting: any = new EventEmitter<((event: { source: Grid, selectedCells: GridLocationConfig[]|GridLocation[], selectedRecords: Model[] }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-collapsible) setting.\n * @param {object} event Event object\n * @param {Core.widget.Panel} event.source This Panel.\n */\n @Output() onExpand: any = new EventEmitter<((event: { source: Panel }) => void)|string>();\n /**\n * Fired after a parent node record is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Core.data.Model} event.record The record which has been expanded.\n */\n @Output() onExpandNode: any = new EventEmitter<((event: { source: Grid, record: Model }) => void)|string>();\n /**\n * Fired when a file is dropped on the widget element\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The owning Grid instance\n * @param {DataTransferItem} event.file The dropped file descriptor\n * @param {DragEvent} event.domEvent The native DragEvent\n */\n @Output() onFileDrop: any = new EventEmitter<((event: { source: Grid, file: DataTransferItem, domEvent: DragEvent }) => void)|string>();\n /**\n * Fired before the FillHandle dragging is finalized and values are applied to cells, return `false` to prevent the\n * drag operation from applying data changes.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleBeforeDragFinalize: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while dragging the FillHandle.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDrag: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when a FillHandle drag operation is aborted.\n */\n @Output() onFillHandleDragAbort: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired after a FillHandle drag operation.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.from The from cell\n * @param {Grid.util.GridLocation} event.to The to cell\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragEnd: any = new EventEmitter<((event: { from: GridLocation, to: GridLocation, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging of the FillHandle starts.\n * @param {object} event Event object\n * @param {Grid.util.GridLocation} event.cell Information about the column / record\n * @param {MouseEvent} event.domEvent The raw DOM event\n */\n @Output() onFillHandleDragStart: any = new EventEmitter<((event: { cell: GridLocation, domEvent: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when cell editing is finished\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onFinishCellEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid before the row editing is finished, return false to signal that the value is invalid and editing should not be finalized.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-finishRowEdit)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Target grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onFinishRowEdit: any = new EventEmitter<((event: { grid: Grid, editorContext: RowEditorContext }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired before dragging starts, return false to prevent the drag operation.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowBeforeDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before the row drop operation is finalized. You can return false to abort the drop operation, or a\n * Promise yielding `true` / `false` which allows for asynchronous abort (e.g. first show user a confirmation dialog).\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the `record`, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowBeforeDropFinalize: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired while the row is being dragged, in the listener function you have access to `context.insertBefore` a grid /\n * tree record, and additionally `context.parent` (a TreeNode) for trees. You can signal that the drop position is\n * valid or invalid by setting `context.valid = false;`\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid Set this to true or false to indicate whether the drop position is valid.\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrag: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a row drag operation is aborted\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDragAbort: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when dragging starts.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {MouseEvent,TouchEvent} event.event\n */\n @Output() onGridRowDragStart: any = new EventEmitter<((event: { source: GridBase, context: { records: Model[] }, event: MouseEvent|TouchEvent }) => void)|string>();\n /**\n * Fired after the row drop operation has completed, regardless of validity\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.source\n * @param {object} event.context\n * @param {boolean} event.context.valid true or false depending on whether the drop position was valid\n * @param {Core.data.Model} event.context.insertBefore The record to insert before (`null` if inserting at last position of a parent node)\n * @param {Core.data.Model} event.context.parent The parent record of the current drop position (only applicable for trees)\n * @param {Core.data.Model[]} event.context.records The dragged row records\n * @param {RecordPositionContext[]} event.context.oldPositionContext An array of objects with information about the previous tree position. Objects contain the record, and its original `parentIndex` and `parentId` values\n * @param {MouseEvent} event.event\n */\n @Output() onGridRowDrop: any = new EventEmitter<((event: { source: GridBase, context: { valid: boolean, insertBefore: Model, parent: Model, records: Model[], oldPositionContext: RecordPositionContext[] }, event: MouseEvent }) => void)|string>();\n /**\n * Fired when a grid header is clicked on.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-headerClick)\n * @param {object} event Event object\n * @param {Event} event.domEvent The triggering DOM event.\n * @param {Grid.column.Column} event.column The column clicked on.\n */\n @Output() onHeaderClick: any = new EventEmitter<((event: { domEvent: Event, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid before the context menu is shown for a header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-headerMenuBeforeShow)\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Grid when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n */\n @Output() onHeaderMenuShow: any = new EventEmitter<((event: { source: Grid, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Grid when a check item is toggled in the header context menu.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Column\n * @param {boolean} event.checked Checked or not\n */\n @Output() onHeaderMenuToggleItem: any = new EventEmitter<((event: { source: Grid, menu: Menu, item: MenuItem, column: Column, checked: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires after the component retrieves a record's histogram data and stores\n * it into the cache.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-histogramDataCacheSet)\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineHistogram} event.source The component instance\n * @param {Core.data.Model} event.record Record the histogram data of which is ready.\n * @param {object} event.data The record histogram data.\n */\n @Output() onHistogramDataCacheSet: any = new EventEmitter<((event: { source: TimelineHistogram, record: Model, data: object }) => void)|string>();\n /**\n * Fires when row locking is enabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The created clone\n */\n @Output() onLockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Mouse moved out from element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOut: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Mouse moved in over element in grid\n * @param {object} event Event object\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onMouseOver: any = new EventEmitter<((event: { event: MouseEvent }) => void)|string>();\n /**\n * Fires when the requested date range cannot fit into any zoom level higher than the current level.\n * @param {object} event Event object\n * @param {number} event.currentZoomLevel The current zoom level\n * @param {Date} event.startDate The requested start date\n * @param {Date} event.endDate The requested end date\n */\n @Output() onNoZoomChange: any = new EventEmitter<((event: { currentZoomLevel: number, startDate: Date, endDate: Date }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fires on the owning Grid after a paste action is performed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {string} event.clipboardData The clipboardData that was pasted\n * @param {Core.data.Model[]} event.modifiedRecords The records which have been modified due to the paste action\n * @param {Grid.util.GridLocation} event.targetCell The cell from which the paste will be started\n * @param {string} event.entityName 'cell' to distinguish this event from other paste events\n */\n @Output() onPaste: any = new EventEmitter<((event: { source: Grid, clipboardData: string, modifiedRecords: Model[], targetCell: GridLocation, entityName: string }) => void)|string>();\n /**\n * Fires on the owning Grid when export has finished\n * @param {object} event Event object\n * @param {Response} event.response Optional response, if received\n * @param {Error} event.error Optional error, if exception occurred\n */\n @Output() onPdfExport: any = new EventEmitter<((event: { response?: any, error?: Error }) => void)|string>();\n /**\n * Fired after the [viewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-viewPreset) has changed.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {Date} event.startDate The new start date of the timeline.\n * @param {Date} event.centerDate The new center date of the timeline.\n * @param {Date} event.endDate The new end date of the timeline.\n * @param {Scheduler.preset.ViewPreset} event.from The outgoing ViewPreset.\n * @param {Scheduler.preset.ViewPreset} event.to The ViewPreset being switched to.\n */\n @Output() onPresetChange: any = new EventEmitter<((event: { source: Scheduler, startDate: Date, centerDate: Date, endDate: Date, from: ViewPreset, to: ViewPreset }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fires after a row is rendered.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {Grid.row.Row} event.row The row that has been rendered.\n * @param {Core.data.Model} event.record The record for the row.\n * @param {number} event.recordIndex The zero-based index of the record.\n */\n @Output() onRenderRow: any = new EventEmitter<((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string>();\n /**\n * Grid rows have been rendered\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source This grid.\n */\n @Output() onRenderRows: any = new EventEmitter<((event: { source: Grid }) => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * This event fires on the owning scheduler before the context menu is shown for a resource.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/ResourceMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-resourceMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Column\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n */\n @Output() onResourceMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column, resourceRecord: ResourceModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning scheduler when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning scheduler after the context menu is shown for a resource.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Scheduler.model.ResourceModel} event.record Record\n */\n @Output() onResourceMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, record: ResourceModel }) => void)|string>();\n /**\n * This event fires on the owning grid when a check item is toggled in the context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The grid\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Record\n * @param {boolean} event.checked Checked or not\n */\n @Output() onResourceMenuToggleItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, resourceRecord: ResourceModel, checked: boolean }) => void)|string>();\n /**\n * Triggered for click on a resource time range. Only triggered if the ResourceTimeRange feature is configured with\n * `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for right-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeContextMenu: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for double-click on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeDblClick: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse down ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseDown: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse out of a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOut: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse over on a resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseOver: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouse up ona resource time range. Only triggered if the ResourceTimeRange feature is configured\n * with `enableMouseEvents: true`.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {Scheduler.feature.ResourceTimeRanges} event.feature The ResourceTimeRange feature\n * @param {Scheduler.model.ResourceTimeRangeModel} event.resourceTimeRangeRecord Resource time range record\n * @param {Scheduler.model.ResourceModel} event.resourceRecord Resource record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onResourceTimeRangeMouseUp: any = new EventEmitter<((event: { source: Scheduler, feature: ResourceTimeRanges, resourceTimeRangeRecord: ResourceTimeRangeModel, resourceRecord: ResourceModel, domEvent: MouseEvent }) => void)|string>();\n /**\n * Grid resize lead to a new responsive level being applied\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.grid Grid that was resized\n * @param {string} event.level New responsive level (small, large, etc)\n * @param {number} event.width New width in px\n * @param {string} event.oldLevel Old responsive level\n * @param {number} event.oldWidth Old width in px\n */\n @Output() onResponsive: any = new EventEmitter<((event: { grid: Grid, level: string, width: number, oldLevel: string, oldWidth: number }) => void)|string>();\n /**\n * This event fires when a row has finished collapsing.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n */\n @Output() onRowCollapse: any = new EventEmitter<((event: { record: Model }) => void)|string>();\n /**\n * This event fires when a row expand has finished expanding.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-rowExpand)\n * @param {object} event Event object\n * @param {Core.data.Model} event.record Record\n * @param {object} event.expandedElements An object with the Grid region name as property and the expanded body element as value\n * @param {Core.widget.Widget} event.widget In case of expanding a Widget, this will be a reference to the instance created by the actual expansion. If there is multiple Grid regions, use the `widgets` param instead.\n * @param {object} event.widgets In case of expanding a Widget, this will be an object with the Grid region name as property and the reference to the widget instance created by the actual expansion\n */\n @Output() onRowExpand: any = new EventEmitter<((event: { record: Model, expandedElements: object, widget: Widget, widgets: object }) => void)|string>();\n /**\n * Fired when the mouse enters a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the hovered row\n * @param {Grid.column.Column} event.column The column currently hovered\n * @param {HTMLElement} event.cellElement The cell HTML element\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseEnter: any = new EventEmitter<((event: { source: Grid, record: Model, column: Column, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the mouse leaves a row\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The grid instance\n * @param {Core.data.Model} event.record The record representing the row that the mouse left\n * @param {HTMLElement} event.cellElement The cell HTML element that the mouse left\n * @param {MouseEvent} event.event The native DOM event\n */\n @Output() onRowMouseLeave: any = new EventEmitter<((event: { source: Grid, record: Model, cellElement: HTMLElement, event: MouseEvent }) => void)|string>();\n /**\n * Grid has scrolled vertically\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance.\n * @param {number} event.scrollTop The vertical scroll position.\n */\n @Output() onScroll: any = new EventEmitter<((event: { source: Grid, scrollTop: number }) => void)|string>();\n /**\n * The selection has been changed.\n * @param {object} event Event object\n * @param {'select','deselect'} event.action `'select'`/`'deselect'`\n * @param {'row','cell'} event.mode `'row'`/`'cell'`\n * @param {Grid.view.Grid} event.source\n * @param {Core.data.Model[]} event.deselected The records deselected in this operation.\n * @param {Core.data.Model[]} event.selected The records selected in this operation.\n * @param {Core.data.Model[]} event.selection The records in the new selection.\n * @param {Grid.util.GridLocation[]} event.deselectedCells The cells deselected in this operation.\n * @param {Grid.util.GridLocation[]} event.selectedCells The cells selected in this operation.\n * @param {Grid.util.GridLocation[]} event.cellSelection The cells in the new selection.\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { action: 'select'|'deselect', mode: 'row'|'cell', source: Grid, deselected: Model[], selected: Model[], selection: Model[], deselectedCells: GridLocation[], selectedCells: GridLocation[], cellSelection: GridLocation[] }) => void)|string>();\n /**\n * The selectionMode configuration has been changed.\n * @param {object} event Event object\n * @param {object} event.selectionMode The new [selectionMode](https://bryntum.com/products/scheduler/docs/api/Grid/view/mixin/GridSelection#config-selectionMode)\n */\n @Output() onSelectionModeChange: any = new EventEmitter<((event: { selectionMode: object }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fires when splitting the Grid.\n * @param {object} event Event object\n * @param {Grid.view.GridBase[]} event.subViews The sub views created by the split\n * @param {object} event.options The options passed to the split call\n * @param {'horizontal','vertical','both'} event.options.direction The direction of the split\n * @param {Grid.column.Column} event.options.atColumn The column to split at\n * @param {Core.data.Model} event.options.atRecord The record to split at\n */\n @Output() onSplit: any = new EventEmitter<((event: { subViews: GridBase[], options: { direction: 'horizontal'|'vertical'|'both', atColumn: Column, atRecord: Model } }) => void)|string>();\n /**\n * Fired by the Grid when the collapse icon is clicked. Return `false` to prevent the default collapse action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterCollapseClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired by the Grid after a sub-grid has been resized using the splitter\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The resized subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragEnd: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when a sub-grid resize gesture starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid about to be resized\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterDragStart: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => void)|string>();\n /**\n * Fired by the Grid when the expand icon is clicked. Return `false` to prevent the default expand action,\n * if you want to implement your own behavior.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The Grid instance.\n * @param {Grid.view.SubGrid} event.subGrid The subgrid\n * @param {Event} event.domEvent The native DOM event\n */\n @Output() onSplitterExpandClick: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid, domEvent: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {CellEditorContext} event.editorContext Editing context\n */\n @Output() onStartCellEdit: any = new EventEmitter<((event: { source: Grid, editorContext: CellEditorContext }) => void)|string>();\n /**\n * Fires on the owning Grid when editing starts\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source Owner grid\n * @param {RowEditorContext} event.editorContext Editing context\n */\n @Output() onStartRowEdit: any = new EventEmitter<((event: { source: Grid, editorContext: RowEditorContext }) => void)|string>();\n /**\n * Fires after a sub grid is collapsed.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridCollapse: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Fires after a sub grid is expanded.\n * @param {object} event Event object\n * @param {Grid.view.Grid} event.source The firing Grid instance\n * @param {Grid.view.SubGrid} event.subGrid The sub grid instance\n */\n @Output() onSubGridExpand: any = new EventEmitter<((event: { source: Grid, subGrid: SubGrid }) => void)|string>();\n /**\n * Fired when the tick size changes.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-tickSizeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {number} event.tickSize The tick size in pixels\n */\n @Output() onTickSizeChange: any = new EventEmitter<((event: { source: Scheduler, tickSize: number }) => void)|string>();\n /**\n * Fired when the timeaxis has changed, for example by zooming or configuring a new time span.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler\n * @param {object} event.config Config object used to reconfigure the time axis.\n * @param {Date} event.config.startDate New start date (if supplied)\n * @param {Date} event.config.endDate New end date (if supplied)\n */\n @Output() onTimeAxisChange: any = new EventEmitter<((event: { source: Scheduler, config: { startDate: Date, endDate: Date } }) => void)|string>();\n /**\n * Fires after a click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a right click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderContextMenu: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * Fires after a double click on a time axis cell\n * @param {object} event Event object\n * @param {Scheduler.column.TimeAxisColumn,Scheduler.column.VerticalTimeAxisColumn} event.source The column object\n * @param {Date} event.startDate The start date of the header cell\n * @param {Date} event.endDate The end date of the header cell\n * @param {Event} event.event The event object\n */\n @Output() onTimeAxisHeaderDblClick: any = new EventEmitter<((event: { source: TimeAxisColumn|VerticalTimeAxisColumn, startDate: Date, endDate: Date, event: Event }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget before the context menu is shown for the time axis header.\n * Allows manipulation of the items to show in the same way as in the [processItems](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/TimeAxisHeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-timeAxisHeaderMenuBeforeShow)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuBeforeShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget when an item is selected in the header context menu.\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Core.widget.MenuItem} event.item Selected menu item\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuItem: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, item: MenuItem, column: Column }) => void)|string>();\n /**\n * This event fires on the owning Scheduler or Gantt widget after the context menu is shown for a header\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The scheduler\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Record<string, MenuItemEntry>} event.items Menu item configs\n * @param {Grid.column.Column} event.column Time axis column\n */\n @Output() onTimeAxisHeaderMenuShow: any = new EventEmitter<((event: { source: Scheduler, menu: Menu, items: Record<string, MenuItemEntry>, column: Column }) => void)|string>();\n /**\n * Fired when the pointer-activated [timelineContext](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDomEvents#property-timelineContext) has changed.\n * @param {object} event Event object\n * @param {Scheduler.util.TimelineContext} event.oldContext The tick/resource context being deactivated.\n * @param {Scheduler.util.TimelineContext} event.context The tick/resource context being activated.\n */\n @Output() onTimelineContextChange: any = new EventEmitter<((event: { oldContext: TimelineContext, context: TimelineContext }) => void)|string>();\n /**\n * Fired when the *scheduler* viewport (not the overall Scheduler element) changes size.\n * This happens when the grid changes height, or when the subgrid which encapsulates the\n * scheduler column changes width.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Scheduler\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onTimelineViewportResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a right click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderContextMenu: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when a double click happens on a time range header element\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source Scheduler instance\n * @param {Scheduler.model.TimeSpan} event.timeRangeRecord The record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTimeRangeHeaderDblClick: any = new EventEmitter<((event: { source: Scheduler, timeRangeRecord: TimeSpan, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired when one or more groups are expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord [DEPRECATED] Use `groupRecords` param instead\n * @param {Core.data.Model[]} event.groupRecords The group records being toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n * @param {boolean} event.allRecords True if this event is part of toggling all groups\n */\n @Output() onToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, groupRecords: Model[], collapse: boolean, allRecords?: boolean }) => void)|string>();\n /**\n * Fired after a parent node record toggles its collapsed state.\n * @param {object} event Event object\n * @param {Core.data.Model} event.record The record being toggled.\n * @param {boolean} event.collapse `true` if the node is being collapsed.\n */\n @Output() onToggleNode: any = new EventEmitter<((event: { record: Model, collapse: boolean }) => void)|string>();\n /**\n * A header [tool](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-tools) has been clicked.\n * @param {object} event Event object\n * @param {Core.widget.Tool} event.source This Panel.\n * @param {Core.widget.Tool} event.tool The tool which is being clicked.\n */\n @Output() onToolClick: any = new EventEmitter<((event: { source: Tool, tool: Tool }) => void)|string>();\n /**\n * Fires when row locking is disabled.\n * @param {object} event Event object\n * @param {Grid.view.GridBase} event.clone The locked clone that will be destroyed\n */\n @Output() onUnlockRows: any = new EventEmitter<((event: { clone: GridBase }) => void)|string>();\n /**\n * Fires when un-splitting the Grid.\n */\n @Output() onUnsplit: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the range of dates visible within the viewport changes. This will be when\n * scrolling along a time axis.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-visibleDateRangeChange)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source This Scheduler instance.\n * @param {object} event.old The old date range\n * @param {Date} event.old.startDate the old start date.\n * @param {Date} event.old.endDate the old end date.\n * @param {object} event.new The new date range\n * @param {Date} event.new.startDate the new start date.\n * @param {Date} event.new.endDate the new end date.\n */\n @Output() onVisibleDateRangeChange: any = new EventEmitter<((event: { source: Scheduler, old: { startDate: Date, endDate: Date }, new: { startDate: Date, endDate: Date } }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumTimelineHistogramComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n // Backwards compatibility for gridInstance, schedulerInstance etc.\n // @ts-ignore\n me[StringHelper.uncapitalize(instanceName) + 'Instance'] = me.instance;\n // \n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumTimelineHistogramComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumTimelineHistogramComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum UndoRedo\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, Container, DomConfig, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { SchedulerContainerItemConfig, SchedulerContainerLayoutConfig, ProjectModel, ProjectModelConfig, UndoRedo, UndoRedoListeners } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumUndoRedoProps = {\n // Configs\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Update assigned [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record) automatically on field changes\n */\n autoUpdateRecord ? : boolean\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-cls)\n */\n cls ? : string|object\n /**\n * Button color for the undo and redo buttons. See [color](https://bryntum.com/products/scheduler/docs/api/Core/widget/Button#config-color).\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * A [query](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which\n * focus should be directed by default.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-defaultFocus)\n * @param {Core.widget.Widget} widget Widget passed to method\n * @returns {boolean} truthy value if widget is the default one\n */\n defaultFocus ? : ((widget: Widget) => boolean)|string\n /**\n * A config object containing default settings to apply to all child widgets.\n */\n defaults ? : SchedulerContainerItemConfig\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Specify `true` to make this container hide when it has no visible children (Either empty\n * or all children hidden).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-hideWhenEmpty)\n */\n hideWhenEmpty ? : boolean\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Convenience setting to align input fields of child widgets. By default, the Field input element is\n * placed immediately following the `label`. If you prefer to have all input fields aligned to the\n * right, set this config to `'end'`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-inputFieldAlign)\n */\n inputFieldAlign ? : 'start'|'end'\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An optional CSS class to add to child items of this container.\n */\n itemCls ? : string\n /**\n * An object containing typed child widget config objects or Widgets. May also be specified\n * as an array.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-items)\n */\n items ? : Record<string, SchedulerContainerItemConfig|MenuItemEntry>|(SchedulerContainerItemConfig|MenuItemEntry|Widget)[]\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * The short name of a helper class which manages rendering and styling of child items.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-layout)\n */\n layout ? : string|SchedulerContainerLayoutConfig\n /**\n * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-layoutStyle)\n */\n layoutStyle ? : object\n /**\n * An array of [child item](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into\n * instances only when this Container is rendered, rather than eagerly at construct time.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-lazyItems)\n */\n lazyItems ? : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|Widget[]\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-listeners)\n */\n listeners ? : UndoRedoListeners\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-items)\n * config. For example, a specialized [Menu](https://bryntum.com/products/scheduler/docs/api/Core/widget/Menu) subclass may have a `namedItems` default\n * value defined like this:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-namedItems)\n */\n namedItems ? : Record<string, SchedulerContainerItemConfig>\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * The Scheduling [project](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ProjectModel)'s whose\n * transaction to track.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-project)\n */\n project ? : ProjectModel|ProjectModelConfig|object\n /**\n * Whether this widget is read-only. This is only valid if the widget is an input\n * field, <strong>or contains input fields at any depth</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * [Record](https://bryntum.com/products/scheduler/docs/api/Core/data/Model) whose values will be used to populate fields in the container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-record)\n */\n record ? : Model\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-rtl)\n */\n rtl ? : boolean\n /**\n * The Scheduling Widget (or its `id`) whose transaction to track.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-scheduler)\n */\n scheduler ? : Widget|string\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Configure as `true` to show \"0\" badge on the undo and redo buttons when they have no actions\n * left to perform. By default when there are no actions, no badge is displayed.\n */\n showZeroActionBadge ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record),\n * without falling back to `ref`.\n */\n strictRecordMapping ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * When this container is used as a tab in a TabPanel, these items are added to the\n * [TabBar](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Configure as `true` to show \"Undo\" and \"Redo\" as button texts. The buttons always have a tooltip\n * as a hint to the user as to their purpose.\n */\n text ? : boolean\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`\n * which specifies a default max-width that makes long text more readable.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-textContent)\n */\n textContent ? : boolean\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n type ? : 'undoredo'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-ui)\n */\n ui ? : string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-undo-redo',\n template : ''\n})\nexport class BryntumUndoRedoComponent implements OnInit, OnDestroy {\n\n public static instanceClass = UndoRedo;\n\n public static instanceName = 'UndoRedo';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onCatchAll',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumUndoRedoComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'extraData',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'html',\n 'htmlCls',\n 'id',\n 'ignoreParentReadOnly',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'itemCls',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'namedItems',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'project',\n 'readOnly',\n 'record',\n 'relayStoreEvents',\n 'rendition',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scheduler',\n 'scrollable',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'showZeroActionBadge',\n 'span',\n 'strictRecordMapping',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'text',\n 'textAlign',\n 'textContent',\n 'title',\n 'tooltip',\n 'type',\n 'ui',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'centered',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'htmlCls',\n 'ignoreParentReadOnly',\n 'itemCls',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'namedItems',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scheduler',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'showZeroActionBadge',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'text',\n 'textAlign',\n 'textContent',\n 'title',\n 'type',\n 'ui',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumUndoRedoComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'hasChanges',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isSettingValues',\n 'isValid',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'project',\n 'readOnly',\n 'record',\n 'rendition',\n 'rtl',\n 'scrollable',\n 'span',\n 'strictRecordMapping',\n 'tooltip',\n 'values',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: UndoRedo;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoUpdateRecord ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() defaultFocus ! : ((widget: Widget) => boolean)|string;\n @Input() defaults ! : SchedulerContainerItemConfig;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() hideWhenEmpty ! : boolean;\n @Input() htmlCls ! : string|object;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() itemCls ! : string;\n @Input() lazyItems ! : Record<string, SchedulerContainerItemConfig>|SchedulerContainerItemConfig[]|Widget[];\n @Input() listeners ! : UndoRedoListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() namedItems ! : Record<string, SchedulerContainerItemConfig>;\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scheduler ! : Widget|string;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() showZeroActionBadge ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tag ! : string;\n @Input() text ! : boolean;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() textContent ! : boolean;\n @Input() title ! : string;\n @Input() type ! : 'undoredo';\n @Input() ui ! : string|object;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : (SchedulerContainerItemConfig|MenuItemConfig|Widget)[]|Record<string, SchedulerContainerItemConfig|MenuItemConfig>|Widget[]|Record<string, SchedulerContainerItemConfig|MenuItemEntry>|(SchedulerContainerItemConfig|MenuItemEntry|Widget)[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() layout ! : Layout|string|SchedulerContainerLayoutConfig;\n @Input() layoutStyle ! : object;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() project ! : ProjectModel|ProjectModelConfig|object;\n @Input() readOnly ! : boolean;\n @Input() record ! : Model;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() span ! : number;\n @Input() strictRecordMapping ! : boolean;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isSettingValues ! : boolean;\n @Input() isValid ! : boolean;\n @Input() parent ! : Widget;\n @Input() values ! : Record<string, object>;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumUndoRedoComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumUndoRedoComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumUndoRedoComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Angular wrapper for Bryntum ViewPresetCombo\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, Combo, ComboModel, Duration, DurationConfig, Field, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { TimelineBase, ViewPresetCombo, ViewPresetComboListeners } from '@bryntum/scheduler-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumViewPresetComboProps = {\n // Configs\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*\n * `true` to show a connector arrow pointing to the align target.\n */\n anchor ? : boolean\n /**\n * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at\n * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).\n */\n appendTo ? : HTMLElement|string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject\n * into an element which will be linked using the `aria-describedby` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-ariaDescription)\n */\n ariaDescription ? : string\n /**\n * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as\n * the `aria-label` attribute.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Initial text to show in badge.\n */\n badge ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Enable caching of the last retrieved result until the timeout is reached.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-cacheLastResult)\n */\n cacheLastResult ? : number|string|Duration|DurationConfig\n /**\n * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * By default, if an event handler throws an exception, the error propagates up the stack and the\n * application state is undefined. Code which follows the event handler will *not* be executed.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Specify `false` to not clear value typed to a multiselect combo when an item is selected.\n */\n clearTextOnSelection ? : boolean\n /**\n * Set to `true` to clear this field when user empties the input element\n */\n clearWhenInputEmpty ? : boolean\n /**\n * If not added to a toolbar, provide a Scheduler, SchedulerPro or Gantt component instance to which the\n * ViewPresetCombo should be connected.\n */\n client ? : TimelineBase\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-cls)\n */\n cls ? : string|object\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-color)\n */\n color ? : string\n /**\n * Programmatic control over which column to start in when used in a grid layout.\n */\n column ? : number\n config ? : object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget\n * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,\n * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's\n * body. Such widgets are called \"edge strips\".\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-dock)\n */\n dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´\n * property which controls when a drag should start.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * User can edit text in text field (otherwise only pick from attached picker)\n */\n editable ? : boolean\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * By default, the picker is hidden on selection in single select mode, and\n * remains to allow more selections when [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * Setting this to a `Boolean` value can override that default.\n */\n hidePickerOnSelect ? : boolean\n /**\n * An optional string to display inside the input field as an overlay. This can be useful for displaying\n * a field's units.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-hint)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hint ? : string|((data: { source: Field, value: any }) => string)\n /**\n * This config is similar to [hint](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.\n * Since this can allow malicious content to be executed, be sure not to include user-entered data or to\n * encode such data (see [encodeHtml](https://bryntum.com/products/scheduler/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-hintHtml)\n * @param {object} data A data object\n * @param {Core.widget.Field} data.source A reference to the field instance\n * @param {any} data.value The current value of the field\n * @returns {string}\n */\n hintHtml ? : string|((data: { source: Field, value: any }) => string)\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Text alignment for the input field.\n */\n inputAlign ? : string\n /**\n * Sets custom attributes of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)\n */\n inputAttributes ? : Record<string, string>\n /**\n * If you need to use something else than a default `input` element, as the input element, provide the tag\n * name here. Please note that this is used for advanced usage only, for example when using WebComponents\n * (custom elements), and that the configured element must fulfil the same contract as a regular input\n * element.\n */\n inputTag ? : string\n /**\n * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any\n * triggers. If a number is specified, `px` will be used.\n */\n inputWidth ? : string|number\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertBefore ? : HTMLElement|string\n /**\n * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Label, prepended to field\n */\n label ? : string\n /**\n * CSS class name or class names to add to any configured [label](https://bryntum.com/products/scheduler/docs/api/Core/widget/mixin/Labelable#config-label)\n */\n labelCls ? : string|object\n /**\n * Label position, either 'before' the field or 'above' the field\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|null\n /**\n * The labels to add either before or after the input field.\n * Each label may have the following properties:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * CSS class to add to picker\n */\n listCls ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-listeners)\n */\n listeners ? : ViewPresetComboListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-listItemTpl)\n * @param {Core.data.Model} record The record representing the item being rendered\n * @returns {string,void}\n */\n listItemTpl ? : (record: Model|ComboModel) => string|void\n /**\n * A class translations of which are used for translating this entity.\n * This is often used when translations of an item are defined on its container class.\n * For example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-localeClass)\n */\n localeClass ? : typeof Base\n /**\n * Set to `false` to disable localization of this object.\n */\n localizable ? : boolean\n /**\n * List of properties which values should be translated automatically upon a locale applying.\n * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),\n * you could use 'localeKey' meta configuration.\n * Example:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-localizableProperties)\n */\n localizableProperties ? : string[]\n /**\n * Widget's margin. This may be configured as a single number or a `TRBL` format string.\n * numeric-only values are interpreted as pixels.\n */\n margin ? : number|string\n /**\n * This config object contains the defaults for the [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these\n * values.\n */\n maskDefaults ? : MaskConfig\n /**\n * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a\n * [Mask](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask) config object.\n */\n masked ? : boolean|string|MaskConfig\n /**\n * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n maxHeight ? : string|number\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|number\n /**\n * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)\n * is used to monitor this element for size changes caused by either style manipulation, or by CSS\n * layout.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Name of the field which is used as a key to get/set values from/to the field.\n * Used prior to [ref](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-name)\n */\n name ? : string\n /**\n * This implies that the picker will display an anchor pointer, but also means that the picker will align closer\n * to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement)\n */\n overlayAnchor ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case\n * the owner is <strong>always</strong> the encapsulating Container.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Width of picker, defaults to this combo's [pickerAlignElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-pickerAlignElement) width\n */\n pickerWidth ? : number|string\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement), but must\n * not participate in the standard layout of that widget, and must be positioned relatively to that\n * widget's [contentElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-positioned)\n */\n positioned ? : boolean\n /**\n * An array containing string [ViewPreset](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset) ids available for selection. The specified\n * presets must be [available](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#config-presets) for the\n * [client](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-client) (Scheduler, SchedulerPro or Gantt) for it to work properly. The selectable presets\n * will be arranged in the order provided here.\n */\n presets ? : any[]\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Makes the field unmodifiable by user action. The input area is not editable, and triggers\n * are unresponsive.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Predefined style to use for the field. Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-rendition)\n */\n rendition ? : 'outlined'|'filled'|string\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the\n * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-ripple)\n */\n ripple ? : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n }\n /**\n * 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`\n */\n rootElement ? : ShadowRoot|HTMLElement\n /**\n * This may be configured as `true` to make the widget's element use the `direction:rtl` style.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-rtl)\n */\n rtl ? : boolean\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-required).\n */\n showRequiredIndicator ? : string\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`\n * to the user).\n */\n skipValidation ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * A configuration for the [tab](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for\n * this widget:\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tab index of the input field or fields, or `null` for natural tab order (recommended). Setting to `0`\n * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable\n * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set\n * to the element programmatically.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-tabIndex)\n */\n tabIndex ? : number\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n type ? : 'viewpresetcombo'\n /**\n * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified\n * as a space separated string, an array of strings, or as an object in which property names with truthy\n * values are used as the class names.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-ui)\n */\n ui ? : string|object\n /**\n * As default, a preset change by the ViewPresetCombo will result in that the `startDate` will be calculated to\n * the beginning of the [mainUnit](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-mainUnit) of the\n * [viewportCenterDate](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineDateMapper#property-viewportCenterDate). If the ViewPreset has a\n * [start](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-start) configured, this will be added to the calculation. The\n * `endDate` will then be calculated by adding the ViewPreset's\n * [defaultSpan](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/ViewPreset#field-defaultSpan) to the `startDate`.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-useFixedDuration)\n */\n useFixedDuration ? : boolean\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container).\n * Higher weights go further down.\n */\n weight ? : number\n /**\n * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which\n * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases\n * this config is convenient.\n */\n width ? : string|number\n /**\n * The x position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-view-preset-combo',\n template : ''\n})\nexport class BryntumViewPresetComboComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ViewPresetCombo;\n\n public static instanceName = 'ViewPresetCombo';\n\n private static bryntumEvents: string[] = [\n 'onAction',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onClear',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onSelect',\n 'onShow',\n 'onTrigger'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumViewPresetComboComponent.bryntumFeatureNames.concat([\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'badge',\n 'bubbleEvents',\n 'cacheLastResult',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'client',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'editable',\n 'elementAttributes',\n 'extraData',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hint',\n 'hintHtml',\n 'id',\n 'ignoreParentReadOnly',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputWidth',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'pickerWidth',\n 'positioned',\n 'presets',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollAction',\n 'showAnimation',\n 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'span',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'type',\n 'ui',\n 'useFixedDuration',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'cacheLastResult',\n 'centered',\n 'clearTextOnSelection',\n 'clearWhenInputEmpty',\n 'client',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'hideAnimation',\n 'hidePickerOnSelect',\n 'hint',\n 'hintHtml',\n 'ignoreParentReadOnly',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputWidth',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listCls',\n 'listeners',\n 'listItemTpl',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'name',\n 'overlayAnchor',\n 'owner',\n 'pickerWidth',\n 'positioned',\n 'presets',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'type',\n 'ui',\n 'useFixedDuration',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumViewPresetComboComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'badge',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'disabled',\n 'editable',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'formula',\n 'height',\n 'hidden',\n 'id',\n 'input',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'multiSelect',\n 'parent',\n 'picker',\n 'placeholder',\n 'readOnly',\n 'rendition',\n 'required',\n 'rtl',\n 'showRequiredIndicator',\n 'span',\n 'tooltip',\n 'value',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: ViewPresetCombo;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() align ! : AlignSpec|string;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() bubbleEvents ! : object;\n @Input() cacheLastResult ! : number|string|Duration|DurationConfig;\n @Input() centered ! : boolean;\n @Input() clearTextOnSelection ! : boolean;\n @Input() clearWhenInputEmpty ! : boolean;\n @Input() client ! : TimelineBase;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() hidePickerOnSelect ! : boolean;\n @Input() hint ! : string|((data: { source: Field, value: any }) => string);\n @Input() hintHtml ! : string|((data: { source: Field, value: any }) => string);\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() inputAlign ! : string;\n @Input() inputAttributes ! : Record<string, string>;\n @Input() inputTag ! : string;\n @Input() inputWidth ! : string|number;\n @Input() labelCls ! : string|object;\n @Input() labelPosition ! : 'before'|'above'|null;\n @Input() labels ! : object[];\n @Input() labelWidth ! : string|number;\n @Input() listCls ! : string;\n @Input() listeners ! : ViewPresetComboListeners;\n @Input() listItemTpl ! : (record: Model|ComboModel) => string|void;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() name ! : string;\n @Input() overlayAnchor ! : boolean;\n @Input() owner ! : Widget|any;\n @Input() pickerWidth ! : number|string;\n @Input() positioned ! : boolean;\n @Input() presets ! : any[];\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabIndex ! : number;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() type ! : 'viewpresetcombo';\n @Input() ui ! : string|object;\n @Input() useFixedDuration ! : boolean;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() badge ! : string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() disabled ! : boolean|'inert';\n @Input() editable ! : boolean;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() label ! : string;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : 'outlined'|'filled'|string;\n @Input() rtl ! : boolean;\n @Input() showRequiredIndicator ! : string;\n @Input() span ! : number;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() formula ! : string;\n @Input() input ! : HTMLElement;\n @Input() multiSelect ! : boolean;\n @Input() parent ! : Widget;\n @Input() picker ! : ListConfig|List;\n @Input() placeholder ! : string;\n @Input() required ! : boolean;\n @Input() tooltip ! : string|TooltipConfig;\n @Input() value ! : object|number|string;\n\n // Events emitters\n /**\n * The default action was performed (an item in the list was selected)\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {any} event.value The [value](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-valueField) of the selected record\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onAction: any = new EventEmitter<((event: { source: Combo, value: any, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fired when this field's value changes.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onChange: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fired when this field is [cleared](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#event-clear)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n */\n @Output() onClear: any = new EventEmitter<((event: { source: Field|any }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#event-paint)\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being painted.\n * @param {boolean} event.firstPaint `true` if this is the first paint.\n */\n @Output() onPaint: any = new EventEmitter<((event: { source: Widget, firstPaint: boolean }) => void)|string>();\n /**\n * Fired when a Widget's read only state is toggled\n * @param {object} event Event object\n * @param {boolean} event.readOnly Read only or not\n */\n @Output() onReadOnly: any = new EventEmitter<((event: { readOnly: boolean }) => void)|string>();\n /**\n * This event is fired after a widget's elements have been synchronized due to a direct or indirect call\n * to [recompose](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.\n */\n @Output() onRecompose: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * An item in the list was selected\n * @param {object} event Event object\n * @param {Core.widget.Combo} event.source The combo\n * @param {Core.data.Model} event.record Selected record\n * @param {Core.data.Model[]} event.records Selected records as an array if [multiSelect](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-multiSelect) is `true`\n * @param {boolean} event.userAction `true` if the value change is due to user interaction\n */\n @Output() onSelect: any = new EventEmitter<((event: { source: Combo, record: Model, records: Model[], userAction: boolean }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User clicked one of this field's [triggers](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#property-triggers)\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {Core.widget.Widget} event.trigger The trigger activated by click or touch tap.\n */\n @Output() onTrigger: any = new EventEmitter<((event: { source: Field|any, trigger: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumViewPresetComboComponent;\n\n bryntumConfigs.filter(prop => prop in this).forEach(prop => {\n // @ts-ignore\n WrapperHelper.applyPropValue(bryntumConfig, prop, this[prop]);\n if (['features', 'config'].includes(prop)) {\n WrapperHelper.devWarningConfigProp(instanceName, prop);\n }\n });\n // @ts-ignore\n bryntumEvents.filter(event => this[event] && this[event].observers.length > 0).forEach(event => {\n const\n uncapitalize = (str: string) => str.charAt(0).toLowerCase() + str.slice(1),\n eventName = (str: string) => uncapitalize(str.slice(2));\n\n // @ts-ignore\n bryntumConfig.listeners[eventName(event)] = e => {\n // @ts-ignore\n me[event].emit(e);\n // EventEmitter does not return values in the normal way, work around it by setting `returnValue` flag\n // in Angular listeners\n return e.returnValue;\n };\n });\n\n // If component has no container specified in config then use adopt to Wrapper's element\n const\n containerParam = [\n 'adopt',\n 'appendTo',\n 'insertAfter',\n 'insertBefore'\n // @ts-ignore\n ].find(prop => bryntumConfig[prop]);\n if (!containerParam) {\n if (instanceName === 'Button' || elementRef.nativeElement.getRootNode() instanceof ShadowRoot) {\n // Button should always be <a> or <button> inside owner element\n bryntumConfig.appendTo = elementRef.nativeElement;\n }\n else {\n bryntumConfig.adopt = elementRef.nativeElement;\n }\n }\n else {\n WrapperHelper.devWarningContainer(instanceName, containerParam);\n }\n\n // @ts-ignore\n me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);\n\n }\n\n /**\n * Watch for changes\n * @param changes\n */\n ngOnChanges(changes: SimpleChanges): void {\n const\n { instance } = this,\n { instanceName } = BryntumViewPresetComboComponent;\n if (!instance) {\n return;\n }\n // Iterate over all changes\n Object.entries(changes).forEach(([prop, change]) => {\n const\n newValue = (change as SimpleChange).currentValue,\n { instance } = this,\n { bryntumConfigsOnly, bryntumProps } = BryntumViewPresetComboComponent;\n if (bryntumProps.includes(prop)) {\n WrapperHelper.applyPropValue(instance, prop, newValue, false);\n if (bryntumConfigsOnly.includes(prop)) {\n WrapperHelper.devWarningUpdateProp(instanceName, prop);\n }\n }\n });\n }\n\n /**\n * Destroy the component\n */\n ngOnDestroy(): void {\n // @ts-ignore\n if (this.instance && this.instance.destroy) {\n this.instance.destroy();\n }\n }\n}\n","/**\n* Angular Bryntum Scheduler Shared module\n*/\nimport { NgModule } from '@angular/core';\n\nimport { BryntumEventColorFieldComponent } from './bryntum-event-color-field.component';\nimport { BryntumProjectComboComponent } from './bryntum-project-combo.component';\nimport { BryntumSchedulerProjectModelComponent } from './bryntum-scheduler-project-model.component';\nimport { BryntumResourceComboComponent } from './bryntum-resource-combo.component';\nimport { BryntumResourceFilterComponent } from './bryntum-resource-filter.component';\nimport { BryntumSchedulerComponent } from './bryntum-scheduler.component';\nimport { BryntumSchedulerBaseComponent } from './bryntum-scheduler-base.component';\nimport { BryntumSchedulerDatePickerComponent } from './bryntum-scheduler-date-picker.component';\nimport { BryntumTimelineHistogramComponent } from './bryntum-timeline-histogram.component';\nimport { BryntumUndoRedoComponent } from './bryntum-undo-redo.component';\nimport { BryntumViewPresetComboComponent } from './bryntum-view-preset-combo.component';\n\n@NgModule({\n declarations : [\n\n BryntumEventColorFieldComponent,\n BryntumProjectComboComponent,\n BryntumSchedulerProjectModelComponent,\n BryntumResourceComboComponent,\n BryntumResourceFilterComponent,\n BryntumSchedulerComponent,\n BryntumSchedulerBaseComponent,\n BryntumSchedulerDatePickerComponent,\n BryntumTimelineHistogramComponent,\n BryntumUndoRedoComponent,\n BryntumViewPresetComboComponent\n ],\n imports : [],\n exports : [\n\n BryntumEventColorFieldComponent,\n BryntumProjectComboComponent,\n BryntumSchedulerProjectModelComponent,\n BryntumResourceComboComponent,\n BryntumResourceFilterComponent,\n BryntumSchedulerComponent,\n BryntumSchedulerBaseComponent,\n BryntumSchedulerDatePickerComponent,\n BryntumTimelineHistogramComponent,\n BryntumUndoRedoComponent,\n BryntumViewPresetComboComponent\n ]\n})\nexport class BryntumSchedulerModule { }\n","/*\n * Public API Surface of Bryntum Scheduler\n */\nexport * from './lib/scheduler.module';\n\nexport * from './lib/bryntum-event-color-field.component';\nexport * from './lib/bryntum-project-combo.component';\nexport * from './lib/bryntum-scheduler-project-model.component';\nexport * from './lib/bryntum-resource-combo.component';\nexport * from './lib/bryntum-resource-filter.component';\nexport * from './lib/bryntum-scheduler.component';\nexport * from './lib/bryntum-scheduler-base.component';\nexport * from './lib/bryntum-scheduler-date-picker.component';\nexport * from './lib/bryntum-timeline-histogram.component';\nexport * from './lib/bryntum-undo-redo.component';\nexport * from './lib/bryntum-view-preset-combo.component'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Widget"],"mappings":"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"}
|