@bryntum/gantt-angular-thin 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +44 -0
  2. package/bryntum-gantt-angular-thin.d.ts +5 -0
  3. package/bundles/bryntum-gantt-angular-thin.umd.js +14832 -0
  4. package/bundles/bryntum-gantt-angular-thin.umd.js.map +1 -0
  5. package/esm2015/bryntum-gantt-angular-thin.js +5 -0
  6. package/esm2015/lib/bryntum-assignment-field.component.js +941 -0
  7. package/esm2015/lib/bryntum-assignment-grid.component.js +2111 -0
  8. package/esm2015/lib/bryntum-calendar-picker.component.js +933 -0
  9. package/esm2015/lib/bryntum-dependency-field.component.js +961 -0
  10. package/esm2015/lib/bryntum-gantt-base.component.js +4219 -0
  11. package/esm2015/lib/bryntum-gantt-project-model.component.js +923 -0
  12. package/esm2015/lib/bryntum-gantt.component.js +4223 -0
  13. package/esm2015/lib/gantt.module.js +54 -0
  14. package/esm2015/lib/wrapper.helper.js +74 -0
  15. package/esm2015/public-api.js +12 -0
  16. package/fesm2015/bryntum-gantt-angular-thin.js +14387 -0
  17. package/fesm2015/bryntum-gantt-angular-thin.js.map +1 -0
  18. package/lib/bryntum-assignment-field.component.d.ts +1225 -0
  19. package/lib/bryntum-assignment-grid.component.d.ts +2292 -0
  20. package/lib/bryntum-calendar-picker.component.d.ts +1200 -0
  21. package/lib/bryntum-dependency-field.component.d.ts +1241 -0
  22. package/lib/bryntum-gantt-base.component.d.ts +4468 -0
  23. package/lib/bryntum-gantt-project-model.component.d.ts +1106 -0
  24. package/lib/bryntum-gantt.component.d.ts +4470 -0
  25. package/lib/gantt.module.d.ts +13 -0
  26. package/lib/wrapper.helper.d.ts +26 -0
  27. package/package.json +33 -0
  28. package/public-api.d.ts +8 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bryntum-gantt-angular-thin.js","sources":["../../component/src/lib/wrapper.helper.ts","../../component/src/lib/bryntum-assignment-field.component.ts","../../component/src/lib/bryntum-assignment-grid.component.ts","../../component/src/lib/bryntum-calendar-picker.component.ts","../../component/src/lib/bryntum-dependency-field.component.ts","../../component/src/lib/bryntum-gantt.component.ts","../../component/src/lib/bryntum-gantt-base.component.ts","../../component/src/lib/bryntum-gantt-project-model.component.ts","../../component/src/lib/gantt.module.ts","../../component/src/public-api.ts","../../component/src/bryntum-gantt-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/gantt/docs/guide/Gantt/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 AssignmentField\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 { AssignmentField, AssignmentFieldListeners, AssignmentGrid, AssignmentGridConfig, AssignmentModel, GanttContainerItemConfig, TaskModel } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumAssignmentFieldProps = {\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/gantt/docs/api/Gantt/widget/AssignmentField#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/gantt/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#config-container)\n */\n container ? : Record<string, GanttContainerItemConfig>|GanttContainerItemConfig[]|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/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/gantt/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/gantt/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/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `&lt;label&gt;` 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/gantt/docs/api/Gantt/widget/AssignmentField#config-listeners)\n */\n listeners ? : AssignmentFieldListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#config-owner)\n */\n owner ? : Widget|any\n /**\n * A config object used to configure the [assignment grid](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid)\n * used to select resources to assign.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-picker)\n */\n picker ? : AssignmentGridConfig|AssignmentGrid\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 field's [pickerAlignElement](https://bryntum.com/products/gantt/docs/api/Core/widget/PickerField#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/gantt/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/gantt/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#config-primaryFilter)\n */\n primaryFilter ? : CollectionFilterConfig\n /**\n * Event to load resource assignments for.\n * Either event or [store](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-store) should be given.\n */\n projectEvent ? : TaskModel\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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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 * Assignment manipulation store to use, or it's configuration object.\n * Either store or [projectEvent](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-projectEvent) should be given\n */\n store ? : Store|StoreConfig\n /**\n * A configuration for the [tab](https://bryntum.com/products/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * A template function used to generate the tooltip contents when hovering this field. Defaults to\n * showing \"[Name] [%]\"\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-tooltipTemplate)\n * @param {object} data Tooltip data\n * @param {Gantt.model.TaskModel} data.taskRecord The taskRecord the assignments are associated with\n * @param {Gantt.model.AssignmentModel} data.assignmentRecords The field value represented as assignment records\n * @returns {string,DomConfig,DomConfig[]}\n */\n tooltipTemplate ? : (data: { taskRecord: TaskModel, assignmentRecords: AssignmentModel }) => string|DomConfig|DomConfig[]\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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Gantt/widget/AssignmentField#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'assignmentfield'\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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-assignment-field',\n template : ''\n})\nexport class BryntumAssignmentFieldComponent implements OnInit, OnDestroy {\n\n public static instanceClass = AssignmentField;\n\n public static instanceName = 'AssignmentField';\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[] = BryntumAssignmentFieldComponent.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 'projectEvent',\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 'tooltipTemplate',\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 'projectEvent',\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 'tooltipTemplate',\n 'triggerAction',\n 'type',\n 'ui',\n 'validateFilter',\n 'validateOnInput',\n 'valueField',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumAssignmentFieldComponent.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!: AssignmentField;\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, GanttContainerItemConfig>|GanttContainerItemConfig[]|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 ! : AssignmentFieldListeners;\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() projectEvent ! : TaskModel;\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() tooltipTemplate ! : (data: { taskRecord: TaskModel, assignmentRecords: AssignmentModel }) => string|DomConfig|DomConfig[];\n @Input() triggerAction ! : 'all'|'last'|null;\n @Input() type ! : 'assignmentfield';\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|AssignmentGridConfig|AssignmentGrid;\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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentField#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/gantt/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/gantt/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/gantt/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/gantt/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 } = BryntumAssignmentFieldComponent;\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 } = BryntumAssignmentFieldComponent;\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 } = BryntumAssignmentFieldComponent;\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 AssignmentGrid\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, FormulaProviderConfig, 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, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit as GridCellEdit, CellEditConfig as GridCellEditConfig, 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, GroupSummary as GridGroupSummary, GroupSummaryConfig as GridGroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows as GridLockRows, LockRowsConfig as GridLockRowsConfig, MergeCells, MergeCellsConfig, NumberColumnConfig, 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, RowReorder as GridRowReorder, RowReorderConfig as GridRowReorderConfig, RowResize as GridRowResize, RowResizeConfig as GridRowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split as GridSplit, SplitConfig as GridSplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary as GridSummary, SummaryConfig as GridSummaryConfig, Tree, TreeConfig, TreeGroup as GridTreeGroup, TreeGroupConfig as GridTreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentGrid, AssignmentGridListeners, GanttContainerItemConfig, GanttColumnConfig, ResourceAssignmentColumnConfig, TaskModel } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumAssignmentGridProps = {\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-ariaLabel)\n */\n ariaLabel ? : 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 * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-bbar)\n */\n bbar ? : (GanttContainerItemConfig|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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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/gantt/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-columns)\n */\n columns ? : ColumnStore|GanttColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/gantt/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 * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-emptyText)\n */\n emptyText ? : string|EmptyTextDomConfig\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/data/stm/StateTrackingManager).\n */\n enableUndoRedoKeys ? : boolean\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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-footer)\n */\n footer ? : {\n dock?: 'top'|'right'|'bottom'|'left'|'start'|'end'\n html?: string\n cls?: string\n }|string\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * A function called for each row to determine its height. It is passed a [record](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * A config [object](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * 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/gantt/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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/gantt/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-listeners)\n */\n listeners ? : AssignmentGridListeners\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * 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/gantt/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/gantt/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 elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n minWidth ? : string|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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-owner)\n */\n owner ? : Widget|any\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/gantt/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 * 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 * Event model to manipulate assignments of, the task should be part of a task store.\n * Either task or [store](https://bryntum.com/products/gantt/docs/api/Grid/view/Grid#config-store) should be given.\n */\n projectEvent ? : TaskModel\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-readOnly)\n */\n readOnly ? : boolean\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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 [Column](https://bryntum.com/products/gantt/docs/api/Grid/column/Column) config object for the resource column. You can pass a `renderer` which\n * gives you access to the `resource` record.\n */\n resourceColumn ? : ResourceAssignmentColumnConfig\n /**\n * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/gantt/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/gantt/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/gantt/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-stateSettings)\n */\n stateSettings ? : {\n restoreUnconfiguredColumns?: boolean\n }\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-strips)\n */\n strips ? : Record<string, GanttContainerItemConfig>\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-tbar)\n */\n tbar ? : (GanttContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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 ? : 'assignmentgrid'\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/gantt/docs/api/Gantt/widget/AssignmentGrid#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * A config object for the units column\n */\n unitsColumn ? : NumberColumnConfig\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/gantt/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 // 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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/gantt/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|GridCellEdit|GridCellEditConfig\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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/ColumnDragToolbar)\n */\n columnDragToolbarFeature ? : object|boolean|string|ColumnDragToolbar|ColumnDragToolbarConfig\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/gantt/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/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * Displays a summary row as a group footer in a grouped grid. Uses the same configuration options on columns as\n * [Summary](https://bryntum.com/products/gantt/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GridGroupSummary|GridGroupSummaryConfig\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/gantt/docs/api/Grid/feature/HeaderMenu)\n */\n headerMenuFeature ? : object|boolean|string|HeaderMenu|HeaderMenuConfig\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/gantt/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/gantt/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * Generates PDF/PNG files from the Grid component.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RowExpander)\n */\n rowExpanderFeature ? : object|boolean|string|RowExpander|RowExpanderConfig\n /**\n * Allows user to reorder rows by dragging them. To get notified about row reorder listen to `change` event\n * on the grid [store](https://bryntum.com/products/gantt/docs/api/Core/data/Store).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowReorder)\n */\n rowReorderFeature ? : object|boolean|string|GridRowReorder|GridRowReorderConfig\n /**\n * Enables user to change row height by dragging the bottom row border. After a resize operation, the [rowHeight](https://bryntum.com/products/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|GridRowResize|GridRowResizeConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Grid into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|GridSplit|GridSplitConfig\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/gantt/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/gantt/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * Displays a summary row in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/GridSummary)\n */\n summaryFeature ? : object|boolean|string|GridSummary|GridSummaryConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/gantt/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|GridTreeGroup|GridTreeGroupConfig\n\n}\n\n@Component({\n selector : 'bryntum-assignment-grid',\n template : ''\n})\nexport class BryntumAssignmentGridComponent implements OnInit, OnDestroy {\n\n public static instanceClass = AssignmentGrid;\n\n public static instanceName = 'AssignmentGrid';\n\n private static bryntumEvents: string[] = [\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\n 'onBeforeCopy',\n 'onBeforeCSVExport',\n 'onBeforeDestroy',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforePaste',\n 'onBeforePdfExport',\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 'onDataChange',\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 'onLockRows',\n 'onMouseOut',\n 'onMouseOver',\n 'onPaint',\n 'onPaste',\n 'onPdfExport',\n 'onReadOnly',\n 'onRecompose',\n 'onRenderRow',\n 'onRenderRows',\n 'onResize',\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 'onToggleGroup',\n 'onToggleNode',\n 'onToolClick',\n 'onUnlockRows',\n 'onUnsplit'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'cellCopyPasteFeature',\n 'cellEditFeature',\n 'cellMenuFeature',\n 'cellTooltipFeature',\n 'chartsFeature',\n 'columnAutoWidthFeature',\n 'columnDragToolbarFeature',\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 'lockRowsFeature',\n 'mergeCellsFeature',\n 'pdfExportFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'searchFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'treeFeature',\n 'treeGroupFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumAssignmentGridComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'alignSelf',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoHeight',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\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 'dataset',\n 'defaultRegion',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'dock',\n 'drawer',\n 'elementAttributes',\n 'emptyText',\n 'enableSticky',\n 'enableTextSelection',\n 'enableUndoRedoKeys',\n 'extraData',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'flex',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getRowHeight',\n 'header',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'hideHorizontalScrollbar',\n 'hoverCls',\n 'icon',\n 'id',\n 'ignoreParentReadOnly',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'labelPosition',\n 'listeners',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'longPressTime',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'owner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'projectEvent',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumn',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollerClass',\n 'scrollManager',\n 'selectionMode',\n 'showDirty',\n 'span',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stateSettings',\n 'store',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'title',\n 'tools',\n 'transition',\n 'transitionDuration',\n 'type',\n 'ui',\n 'unitsColumn',\n 'weight',\n 'width'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'ariaDescription',\n 'ariaLabel',\n 'autoHeight',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'collapsible',\n 'color',\n 'config',\n 'contentElementCls',\n 'contextMenuTriggerEvent',\n 'dataField',\n 'defaultRegion',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'dock',\n 'drawer',\n 'elementAttributes',\n 'enableSticky',\n 'enableTextSelection',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getRowHeight',\n 'header',\n 'hideHorizontalScrollbar',\n 'hoverCls',\n 'icon',\n 'ignoreParentReadOnly',\n 'listeners',\n 'loadMask',\n 'loadMaskDefaults',\n 'loadMaskError',\n 'localizable',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'owner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'projectEvent',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceColumn',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'scrollerClass',\n 'scrollManager',\n 'showDirty',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'tbar',\n 'type',\n 'ui',\n 'unitsColumn',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumAssignmentGridComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'data',\n 'dataset',\n 'disabled',\n 'emptyText',\n 'enableUndoRedoKeys',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'hasChanges',\n 'height',\n 'hidden',\n 'hideFooters',\n 'hideHeaders',\n 'id',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'labelPosition',\n 'longPressTime',\n 'margin',\n 'maxHeight',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'originalStore',\n 'parent',\n 'preserveScroll',\n 'readOnly',\n 'rendition',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'selectedCell',\n 'selectedCells',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'span',\n 'state',\n 'stateSettings',\n 'store',\n 'title',\n 'tools',\n 'tooltip',\n 'transition',\n 'transitionDuration',\n 'width'\n ]);\n\n private elementRef: ElementRef;\n public instance!: AssignmentGrid;\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() animateFilterRemovals ! : boolean;\n @Input() animateRemovingRows ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoHeight ! : boolean;\n @Input() bbar ! : (GanttContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() bodyCls ! : string|object;\n @Input() bubbleEvents ! : object;\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() 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() elementAttributes ! : Record<string, string|null>;\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() getRowHeight ! : (getRowHeight: { record: Model }) => number;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : AssignmentGridListeners;\n @Input() loadMask ! : string|MaskConfig|null;\n @Input() loadMaskDefaults ! : MaskConfig;\n @Input() loadMaskError ! : MaskConfig|Mask|boolean;\n @Input() localizable ! : boolean;\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean;\n @Input() owner ! : Widget|any;\n @Input() plugins ! : Function[];\n @Input() preserveFocusOnDatasetChange ! : boolean;\n @Input() preserveScrollOnDatasetChange ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() projectEvent ! : TaskModel;\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() resourceColumn ! : ResourceAssignmentColumnConfig;\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() scrollerClass ! : typeof Scroller;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() stateful ! : boolean|object|string[];\n @Input() statefulEvents ! : object|string[];\n @Input() stateId ! : string;\n @Input() stateProvider ! : StateProvider;\n @Input() strips ! : Record<string, GanttContainerItemConfig>;\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 ! : (GanttContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() type ! : 'assignmentgrid';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\n @Input() unitsColumn ! : NumberColumnConfig;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\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|GanttColumnConfig[]|ColumnStoreConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() emptyText ! : string|EmptyTextDomConfig;\n @Input() enableUndoRedoKeys ! : boolean;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() hideFooters ! : boolean;\n @Input() hideHeaders ! : boolean;\n @Input() id ! : string;\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() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() preserveScroll ! : PreserveScrollOptions|boolean;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() span ! : number;\n @Input() stateSettings ! : {\n restoreUnconfiguredColumns?: boolean\n };\n @Input() store ! : Store|StoreConfig|AjaxStore|AjaxStoreConfig;\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() width ! : number|string;\n\n // Properties only\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() originalStore ! : Store;\n @Input() parent ! : Widget;\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 ! : GridStateInfo;\n @Input() tooltip ! : string|TooltipConfig;\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|GridCellEdit|GridCellEditConfig;\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() 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|GridGroupSummary|GridGroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() lockRowsFeature ! : object|boolean|string|GridLockRows|GridLockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\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() 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|GridRowReorder|GridRowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|GridRowResize|GridRowResizeConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|GridSplit|GridSplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|GridSummary|GridSummaryConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|GridTreeGroup|GridTreeGroupConfig;\n\n // Events emitters\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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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 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/gantt/docs/api/Gantt/widget/AssignmentGrid#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 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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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 * Fired when data in the store changes.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * 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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/AssignmentGrid#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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#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 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/gantt/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/gantt/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 * 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/gantt/docs/api/Gantt/widget/AssignmentGrid#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/gantt/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 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/gantt/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 /**\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 } = BryntumAssignmentGridComponent;\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 } = BryntumAssignmentGridComponent;\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 } = BryntumAssignmentGridComponent;\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 CalendarPicker\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 { CalendarPicker, CalendarPickerListeners, GanttContainerItemConfig } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumCalendarPickerProps = {\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/gantt/docs/api/Gantt/widget/CalendarPicker#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/gantt/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#config-container)\n */\n container ? : Record<string, GanttContainerItemConfig>|GanttContainerItemConfig[]|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/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/gantt/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/gantt/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/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `&lt;label&gt;` 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/gantt/docs/api/Gantt/widget/CalendarPicker#config-listeners)\n */\n listeners ? : CalendarPickerListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/gantt/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/gantt/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Gantt/widget/CalendarPicker#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'calendarpicker'\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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-calendar-picker',\n template : ''\n})\nexport class BryntumCalendarPickerComponent implements OnInit, OnDestroy {\n\n public static instanceClass = CalendarPicker;\n\n public static instanceName = 'CalendarPicker';\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[] = BryntumCalendarPickerComponent.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 '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 '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[] = BryntumCalendarPickerComponent.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!: CalendarPicker;\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, GanttContainerItemConfig>|GanttContainerItemConfig[]|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 ! : CalendarPickerListeners;\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() 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 ! : 'calendarpicker';\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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/docs/api/Gantt/widget/CalendarPicker#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/gantt/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/gantt/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/gantt/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/gantt/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 } = BryntumCalendarPickerComponent;\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 } = BryntumCalendarPickerComponent;\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 } = BryntumCalendarPickerComponent;\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 DependencyField\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, Sorter, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { GanttContainerItemConfig, DependencyField, DependencyFieldListeners, DependencyStore } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumDependencyFieldProps = {\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/gantt/docs/api/Gantt/widget/DependencyField#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/gantt/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#config-container)\n */\n container ? : Record<string, GanttContainerItemConfig>|GanttContainerItemConfig[]|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/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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 * Delimiter between dependency ids in the field\n */\n delimiter ? : string\n /**\n * A task field (id, wbsCode, sequenceNumber etc) that will be used when displaying and editing linked\n * tasks. Defaults to [Gantt#dependencyIdField](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-dependencyIdField)\n */\n dependencyIdField ? : string\n /**\n * The dependency store\n */\n dependencyStore ? : DependencyStore\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#config-encodeFilterParams)\n * @param {object[]} filters filters\n * @returns {object[]} array of values\n */\n encodeFilterParams ? : (filters: object[]) => object[]\n extraData ? : any\n /**\n * Set to `false` to hide the filter field\n */\n filterable ? : boolean\n /**\n * If `false`, filtering will be triggered once you exceed [minChars](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/gantt/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/gantt/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/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/gantt/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `&lt;label&gt;` 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/gantt/docs/api/Gantt/widget/DependencyField#config-listeners)\n */\n listeners ? : DependencyFieldListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#config-name)\n */\n name ? : string\n /**\n * The other task's relationship with this field's contextual task.\n * This will be `'from'` if we are editing predecessors, and `'to'` if\n * we are editing successors.\n */\n otherSide ? : 'from'|'to'\n /**\n * This field's contextual task's relationship with the other task.\n * This will be `'to'` if we are editing predecessors, and `'from'` if\n * we are editing successors.\n */\n ourSide ? : 'from'|'to'\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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/gantt/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/gantt/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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 * The sorters defining how to sort tasks in the drop down list, defaults to sorting by `name` field\n * ascending. See [StoreSort](https://bryntum.com/products/gantt/docs/api/Core/data/mixin/StoreSort) for more information.\n */\n sorters ? : Sorter[]|string[]\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/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Gantt/widget/DependencyField#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'dependencyfield'\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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-dependency-field',\n template : ''\n})\nexport class BryntumDependencyFieldComponent implements OnInit, OnDestroy {\n\n public static instanceClass = DependencyField;\n\n public static instanceName = 'DependencyField';\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[] = BryntumDependencyFieldComponent.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 'delimiter',\n 'dependencyIdField',\n 'dependencyStore',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'editable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'extraData',\n 'filterable',\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 'otherSide',\n 'ourSide',\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 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'sorters',\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 'delimiter',\n 'dependencyIdField',\n 'dependencyStore',\n 'detectCSSCompatibilityIssues',\n 'displayField',\n 'displayValueRenderer',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'emptyText',\n 'encodeFilterParams',\n 'filterable',\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 'otherSide',\n 'ourSide',\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 'showTooltipWhenDisabled',\n 'skipValidation',\n 'sorters',\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[] = BryntumDependencyFieldComponent.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!: DependencyField;\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, GanttContainerItemConfig>|GanttContainerItemConfig[]|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() delimiter ! : string;\n @Input() dependencyIdField ! : string;\n @Input() dependencyStore ! : DependencyStore;\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() filterable ! : boolean;\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 ! : DependencyFieldListeners;\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() otherSide ! : 'from'|'to';\n @Input() ourSide ! : 'from'|'to';\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() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() sorters ! : Sorter[]|string[];\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 ! : 'dependencyfield';\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/gantt/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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/docs/api/Gantt/widget/DependencyField#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/gantt/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/gantt/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/gantt/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/gantt/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 } = BryntumDependencyFieldComponent;\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 } = BryntumDependencyFieldComponent;\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 } = BryntumDependencyFieldComponent;\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 Gantt\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, BryntumScrollOptions, Container, DomClassList, DomConfig, DurationUnit, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Popup, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, 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, GroupSummary as GridGroupSummary, GroupSummaryConfig as GridGroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows as GridLockRows, LockRowsConfig as GridLockRowsConfig, MergeCells, MergeCellsConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowResize as GridRowResize, RowResizeConfig as GridRowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split as GridSplit, SplitConfig as GridSplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentModel as SchedulerAssignmentModel, ColumnLines, ColumnLinesConfig, DateConstraint, DependencyBaseModel, DependencyEdit as SchedulerDependencyEdit, DependencyModel as SchedulerDependencyModel, EventColor, EventEdit, EventFilter, EventFilterConfig, EventModel as SchedulerEventModel, EventResizeData, HeaderZoom, HeaderZoomConfig, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PresetStore, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceModel as SchedulerResourceModel, RowReorder, RowReorderConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, TimeAxis, TimeAxisColumn as SchedulerTimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, TimelineStateInfo, VerticalTimeAxisColumn, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';\nimport { CycleResolutionPopup, DependencyEdit, DependencyEditConfig, EventModel, EventSegments, EventSegmentsConfig, PercentBar, PercentBarConfig, ResourceModel as SchedulerProResourceModel, SchedulerPro, SchedulingIssueResolutionPopup, TaskEdit as SchedulerProTaskEdit, TaskEditorBase, TimeSpanHighlight, TimeSpanHighlightConfig } from '@bryntum/schedulerpro-thin';\nimport { AssignmentModel, AssignmentModelConfig, Baselines, BaselinesConfig, CalendarManagerStore, CalendarModel, CalendarModelConfig, CellEdit, CellEditConfig, GanttContainerItemConfig, CriticalPaths, CriticalPathsConfig, Dependencies, DependenciesConfig, DependencyModel, DependencyModelConfig, Gantt, GanttListeners, GanttColumnConfig, Indicators, IndicatorsConfig, Labels, LabelsConfig, MspExport, MspExportConfig, ParentArea, ParentAreaConfig, PdfExport, PdfExportConfig, Print, PrintConfig, ProgressLine, ProgressLineConfig, ProjectEdit, ProjectEditConfig, ProjectEditor, ProjectLines, ProjectLinesConfig, ProjectModel, ProjectModelConfig, ResourceModel, ResourceModelConfig, Rollups, RollupsConfig, ScrollButtons, ScrollButtonsConfig, Summary, SummaryConfig, TaskCopyPaste, TaskCopyPasteConfig, TaskDrag, TaskDragConfig, TaskDragCreate, TaskDragCreateConfig, TaskEdit, TaskEditConfig, TaskMenu, TaskMenuConfig, TaskModel, TaskModelConfig, TaskNonWorkingTime, TaskNonWorkingTimeConfig, TaskResize, TaskResizeConfig, TaskResizeData, TaskSegmentDrag, TaskSegmentDragConfig, TaskSegmentResize, TaskSegmentResizeConfig, TaskStore, TaskStoreConfig, TaskTooltip, TaskTooltipConfig, TimelineChart, TimelineChartConfig, TreeGroup, TreeGroupConfig, Versions, VersionsConfig } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGanttProps = {\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/gantt/docs/api/Gantt/view/Gantt#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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 `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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Inline assignments, will be loaded into the backing project's AssignmentStore.\n */\n assignments ? : AssignmentModel[]|AssignmentModelConfig[]\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/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-barMargin)\n */\n barMargin ? : number\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-bbar)\n */\n bbar ? : (GanttContainerItemConfig|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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Scheduler/view/mixin/TimelineScroll#config-infiniteScroll) set to `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-bufferThreshold)\n */\n bufferThreshold ? : number\n /**\n * Inline calendars, will be loaded into the backing project's CalendarManagerStore.\n */\n calendars ? : CalendarModel[]|CalendarModelConfig[]\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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-columns)\n */\n columns ? : ColumnStore|GanttColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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 * Class implementing the popup resolving *scheduling cycles*.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-cycleResolutionPopupClass)\n */\n cycleResolutionPopupClass ? : typeof CycleResolutionPopup\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/gantt/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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 * Region to which columns are added when they have none specified\n */\n defaultRegion ? : string\n /**\n * The file name of an image file to use when a resource has no image, or its image cannot be loaded.\n */\n defaultResourceImageName ? : string\n /**\n * Inline dependencies, will be loaded into the backing project's DependencyStore.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * A task field (id, wbsCode, sequenceNumber etc) that will be used when displaying and editing linked tasks.\n */\n dependencyIdField ? : 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/gantt/docs/api/Gantt/view/Gantt#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/helper/DateHelper#function-format-static).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-displayDateFormat)\n */\n displayDateFormat ? : string\n /**\n * Set to `true` to display special popups allowing user\n * to resolve [scheduling conflicts](https://bryntum.com/products/gantt/docs/api/SchedulerPro/widget/SchedulingIssueResolutionPopup),\n * [cycles](https://bryntum.com/products/gantt/docs/api/SchedulerPro/widget/CycleResolutionPopup) or calendar misconfigurations.\n * The popup will suggest user ways to resolve the corresponding case.\n */\n displaySchedulingIssueResolutionPopup ? : boolean\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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/gantt/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-endDate)\n */\n endDate ? : Date|string\n /**\n * Task color used by default. Tasks can specify their own [eventColor](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-eventColor),\n * which will override this config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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 -&gt; Resource -&gt; 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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * Returns dates that will constrain resize and drag operations. The method will be called with the\n * task being dragged.\n * @param {Gantt.model.TaskModel} taskRecord The task record being moved or resized.\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 ? : (taskRecord: TaskModel) => DateConstraint\n /**\n * A function called for each row to determine its height. It is passed a [record](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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 * A config [object](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-hideRowHover)\n */\n hideRowHover ? : 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/gantt/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-infiniteScroll)\n */\n infiniteScroll ? : 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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-listeners)\n */\n listeners ? : GanttListeners\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomIn) will work. Defaults to the number of\n * [ViewPresets](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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 * A callback function or a set of `name: value` properties to apply on tasks created using the task context menu.\n * Be aware that `name` value will be ignored since it's auto generated and may be configured with localization.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-newTaskDefaults)\n * @returns {Gantt.model.TaskModelConfig,object} Set of properties to apply on tasks created using the task context menu\n */\n newTaskDefaults ? : TaskModelConfig|object|(() => TaskModelConfig|object)\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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/model/ProjectModel) instance or a config object. The project holds all Gantt data.\n */\n project ? : ProjectModel|ProjectModelConfig|object\n /**\n * Accepts the following values:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-projectProgressReporting)\n */\n projectProgressReporting ? : string|null\n /**\n * Configure as `true` to make the Gantt read-only, by disabling any UIs for modifying data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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 * The path for resource images, used by various widgets such as the resource assignment column.\n * @deprecated 7.0 In favor of [resourceImagePath](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-resourceImagePath)\n */\n resourceImageFolderPath ? : string\n /**\n * The path for resource images, used by various widgets such as the resource assignment column.\n */\n resourceImagePath ? : string\n /**\n * Inline resources, will be loaded into the backing project's ResourceStore.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-rtl)\n */\n rtl ? : boolean\n /**\n * Class implementing the popup resolving *scheduling conflicts* and *calendar misconfigurations*.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-schedulingIssueResolutionPopupClass)\n */\n schedulingIssueResolutionPopupClass ? : typeof SchedulingIssueResolutionPopup\n /**\n * Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/gantt/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/gantt/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/gantt/docs/api/Core/util/ScrollManager) at runtime.\n */\n scrollManager ? : ScrollManagerConfig|ScrollManager\n /**\n * True to scroll the task bar into view when clicking a cell, you can also pass a\n * [scroll config](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#function-scrollTaskIntoView) object.\n */\n scrollTaskIntoViewOnCellClick ? : boolean|BryntumScrollOptions\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/gantt/docs/api/Gantt/view/Gantt#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\n /**\n * If set to `true` this will:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-showCostControls)\n */\n showCostControls ? : boolean\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/gantt/docs/api/Gantt/view/Gantt#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\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/gantt/docs/api/Scheduler/view/mixin/RecurringEvents#config-enableRecurringEvents) is `true`\n * and a recurring event is being edited.\n */\n showRecurringUI ? : boolean\n /**\n * If set to `true` this will show a color field in the [TaskEdit](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskEdit) editor and also a\n * picker in the [TaskMenu](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskMenu). Both enables the user to choose a color which will be\n * applied to the task bar's background. See TaskModel's [eventColor](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-eventColor)\n * config.\n */\n showTaskColorPickers ? : boolean\n /**\n * Set to `true` to show a tooltip when hovering a dependency line\n */\n showTooltip ? : boolean\n /**\n * Specify as `false` to not show unscheduled tasks on the Gantt chart. Unscheduled tasks will be rendered as\n * an icon\n */\n showUnscheduledTasks ? : 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/gantt/docs/api/Gantt/view/Gantt#config-snap)\n */\n snap ? : boolean\n /**\n * Affects drag drop and resizing of events when [snap](https://bryntum.com/products/gantt/docs/api/Scheduler/view/mixin/TimelineDateMapper#config-snap)\n * is enabled.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/gantt/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/gantt/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-strips)\n */\n strips ? : Record<string, GanttContainerItemConfig>\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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Scheduler/view/TimelineBase#config-forceFit) behaviour.\n */\n suppressFit ? : boolean\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * a task is rendered into the gantt to render the contents of the task.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#config-taskRenderer)\n * @param {object} detail An object containing the information needed to render a Task.\n * @param {Gantt.model.TaskModel} detail.taskRecord The task record.\n * @param {object} detail.renderData An object containing details about the task rendering.\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 tasks's 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 {string,Record<string, string>} detail.renderData.style Inline styles for the task bar DOM element. Use either 'border: 1px solid black' or { border: '1px solid black' }\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 a task icon element.\n * @param {Scheduler.model.TimeSpan[],TimeSpanConfig[]} indicators An array that can be populated with TimeSpan records or their config objects to have them rendered in the task row\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig object defining the actual HTML\n */\n taskRenderer ? : (detail: { taskRecord: TaskModel, renderData: { cls: DomClassList|string, style: string|Record<string, string>, wrapperCls: DomClassList|string, iconCls: DomClassList|string } }, indicators: TimeSpan[]|TimeSpanConfig[]) => string|DomConfig|DomConfig[]\n /**\n * Inline tasks, will be loaded into an internally created TaskStore.\n */\n tasks ? : TaskModel[]|TaskModelConfig[]\n /**\n * The [TaskStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/TaskStore) holding the tasks to be rendered into the Gantt.\n */\n taskStore ? : TaskStore|TaskStoreConfig\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#config-tbar)\n */\n tbar ? : (GanttContainerItemConfig|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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-tickSize)\n */\n tickSize ? : number\n /**\n * A [TimeAxis](https://bryntum.com/products/gantt/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 the backing project's time range store.\n */\n timeRanges ? : TimeSpan[]|TimeSpanConfig[]\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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Scheduler/model/ProjectModel#config-timeZone) for more\n * information.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#config-title)\n */\n title ? : string\n /**\n * True to toggle the collapsed/expanded state when clicking a parent task bar.\n */\n toggleParentTasksOnClick ? : boolean\n /**\n * The [tools](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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 type ? : 'gantt'\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/gantt/docs/api/Gantt/view/Gantt#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\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/gantt/docs/api/Gantt/view/Gantt#config-useContextualRecurrenceRules)\n */\n useContextualRecurrenceRules ? : boolean\n /**\n * A string key used to lookup a predefined [ViewPreset](https://bryntum.com/products/gantt/docs/api/Scheduler/preset/ViewPreset) (e.g. 'weekAndDay', 'hourAndDay'),\n * managed by [PresetManager](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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/gantt/docs/api/Scheduler/data/TimeAxis#config-include) property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/docs/api/Grid/feature/ai/AIFilter)\n */\n aiFilterFeature ? : object|boolean|string|AIFilter|AIFilterConfig\n /**\n * Displays a [task](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel)'s [baselines](#Gantt/model/TaskModel#field-baselines) below the tasks in the\n * timeline.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Baselines)\n */\n baselinesFeature ? : object|boolean|string|Baselines|BaselinesConfig\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/gantt/docs/api/Grid/feature/CellCopyPaste)\n */\n cellCopyPasteFeature ? : object|boolean|string|CellCopyPaste|CellCopyPasteConfig\n /**\n * Extends the [CellEdit](https://bryntum.com/products/gantt/docs/api/Grid/feature/CellEdit) to encapsulate Gantt functionality. This feature is enabled by <b>default</b>\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Scheduler/preset/ViewPreset#field-columnLinesFor) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/ColumnResize)\n */\n columnResizeFeature ? : object|boolean|string|ColumnResize|ColumnResizeConfig\n /**\n * This feature highlights the project *critical paths*.\n * Every task is important, but only some of them are critical.\n * The critical path is a chain of linked tasks that directly affects the project finish date.\n * If any task on the critical path is late, the whole project is late.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/CriticalPaths)\n */\n criticalPathsFeature ? : object|boolean|string|CriticalPaths|CriticalPathsConfig\n /**\n * This feature draws dependencies between tasks. Uses a dependency\n * [store](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-dependencyStore) to determine which dependencies to draw.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Dependencies)\n */\n dependenciesFeature ? : object|boolean|string|Dependencies|DependenciesConfig\n /**\n * Feature that displays a popup containing fields for editing dependency data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/DependencyEdit)\n */\n dependencyEditFeature ? : object|boolean|string|DependencyEdit|DependencyEditConfig\n /**\n * Adds event filter menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/EventFilter)\n */\n eventFilterFeature ? : object|boolean|string|EventFilter|EventFilterConfig\n /**\n * This feature provides segmented events support. It implements rendering of such events and also adds a entries to the\n * event context menu allowing to split the selected event and rename segments.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/EventSegments)\n */\n eventSegmentsFeature ? : object|boolean|string|EventSegments|EventSegmentsConfig\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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * Displays a summary row as a group footer in a grouped grid. Uses the same configuration options on columns as\n * [Summary](https://bryntum.com/products/gantt/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GridGroupSummary|GridGroupSummaryConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/HeaderZoom)\n */\n headerZoomFeature ? : object|boolean|string|HeaderZoom|HeaderZoomConfig\n /**\n * The Indicators feature displays indicators (icons) for different dates related to a task in its row. Hovering an\n * indicator will show a tooltip with its name and date(s). The owning task `id` is embedded in the indicator element\n * dataset as `taskRecordId` which can be useful if you want to have custom actions when clicking (showing a menu for example).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Indicators)\n */\n indicatorsFeature ? : object|boolean|string|Indicators|IndicatorsConfig\n /**\n * A feature that lets you display a label on each side of a Gantt task bar. See\n * [Labels](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/Labels) for more information.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Labels)\n */\n labelsFeature ? : object|boolean|string|Labels|LabelsConfig\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/gantt/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/gantt/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * A feature that allows exporting Gantt to Microsoft Project without involving a server.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/MspExport)\n */\n mspExportFeature ? : object|boolean|string|MspExport|MspExportConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/Pan)\n */\n panFeature ? : object|boolean|string|Pan|PanConfig\n /**\n * Highlights the area encapsulating all child tasks of a parent task in a semi-transparent layer. You can style\n * these layer elements using the `b-parent-area` CSS class.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ParentArea)\n */\n parentAreaFeature ? : object|boolean|string|ParentArea|ParentAreaConfig\n /**\n * Generates PDF/PNG files from the Gantt component.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * This feature visualizes the [percentDone](https://bryntum.com/products/gantt/docs/api/SchedulerPro/model/mixin/PercentDoneMixin#field-percentDone) field as a\n * progress bar on the event elements. Each progress bar also optionally has a drag handle which users can drag can\n * change the value.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/PercentBar)\n */\n percentBarFeature ? : object|boolean|string|PercentBar|PercentBarConfig\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/gantt/docs/api/Grid/feature/PinColumns)\n */\n pinColumnsFeature ? : object|boolean|string|PinColumns|PinColumnsConfig\n /**\n * Allows printing Gantt contents using browser print dialog.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * This feature draws project progress line with SVG lines. Requires [PercentBar](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/PercentBar) to be enabled (which\n * by default, it is)\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProgressLine)\n */\n progressLineFeature ? : object|boolean|string|ProgressLine|ProgressLineConfig\n /**\n * Feature that displays the [project editor](https://bryntum.com/products/gantt/docs/api/Gantt/widget/ProjectEditor) allowing users to edit\n * the project settings.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectEdit)\n */\n projectEditFeature ? : object|boolean|string|ProjectEdit|ProjectEditConfig\n /**\n * This feature draws the vertical lines in the schedule area, indicating project start/end dates\n * and also its [status date](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#field-statusDate). The latter can be disabled\n * with the [showStatusDate](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectLines#config-showStatusDate) config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectLines)\n */\n projectLinesFeature ? : object|boolean|string|ProjectLines|ProjectLinesConfig\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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\n /**\n * If the task's [rollup](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-rollup) data field is set to `true`, it displays a small bar or diamond below its summary task in the timeline.\n * Each of the rollup elements show a tooltip when hovering it with details of the task.\n * The tooltip content is customizable, see [template](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Rollups#config-template) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Rollups)\n */\n rollupsFeature ? : object|boolean|string|Rollups|RollupsConfig\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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RowReorder).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|GridRowResize|GridRowResizeConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/ScheduleTooltip)\n */\n scheduleTooltipFeature ? : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig\n /**\n * This feature injects buttons in each row that scrolls the task bar into view. It can optionally show a label along\n * with the button, using the [labelRenderer](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ScrollButtons#config-labelRenderer).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/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/gantt/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/gantt/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Grid into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|GridSplit|GridSplitConfig\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/gantt/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/gantt/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * A feature displaying a summary bar in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\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 tasks. You can configure how a newly pasted record is named using\n * [generateNewName](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskCopyPaste#config-generateNewName)\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskCopyPaste)\n */\n taskCopyPasteFeature ? : object|boolean|string|TaskCopyPaste|TaskCopyPasteConfig\n /**\n * Allows user to drag and drop tasks within Gantt, to change their start date.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskDrag)\n */\n taskDragFeature ? : object|boolean|string|TaskDrag|TaskDragConfig\n /**\n * A feature that allows the user to schedule tasks by dragging in the empty parts of the gantt timeline row. Note, this feature is only applicable for unscheduled tasks.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskDragCreate)\n */\n taskDragCreateFeature ? : object|boolean|string|TaskDragCreate|TaskDragCreateConfig\n /**\n * Feature that allows editing tasks using a [TaskEditor](https://bryntum.com/products/gantt/docs/api/Gantt/widget/TaskEditor), a popup with fields for editing task data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskEdit)\n */\n taskEditFeature ? : object|boolean|string|TaskEdit|TaskEditConfig\n /**\n * Displays a context menu for tasks. Items are populated by other features and/or application code.\n * Configure it with `false` to disable it completely. If enabled, [CellMenu](https://bryntum.com/products/gantt/docs/api/Grid/feature/CellMenu) feature\n * is not available. Cell context menu items are handled by this feature.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskMenu)\n */\n taskMenuFeature ? : object|boolean|string|TaskMenu|TaskMenuConfig\n /**\n * Feature highlighting the non-working time intervals for tasks, based on their [calendar](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-calendar).\n * If a task has no calendar defined, the project's calendar will be used. The non-working time interval can also be\n * recurring. You can find a live example showing how to achieve this in the [Task Calendars Demo](../examples/calendars/).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskNonWorkingTime)\n */\n taskNonWorkingTimeFeature ? : object|boolean|string|TaskNonWorkingTime|TaskNonWorkingTimeConfig\n /**\n * Feature that allows resizing a task by dragging its end date. Resizing a task by dragging its start date is not allowed.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize)\n */\n taskResizeFeature ? : object|boolean|string|TaskResize|TaskResizeConfig\n /**\n * Allows user to drag and drop task segments, to change their start date.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskSegmentDrag)\n */\n taskSegmentDragFeature ? : object|boolean|string|TaskSegmentDrag|TaskSegmentDragConfig\n /**\n * Feature that allows resizing a task segment by dragging its end.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskSegmentResize)\n */\n taskSegmentResizeFeature ? : object|boolean|string|TaskSegmentResize|TaskSegmentResizeConfig\n /**\n * This feature displays a task tooltip on mouse hover. The template of the tooltip is customizable\n * with the [template](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskTooltip#config-template) function.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskTooltip)\n */\n taskTooltipFeature ? : object|boolean|string|TaskTooltip|TaskTooltipConfig\n /**\n * Adds scheduler specific menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TimeAxisHeaderMenu)\n */\n timeAxisHeaderMenuFeature ? : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig\n /**\n * This feature allows drawing line charts on top of the timeline area. Feature consists of two parts: chart and\n * data providers. Chart provider is responsible for rendering the chart, while data provider is responsible\n * for providing data for the chart. Feature itself manages the interaction between them, and tracks lifecycle events\n * of the Gantt chart.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TimelineChart)\n */\n timelineChartFeature ? : object|boolean|string|TimelineChart|TimelineChartConfig\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/gantt/docs/api/Scheduler/feature/TimeRanges#config-showCurrentTimeLine) to true. To style the rendered elements, use the\n * [cls](https://bryntum.com/products/gantt/docs/api/Scheduler/model/TimeSpan#field-cls) field of the `TimeSpan` class.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TimeRanges)\n */\n timeRangesFeature ? : object|boolean|string|TimeRanges|TimeRangesConfig\n /**\n * This feature exposes methods on the owning Scheduler or Gantt widget which you can use to highlight one or multiple time spans\n * in the schedule. Please see [highlightTimeSpan](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/TimeSpanHighlight#function-highlightTimeSpan) and [highlightTimeSpans](#SchedulerPro/feature/TimeSpanHighlight#function-highlightTimeSpans) to learn\n * more or try the demo below:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/TimeSpanHighlight)\n */\n timeSpanHighlightFeature ? : object|boolean|string|TimeSpanHighlight|TimeSpanHighlightConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/gantt/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/Tree)\n */\n treeFeature ? : object|boolean|string|Tree|TreeConfig\n /**\n * Extends Grid's [TreeGroup](https://bryntum.com/products/gantt/docs/api/Grid/feature/TreeGroup) (follow the link for more info) feature to enable using it with Gantt.\n * Allows generating a new task tree where parents are determined by the values of specified task fields/functions:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n /**\n * Captures versions (snapshots) of the active project, including a detailed log of the changes new in each version.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Versions)\n */\n versionsFeature ? : object|boolean|string|Versions|VersionsConfig\n\n}\n\n@Component({\n selector : 'bryntum-gantt',\n template : ''\n})\nexport class BryntumGanttComponent implements OnInit, OnDestroy {\n\n public static instanceClass = Gantt;\n\n public static instanceName = 'Gantt';\n\n private static bryntumEvents: string[] = [\n 'onAfterDependencyCreateDrop',\n 'onAfterDependencySave',\n 'onAfterDragCreate',\n 'onAfterEventEdit',\n 'onAfterEventSave',\n 'onAfterProjectEdit',\n 'onAfterProjectSave',\n 'onAfterTaskDrop',\n 'onAfterTaskEdit',\n 'onAfterTaskSave',\n 'onAfterTaskSegmentDrop',\n 'onBeforeAssignmentDelete',\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\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 'onBeforeEventDelete',\n 'onBeforeEventEdit',\n 'onBeforeEventEditShow',\n 'onBeforeEventResize',\n 'onBeforeEventResizeFinalize',\n 'onBeforeEventSave',\n 'onBeforeEventSegmentResize',\n 'onBeforeEventSegmentResizeFinalize',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforeMspExport',\n 'onBeforePan',\n 'onBeforePaste',\n 'onBeforePdfExport',\n 'onBeforePresetChange',\n 'onBeforeProjectEdit',\n 'onBeforeProjectEditShow',\n 'onBeforeProjectSave',\n 'onBeforeRenderRow',\n 'onBeforeRenderRows',\n 'onBeforeRowCollapse',\n 'onBeforeRowExpand',\n 'onBeforeSelectionChange',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeShowTerminals',\n 'onBeforeStartRowEdit',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onBeforeTaskAdd',\n 'onBeforeTaskDelete',\n 'onBeforeTaskDrag',\n 'onBeforeTaskDropFinalize',\n 'onBeforeTaskEdit',\n 'onBeforeTaskEditShow',\n 'onBeforeTaskResize',\n 'onBeforeTaskResizeFinalize',\n 'onBeforeTaskSave',\n 'onBeforeTaskSegmentDrag',\n 'onBeforeTaskSegmentDropFinalize',\n 'onBeforeTaskSegmentResize',\n 'onBeforeTaskSegmentResizeFinalize',\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 'onCriticalPathsHighlighted',\n 'onCriticalPathsUnhighlighted',\n 'onCurrentTimelineUpdate',\n 'onDataChange',\n 'onDateRangeChange',\n 'onDependenciesDrawn',\n 'onDependencyClick',\n 'onDependencyContextMenu',\n 'onDependencyCreateDragStart',\n 'onDependencyCreateDrop',\n 'onDependencyDblClick',\n 'onDependencyMouseOut',\n 'onDependencyMouseOver',\n 'onDependencyValidationComplete',\n 'onDependencyValidationStart',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onDragCreateEnd',\n 'onDragCreateStart',\n 'onDragSelecting',\n 'onElementCreated',\n 'onEventEditBeforeSetRecord',\n 'onEventMenuBeforeShow',\n 'onEventMenuItem',\n 'onEventMenuShow',\n 'onEventPartialResize',\n 'onEventResizeEnd',\n 'onEventResizeStart',\n 'onEventSegmentPartialResize',\n 'onEventSegmentResizeEnd',\n 'onEventSegmentResizeStart',\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 'onMspExport',\n 'onNavigate',\n 'onNoZoomChange',\n 'onPaint',\n 'onPaste',\n 'onPdfExport',\n 'onPercentBarDrag',\n 'onPercentBarDragAbort',\n 'onPercentBarDragStart',\n 'onPercentBarDrop',\n 'onPresetChange',\n 'onProjectEditCanceled',\n 'onReadOnly',\n 'onRecompose',\n 'onReleaseTask',\n 'onRenderRow',\n 'onRenderRows',\n 'onRenderTask',\n 'onResize',\n 'onResourceAssignmentClick',\n 'onResponsive',\n 'onRowCollapse',\n 'onRowExpand',\n 'onRowMouseEnter',\n 'onRowMouseLeave',\n 'onScheduleMenuBeforeShow',\n 'onScheduleMenuItem',\n 'onScheduleMenuShow',\n 'onScroll',\n 'onScrollButtonClick',\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 'onTaskClick',\n 'onTaskContextMenu',\n 'onTaskDblClick',\n 'onTaskDrag',\n 'onTaskDragStart',\n 'onTaskDrop',\n 'onTaskEditCanceled',\n 'onTaskKeyDown',\n 'onTaskKeyUp',\n 'onTaskMenuBeforeShow',\n 'onTaskMenuItem',\n 'onTaskMenuShow',\n 'onTaskMouseDown',\n 'onTaskMouseOut',\n 'onTaskMouseOver',\n 'onTaskMouseUp',\n 'onTaskNonWorkingTimeClick',\n 'onTaskNonWorkingTimeContextMenu',\n 'onTaskNonWorkingTimeDblClick',\n 'onTaskPartialResize',\n 'onTaskResizeEnd',\n 'onTaskResizeStart',\n 'onTaskSegmentDrag',\n 'onTaskSegmentDragStart',\n 'onTaskSegmentDrop',\n 'onTaskSegmentPartialResize',\n 'onTaskSegmentResizeEnd',\n 'onTaskSegmentResizeStart',\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 'onTransactionChange',\n 'onUnlockRows',\n 'onUnsplit',\n 'onVisibleDateRangeChange'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'baselinesFeature',\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 'criticalPathsFeature',\n 'dependenciesFeature',\n 'dependencyEditFeature',\n 'eventFilterFeature',\n 'eventSegmentsFeature',\n 'excelExporterFeature',\n 'fileDropFeature',\n 'fillHandleFeature',\n 'filterFeature',\n 'filterBarFeature',\n 'groupFeature',\n 'groupSummaryFeature',\n 'headerMenuFeature',\n 'headerZoomFeature',\n 'indicatorsFeature',\n 'labelsFeature',\n 'lockRowsFeature',\n 'mergeCellsFeature',\n 'mspExportFeature',\n 'nonWorkingTimeFeature',\n 'panFeature',\n 'parentAreaFeature',\n 'pdfExportFeature',\n 'percentBarFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'progressLineFeature',\n 'projectEditFeature',\n 'projectLinesFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'rollupsFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'scheduleMenuFeature',\n 'scheduleTooltipFeature',\n 'scrollButtonsFeature',\n 'searchFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'taskCopyPasteFeature',\n 'taskDragFeature',\n 'taskDragCreateFeature',\n 'taskEditFeature',\n 'taskMenuFeature',\n 'taskNonWorkingTimeFeature',\n 'taskResizeFeature',\n 'taskSegmentDragFeature',\n 'taskSegmentResizeFeature',\n 'taskTooltipFeature',\n 'timeAxisHeaderMenuFeature',\n 'timelineChartFeature',\n 'timeRangesFeature',\n 'timeSpanHighlightFeature',\n 'treeFeature',\n 'treeGroupFeature',\n 'versionsFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumGanttComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'alignSelf',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'allowDropOnEventBar',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'assignments',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'barMargin',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'calendars',\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 'cycleResolutionPopupClass',\n 'data',\n 'dataField',\n 'dataset',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencies',\n 'dependencyIdField',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displayDateFormat',\n 'displaySchedulingIssueResolutionPopup',\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 'eventColor',\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 'hoverCls',\n 'icon',\n 'id',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'infiniteScroll',\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 'newTaskDefaults',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'presets',\n 'preventTooltipOnTouch',\n 'project',\n 'projectProgressReporting',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceImageFolderPath',\n 'resourceImagePath',\n 'resources',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'schedulingIssueResolutionPopupClass',\n 'scrollable',\n 'scrollerClass',\n 'scrollManager',\n 'scrollTaskIntoViewOnCellClick',\n 'selectionMode',\n 'showCostControls',\n 'showCreationTooltip',\n 'showDirty',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTaskColorPickers',\n 'showTooltip',\n 'showUnscheduledTasks',\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 'taskRenderer',\n 'tasks',\n 'taskStore',\n 'tbar',\n 'terminalCls',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSides',\n 'terminalSize',\n 'tickSize',\n 'timeAxis',\n 'timeRanges',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'toggleParentTasksOnClick',\n 'tools',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'type',\n 'ui',\n 'useContextualRecurrenceRules',\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 'cycleResolutionPopupClass',\n 'dataField',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencyIdField',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displaySchedulingIssueResolutionPopup',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'enableDeleteKey',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'hideHorizontalScrollbar',\n 'hoverCls',\n 'icon',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\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 'newTaskDefaults',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'projectProgressReporting',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceImageFolderPath',\n 'resourceImagePath',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'schedulingIssueResolutionPopupClass',\n 'scrollerClass',\n 'scrollManager',\n 'showCostControls',\n 'showCreationTooltip',\n 'showDirty',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTaskColorPickers',\n 'snapRelativeToEventStartDate',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stickyHeaders',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'taskRenderer',\n 'tbar',\n 'terminalCls',\n 'terminalSides',\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[] = BryntumGanttComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'allowDropOnEventBar',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'assignments',\n 'barMargin',\n 'calendarManagerStore',\n 'calendars',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'creationTooltipTemplate',\n 'data',\n 'dataset',\n 'dependencies',\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 '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 'project',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'rendition',\n 'resources',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollLeft',\n 'scrollTaskIntoViewOnCellClick',\n 'scrollTop',\n 'scrollX',\n 'selectedCell',\n 'selectedCells',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'showTooltip',\n 'showUnscheduledTasks',\n 'snap',\n 'span',\n 'startDate',\n 'state',\n 'stateSettings',\n 'store',\n 'suppressFit',\n 'tasks',\n 'taskStore',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSize',\n 'tickSize',\n 'timeRanges',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'toggleParentTasksOnClick',\n 'tools',\n 'tooltip',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'useContextualRecurrenceRules',\n 'viewPreset',\n 'visibleDate',\n 'width',\n 'workingTime',\n 'zoomLevel'\n ]);\n\n private elementRef: ElementRef;\n public instance!: Gantt;\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 ! : (GanttContainerItemConfig|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() cycleResolutionPopupClass ! : typeof CycleResolutionPopup;\n @Input() dataField ! : string;\n @Input() defaultRegion ! : string;\n @Input() defaultResourceImageName ! : string;\n @Input() dependencyIdField ! : string;\n @Input() destroyStore ! : boolean;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disableGridColumnIdWarning ! : boolean;\n @Input() disableGridRowModelWarning ! : boolean;\n @Input() displaySchedulingIssueResolutionPopup ! : 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() 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 ! : (taskRecord: TaskModel) => DateConstraint;\n @Input() getRowHeight ! : (getRowHeight: { record: Model }) => number;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreDomEventsWhileScrolling ! : boolean;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : GanttListeners;\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() newTaskDefaults ! : TaskModelConfig|object|(() => TaskModelConfig|object);\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() projectProgressReporting ! : string|null;\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() resourceImageFolderPath ! : string;\n @Input() resourceImagePath ! : string;\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() schedulingIssueResolutionPopupClass ! : typeof SchedulingIssueResolutionPopup;\n @Input() scrollerClass ! : typeof Scroller;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() showCostControls ! : boolean;\n @Input() showCreationTooltip ! : boolean;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() showLagInTooltip ! : boolean;\n @Input() showRecurringUI ! : boolean;\n @Input() showTaskColorPickers ! : boolean;\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, GanttContainerItemConfig>;\n @Input() subGridConfigs ! : Record<string, SubGridConfig>;\n @Input() syncMask ! : string|MaskConfig|null;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() taskRenderer ! : (detail: { taskRecord: TaskModel, renderData: { cls: DomClassList|string, style: string|Record<string, string>, wrapperCls: DomClassList|string, iconCls: DomClassList|string } }, indicators: TimeSpan[]|TimeSpanConfig[]) => string|DomConfig|DomConfig[];\n @Input() tbar ! : (GanttContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() terminalCls ! : string;\n @Input() terminalSides ! : string[];\n @Input() timeAxis ! : TimeAxisConfig|TimeAxis;\n @Input() type ! : 'gantt';\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() allowDropOnEventBar ! : boolean;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() assignments ! : AssignmentModel[]|AssignmentModelConfig[];\n @Input() barMargin ! : number;\n @Input() calendars ! : CalendarModel[]|CalendarModelConfig[];\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|GanttColumnConfig[]|ColumnStoreConfig;\n @Input() creationTooltipTemplate ! : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\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() 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() project ! : ProjectModel|ProjectModelConfig|object;\n @Input() readOnly ! : boolean;\n @Input() recurrenceConfirmationPopup ! : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() resources ! : ResourceModel[]|ResourceModelConfig[];\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() scrollTaskIntoViewOnCellClick ! : boolean|BryntumScrollOptions;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() showTooltip ! : boolean;\n @Input() showUnscheduledTasks ! : 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() tasks ! : TaskModel[]|TaskModelConfig[];\n @Input() taskStore ! : TaskStore|TaskStoreConfig;\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() timeResolution ! : {\n increment?: number\n unit?: DurationUnit\n }|number;\n @Input() timeZone ! : string|number;\n @Input() title ! : string;\n @Input() toggleParentTasksOnClick ! : boolean;\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() useContextualRecurrenceRules ! : boolean;\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() calendarManagerStore ! : CalendarManagerStore;\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() baselinesFeature ! : object|boolean|string|Baselines|BaselinesConfig;\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() criticalPathsFeature ! : object|boolean|string|CriticalPaths|CriticalPathsConfig;\n @Input() dependenciesFeature ! : object|boolean|string|Dependencies|DependenciesConfig;\n @Input() dependencyEditFeature ! : object|boolean|string|DependencyEdit|DependencyEditConfig;\n @Input() eventFilterFeature ! : object|boolean|string|EventFilter|EventFilterConfig;\n @Input() eventSegmentsFeature ! : object|boolean|string|EventSegments|EventSegmentsConfig;\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|GridGroupSummary|GridGroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() headerZoomFeature ! : object|boolean|string|HeaderZoom|HeaderZoomConfig;\n @Input() indicatorsFeature ! : object|boolean|string|Indicators|IndicatorsConfig;\n @Input() labelsFeature ! : object|boolean|string|Labels|LabelsConfig;\n @Input() lockRowsFeature ! : object|boolean|string|GridLockRows|GridLockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() mspExportFeature ! : object|boolean|string|MspExport|MspExportConfig;\n @Input() nonWorkingTimeFeature ! : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig;\n @Input() panFeature ! : object|boolean|string|Pan|PanConfig;\n @Input() parentAreaFeature ! : object|boolean|string|ParentArea|ParentAreaConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() percentBarFeature ! : object|boolean|string|PercentBar|PercentBarConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() progressLineFeature ! : object|boolean|string|ProgressLine|ProgressLineConfig;\n @Input() projectEditFeature ! : object|boolean|string|ProjectEdit|ProjectEditConfig;\n @Input() projectLinesFeature ! : object|boolean|string|ProjectLines|ProjectLinesConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() rollupsFeature ! : object|boolean|string|Rollups|RollupsConfig;\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() 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() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|GridSplit|GridSplitConfig;\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() taskCopyPasteFeature ! : object|boolean|string|TaskCopyPaste|TaskCopyPasteConfig;\n @Input() taskDragFeature ! : object|boolean|string|TaskDrag|TaskDragConfig;\n @Input() taskDragCreateFeature ! : object|boolean|string|TaskDragCreate|TaskDragCreateConfig;\n @Input() taskEditFeature ! : object|boolean|string|TaskEdit|TaskEditConfig;\n @Input() taskMenuFeature ! : object|boolean|string|TaskMenu|TaskMenuConfig;\n @Input() taskNonWorkingTimeFeature ! : object|boolean|string|TaskNonWorkingTime|TaskNonWorkingTimeConfig;\n @Input() taskResizeFeature ! : object|boolean|string|TaskResize|TaskResizeConfig;\n @Input() taskSegmentDragFeature ! : object|boolean|string|TaskSegmentDrag|TaskSegmentDragConfig;\n @Input() taskSegmentResizeFeature ! : object|boolean|string|TaskSegmentResize|TaskSegmentResizeConfig;\n @Input() taskTooltipFeature ! : object|boolean|string|TaskTooltip|TaskTooltipConfig;\n @Input() timeAxisHeaderMenuFeature ! : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig;\n @Input() timelineChartFeature ! : object|boolean|string|TimelineChart|TimelineChartConfig;\n @Input() timeRangesFeature ! : object|boolean|string|TimeRanges|TimeRangesConfig;\n @Input() timeSpanHighlightFeature ! : object|boolean|string|TimeSpanHighlight|TimeSpanHighlightConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\n @Input() versionsFeature ! : object|boolean|string|Versions|VersionsConfig;\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.SchedulerDependencyModel} event.dependencyRecord The dependency about to be saved\n */\n @Output() onAfterDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: SchedulerDependencyModel }) => void)|string>();\n /**\n * Fires on the owning Gantt at the end of the drag create gesture whether or not\n * a task was scheduled by the gesture.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {HTMLElement} event.proxyElement The element showing the drag creation zone.\n */\n @Output() onAfterDragCreate: any = new EventEmitter<((event: { source: Gantt, proxyElement: HTMLElement }) => 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.SchedulerEventModel} event.eventRecord The record that has been edited.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after an event record is saved\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord The event record about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterEventSave: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance after project editing is finished by applying changes or\n * cancelling them.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The edited project record\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onAfterProjectEdit: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance after a project is saved\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be saved\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onAfterProjectSave: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt after a task drop, regardless if the drop validity\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {boolean} event.valid\n */\n @Output() onAfterTaskDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], valid: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after task editing is finished by applying changes, cancelling them\n * or deleting the task record.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord Task record used in the task editor\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterTaskEdit: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after a task is saved\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterTaskSave: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt after a task drop, regardless if the drop validity\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dropped segments\n * @param {boolean} event.valid\n */\n @Output() onAfterTaskSegmentDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], valid: boolean }) => 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/gantt/docs/api/Gantt/view/Gantt#event-beforeAssignmentDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.SchedulerAssignmentModel[]} 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: SchedulerAssignmentModel[], 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/gantt/docs/api/Gantt/view/Gantt#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/gantt/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 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.SchedulerDependencyEdit} event.dependencyEdit The dependency edit feature\n * @param {Scheduler.model.SchedulerDependencyModel} event.dependencyRecord The dependency about to be added\n */\n @Output() onBeforeDependencyAdd: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyModel} event.dependencyRecord The dependency record about to be deleted\n */\n @Output() onBeforeDependencyDelete: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.SchedulerDependencyModel} event.dependencyRecord The record about to be shown in the editor.\n */\n @Output() onBeforeDependencyEdit: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.SchedulerDependencyModel} 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: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel, 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.SchedulerDependencyModel} 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: SchedulerDependencyModel, 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 Gantt at the beginning of the drag gesture\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Date} event.date The datetime associated with the drag start point.\n */\n @Output() onBeforeDragCreate: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, date: Date }) => void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeDragCreateFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Scheduler instance\n * @param {HTMLElement} event.proxyElement Proxy element, representing future event\n * @param {object} event.context\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: Gantt, proxyElement: HTMLElement, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/Gantt#event-beforeEventDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance\n * @param {Scheduler.model.SchedulerEventModel[]} 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: SchedulerEventModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|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/gantt/docs/api/Gantt/view/Gantt#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.SchedulerEventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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.SchedulerEventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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.SchedulerEventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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/gantt/docs/api/Gantt/view/Gantt#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.SchedulerEventModel} 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: SchedulerEventModel, 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 or Gantt widget instance before an event record is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeEventSave)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord The event record about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeEventSave: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler Pro before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {SchedulerPro.model.SchedulerProResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeEventSegmentResize: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, resourceRecord: SchedulerProResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler Pro 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/gantt/docs/api/Gantt/view/Gantt#event-beforeEventSegmentResizeFinalize)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {object} event.context\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n */\n @Output() onBeforeEventSegmentResizeFinalize: any = new EventEmitter<((event: { source: SchedulerPro, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/Gantt#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 Gantt before export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {object} event.config Export config\n */\n @Output() onBeforeMspExport: any = new EventEmitter<((event: { config: object }) => 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/gantt/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 on the owning Gantt widget instance before a project is displayed in the editor.\n * This may be listened to in order to take over the project editing flow. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeProjectEdit)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.feature.ProjectEdit} event.projectEdit The projectEdit feature\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be shown in the editor.\n */\n @Output() onBeforeProjectEdit: any = new EventEmitter<((event: { source: Gantt, projectEdit: ProjectEdit, projectRecord: ProjectModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt widget when the editor for a project is available but\n * before it is shown. Allows manipulating fields etc.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.feature.ProjectEdit} event.projectEdit The projectEdit feature\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be shown in the editor.\n * @param {Gantt.widget.ProjectEditor} event.editor The editor\n */\n @Output() onBeforeProjectEditShow: any = new EventEmitter<((event: { source: Gantt, projectEdit: ProjectEdit, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance before a project is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeProjectSave)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be saved\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onBeforeProjectSave: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => 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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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 * 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 {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 * Fires when adding a task from the UI to allow data mutation.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The task\n */\n @Output() onBeforeTaskAdd: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a task is deleted, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskDelete)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance.\n * @param {SchedulerPro.model.EventModel} event.taskRecord The record about to be deleted\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeTaskDelete: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt before task dragging starts. Return false to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event The native browser event\n */\n @Output() onBeforeTaskDrag: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskDropFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Gantt.model.TaskModel[]} event.context.taskRecords The dragged task records\n * @param {boolean} event.context.valid Set this to `false` to mark the drop as invalid\n * @param {boolean} event.context.async Set true to handle dragdrop asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize dragdrop. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskDropFinalize: any = new EventEmitter<((event: { source: Gantt, context: { taskRecords: TaskModel[], valid: boolean, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance before a task is displayed in the editor.\n * This may be listened to in order to take over the task editing flow. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskEdit)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.feature.SchedulerProTaskEdit} event.taskEdit The taskEdit feature\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be shown in the editor.\n * @param {HTMLElement} event.taskElement The element which represents the task\n */\n @Output() onBeforeTaskEdit: any = new EventEmitter<((event: { source: SchedulerPro, taskEdit: SchedulerProTaskEdit, taskRecord: EventModel, taskElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for an event is available but before it is shown. Allows\n * manipulating fields etc.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The SchedulerPro instance\n * @param {SchedulerPro.feature.SchedulerProTaskEdit} event.taskEdit The taskEdit feature\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be shown in the editor.\n * @param {HTMLElement} event.eventElement The element which represents the task\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor\n */\n @Output() onBeforeTaskEditShow: any = new EventEmitter<((event: { source: SchedulerPro, taskEdit: SchedulerProTaskEdit, taskRecord: EventModel, eventElement: HTMLElement, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt before resizing starts. Return `false` to prevent the operation.\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event\n */\n @Output() onBeforeTaskResize: any = new EventEmitter<((event: { taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt 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/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskResizeFinalize)\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Date} event.context.endDate New endDate\n * @param {Date} event.context.originalEndDate End date before resize\n * @param {TaskResizeData[]} event.context.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`.\n * @param {Event} event.event Browser event\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskResizeFinalize: any = new EventEmitter<((event: { taskRecord: TaskModel, source: Gantt, context: { endDate: Date, originalEndDate: Date, resizeData: TaskResizeData[], async: boolean, finalize: Function }, event: Event }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance before a task is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskSave)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeTaskSave: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt before segment dragging starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord The segment about to be dragged\n * @param {Event} event.event The native browser event\n */\n @Output() onBeforeTaskSegmentDrag: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskSegmentDropFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Gantt.model.TaskModel[]} event.context.taskRecords Dragged segments\n * @param {boolean} event.context.valid Set this to `false` to mark the drop as invalid\n * @param {boolean} event.context.async Set true to handle dragdrop asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize dragdrop. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskSegmentDropFinalize: any = new EventEmitter<((event: { source: Gantt, context: { taskRecords: TaskModel[], valid: boolean, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fired on the owning Gantt before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeTaskSegmentResize: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: SchedulerResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Gantt 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/gantt/docs/api/Gantt/view/Gantt#event-beforeTaskSegmentResizeFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n */\n @Output() onBeforeTaskSegmentResizeFinalize: any = new EventEmitter<((event: { source: Gantt, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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 * Fired when critical paths get highlighted.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-criticalPathsHighlighted)\n */\n @Output() onCriticalPathsHighlighted: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when critical paths get hidden.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-criticalPathsUnhighlighted)\n */\n @Output() onCriticalPathsUnhighlighted: any = new EventEmitter<(() => 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/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen\n * when zooming, or changing [viewPreset](https://bryntum.com/products/gantt/docs/api/Scheduler/view/TimelineBase#config-viewPreset).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyClick: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyContextMenu: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyDblClick: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, event: MouseEvent }) => 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOut: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOver: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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/gantt/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/gantt/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/gantt/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 Gantt after the task has been scheduled.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {MouseEvent} event.event The ending mouseup event.\n * @param {HTMLElement} event.proxyElement The proxy element showing the drag creation zone.\n */\n @Output() onDragCreateEnd: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent, proxyElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the drag start has created a proxy element.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {HTMLElement} event.proxyElement The proxy representing the new event.\n */\n @Output() onDragCreateStart: any = new EventEmitter<((event: { source: Gantt, proxyElement: 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/gantt/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 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.SchedulerEventModel} event.record The record\n */\n @Output() onEventEditBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: SchedulerEventModel }) => 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.SchedulerEventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerEventModel} event.eventRecord\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerEventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, eventElement: HTMLElement }) => 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.SchedulerEventModel} 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: SchedulerEventModel, 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.SchedulerEventModel} 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: SchedulerEventModel, 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.SchedulerEventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.SchedulerResourceModel} 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/gantt/docs/api/Scheduler/feature/EventResize#config-resizeSelected) is `true`\n */\n @Output() onEventResizeStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: SchedulerEventModel, resourceRecord: SchedulerResourceModel, event: MouseEvent, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro on each segment resize move event\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n */\n @Output() onEventSegmentPartialResize: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n */\n @Output() onEventSegmentResizeEnd: any = new EventEmitter<((event: { source: SchedulerPro, changed: boolean, eventRecord: EventModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro when segment resizing starts\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {SchedulerPro.model.SchedulerProResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventSegmentResizeStart: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, resourceRecord: SchedulerProResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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 * Fires on the owning Gantt when project content is exported\n * to XML, before the XML is downloaded by the browser.\n * @param {object} event Event object\n * @param {object} event.config Export config\n * @param {string} event.fileContent Exported XML-file content\n */\n @Output() onMspExport: any = new EventEmitter<((event: { config: object, fileContent: string }) => 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/gantt/docs/api/Gantt/view/Gantt#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 on the owning Scheduler or Gantt widget when dragging the percent bar\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDrag: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget if a percent bar drag-drop operation is aborted\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDragAbort: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when percent bar dragging starts\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDragStart: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when dropping the percent bar\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDrop: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired after the [viewPreset](https://bryntum.com/products/gantt/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 * Fires on the owning Gantt widget when the editor for a project is canceled.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The edited project\n * @param {Gantt.widget.ProjectEditor} event.editor The editor\n */\n @Output() onProjectEditCanceled: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => 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/gantt/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 * Task is released, no longer in view/removed. A good spot for cleaning custom things added in a `renderTask`\n * listener up, if needed.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {object} event.renderData Task render data\n * @param {Gantt.model.TaskModel} event.taskRecord Rendered task\n * @param {HTMLElement} event.element Task element\n */\n @Output() onReleaseTask: any = new EventEmitter<((event: { source: Gantt, renderData: object, taskRecord: TaskModel, 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 * Task is rendered, its element is available in DOM.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {object} event.renderData Task render data\n * @param {Gantt.model.TaskModel} event.taskRecord Rendered task\n * @param {HTMLElement} event.element Task element\n */\n @Output() onRenderTask: any = new EventEmitter<((event: { source: Gantt, renderData: object, taskRecord: TaskModel, element: HTMLElement }) => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/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 when clicking a resource avatar or chip in the cells of the [ResourceAssignmentColumn](https://bryntum.com/products/gantt/docs/api/Gantt/column/ResourceAssignmentColumn).\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {Gantt.model.ResourceModel} event.resourceRecord Resource record\n * @param {Event} event.event Browser event\n */\n @Output() onResourceAssignmentClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: ResourceModel, event: Event }) => 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/gantt/docs/api/Gantt/view/Gantt#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 * 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.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerResourceModel, date: Date, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerResourceModel} 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: SchedulerResourceModel, 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.SchedulerResourceModel} 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: SchedulerResourceModel, date: Date, targetElement: HTMLElement }) => 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 {Gantt.model.TaskModel} event.taskRecord The task record\n */\n @Output() onScrollButtonClick: any = new EventEmitter<((event: { domEvent: Event, taskRecord: TaskModel }) => 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/gantt/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 * Triggered after a click on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a rightclick (or long press on a touch device) on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskContextMenu: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a doubleclick on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskDblClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Gantt while a task is being dragged\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {object} event.dragData\n * @param {boolean} event.changed `true` if startDate has changed.\n */\n @Output() onTaskDrag: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], startDate: Date, endDate: Date, dragData: object, changed: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt when task dragging starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n */\n @Output() onTaskDragStart: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[] }) => void)|string>();\n /**\n * Fires on the owning Gantt after a valid task drop\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {boolean} event.isCopy\n */\n @Output() onTaskDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], isCopy: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for an event is canceled.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord the task about the shown in the editor\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor\n */\n @Output() onTaskEditCanceled: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Triggered when a keydown event is observed if there are selected tasks.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onTaskKeyDown: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: KeyboardEvent }) => void)|string>();\n /**\n * Triggered when a keyup event is observed if there are selected tasks.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onTaskKeyUp: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: KeyboardEvent }) => void)|string>();\n /**\n * This event fires on the owning Gantt before the context menu is shown for a task. 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 {Gantt.view.Gantt} event.source\n * @param {MenuItemEntry[]} event.items Menu item configs\n * @param {Gantt.model.TaskModel} event.taskRecord Event record for which the menu was triggered\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuBeforeShow: any = new EventEmitter<((event: { source: Gantt, items: MenuItemEntry[], taskRecord: TaskModel, taskElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Gantt when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuItem: any = new EventEmitter<((event: { source: Gantt, item: MenuItem, taskRecord: TaskModel, taskElement: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Gantt after showing the context menu for an event\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Gantt.model.TaskModel} event.taskRecord Event record for which the menu was triggered\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuShow: any = new EventEmitter<((event: { source: Gantt, menu: Menu, taskRecord: TaskModel, taskElement: HTMLElement }) => void)|string>();\n /**\n * Triggered after a mousedown on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseDown: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouseout from a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseOut: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a mouseover on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseOver: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a mouseup on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseUp: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when right-clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeContextMenu: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when double-clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeDblClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Gantt on each resize move event\n * @param {object} event Event object\n * @param {TaskResizeData[]} event.resizeData Data for the tasks that are being resized. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`. The nested properties are same as `context`\n * @param {Gantt.model.TaskModel} event.taskRecord Task record being resized\n * @param {Date} event.startDate New startDate\n * @param {Date} event.endDate New endDate\n * @param {HTMLElement} event.element\n */\n @Output() onTaskPartialResize: any = new EventEmitter<((event: { resizeData: TaskResizeData[], taskRecord: TaskModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {boolean} event.changed\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {TaskResizeData[]} event.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`\n */\n @Output() onTaskResizeEnd: any = new EventEmitter<((event: { changed: boolean, taskRecord: TaskModel, resizeData: TaskResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Gantt when task resizing starts\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event\n * @param {TaskResizeData[]} event.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`\n */\n @Output() onTaskResizeStart: any = new EventEmitter<((event: { taskRecord: TaskModel, event: Event, resizeData: TaskResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Gantt while a segment is being dragged\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dragged segments\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {object} event.dragData\n * @param {boolean} event.changed `true` if startDate has changed.\n */\n @Output() onTaskSegmentDrag: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], startDate: Date, endDate: Date, dragData: object, changed: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt when segment dragging starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dragged segments\n */\n @Output() onTaskSegmentDragStart: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[] }) => void)|string>();\n /**\n * Fires on the owning Gantt after a valid task drop\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dropped segments\n * @param {boolean} event.isCopy\n */\n @Output() onTaskSegmentDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], isCopy: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt on each resize move event\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n */\n @Output() onTaskSegmentPartialResize: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n */\n @Output() onTaskSegmentResizeEnd: any = new EventEmitter<((event: { source: Gantt, changed: boolean, taskRecord: TaskModel }) => void)|string>();\n /**\n * Fires on the owning Gantt when event resizing starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onTaskSegmentResizeStart: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: SchedulerResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the tick size changes.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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/gantt/docs/api/Scheduler/feature/TimeAxisHeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/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/gantt/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 * <strong>Note that this event fires on the owning [SchedulerPro](https://bryntum.com/products/gantt/docs/api/SchedulerPro/view/SchedulerPro).</strong>\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#event-transactionChange)\n * @param {object} event Event object\n * @param {boolean} event.hasChanges Whether any changes are recorded that are not yet attached to a version.\n */\n @Output() onTransactionChange: any = new EventEmitter<((event: { hasChanges: boolean }) => 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/gantt/docs/api/Gantt/view/Gantt#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 } = BryntumGanttComponent;\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 } = BryntumGanttComponent;\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 } = BryntumGanttComponent;\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 GanttBase\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, BryntumScrollOptions, Container, DomClassList, DomConfig, DurationUnit, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Popup, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, 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, GroupSummary as GridGroupSummary, GroupSummaryConfig as GridGroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows as GridLockRows, LockRowsConfig as GridLockRowsConfig, MergeCells, MergeCellsConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowResize as GridRowResize, RowResizeConfig as GridRowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split as GridSplit, SplitConfig as GridSplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Tree, TreeConfig, XLSColumn } from '@bryntum/grid-thin';\nimport { AssignmentModel as SchedulerAssignmentModel, ColumnLines, ColumnLinesConfig, DateConstraint, DependencyBaseModel, DependencyEdit as SchedulerDependencyEdit, DependencyModel as SchedulerDependencyModel, EventColor, EventEdit, EventFilter, EventFilterConfig, EventModel as SchedulerEventModel, EventResizeData, HeaderZoom, HeaderZoomConfig, NonWorkingTime, NonWorkingTimeConfig, Pan, PanConfig, PresetStore, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, ResourceModel as SchedulerResourceModel, RowReorder, RowReorderConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, TimeAxis, TimeAxisColumn as SchedulerTimeAxisColumn, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, TimelineStateInfo, VerticalTimeAxisColumn, ViewPreset, ViewPresetConfig, VisibleDate } from '@bryntum/scheduler-thin';\nimport { CycleResolutionPopup, DependencyEdit, DependencyEditConfig, EventModel, EventSegments, EventSegmentsConfig, PercentBar, PercentBarConfig, ResourceModel as SchedulerProResourceModel, SchedulerPro, SchedulingIssueResolutionPopup, TaskEdit as SchedulerProTaskEdit, TaskEditorBase, TimeSpanHighlight, TimeSpanHighlightConfig } from '@bryntum/schedulerpro-thin';\nimport { AssignmentModel, AssignmentModelConfig, Baselines, BaselinesConfig, CalendarManagerStore, CalendarModel, CalendarModelConfig, CellEdit, CellEditConfig, GanttContainerItemConfig, CriticalPaths, CriticalPathsConfig, Dependencies, DependenciesConfig, DependencyModel, DependencyModelConfig, Gantt, GanttBase, GanttBaseListeners, GanttColumnConfig, Indicators, IndicatorsConfig, Labels, LabelsConfig, MspExport, MspExportConfig, ParentArea, ParentAreaConfig, PdfExport, PdfExportConfig, Print, PrintConfig, ProgressLine, ProgressLineConfig, ProjectEdit, ProjectEditConfig, ProjectEditor, ProjectLines, ProjectLinesConfig, ProjectModel, ProjectModelConfig, ResourceModel, ResourceModelConfig, Rollups, RollupsConfig, ScrollButtons, ScrollButtonsConfig, Summary, SummaryConfig, TaskCopyPaste, TaskCopyPasteConfig, TaskDrag, TaskDragConfig, TaskDragCreate, TaskDragCreateConfig, TaskEdit, TaskEditConfig, TaskMenu, TaskMenuConfig, TaskModel, TaskModelConfig, TaskNonWorkingTime, TaskNonWorkingTimeConfig, TaskResize, TaskResizeConfig, TaskResizeData, TaskSegmentDrag, TaskSegmentDragConfig, TaskSegmentResize, TaskSegmentResizeConfig, TaskStore, TaskStoreConfig, TaskTooltip, TaskTooltipConfig, TimelineChart, TimelineChartConfig, TreeGroup, TreeGroupConfig, Versions, VersionsConfig } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGanttBaseProps = {\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/gantt/docs/api/Gantt/view/GanttBase#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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 `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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Inline assignments, will be loaded into the backing project's AssignmentStore.\n */\n assignments ? : AssignmentModel[]|AssignmentModelConfig[]\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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-barMargin)\n */\n barMargin ? : number\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-bbar)\n */\n bbar ? : (GanttContainerItemConfig|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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Scheduler/view/mixin/TimelineScroll#config-infiniteScroll) set to `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-bufferThreshold)\n */\n bufferThreshold ? : number\n /**\n * Inline calendars, will be loaded into the backing project's CalendarManagerStore.\n */\n calendars ? : CalendarModel[]|CalendarModelConfig[]\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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-columns)\n */\n columns ? : ColumnStore|GanttColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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 * Class implementing the popup resolving *scheduling cycles*.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-cycleResolutionPopupClass)\n */\n cycleResolutionPopupClass ? : typeof CycleResolutionPopup\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/gantt/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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 * Region to which columns are added when they have none specified\n */\n defaultRegion ? : string\n /**\n * The file name of an image file to use when a resource has no image, or its image cannot be loaded.\n */\n defaultResourceImageName ? : string\n /**\n * Inline dependencies, will be loaded into the backing project's DependencyStore.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * A task field (id, wbsCode, sequenceNumber etc) that will be used when displaying and editing linked tasks.\n */\n dependencyIdField ? : 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/gantt/docs/api/Gantt/view/GanttBase#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/helper/DateHelper#function-format-static).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-displayDateFormat)\n */\n displayDateFormat ? : string\n /**\n * Set to `true` to display special popups allowing user\n * to resolve [scheduling conflicts](https://bryntum.com/products/gantt/docs/api/SchedulerPro/widget/SchedulingIssueResolutionPopup),\n * [cycles](https://bryntum.com/products/gantt/docs/api/SchedulerPro/widget/CycleResolutionPopup) or calendar misconfigurations.\n * The popup will suggest user ways to resolve the corresponding case.\n */\n displaySchedulingIssueResolutionPopup ? : boolean\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/gantt/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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/gantt/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-endDate)\n */\n endDate ? : Date|string\n /**\n * Task color used by default. Tasks can specify their own [eventColor](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-eventColor),\n * which will override this config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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 -&gt; Resource -&gt; 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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/gantt/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 `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` 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/gantt/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-fullRowRefresh)\n */\n fullRowRefresh ? : boolean\n /**\n * Returns dates that will constrain resize and drag operations. The method will be called with the\n * task being dragged.\n * @param {Gantt.model.TaskModel} taskRecord The task record being moved or resized.\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 ? : (taskRecord: TaskModel) => DateConstraint\n /**\n * A function called for each row to determine its height. It is passed a [record](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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 * A config [object](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-hideRowHover)\n */\n hideRowHover ? : 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/gantt/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-infiniteScroll)\n */\n infiniteScroll ? : 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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/gantt/docs/api/Gantt/view/Gantt#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-listeners)\n */\n listeners ? : GanttBaseListeners\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Scheduler/view/mixin/TimelineZoomable#function-zoomIn) will work. Defaults to the number of\n * [ViewPresets](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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 * A callback function or a set of `name: value` properties to apply on tasks created using the task context menu.\n * Be aware that `name` value will be ignored since it's auto generated and may be configured with localization.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-newTaskDefaults)\n * @returns {Gantt.model.TaskModelConfig,object} Set of properties to apply on tasks created using the task context menu\n */\n newTaskDefaults ? : TaskModelConfig|object|(() => TaskModelConfig|object)\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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/model/ProjectModel) instance or a config object. The project holds all Gantt data.\n */\n project ? : ProjectModel|ProjectModelConfig|object\n /**\n * Accepts the following values:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-projectProgressReporting)\n */\n projectProgressReporting ? : string|null\n /**\n * Configure as `true` to make the Gantt read-only, by disabling any UIs for modifying data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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 * The path for resource images, used by various widgets such as the resource assignment column.\n * @deprecated 7.0 In favor of [resourceImagePath](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-resourceImagePath)\n */\n resourceImageFolderPath ? : string\n /**\n * The path for resource images, used by various widgets such as the resource assignment column.\n */\n resourceImagePath ? : string\n /**\n * Inline resources, will be loaded into the backing project's ResourceStore.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-rtl)\n */\n rtl ? : boolean\n /**\n * Class implementing the popup resolving *scheduling conflicts* and *calendar misconfigurations*.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-schedulingIssueResolutionPopupClass)\n */\n schedulingIssueResolutionPopupClass ? : typeof SchedulingIssueResolutionPopup\n /**\n * Configures whether the grid is scrollable in the `Y` axis. This is used to configure a [Scroller](https://bryntum.com/products/gantt/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/gantt/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/gantt/docs/api/Core/util/ScrollManager) at runtime.\n */\n scrollManager ? : ScrollManagerConfig|ScrollManager\n /**\n * True to scroll the task bar into view when clicking a cell, you can also pass a\n * [scroll config](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#function-scrollTaskIntoView) object.\n */\n scrollTaskIntoViewOnCellClick ? : boolean|BryntumScrollOptions\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/gantt/docs/api/Gantt/view/GanttBase#config-selectionMode)\n */\n selectionMode ? : GridSelectionMode\n /**\n * If set to `true` this will:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-showCostControls)\n */\n showCostControls ? : boolean\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/gantt/docs/api/Gantt/view/GanttBase#config-showDirty)\n */\n showDirty ? : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n }\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/gantt/docs/api/Scheduler/view/mixin/RecurringEvents#config-enableRecurringEvents) is `true`\n * and a recurring event is being edited.\n */\n showRecurringUI ? : boolean\n /**\n * If set to `true` this will show a color field in the [TaskEdit](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskEdit) editor and also a\n * picker in the [TaskMenu](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskMenu). Both enables the user to choose a color which will be\n * applied to the task bar's background. See TaskModel's [eventColor](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-eventColor)\n * config.\n */\n showTaskColorPickers ? : boolean\n /**\n * Set to `true` to show a tooltip when hovering a dependency line\n */\n showTooltip ? : boolean\n /**\n * Specify as `false` to not show unscheduled tasks on the Gantt chart. Unscheduled tasks will be rendered as\n * an icon\n */\n showUnscheduledTasks ? : 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/gantt/docs/api/Gantt/view/GanttBase#config-snap)\n */\n snap ? : boolean\n /**\n * Affects drag drop and resizing of events when [snap](https://bryntum.com/products/gantt/docs/api/Scheduler/view/mixin/TimelineDateMapper#config-snap)\n * is enabled.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Scheduler/view/TimelineBase#config-infiniteScroll)).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/gantt/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/gantt/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/gantt/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-strips)\n */\n strips ? : Record<string, GanttContainerItemConfig>\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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Scheduler/view/TimelineBase#config-forceFit) behaviour.\n */\n suppressFit ? : boolean\n /**\n * A [Mask](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/gantt/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * An empty function by default, but provided so that you can override it. This function is called each time\n * a task is rendered into the gantt to render the contents of the task.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#config-taskRenderer)\n * @param {object} detail An object containing the information needed to render a Task.\n * @param {Gantt.model.TaskModel} detail.taskRecord The task record.\n * @param {object} detail.renderData An object containing details about the task rendering.\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 tasks's 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 {string,Record<string, string>} detail.renderData.style Inline styles for the task bar DOM element. Use either 'border: 1px solid black' or { border: '1px solid black' }\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 a task icon element.\n * @param {Scheduler.model.TimeSpan[],TimeSpanConfig[]} indicators An array that can be populated with TimeSpan records or their config objects to have them rendered in the task row\n * @returns {string,DomConfig,DomConfig[]} A simple string, or a DomConfig object defining the actual HTML\n */\n taskRenderer ? : (detail: { taskRecord: TaskModel, renderData: { cls: DomClassList|string, style: string|Record<string, string>, wrapperCls: DomClassList|string, iconCls: DomClassList|string } }, indicators: TimeSpan[]|TimeSpanConfig[]) => string|DomConfig|DomConfig[]\n /**\n * Inline tasks, will be loaded into an internally created TaskStore.\n */\n tasks ? : TaskModel[]|TaskModelConfig[]\n /**\n * The [TaskStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/TaskStore) holding the tasks to be rendered into the Gantt.\n */\n taskStore ? : TaskStore|TaskStoreConfig\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#config-tbar)\n */\n tbar ? : (GanttContainerItemConfig|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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-tickSize)\n */\n tickSize ? : number\n /**\n * A [TimeAxis](https://bryntum.com/products/gantt/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 the backing project's time range store.\n */\n timeRanges ? : TimeSpan[]|TimeSpanConfig[]\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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Scheduler/model/ProjectModel#config-timeZone) for more\n * information.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#config-title)\n */\n title ? : string\n /**\n * True to toggle the collapsed/expanded state when clicking a parent task bar.\n */\n toggleParentTasksOnClick ? : boolean\n /**\n * The [tools](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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 * 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/gantt/docs/api/Gantt/view/GanttBase#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\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/gantt/docs/api/Gantt/view/GanttBase#config-useContextualRecurrenceRules)\n */\n useContextualRecurrenceRules ? : boolean\n /**\n * A string key used to lookup a predefined [ViewPreset](https://bryntum.com/products/gantt/docs/api/Scheduler/preset/ViewPreset) (e.g. 'weekAndDay', 'hourAndDay'),\n * managed by [PresetManager](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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/gantt/docs/api/Scheduler/data/TimeAxis#config-include) property.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/docs/api/Grid/feature/ai/AIFilter)\n */\n aiFilterFeature ? : object|boolean|string|AIFilter|AIFilterConfig\n /**\n * Displays a [task](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel)'s [baselines](#Gantt/model/TaskModel#field-baselines) below the tasks in the\n * timeline.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Baselines)\n */\n baselinesFeature ? : object|boolean|string|Baselines|BaselinesConfig\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/gantt/docs/api/Grid/feature/CellCopyPaste)\n */\n cellCopyPasteFeature ? : object|boolean|string|CellCopyPaste|CellCopyPasteConfig\n /**\n * Extends the [CellEdit](https://bryntum.com/products/gantt/docs/api/Grid/feature/CellEdit) to encapsulate Gantt functionality. This feature is enabled by <b>default</b>\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/docs/api/Scheduler/preset/ViewPreset#field-columnLinesFor) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/ColumnResize)\n */\n columnResizeFeature ? : object|boolean|string|ColumnResize|ColumnResizeConfig\n /**\n * This feature highlights the project *critical paths*.\n * Every task is important, but only some of them are critical.\n * The critical path is a chain of linked tasks that directly affects the project finish date.\n * If any task on the critical path is late, the whole project is late.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/CriticalPaths)\n */\n criticalPathsFeature ? : object|boolean|string|CriticalPaths|CriticalPathsConfig\n /**\n * This feature draws dependencies between tasks. Uses a dependency\n * [store](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-dependencyStore) to determine which dependencies to draw.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Dependencies)\n */\n dependenciesFeature ? : object|boolean|string|Dependencies|DependenciesConfig\n /**\n * Feature that displays a popup containing fields for editing dependency data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/DependencyEdit)\n */\n dependencyEditFeature ? : object|boolean|string|DependencyEdit|DependencyEditConfig\n /**\n * Adds event filter menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/EventFilter)\n */\n eventFilterFeature ? : object|boolean|string|EventFilter|EventFilterConfig\n /**\n * This feature provides segmented events support. It implements rendering of such events and also adds a entries to the\n * event context menu allowing to split the selected event and rename segments.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/EventSegments)\n */\n eventSegmentsFeature ? : object|boolean|string|EventSegments|EventSegmentsConfig\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/gantt/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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/Group)\n */\n groupFeature ? : object|boolean|string|Group|GroupConfig\n /**\n * Displays a summary row as a group footer in a grouped grid. Uses the same configuration options on columns as\n * [Summary](https://bryntum.com/products/gantt/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GridGroupSummary|GridGroupSummaryConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/HeaderZoom)\n */\n headerZoomFeature ? : object|boolean|string|HeaderZoom|HeaderZoomConfig\n /**\n * The Indicators feature displays indicators (icons) for different dates related to a task in its row. Hovering an\n * indicator will show a tooltip with its name and date(s). The owning task `id` is embedded in the indicator element\n * dataset as `taskRecordId` which can be useful if you want to have custom actions when clicking (showing a menu for example).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Indicators)\n */\n indicatorsFeature ? : object|boolean|string|Indicators|IndicatorsConfig\n /**\n * A feature that lets you display a label on each side of a Gantt task bar. See\n * [Labels](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/Labels) for more information.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Labels)\n */\n labelsFeature ? : object|boolean|string|Labels|LabelsConfig\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/gantt/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/gantt/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/MergeCells)\n */\n mergeCellsFeature ? : object|boolean|string|MergeCells|MergeCellsConfig\n /**\n * A feature that allows exporting Gantt to Microsoft Project without involving a server.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/MspExport)\n */\n mspExportFeature ? : object|boolean|string|MspExport|MspExportConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/Pan)\n */\n panFeature ? : object|boolean|string|Pan|PanConfig\n /**\n * Highlights the area encapsulating all child tasks of a parent task in a semi-transparent layer. You can style\n * these layer elements using the `b-parent-area` CSS class.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ParentArea)\n */\n parentAreaFeature ? : object|boolean|string|ParentArea|ParentAreaConfig\n /**\n * Generates PDF/PNG files from the Gantt component.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * This feature visualizes the [percentDone](https://bryntum.com/products/gantt/docs/api/SchedulerPro/model/mixin/PercentDoneMixin#field-percentDone) field as a\n * progress bar on the event elements. Each progress bar also optionally has a drag handle which users can drag can\n * change the value.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/PercentBar)\n */\n percentBarFeature ? : object|boolean|string|PercentBar|PercentBarConfig\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/gantt/docs/api/Grid/feature/PinColumns)\n */\n pinColumnsFeature ? : object|boolean|string|PinColumns|PinColumnsConfig\n /**\n * Allows printing Gantt contents using browser print dialog.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * This feature draws project progress line with SVG lines. Requires [PercentBar](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/PercentBar) to be enabled (which\n * by default, it is)\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProgressLine)\n */\n progressLineFeature ? : object|boolean|string|ProgressLine|ProgressLineConfig\n /**\n * Feature that displays the [project editor](https://bryntum.com/products/gantt/docs/api/Gantt/widget/ProjectEditor) allowing users to edit\n * the project settings.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectEdit)\n */\n projectEditFeature ? : object|boolean|string|ProjectEdit|ProjectEditConfig\n /**\n * This feature draws the vertical lines in the schedule area, indicating project start/end dates\n * and also its [status date](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#field-statusDate). The latter can be disabled\n * with the [showStatusDate](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectLines#config-showStatusDate) config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProjectLines)\n */\n projectLinesFeature ? : object|boolean|string|ProjectLines|ProjectLinesConfig\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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RegionResize)\n */\n regionResizeFeature ? : object|boolean|string|RegionResize|RegionResizeConfig\n /**\n * If the task's [rollup](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-rollup) data field is set to `true`, it displays a small bar or diamond below its summary task in the timeline.\n * Each of the rollup elements show a tooltip when hovering it with details of the task.\n * The tooltip content is customizable, see [template](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Rollups#config-template) config for details.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Rollups)\n */\n rollupsFeature ? : object|boolean|string|Rollups|RollupsConfig\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/gantt/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/gantt/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/gantt/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/gantt/docs/api/Grid/feature/RowReorder).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|GridRowResize|GridRowResizeConfig\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/gantt/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/gantt/docs/api/Scheduler/feature/ScheduleTooltip)\n */\n scheduleTooltipFeature ? : object|boolean|string|ScheduleTooltip|ScheduleTooltipConfig\n /**\n * This feature injects buttons in each row that scrolls the task bar into view. It can optionally show a label along\n * with the button, using the [labelRenderer](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ScrollButtons#config-labelRenderer).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/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/gantt/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/gantt/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Sort)\n */\n sortFeature ? : object|boolean|string|Sort|SortConfig\n /**\n * This feature allows splitting the Grid into multiple views, either by using the cell context menu, or\n * programmatically by calling [split()](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|GridSplit|GridSplitConfig\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/gantt/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/gantt/docs/api/Grid/feature/Stripe)\n */\n stripeFeature ? : object|boolean|string|Stripe|StripeConfig\n /**\n * A feature displaying a summary bar in the grid footer.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\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 tasks. You can configure how a newly pasted record is named using\n * [generateNewName](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskCopyPaste#config-generateNewName)\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskCopyPaste)\n */\n taskCopyPasteFeature ? : object|boolean|string|TaskCopyPaste|TaskCopyPasteConfig\n /**\n * Allows user to drag and drop tasks within Gantt, to change their start date.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskDrag)\n */\n taskDragFeature ? : object|boolean|string|TaskDrag|TaskDragConfig\n /**\n * A feature that allows the user to schedule tasks by dragging in the empty parts of the gantt timeline row. Note, this feature is only applicable for unscheduled tasks.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskDragCreate)\n */\n taskDragCreateFeature ? : object|boolean|string|TaskDragCreate|TaskDragCreateConfig\n /**\n * Feature that allows editing tasks using a [TaskEditor](https://bryntum.com/products/gantt/docs/api/Gantt/widget/TaskEditor), a popup with fields for editing task data.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskEdit)\n */\n taskEditFeature ? : object|boolean|string|TaskEdit|TaskEditConfig\n /**\n * Displays a context menu for tasks. Items are populated by other features and/or application code.\n * Configure it with `false` to disable it completely. If enabled, [CellMenu](https://bryntum.com/products/gantt/docs/api/Grid/feature/CellMenu) feature\n * is not available. Cell context menu items are handled by this feature.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskMenu)\n */\n taskMenuFeature ? : object|boolean|string|TaskMenu|TaskMenuConfig\n /**\n * Feature highlighting the non-working time intervals for tasks, based on their [calendar](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-calendar).\n * If a task has no calendar defined, the project's calendar will be used. The non-working time interval can also be\n * recurring. You can find a live example showing how to achieve this in the [Task Calendars Demo](../examples/calendars/).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskNonWorkingTime)\n */\n taskNonWorkingTimeFeature ? : object|boolean|string|TaskNonWorkingTime|TaskNonWorkingTimeConfig\n /**\n * Feature that allows resizing a task by dragging its end date. Resizing a task by dragging its start date is not allowed.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize)\n */\n taskResizeFeature ? : object|boolean|string|TaskResize|TaskResizeConfig\n /**\n * Allows user to drag and drop task segments, to change their start date.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskSegmentDrag)\n */\n taskSegmentDragFeature ? : object|boolean|string|TaskSegmentDrag|TaskSegmentDragConfig\n /**\n * Feature that allows resizing a task segment by dragging its end.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskSegmentResize)\n */\n taskSegmentResizeFeature ? : object|boolean|string|TaskSegmentResize|TaskSegmentResizeConfig\n /**\n * This feature displays a task tooltip on mouse hover. The template of the tooltip is customizable\n * with the [template](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskTooltip#config-template) function.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskTooltip)\n */\n taskTooltipFeature ? : object|boolean|string|TaskTooltip|TaskTooltipConfig\n /**\n * Adds scheduler specific menu items to the timeline header context menu.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TimeAxisHeaderMenu)\n */\n timeAxisHeaderMenuFeature ? : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig\n /**\n * This feature allows drawing line charts on top of the timeline area. Feature consists of two parts: chart and\n * data providers. Chart provider is responsible for rendering the chart, while data provider is responsible\n * for providing data for the chart. Feature itself manages the interaction between them, and tracks lifecycle events\n * of the Gantt chart.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TimelineChart)\n */\n timelineChartFeature ? : object|boolean|string|TimelineChart|TimelineChartConfig\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/gantt/docs/api/Scheduler/feature/TimeRanges#config-showCurrentTimeLine) to true. To style the rendered elements, use the\n * [cls](https://bryntum.com/products/gantt/docs/api/Scheduler/model/TimeSpan#field-cls) field of the `TimeSpan` class.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TimeRanges)\n */\n timeRangesFeature ? : object|boolean|string|TimeRanges|TimeRangesConfig\n /**\n * This feature exposes methods on the owning Scheduler or Gantt widget which you can use to highlight one or multiple time spans\n * in the schedule. Please see [highlightTimeSpan](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/TimeSpanHighlight#function-highlightTimeSpan) and [highlightTimeSpans](#SchedulerPro/feature/TimeSpanHighlight#function-highlightTimeSpans) to learn\n * more or try the demo below:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/feature/TimeSpanHighlight)\n */\n timeSpanHighlightFeature ? : object|boolean|string|TimeSpanHighlight|TimeSpanHighlightConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/gantt/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/gantt/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/gantt/docs/api/Grid/feature/Tree)\n */\n treeFeature ? : object|boolean|string|Tree|TreeConfig\n /**\n * Extends Grid's [TreeGroup](https://bryntum.com/products/gantt/docs/api/Grid/feature/TreeGroup) (follow the link for more info) feature to enable using it with Gantt.\n * Allows generating a new task tree where parents are determined by the values of specified task fields/functions:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n /**\n * Captures versions (snapshots) of the active project, including a detailed log of the changes new in each version.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/feature/Versions)\n */\n versionsFeature ? : object|boolean|string|Versions|VersionsConfig\n\n}\n\n@Component({\n selector : 'bryntum-gantt-base',\n template : ''\n})\nexport class BryntumGanttBaseComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GanttBase;\n\n public static instanceName = 'GanttBase';\n\n private static bryntumEvents: string[] = [\n 'onAfterDependencyCreateDrop',\n 'onAfterDependencySave',\n 'onAfterDragCreate',\n 'onAfterEventEdit',\n 'onAfterEventSave',\n 'onAfterProjectEdit',\n 'onAfterProjectSave',\n 'onAfterTaskDrop',\n 'onAfterTaskEdit',\n 'onAfterTaskSave',\n 'onAfterTaskSegmentDrop',\n 'onBeforeAssignmentDelete',\n 'onBeforeCancelCellEdit',\n 'onBeforeCancelRowEdit',\n 'onBeforeCellEditStart',\n 'onBeforeCellRangeDelete',\n 'onBeforeCellRangeEdit',\n 'onBeforeColumnDragStart',\n 'onBeforeColumnDropFinalize',\n 'onBeforeColumnResize',\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 'onBeforeEventDelete',\n 'onBeforeEventEdit',\n 'onBeforeEventEditShow',\n 'onBeforeEventResize',\n 'onBeforeEventResizeFinalize',\n 'onBeforeEventSave',\n 'onBeforeEventSegmentResize',\n 'onBeforeEventSegmentResizeFinalize',\n 'onBeforeExcelExport',\n 'onBeforeFillHandleDragStart',\n 'onBeforeFinishCellEdit',\n 'onBeforeFinishRowEdit',\n 'onBeforeHide',\n 'onBeforeMspExport',\n 'onBeforePan',\n 'onBeforePaste',\n 'onBeforePdfExport',\n 'onBeforePresetChange',\n 'onBeforeProjectEdit',\n 'onBeforeProjectEditShow',\n 'onBeforeProjectSave',\n 'onBeforeRenderRow',\n 'onBeforeRenderRows',\n 'onBeforeRowCollapse',\n 'onBeforeRowExpand',\n 'onBeforeSelectionChange',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onBeforeShowTerminals',\n 'onBeforeStartRowEdit',\n 'onBeforeStateApply',\n 'onBeforeStateSave',\n 'onBeforeTaskAdd',\n 'onBeforeTaskDelete',\n 'onBeforeTaskDrag',\n 'onBeforeTaskDropFinalize',\n 'onBeforeTaskEdit',\n 'onBeforeTaskEditShow',\n 'onBeforeTaskResize',\n 'onBeforeTaskResizeFinalize',\n 'onBeforeTaskSave',\n 'onBeforeTaskSegmentDrag',\n 'onBeforeTaskSegmentDropFinalize',\n 'onBeforeTaskSegmentResize',\n 'onBeforeTaskSegmentResizeFinalize',\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 'onCriticalPathsHighlighted',\n 'onCriticalPathsUnhighlighted',\n 'onCurrentTimelineUpdate',\n 'onDataChange',\n 'onDateRangeChange',\n 'onDependenciesDrawn',\n 'onDependencyClick',\n 'onDependencyContextMenu',\n 'onDependencyCreateDragStart',\n 'onDependencyCreateDrop',\n 'onDependencyDblClick',\n 'onDependencyMouseOut',\n 'onDependencyMouseOver',\n 'onDependencyValidationComplete',\n 'onDependencyValidationStart',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onDragCreateEnd',\n 'onDragCreateStart',\n 'onDragSelecting',\n 'onElementCreated',\n 'onEventEditBeforeSetRecord',\n 'onEventMenuBeforeShow',\n 'onEventMenuItem',\n 'onEventMenuShow',\n 'onEventPartialResize',\n 'onEventResizeEnd',\n 'onEventResizeStart',\n 'onEventSegmentPartialResize',\n 'onEventSegmentResizeEnd',\n 'onEventSegmentResizeStart',\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 'onMspExport',\n 'onNavigate',\n 'onNoZoomChange',\n 'onPaint',\n 'onPaste',\n 'onPdfExport',\n 'onPercentBarDrag',\n 'onPercentBarDragAbort',\n 'onPercentBarDragStart',\n 'onPercentBarDrop',\n 'onPresetChange',\n 'onProjectEditCanceled',\n 'onReadOnly',\n 'onRecompose',\n 'onReleaseTask',\n 'onRenderRow',\n 'onRenderRows',\n 'onRenderTask',\n 'onResize',\n 'onResourceAssignmentClick',\n 'onResponsive',\n 'onRowCollapse',\n 'onRowExpand',\n 'onRowMouseEnter',\n 'onRowMouseLeave',\n 'onScheduleMenuBeforeShow',\n 'onScheduleMenuItem',\n 'onScheduleMenuShow',\n 'onScroll',\n 'onScrollButtonClick',\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 'onTaskClick',\n 'onTaskContextMenu',\n 'onTaskDblClick',\n 'onTaskDrag',\n 'onTaskDragStart',\n 'onTaskDrop',\n 'onTaskEditCanceled',\n 'onTaskKeyDown',\n 'onTaskKeyUp',\n 'onTaskMenuBeforeShow',\n 'onTaskMenuItem',\n 'onTaskMenuShow',\n 'onTaskMouseDown',\n 'onTaskMouseOut',\n 'onTaskMouseOver',\n 'onTaskMouseUp',\n 'onTaskNonWorkingTimeClick',\n 'onTaskNonWorkingTimeContextMenu',\n 'onTaskNonWorkingTimeDblClick',\n 'onTaskPartialResize',\n 'onTaskResizeEnd',\n 'onTaskResizeStart',\n 'onTaskSegmentDrag',\n 'onTaskSegmentDragStart',\n 'onTaskSegmentDrop',\n 'onTaskSegmentPartialResize',\n 'onTaskSegmentResizeEnd',\n 'onTaskSegmentResizeStart',\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 'onTransactionChange',\n 'onUnlockRows',\n 'onUnsplit',\n 'onVisibleDateRangeChange'\n ];\n\n private static bryntumFeatureNames: string[] = [\n 'aiFilterFeature',\n 'baselinesFeature',\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 'criticalPathsFeature',\n 'dependenciesFeature',\n 'dependencyEditFeature',\n 'eventFilterFeature',\n 'eventSegmentsFeature',\n 'excelExporterFeature',\n 'fileDropFeature',\n 'fillHandleFeature',\n 'filterFeature',\n 'filterBarFeature',\n 'groupFeature',\n 'groupSummaryFeature',\n 'headerMenuFeature',\n 'headerZoomFeature',\n 'indicatorsFeature',\n 'labelsFeature',\n 'lockRowsFeature',\n 'mergeCellsFeature',\n 'mspExportFeature',\n 'nonWorkingTimeFeature',\n 'panFeature',\n 'parentAreaFeature',\n 'pdfExportFeature',\n 'percentBarFeature',\n 'pinColumnsFeature',\n 'printFeature',\n 'progressLineFeature',\n 'projectEditFeature',\n 'projectLinesFeature',\n 'quickFindFeature',\n 'regionResizeFeature',\n 'rollupsFeature',\n 'rowCopyPasteFeature',\n 'rowEditFeature',\n 'rowExpanderFeature',\n 'rowReorderFeature',\n 'rowResizeFeature',\n 'scheduleMenuFeature',\n 'scheduleTooltipFeature',\n 'scrollButtonsFeature',\n 'searchFeature',\n 'sortFeature',\n 'splitFeature',\n 'stickyCellsFeature',\n 'stripeFeature',\n 'summaryFeature',\n 'taskCopyPasteFeature',\n 'taskDragFeature',\n 'taskDragCreateFeature',\n 'taskEditFeature',\n 'taskMenuFeature',\n 'taskNonWorkingTimeFeature',\n 'taskResizeFeature',\n 'taskSegmentDragFeature',\n 'taskSegmentResizeFeature',\n 'taskTooltipFeature',\n 'timeAxisHeaderMenuFeature',\n 'timelineChartFeature',\n 'timeRangesFeature',\n 'timeSpanHighlightFeature',\n 'treeFeature',\n 'treeGroupFeature',\n 'versionsFeature'\n ];\n\n private static bryntumConfigs: string[] = BryntumGanttBaseComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'alignSelf',\n 'allowCreate',\n 'allowCreateOnlyParent',\n 'allowDropOnEventBar',\n 'animateFilterRemovals',\n 'animateRemovingRows',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'assignments',\n 'autoAdjustTimeAxis',\n 'autoHeight',\n 'barMargin',\n 'bbar',\n 'bodyCls',\n 'bubbleEvents',\n 'bufferCoef',\n 'bufferThreshold',\n 'calendars',\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 'cycleResolutionPopupClass',\n 'data',\n 'dataField',\n 'dataset',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencies',\n 'dependencyIdField',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displayDateFormat',\n 'displaySchedulingIssueResolutionPopup',\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 'eventColor',\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 'hoverCls',\n 'icon',\n 'id',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\n 'infiniteScroll',\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 'newTaskDefaults',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScroll',\n 'preserveScrollOnDatasetChange',\n 'presets',\n 'preventTooltipOnTouch',\n 'project',\n 'projectProgressReporting',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceImageFolderPath',\n 'resourceImagePath',\n 'resources',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'schedulingIssueResolutionPopupClass',\n 'scrollable',\n 'scrollerClass',\n 'scrollManager',\n 'scrollTaskIntoViewOnCellClick',\n 'selectionMode',\n 'showCostControls',\n 'showCreationTooltip',\n 'showDirty',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTaskColorPickers',\n 'showTooltip',\n 'showUnscheduledTasks',\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 'taskRenderer',\n 'tasks',\n 'taskStore',\n 'tbar',\n 'terminalCls',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSides',\n 'terminalSize',\n 'tickSize',\n 'timeAxis',\n 'timeRanges',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'toggleParentTasksOnClick',\n 'tools',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'ui',\n 'useContextualRecurrenceRules',\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 'cycleResolutionPopupClass',\n 'dataField',\n 'defaultRegion',\n 'defaultResourceImageName',\n 'dependencyIdField',\n 'destroyStore',\n 'detectCSSCompatibilityIssues',\n 'disableGridColumnIdWarning',\n 'disableGridRowModelWarning',\n 'displaySchedulingIssueResolutionPopup',\n 'dock',\n 'drawer',\n 'durationDisplayPrecision',\n 'elementAttributes',\n 'enableDeleteKey',\n 'enableRecurringEvents',\n 'enableSticky',\n 'enableTextSelection',\n 'enableTransactionalFeatures',\n 'fillLastColumn',\n 'fixedRowHeight',\n 'footer',\n 'formulaProviders',\n 'fullRowRefresh',\n 'getDateConstraints',\n 'getRowHeight',\n 'header',\n 'hideHorizontalScrollbar',\n 'hoverCls',\n 'icon',\n 'ignoreDomEventsWhileScrolling',\n 'ignoreParentReadOnly',\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 'newTaskDefaults',\n 'owner',\n 'partner',\n 'plugins',\n 'preserveFocusOnDatasetChange',\n 'preserveScrollOnDatasetChange',\n 'preventTooltipOnTouch',\n 'projectProgressReporting',\n 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\n 'resourceImageFolderPath',\n 'resourceImagePath',\n 'responsiveLevels',\n 'ripple',\n 'rootElement',\n 'schedulingIssueResolutionPopupClass',\n 'scrollerClass',\n 'scrollManager',\n 'showCostControls',\n 'showCreationTooltip',\n 'showDirty',\n 'showLagInTooltip',\n 'showRecurringUI',\n 'showTaskColorPickers',\n 'snapRelativeToEventStartDate',\n 'stateful',\n 'statefulEvents',\n 'stateId',\n 'stateProvider',\n 'stickyHeaders',\n 'strips',\n 'subGridConfigs',\n 'syncMask',\n 'tab',\n 'tabBarItems',\n 'taskRenderer',\n 'tbar',\n 'terminalCls',\n 'terminalSides',\n 'timeAxis',\n 'ui',\n 'visibleZoomFactor',\n 'weekStartDay',\n 'weight',\n 'zoomKeepsOriginalTimespan',\n 'zoomOnMouseWheel',\n 'zoomOnTimeAxisDoubleClick'\n ];\n\n private static bryntumProps: string[] = BryntumGanttBaseComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'allowDropOnEventBar',\n 'animateTreeNodeToggle',\n 'appendTo',\n 'assignments',\n 'barMargin',\n 'calendarManagerStore',\n 'calendars',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cellEllipsis',\n 'cls',\n 'collapsed',\n 'column',\n 'columnLines',\n 'columns',\n 'creationTooltipTemplate',\n 'data',\n 'dataset',\n 'dependencies',\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 '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 'project',\n 'readOnly',\n 'recurrenceConfirmationPopup',\n 'rendition',\n 'resources',\n 'rowHeight',\n 'rowLines',\n 'rtl',\n 'scrollable',\n 'scrollLeft',\n 'scrollTaskIntoViewOnCellClick',\n 'scrollTop',\n 'scrollX',\n 'selectedCell',\n 'selectedCells',\n 'selectedRecord',\n 'selectedRecords',\n 'selectedRows',\n 'selectionMode',\n 'showTooltip',\n 'showUnscheduledTasks',\n 'snap',\n 'span',\n 'startDate',\n 'state',\n 'stateSettings',\n 'store',\n 'suppressFit',\n 'tasks',\n 'taskStore',\n 'terminalHideDelay',\n 'terminalOffset',\n 'terminalShowDelay',\n 'terminalSize',\n 'tickSize',\n 'timeRanges',\n 'timeResolution',\n 'timeZone',\n 'title',\n 'toggleParentTasksOnClick',\n 'tools',\n 'tooltip',\n 'tooltipTemplate',\n 'transition',\n 'transitionDuration',\n 'useContextualRecurrenceRules',\n 'viewPreset',\n 'visibleDate',\n 'width',\n 'workingTime',\n 'zoomLevel'\n ]);\n\n private elementRef: ElementRef;\n public instance!: GanttBase;\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 ! : (GanttContainerItemConfig|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() cycleResolutionPopupClass ! : typeof CycleResolutionPopup;\n @Input() dataField ! : string;\n @Input() defaultRegion ! : string;\n @Input() defaultResourceImageName ! : string;\n @Input() dependencyIdField ! : string;\n @Input() destroyStore ! : boolean;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() disableGridColumnIdWarning ! : boolean;\n @Input() disableGridRowModelWarning ! : boolean;\n @Input() displaySchedulingIssueResolutionPopup ! : 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() 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 ! : (taskRecord: TaskModel) => DateConstraint;\n @Input() getRowHeight ! : (getRowHeight: { record: Model }) => number;\n @Input() header ! : string|boolean|PanelHeader;\n @Input() hideHorizontalScrollbar ! : boolean;\n @Input() hoverCls ! : string;\n @Input() icon ! : string|DomConfig;\n @Input() ignoreDomEventsWhileScrolling ! : boolean;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : GanttBaseListeners;\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() newTaskDefaults ! : TaskModelConfig|object|(() => TaskModelConfig|object);\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() projectProgressReporting ! : string|null;\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() resourceImageFolderPath ! : string;\n @Input() resourceImagePath ! : string;\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() schedulingIssueResolutionPopupClass ! : typeof SchedulingIssueResolutionPopup;\n @Input() scrollerClass ! : typeof Scroller;\n @Input() scrollManager ! : ScrollManagerConfig|ScrollManager;\n @Input() showCostControls ! : boolean;\n @Input() showCreationTooltip ! : boolean;\n @Input() showDirty ! : boolean|{\n duringEdit?: boolean\n newRecord?: boolean\n };\n @Input() showLagInTooltip ! : boolean;\n @Input() showRecurringUI ! : boolean;\n @Input() showTaskColorPickers ! : boolean;\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, GanttContainerItemConfig>;\n @Input() subGridConfigs ! : Record<string, SubGridConfig>;\n @Input() syncMask ! : string|MaskConfig|null;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() taskRenderer ! : (detail: { taskRecord: TaskModel, renderData: { cls: DomClassList|string, style: string|Record<string, string>, wrapperCls: DomClassList|string, iconCls: DomClassList|string } }, indicators: TimeSpan[]|TimeSpanConfig[]) => string|DomConfig|DomConfig[];\n @Input() tbar ! : (GanttContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() terminalCls ! : string;\n @Input() terminalSides ! : string[];\n @Input() timeAxis ! : TimeAxisConfig|TimeAxis;\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() allowDropOnEventBar ! : boolean;\n @Input() animateTreeNodeToggle ! : boolean;\n @Input() appendTo ! : HTMLElement|string;\n @Input() assignments ! : AssignmentModel[]|AssignmentModelConfig[];\n @Input() barMargin ! : number;\n @Input() calendars ! : CalendarModel[]|CalendarModelConfig[];\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|GanttColumnConfig[]|ColumnStoreConfig;\n @Input() creationTooltipTemplate ! : (data: { source: TimeSpan, target: TimeSpan, fromSide: string, toSide: string, valid: boolean }) => string|DomConfig;\n @Input() data ! : object[]|Model[]|ModelConfig[];\n @Input() dataset ! : object|Record<string, string>;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\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() 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() project ! : ProjectModel|ProjectModelConfig|object;\n @Input() readOnly ! : boolean;\n @Input() recurrenceConfirmationPopup ! : RecurrenceConfirmationPopupConfig|RecurrenceConfirmationPopup;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() resources ! : ResourceModel[]|ResourceModelConfig[];\n @Input() rowHeight ! : number;\n @Input() rowLines ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() scrollTaskIntoViewOnCellClick ! : boolean|BryntumScrollOptions;\n @Input() selectionMode ! : GridSelectionMode;\n @Input() showTooltip ! : boolean;\n @Input() showUnscheduledTasks ! : 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() tasks ! : TaskModel[]|TaskModelConfig[];\n @Input() taskStore ! : TaskStore|TaskStoreConfig;\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() timeResolution ! : {\n increment?: number\n unit?: DurationUnit\n }|number;\n @Input() timeZone ! : string|number;\n @Input() title ! : string;\n @Input() toggleParentTasksOnClick ! : boolean;\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() useContextualRecurrenceRules ! : boolean;\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() calendarManagerStore ! : CalendarManagerStore;\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() baselinesFeature ! : object|boolean|string|Baselines|BaselinesConfig;\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() criticalPathsFeature ! : object|boolean|string|CriticalPaths|CriticalPathsConfig;\n @Input() dependenciesFeature ! : object|boolean|string|Dependencies|DependenciesConfig;\n @Input() dependencyEditFeature ! : object|boolean|string|DependencyEdit|DependencyEditConfig;\n @Input() eventFilterFeature ! : object|boolean|string|EventFilter|EventFilterConfig;\n @Input() eventSegmentsFeature ! : object|boolean|string|EventSegments|EventSegmentsConfig;\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|GridGroupSummary|GridGroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() headerZoomFeature ! : object|boolean|string|HeaderZoom|HeaderZoomConfig;\n @Input() indicatorsFeature ! : object|boolean|string|Indicators|IndicatorsConfig;\n @Input() labelsFeature ! : object|boolean|string|Labels|LabelsConfig;\n @Input() lockRowsFeature ! : object|boolean|string|GridLockRows|GridLockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() mspExportFeature ! : object|boolean|string|MspExport|MspExportConfig;\n @Input() nonWorkingTimeFeature ! : object|boolean|string|NonWorkingTime|NonWorkingTimeConfig;\n @Input() panFeature ! : object|boolean|string|Pan|PanConfig;\n @Input() parentAreaFeature ! : object|boolean|string|ParentArea|ParentAreaConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() percentBarFeature ! : object|boolean|string|PercentBar|PercentBarConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() progressLineFeature ! : object|boolean|string|ProgressLine|ProgressLineConfig;\n @Input() projectEditFeature ! : object|boolean|string|ProjectEdit|ProjectEditConfig;\n @Input() projectLinesFeature ! : object|boolean|string|ProjectLines|ProjectLinesConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() rollupsFeature ! : object|boolean|string|Rollups|RollupsConfig;\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() 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() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|GridSplit|GridSplitConfig;\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() taskCopyPasteFeature ! : object|boolean|string|TaskCopyPaste|TaskCopyPasteConfig;\n @Input() taskDragFeature ! : object|boolean|string|TaskDrag|TaskDragConfig;\n @Input() taskDragCreateFeature ! : object|boolean|string|TaskDragCreate|TaskDragCreateConfig;\n @Input() taskEditFeature ! : object|boolean|string|TaskEdit|TaskEditConfig;\n @Input() taskMenuFeature ! : object|boolean|string|TaskMenu|TaskMenuConfig;\n @Input() taskNonWorkingTimeFeature ! : object|boolean|string|TaskNonWorkingTime|TaskNonWorkingTimeConfig;\n @Input() taskResizeFeature ! : object|boolean|string|TaskResize|TaskResizeConfig;\n @Input() taskSegmentDragFeature ! : object|boolean|string|TaskSegmentDrag|TaskSegmentDragConfig;\n @Input() taskSegmentResizeFeature ! : object|boolean|string|TaskSegmentResize|TaskSegmentResizeConfig;\n @Input() taskTooltipFeature ! : object|boolean|string|TaskTooltip|TaskTooltipConfig;\n @Input() timeAxisHeaderMenuFeature ! : object|boolean|string|TimeAxisHeaderMenu|TimeAxisHeaderMenuConfig;\n @Input() timelineChartFeature ! : object|boolean|string|TimelineChart|TimelineChartConfig;\n @Input() timeRangesFeature ! : object|boolean|string|TimeRanges|TimeRangesConfig;\n @Input() timeSpanHighlightFeature ! : object|boolean|string|TimeSpanHighlight|TimeSpanHighlightConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\n @Input() versionsFeature ! : object|boolean|string|Versions|VersionsConfig;\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.SchedulerDependencyModel} event.dependencyRecord The dependency about to be saved\n */\n @Output() onAfterDependencySave: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: SchedulerDependencyModel }) => void)|string>();\n /**\n * Fires on the owning Gantt at the end of the drag create gesture whether or not\n * a task was scheduled by the gesture.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {HTMLElement} event.proxyElement The element showing the drag creation zone.\n */\n @Output() onAfterDragCreate: any = new EventEmitter<((event: { source: Gantt, proxyElement: HTMLElement }) => 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.SchedulerEventModel} event.eventRecord The record that has been edited.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, eventElement: HTMLElement, editor: Popup }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after an event record is saved\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord The event record about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterEventSave: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance after project editing is finished by applying changes or\n * cancelling them.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The edited project record\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onAfterProjectEdit: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance after a project is saved\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be saved\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onAfterProjectSave: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt after a task drop, regardless if the drop validity\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {boolean} event.valid\n */\n @Output() onAfterTaskDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], valid: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after task editing is finished by applying changes, cancelling them\n * or deleting the task record.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord Task record used in the task editor\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterTaskEdit: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance after a task is saved\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onAfterTaskSave: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt after a task drop, regardless if the drop validity\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dropped segments\n * @param {boolean} event.valid\n */\n @Output() onAfterTaskSegmentDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], valid: boolean }) => 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/gantt/docs/api/Gantt/view/GanttBase#event-beforeAssignmentDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler} event.source The Scheduler instance\n * @param {Scheduler.model.SchedulerAssignmentModel[]} 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: SchedulerAssignmentModel[], 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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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 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.SchedulerDependencyEdit} event.dependencyEdit The dependency edit feature\n * @param {Scheduler.model.SchedulerDependencyModel} event.dependencyRecord The dependency about to be added\n */\n @Output() onBeforeDependencyAdd: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyModel} event.dependencyRecord The dependency record about to be deleted\n */\n @Output() onBeforeDependencyDelete: any = new EventEmitter<((event: { source: Scheduler, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.SchedulerDependencyModel} event.dependencyRecord The record about to be shown in the editor.\n */\n @Output() onBeforeDependencyEdit: any = new EventEmitter<((event: { source: Scheduler, dependencyEdit: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel }) => 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.SchedulerDependencyEdit} event.dependencyEdit The dependencyEdit feature\n * @param {Scheduler.model.SchedulerDependencyModel} 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: SchedulerDependencyEdit, dependencyRecord: SchedulerDependencyModel, 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.SchedulerDependencyModel} 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: SchedulerDependencyModel, 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 Gantt at the beginning of the drag gesture\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Date} event.date The datetime associated with the drag start point.\n */\n @Output() onBeforeDragCreate: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, date: Date }) => void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeDragCreateFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Scheduler instance\n * @param {HTMLElement} event.proxyElement Proxy element, representing future event\n * @param {object} event.context\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: Gantt, proxyElement: HTMLElement, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/GanttBase#event-beforeEventDelete)\n * @param {object} event Event object\n * @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance\n * @param {Scheduler.model.SchedulerEventModel[]} 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: SchedulerEventModel[], context: { finalize: { removeRecords?: boolean } } }) => Promise<boolean>|boolean|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/gantt/docs/api/Gantt/view/GanttBase#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.SchedulerEventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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.SchedulerEventModel} event.eventRecord The record about to be shown in the event editor.\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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.SchedulerEventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.SchedulerResourceModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, 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/gantt/docs/api/Gantt/view/GanttBase#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.SchedulerEventModel} 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: SchedulerEventModel, 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 or Gantt widget instance before an event record is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeEventSave)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord The event record about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeEventSave: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler Pro before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {SchedulerPro.model.SchedulerProResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeEventSegmentResize: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, resourceRecord: SchedulerProResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Scheduler Pro 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/gantt/docs/api/Gantt/view/GanttBase#event-beforeEventSegmentResizeFinalize)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {object} event.context\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n */\n @Output() onBeforeEventSegmentResizeFinalize: any = new EventEmitter<((event: { source: SchedulerPro, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/GanttBase#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 Gantt before export starts. Return `false` to cancel the export.\n * @param {object} event Event object\n * @param {object} event.config Export config\n */\n @Output() onBeforeMspExport: any = new EventEmitter<((event: { config: object }) => 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/gantt/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 on the owning Gantt widget instance before a project is displayed in the editor.\n * This may be listened to in order to take over the project editing flow. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeProjectEdit)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.feature.ProjectEdit} event.projectEdit The projectEdit feature\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be shown in the editor.\n */\n @Output() onBeforeProjectEdit: any = new EventEmitter<((event: { source: Gantt, projectEdit: ProjectEdit, projectRecord: ProjectModel }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt widget when the editor for a project is available but\n * before it is shown. Allows manipulating fields etc.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.feature.ProjectEdit} event.projectEdit The projectEdit feature\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be shown in the editor.\n * @param {Gantt.widget.ProjectEditor} event.editor The editor\n */\n @Output() onBeforeProjectEditShow: any = new EventEmitter<((event: { source: Gantt, projectEdit: ProjectEdit, projectRecord: ProjectModel, editor: ProjectEditor }) => void)|string>();\n /**\n * Fires on the owning Gantt widget instance before a project is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeProjectSave)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The project about to be saved\n * @param {Gantt.widget.ProjectEditor} event.editor The editor widget\n */\n @Output() onBeforeProjectSave: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => 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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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 * 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 {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 * Fires when adding a task from the UI to allow data mutation.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The task\n */\n @Output() onBeforeTaskAdd: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget before a task is deleted, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskDelete)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance.\n * @param {SchedulerPro.model.EventModel} event.taskRecord The record about to be deleted\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeTaskDelete: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt before task dragging starts. Return false to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event The native browser event\n */\n @Output() onBeforeTaskDrag: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskDropFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Gantt.model.TaskModel[]} event.context.taskRecords The dragged task records\n * @param {boolean} event.context.valid Set this to `false` to mark the drop as invalid\n * @param {boolean} event.context.async Set true to handle dragdrop asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize dragdrop. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskDropFinalize: any = new EventEmitter<((event: { source: Gantt, context: { taskRecords: TaskModel[], valid: boolean, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance before a task is displayed in the editor.\n * This may be listened to in order to take over the task editing flow. Returning `false`\n * stops the default editing UI from being shown.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskEdit)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.feature.SchedulerProTaskEdit} event.taskEdit The taskEdit feature\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be shown in the editor.\n * @param {HTMLElement} event.taskElement The element which represents the task\n */\n @Output() onBeforeTaskEdit: any = new EventEmitter<((event: { source: SchedulerPro, taskEdit: SchedulerProTaskEdit, taskRecord: EventModel, taskElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for an event is available but before it is shown. Allows\n * manipulating fields etc.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The SchedulerPro instance\n * @param {SchedulerPro.feature.SchedulerProTaskEdit} event.taskEdit The taskEdit feature\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be shown in the editor.\n * @param {HTMLElement} event.eventElement The element which represents the task\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor\n */\n @Output() onBeforeTaskEditShow: any = new EventEmitter<((event: { source: SchedulerPro, taskEdit: SchedulerProTaskEdit, taskRecord: EventModel, eventElement: HTMLElement, editor: TaskEditorBase }) => void)|string>();\n /**\n * Fires on the owning Gantt before resizing starts. Return `false` to prevent the operation.\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event\n */\n @Output() onBeforeTaskResize: any = new EventEmitter<((event: { taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt 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/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskResizeFinalize)\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Date} event.context.endDate New endDate\n * @param {Date} event.context.originalEndDate End date before resize\n * @param {TaskResizeData[]} event.context.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`.\n * @param {Event} event.event Browser event\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskResizeFinalize: any = new EventEmitter<((event: { taskRecord: TaskModel, source: Gantt, context: { endDate: Date, originalEndDate: Date, resizeData: TaskResizeData[], async: boolean, finalize: Function }, event: Event }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget instance before a task is saved, return `false` to prevent it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskSave)\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord The task about to be saved\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor widget\n */\n @Output() onBeforeTaskSave: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt before segment dragging starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord The segment about to be dragged\n * @param {Event} event.event The native browser event\n */\n @Output() onBeforeTaskSegmentDrag: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires on the owning Gantt to allow implementer to prevent immediate finalization by setting `data.context.async = true`\n * in the listener, to show a confirmation popup etc\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskSegmentDropFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {Gantt.model.TaskModel[]} event.context.taskRecords Dragged segments\n * @param {boolean} event.context.valid Set this to `false` to mark the drop as invalid\n * @param {boolean} event.context.async Set true to handle dragdrop asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize dragdrop. This method accepts one argument: pass true to update records, or false, to ignore changes\n */\n @Output() onBeforeTaskSegmentDropFinalize: any = new EventEmitter<((event: { source: Gantt, context: { taskRecords: TaskModel[], valid: boolean, async: boolean, finalize: Function } }) => void)|string>();\n /**\n * Fired on the owning Gantt before resizing starts. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onBeforeTaskSegmentResize: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: SchedulerResourceModel, event: MouseEvent }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired on the owning Gantt 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/gantt/docs/api/Gantt/view/GanttBase#event-beforeTaskSegmentResizeFinalize)\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {object} event.context\n * @param {boolean} event.context.async Set true to handle resize asynchronously (e.g. to wait for user confirmation)\n * @param {Function} event.context.finalize Call this method to finalize resize. This method accepts one argument: pass `true` to update records, or `false`, to ignore changes\n */\n @Output() onBeforeTaskSegmentResizeFinalize: any = new EventEmitter<((event: { source: Gantt, context: { async: boolean, finalize: Function } }) => 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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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 * Fired when critical paths get highlighted.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-criticalPathsHighlighted)\n */\n @Output() onCriticalPathsHighlighted: any = new EventEmitter<(() => void)|string>();\n /**\n * Fired when critical paths get hidden.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-criticalPathsUnhighlighted)\n */\n @Output() onCriticalPathsUnhighlighted: any = new EventEmitter<(() => 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/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen\n * when zooming, or changing [viewPreset](https://bryntum.com/products/gantt/docs/api/Scheduler/view/TimelineBase#config-viewPreset).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyClick: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyContextMenu: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyDblClick: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, event: MouseEvent }) => 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOut: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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.SchedulerDependencyModel} event.dependency\n * @param {MouseEvent} event.event\n */\n @Output() onDependencyMouseOver: any = new EventEmitter<((event: { source: Scheduler, dependency: SchedulerDependencyModel, 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/gantt/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/gantt/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/gantt/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 Gantt after the task has been scheduled.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {MouseEvent} event.event The ending mouseup event.\n * @param {HTMLElement} event.proxyElement The proxy element showing the drag creation zone.\n */\n @Output() onDragCreateEnd: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent, proxyElement: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the drag start has created a proxy element.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {HTMLElement} event.proxyElement The proxy representing the new event.\n */\n @Output() onDragCreateStart: any = new EventEmitter<((event: { source: Gantt, proxyElement: 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/gantt/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 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.SchedulerEventModel} event.record The record\n */\n @Output() onEventEditBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: SchedulerEventModel }) => 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.SchedulerEventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerEventModel} event.eventRecord\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerEventModel} event.eventRecord Event record for which the menu was triggered\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerEventModel, resourceRecord: SchedulerResourceModel, assignmentRecord: SchedulerAssignmentModel, eventElement: HTMLElement }) => 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.SchedulerEventModel} 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: SchedulerEventModel, 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.SchedulerEventModel} 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: SchedulerEventModel, 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.SchedulerEventModel} event.eventRecord Event record being resized\n * @param {Scheduler.model.SchedulerResourceModel} 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/gantt/docs/api/Scheduler/feature/EventResize#config-resizeSelected) is `true`\n */\n @Output() onEventResizeStart: any = new EventEmitter<((event: { source: Scheduler, eventRecord: SchedulerEventModel, resourceRecord: SchedulerResourceModel, event: MouseEvent, resizeData: EventResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro on each segment resize move event\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n */\n @Output() onEventSegmentPartialResize: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n */\n @Output() onEventSegmentResizeEnd: any = new EventEmitter<((event: { source: SchedulerPro, changed: boolean, eventRecord: EventModel }) => void)|string>();\n /**\n * Fires on the owning Scheduler Pro when segment resizing starts\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.eventRecord Segment being resized\n * @param {SchedulerPro.model.SchedulerProResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onEventSegmentResizeStart: any = new EventEmitter<((event: { source: SchedulerPro, eventRecord: EventModel, resourceRecord: SchedulerProResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Gantt/view/GanttBase#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/gantt/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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 * Fires on the owning Gantt when project content is exported\n * to XML, before the XML is downloaded by the browser.\n * @param {object} event Event object\n * @param {object} event.config Export config\n * @param {string} event.fileContent Exported XML-file content\n */\n @Output() onMspExport: any = new EventEmitter<((event: { config: object, fileContent: string }) => 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/gantt/docs/api/Gantt/view/GanttBase#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 on the owning Scheduler or Gantt widget when dragging the percent bar\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDrag: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget if a percent bar drag-drop operation is aborted\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDragAbort: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when percent bar dragging starts\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDragStart: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired on the owning Scheduler or Gantt widget when dropping the percent bar\n * @param {object} event Event object\n * @param {Scheduler.view.TimelineBase} event.source SchedulerPro or Gantt instance\n * @param {Core.data.Model} event.taskRecord The task record\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onPercentBarDrop: any = new EventEmitter<((event: { source: TimelineBase, taskRecord: Model, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fired after the [viewPreset](https://bryntum.com/products/gantt/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 * Fires on the owning Gantt widget when the editor for a project is canceled.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.ProjectModel} event.projectRecord The edited project\n * @param {Gantt.widget.ProjectEditor} event.editor The editor\n */\n @Output() onProjectEditCanceled: any = new EventEmitter<((event: { source: Gantt, projectRecord: ProjectModel, editor: ProjectEditor }) => 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/gantt/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 * Task is released, no longer in view/removed. A good spot for cleaning custom things added in a `renderTask`\n * listener up, if needed.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {object} event.renderData Task render data\n * @param {Gantt.model.TaskModel} event.taskRecord Rendered task\n * @param {HTMLElement} event.element Task element\n */\n @Output() onReleaseTask: any = new EventEmitter<((event: { source: Gantt, renderData: object, taskRecord: TaskModel, 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 * Task is rendered, its element is available in DOM.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {object} event.renderData Task render data\n * @param {Gantt.model.TaskModel} event.taskRecord Rendered task\n * @param {HTMLElement} event.element Task element\n */\n @Output() onRenderTask: any = new EventEmitter<((event: { source: Gantt, renderData: object, taskRecord: TaskModel, element: HTMLElement }) => void)|string>();\n /**\n * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/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 when clicking a resource avatar or chip in the cells of the [ResourceAssignmentColumn](https://bryntum.com/products/gantt/docs/api/Gantt/column/ResourceAssignmentColumn).\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {Gantt.model.ResourceModel} event.resourceRecord Resource record\n * @param {Event} event.event Browser event\n */\n @Output() onResourceAssignmentClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: ResourceModel, event: Event }) => 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/gantt/docs/api/Gantt/view/GanttBase#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 * 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.SchedulerResourceModel} event.resourceRecord Resource record\n * @param {Date} event.date Clicked date, rounded according to viewPreset's settings\n * @param {Scheduler.model.SchedulerAssignmentModel} 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: SchedulerResourceModel, date: Date, assignmentRecord: SchedulerAssignmentModel, 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.SchedulerResourceModel} 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: SchedulerResourceModel, 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.SchedulerResourceModel} 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: SchedulerResourceModel, date: Date, targetElement: HTMLElement }) => 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 {Gantt.model.TaskModel} event.taskRecord The task record\n */\n @Output() onScrollButtonClick: any = new EventEmitter<((event: { domEvent: Event, taskRecord: TaskModel }) => 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/gantt/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 * Triggered after a click on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a rightclick (or long press on a touch device) on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskContextMenu: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a doubleclick on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskDblClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Gantt while a task is being dragged\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {object} event.dragData\n * @param {boolean} event.changed `true` if startDate has changed.\n */\n @Output() onTaskDrag: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], startDate: Date, endDate: Date, dragData: object, changed: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt when task dragging starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n */\n @Output() onTaskDragStart: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[] }) => void)|string>();\n /**\n * Fires on the owning Gantt after a valid task drop\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords\n * @param {boolean} event.isCopy\n */\n @Output() onTaskDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], isCopy: boolean }) => void)|string>();\n /**\n * Fires on the owning Scheduler or Gantt widget when the editor for an event is canceled.\n * @param {object} event Event object\n * @param {SchedulerPro.view.SchedulerPro} event.source The Scheduler Pro instance\n * @param {SchedulerPro.model.EventModel} event.taskRecord the task about the shown in the editor\n * @param {SchedulerPro.widget.TaskEditorBase} event.editor The editor\n */\n @Output() onTaskEditCanceled: any = new EventEmitter<((event: { source: SchedulerPro, taskRecord: EventModel, editor: TaskEditorBase }) => void)|string>();\n /**\n * Triggered when a keydown event is observed if there are selected tasks.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onTaskKeyDown: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: KeyboardEvent }) => void)|string>();\n /**\n * Triggered when a keyup event is observed if there are selected tasks.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source This Gantt\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {KeyboardEvent} event.event Browser event\n */\n @Output() onTaskKeyUp: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: KeyboardEvent }) => void)|string>();\n /**\n * This event fires on the owning Gantt before the context menu is shown for a task. 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 {Gantt.view.Gantt} event.source\n * @param {MenuItemEntry[]} event.items Menu item configs\n * @param {Gantt.model.TaskModel} event.taskRecord Event record for which the menu was triggered\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuBeforeShow: any = new EventEmitter<((event: { source: Gantt, items: MenuItemEntry[], taskRecord: TaskModel, taskElement: HTMLElement }) => Promise<boolean>|boolean|void)|string>();\n /**\n * This event fires on the owning Gantt when an item is selected in the context menu.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Core.widget.MenuItem} event.item\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuItem: any = new EventEmitter<((event: { source: Gantt, item: MenuItem, taskRecord: TaskModel, taskElement: HTMLElement }) => void)|string>();\n /**\n * This event fires on the owning Gantt after showing the context menu for an event\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Core.widget.Menu} event.menu The menu\n * @param {Gantt.model.TaskModel} event.taskRecord Event record for which the menu was triggered\n * @param {HTMLElement} event.taskElement\n */\n @Output() onTaskMenuShow: any = new EventEmitter<((event: { source: Gantt, menu: Menu, taskRecord: TaskModel, taskElement: HTMLElement }) => void)|string>();\n /**\n * Triggered after a mousedown on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseDown: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered for mouseout from a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseOut: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a mouseover on a task.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseOver: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered after a mouseup on a task bar.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord The Task record\n * @param {MouseEvent} event.event The native browser event\n */\n @Output() onTaskMouseUp: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, event: MouseEvent }) => void)|string>();\n /**\n * Triggered when clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when right-clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeContextMenu: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Triggered when double-clicking a nonworking time element\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source The Gantt chart instance\n * @param {Gantt.model.TaskModel} event.taskRecord Task record\n * @param {object} event.interval The raw data describing the nonworking time interval\n * @param {string} event.interval.name The interval name (if any)\n * @param {Date} event.interval.startDate The interval start date\n * @param {Date} event.interval.endDate The interval end date\n * @param {MouseEvent} event.domEvent Browser event\n */\n @Output() onTaskNonWorkingTimeDblClick: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, interval: { name: string, startDate: Date, endDate: Date }, domEvent: MouseEvent }) => void)|string>();\n /**\n * Fires on the owning Gantt on each resize move event\n * @param {object} event Event object\n * @param {TaskResizeData[]} event.resizeData Data for the tasks that are being resized. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`. The nested properties are same as `context`\n * @param {Gantt.model.TaskModel} event.taskRecord Task record being resized\n * @param {Date} event.startDate New startDate\n * @param {Date} event.endDate New endDate\n * @param {HTMLElement} event.element\n */\n @Output() onTaskPartialResize: any = new EventEmitter<((event: { resizeData: TaskResizeData[], taskRecord: TaskModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {boolean} event.changed\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {TaskResizeData[]} event.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`\n */\n @Output() onTaskResizeEnd: any = new EventEmitter<((event: { changed: boolean, taskRecord: TaskModel, resizeData: TaskResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Gantt when task resizing starts\n * @param {object} event Event object\n * @param {Gantt.model.TaskModel} event.taskRecord\n * @param {Event} event.event\n * @param {TaskResizeData[]} event.resizeData Resize data for selected tasks. Only available when [resizeSelected](https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskResize#config-resizeSelected) is `true`\n */\n @Output() onTaskResizeStart: any = new EventEmitter<((event: { taskRecord: TaskModel, event: Event, resizeData: TaskResizeData[] }) => void)|string>();\n /**\n * Fires on the owning Gantt while a segment is being dragged\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dragged segments\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {object} event.dragData\n * @param {boolean} event.changed `true` if startDate has changed.\n */\n @Output() onTaskSegmentDrag: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], startDate: Date, endDate: Date, dragData: object, changed: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt when segment dragging starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dragged segments\n */\n @Output() onTaskSegmentDragStart: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[] }) => void)|string>();\n /**\n * Fires on the owning Gantt after a valid task drop\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source\n * @param {Gantt.model.TaskModel[]} event.taskRecords Dropped segments\n * @param {boolean} event.isCopy\n */\n @Output() onTaskSegmentDrop: any = new EventEmitter<((event: { source: Gantt, taskRecords: TaskModel[], isCopy: boolean }) => void)|string>();\n /**\n * Fires on the owning Gantt on each resize move event\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Date} event.startDate\n * @param {Date} event.endDate\n * @param {HTMLElement} event.element\n */\n @Output() onTaskSegmentPartialResize: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, startDate: Date, endDate: Date, element: HTMLElement }) => void)|string>();\n /**\n * Fires on the owning Gantt after the resizing gesture has finished.\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {boolean} event.changed Shows if the record has been changed by the resize action\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n */\n @Output() onTaskSegmentResizeEnd: any = new EventEmitter<((event: { source: Gantt, changed: boolean, taskRecord: TaskModel }) => void)|string>();\n /**\n * Fires on the owning Gantt when event resizing starts\n * @param {object} event Event object\n * @param {Gantt.view.Gantt} event.source Gantt instance\n * @param {Gantt.model.TaskModel} event.taskRecord Segment being resized\n * @param {Scheduler.model.SchedulerResourceModel} event.resourceRecord Resource record the resize starts within\n * @param {MouseEvent} event.event Browser event\n */\n @Output() onTaskSegmentResizeStart: any = new EventEmitter<((event: { source: Gantt, taskRecord: TaskModel, resourceRecord: SchedulerResourceModel, event: MouseEvent }) => void)|string>();\n /**\n * Fired when the tick size changes.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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.SchedulerTimeAxisColumn,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: SchedulerTimeAxisColumn|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/gantt/docs/api/Scheduler/feature/TimeAxisHeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#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/gantt/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/gantt/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 * <strong>Note that this event fires on the owning [SchedulerPro](https://bryntum.com/products/gantt/docs/api/SchedulerPro/view/SchedulerPro).</strong>\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/view/GanttBase#event-transactionChange)\n * @param {object} event Event object\n * @param {boolean} event.hasChanges Whether any changes are recorded that are not yet attached to a version.\n */\n @Output() onTransactionChange: any = new EventEmitter<((event: { hasChanges: boolean }) => 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/gantt/docs/api/Gantt/view/GanttBase#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 } = BryntumGanttBaseComponent;\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 } = BryntumGanttBaseComponent;\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 } = BryntumGanttBaseComponent;\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 { Base, DurationUnit, Model, ModelConfig, StateTrackingManager as CoreStateTrackingManager, Store, StoreConfig } from '@bryntum/core-thin';\nimport { AbstractCrudManager, CrudManagerRequestResponse, CrudManagerStoreDescriptor, LazyLoadCrudManagerRequestParams, TimeRangeModel, TimeRangeModelConfig, TimeRangeStore, TimeRangeStoreConfig, TimeSpan, TimeSpanConfig } from '@bryntum/scheduler-thin';\nimport { EventSegmentModel, StateTrackingManagerConfig } from '@bryntum/schedulerpro-thin';\nimport { AssignmentModel, AssignmentModelConfig, AssignmentStore, AssignmentStoreConfig, CalendarManagerStore, CalendarManagerStoreConfig, CalendarModel, CalendarModelConfig, DependencyModel, DependencyModelConfig, DependencyStore, DependencyStoreConfig, ProjectModel, ProjectModelListeners, ResourceModel, ResourceModelConfig, ResourceStore, ResourceStoreConfig, TaskModel, TaskModelConfig, TaskStore, TaskStoreConfig } from '@bryntum/gantt-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGanttProjectModelProps = {\n // Configs\n /**\n * If this flag is set to `true` (default) when a start/end date is set on the event, a corresponding\n * `start-no-earlier/later-than` constraint is added, automatically. This is done in order to\n * keep the event \"attached\" to this date, according to the user intention.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-addConstraintOnDateSet)\n */\n addConstraintOnDateSet ? : boolean\n /**\n * This config manages DST correction in the scheduling engine. It only has effect when DST transition hour is\n * working time. Usually DST transition occurs on Sunday, so with non working weekends the DST correction logic\n * is not involved.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-adjustDurationToDST)\n */\n adjustDurationToDST ? : boolean\n /**\n * If this field is set to `true` scheduling conflicts\n * will include an additional resolution option to \"postpone\" the conflict resolution.\n * The conflict then is stored in the task\n * [postponedConflict](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-postponedConflict) field\n * and can be visualized with the [TaskInfoColumn](https://bryntum.com/products/gantt/docs/api/Gantt/column/TaskInfoColumn).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-allowPostponedConflicts)\n */\n allowPostponedConflicts ? : boolean\n /**\n * The constructor of the assignment model class, to be used in the project. Will be set as the [modelClass](https://bryntum.com/products/gantt/docs/api/Core/data/Store#config-modelClass)\n * property of the [assignmentStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-assignmentStore)\n */\n assignmentModelClass ? : typeof AssignmentModel\n /**\n * Data use to fill the [assignmentStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-assignmentStore). Should be an array of\n * [AssignmentModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/AssignmentModel) or its configuration objects.\n */\n assignments ? : AssignmentModel[]|AssignmentModelConfig[]\n /**\n * The initial data, to fill the [assignmentStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-assignmentStore) with.\n * Should be an array of [AssignmentModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/AssignmentModel) or configuration objects.\n * @deprecated 6.3.0 Use [assignments](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-assignments) instead\n */\n assignmentsData ? : AssignmentModelConfig[]|AssignmentModel[]\n /**\n * An [AssignmentStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/AssignmentStore) instance or a config object.\n */\n assignmentStore ? : AssignmentStore|AssignmentStoreConfig\n /**\n * The constructor to create a dependency store instance with. Should be a class, subclassing the [AssignmentStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/AssignmentStore)\n */\n assignmentStoreClass ? : typeof AssignmentStore\n /**\n * `true` to enable automatic [% done](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-percentDone) calculation for summary\n * tasks, `false` to disable it.\n */\n autoCalculatePercentDoneForParentTasks ? : boolean\n /**\n * Specify `true` to automatically call [load](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method on the next frame after creation.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-autoLoad)\n */\n autoLoad ? : boolean\n /**\n * When `true` (default) adjacent or overlapping task segments get merged automatically.\n */\n autoMergeAdjacentSegments ? : boolean\n /**\n * If this field is set to `true` scheduling conflicts\n * will not show the conflict resolution popup but instead will be saved into\n * tasks [postponedConflict](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-postponedConflict) field.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-autoPostponeConflicts)\n */\n autoPostponeConflicts ? : boolean\n /**\n * If this field is set to `true` scheduling conflicts\n * will not show the conflict resolution popup but instead will be saved into\n * tasks [postponedConflict](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel#field-postponedConflict) field.\n * @deprecated Please use [autoPostponeConflicts](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#field-autoPostponeConflicts) field name.\n */\n autoPostponedConflicts ? : boolean\n /**\n * When this flag is enabled (default), manually scheduled tasks are scheduled automatically on the 2nd scheduling pass.\n * This is a backward pass (\"late\" start/end dates) for forward-scheduled project and forward pass\n * (\"early\" start/end dates) for backward-scheduled project. Because of it, manually scheduled tasks\n * may have non-zero slack.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-autoScheduleManualTasksOnSecondPass)\n */\n autoScheduleManualTasksOnSecondPass ? : boolean\n /**\n * When set to `true`, pins a task at its starting date. Otherwise, it is rescheduled to the\n * project's starting date if there is no predecessor or constraint supplied.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-autoSetConstraints)\n */\n autoSetConstraints ? : boolean\n /**\n * `true` to automatically persist store changes after edits are made in any of the stores monitored.\n * Please note that sync request will not be invoked immediately but only after\n * [autoSyncTimeout](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#config-autoSyncTimeout) interval.\n */\n autoSync ? : boolean\n /**\n * The timeout in milliseconds to wait before persisting changes to the server.\n * Used when [autoSync](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#config-autoSync) is set to `true`.\n */\n autoSyncTimeout ? : number\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/gantt/docs/api/Gantt/model/ProjectModel#config-bubbleEvents)\n */\n bubbleEvents ? : object\n /**\n * Enables backward compatible conflicts postponing logic\n * covering only conflicts between a task constraint and its incoming dependencies.\n * @deprecated The flag is added as a temporary solution and is going to be removed in a next release. Please contact us if you need that old behavior.\n */\n bwcConflictPostpone ? : boolean\n /**\n * The project calendar.\n */\n calendar ? : string|CalendarModelConfig|CalendarModel\n /**\n * A [CalendarManagerStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/CalendarManagerStore) instance or a config object.\n */\n calendarManagerStore ? : CalendarManagerStore|CalendarManagerStoreConfig\n /**\n * The constructor to create a calendar store instance with. Should be a class, subclassing the [CalendarManagerStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/CalendarManagerStore)\n */\n calendarManagerStoreClass ? : typeof CalendarManagerStore\n /**\n * The constructor of the calendar model class, to be used in the project. Will be set as the [modelClass](https://bryntum.com/products/gantt/docs/api/Core/data/Store#config-modelClass)\n * property of the [calendarManagerStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-calendarManagerStore)\n */\n calendarModelClass ? : typeof CalendarModel\n /**\n * Data use to fill the [calendarManagerStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-calendarManagerStore). Should be a\n * [CalendarModel](https://bryntum.com/products/gantt/docs/api/Gantt/model/CalendarModel) array or its configuration objects.\n */\n calendars ? : CalendarModel[]|CalendarModelConfig[]\n /**\n * The initial data, to fill the [calendarManagerStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-calendarManagerStore) with.\n * Should be an array of [CalendarModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/CalendarModel) or configuration objects.\n * @deprecated 6.3.0 Use [calendars](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-calendars) instead\n */\n calendarsData ? : CalendarModelConfig[]|CalendarModel[]\n /**\n * Set to `true` to 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/gantt/docs/api/Gantt/model/ProjectModel#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/gantt/docs/api/Gantt/model/ProjectModel#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\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/gantt/docs/api/Gantt/model/ProjectModel#config-children)\n */\n children ? : boolean|object[]|Model[]|ModelConfig[]\n /**\n * Sets the list of stores controlled by the CRUD manager.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-crudStores)\n */\n crudStores ? : Store[]|string[]|CrudManagerStoreDescriptor[]|StoreConfig[]\n /**\n * The number of days per month.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-daysPerMonth)\n */\n daysPerMonth ? : number\n /**\n * The number of days per week.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-daysPerWeek)\n */\n daysPerWeek ? : number\n /**\n * Enables early rendering in Gantt, by postponing calculations to after the first refresh.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-delayCalculation)\n */\n delayCalculation ? : boolean\n /**\n * Data use to fill the [dependencyStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-dependencyStore). Should be an array of\n * [DependencyModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/DependencyModel) or its configuration objects.\n */\n dependencies ? : DependencyModel[]|DependencyModelConfig[]\n /**\n * The source of the calendar for dependencies (the calendar used for taking dependencies lag into account).\n * Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-dependenciesCalendar)\n */\n dependenciesCalendar ? : 'ToEvent'|'FromEvent'|'Project'|'AllWorking'\n /**\n * The initial data, to fill the [dependencyStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-dependencyStore) with.\n * Should be an array of [DependencyModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/DependencyModel) or configuration objects.\n * @deprecated 6.3.0 Use [dependencies](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-dependencies) instead\n */\n dependenciesData ? : DependencyModelConfig[]|DependencyModel[]\n /**\n * The constructor of the dependency model class, to be used in the project. Will be set as the [modelClass](https://bryntum.com/products/gantt/docs/api/Core/data/Store#config-modelClass)\n * property of the [dependencyStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-dependencyStore)\n */\n dependencyModelClass ? : typeof DependencyModel\n /**\n * A [DependencyStore](https://bryntum.com/products/gantt/docs/api/Gantt/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 [DependencyStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/DependencyStore)\n */\n dependencyStoreClass ? : typeof DependencyStore\n /**\n * Description of the project\n */\n description ? : string\n /**\n * The scheduling direction of the project tasks.\n * The `Forward` direction corresponds to the As-Soon-As-Possible (ASAP) scheduling,\n * `Backward` - to As-Late-As-Possible (ALAP).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-direction)\n */\n direction ? : 'Forward'|'Backward'\n /**\n * Set to `true` to enable calculation progress notifications.\n * When enabled, the project fires [progress](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-progress) events and the Gantt chart load mask reacts by showing a progress bar for the Engine calculations.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-enableProgressNotifications)\n */\n enableProgressNotifications ? : boolean\n /**\n * Configuration of the JSON encoder used by the *Crud Manager*.\n */\n encoder ? : {\n requestData?: object\n }\n /**\n * End date of the project in the ISO 8601 format.\n * The value is calculated as the latest date among all tasks.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-endDate)\n */\n endDate ? : string|Date\n /**\n * Alias to [tasksData](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-tasksData).\n * @deprecated 6.3.0 Use [tasks](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-tasks) instead\n */\n eventsData ? : TaskModelConfig[]|TaskModel[]\n /**\n * A [TaskStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/TaskStore) instance or a config object.\n */\n eventStore ? : TaskStore|TaskStoreConfig\n /**\n * Start expanded or not (only valid for tree data)\n */\n expanded ? : boolean\n /**\n * Specify as `true` to force sync requests to be sent when calling `sync()`, even if there are no local\n * changes. Useful in a polling scenario, to keep client up to date with the backend.\n */\n forceSync ? : boolean\n /**\n * The number of hours per day.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-hoursPerDay)\n */\n hoursPerDay ? : number\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/gantt/docs/api/Gantt/model/ProjectModel#config-id)\n */\n id ? : string|number\n /**\n * <strong>This option is experimental and subject for possible change</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-ignoreConstraintsOnConflictDuringSecondPass)\n * @deprecated The option is no longer needed since the code now by default ignores conflicts faced on the second pass.\n */\n ignoreConstraintsOnConflictDuringSecondPass ? : boolean\n /**\n * Set to `true` to make STM ignore changes coming from the backend. This will allow user to only undo redo\n * local changes.\n */\n ignoreRemoteChangesInSTM ? : boolean\n /**\n * Whether to include \"As soon as possible\" and \"As late as possible\" in the list of the constraints,\n * for compatibility with the MS Project. Enabled by default.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-includeAsapAlapAsConstraints)\n */\n includeAsapAlapAsConstraints ? : boolean\n /**\n * Set to `false` to only include the id of a removed parent node in the request to the backend (also\n * affects programmatic calls to get [changes](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#property-changes) etc.), and not the ids of its children.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-includeChildrenInRemoveRequest)\n */\n includeChildrenInRemoveRequest ? : boolean\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/gantt/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/gantt/docs/api/Gantt/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/gantt/docs/api/Gantt/model/ProjectModel#config-json)\n */\n json ? : string\n /**\n * If set to `true`, or a config object, this makes the CrudManager load records only when needed. When a record\n * or a date range that is not already loaded is requested, a load request will be made to the specified URL.\n * More more details about lazy loading, see the [guide](https://bryntum.com/products/gantt/docs/api/Grid/guides/data/lazyloading.md)\n * @param {object} lazyLoad Lazy load config\n * @param {number} lazyLoad.chunkSize The number of records to be loaded before and after the requested index (only affects the ResourceStore).\n * @param {DurationUnit} bufferUnit Used together with bufferAmount to calculate the start and end dates of each load request. The value is added to the current visible start or end date. Defaults to the visible time span length (does not affect ResourceStore).\n * @param {number} bufferAmount See `bufferUnit`\n */\n lazyLoad ? : boolean|{lazyLoad: { chunkSize: number }, bufferUnit: DurationUnit, bufferAmount: number}\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-listeners)\n */\n listeners ? : ProjectModelListeners\n /**\n * Convenience shortcut to set only the url to load from, when you do not need to supply any other config\n * options in the `load` section of the `transport` config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-loadUrl)\n */\n loadUrl ? : string\n /**\n * Maximum range the project calendars can iterate.\n * The value is defined in milliseconds and by default equals `5 years` roughly.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-maxCalendarRange)\n */\n maxCalendarRange ? : number\n /**\n * The maximum number of *critical paths* to collect in [criticalPaths](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-criticalPaths).\n * When critical tasks connectivity is high (there are many of such tasks having many\n * critical predecessors) the tasks might produce a huge number of critical paths which\n * can't really be handled by a browser.\n * So this value limits the number of paths to collect to protect from such cases.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-maxCriticalPathsCount)\n */\n maxCriticalPathsCount ? : number\n /**\n * Name of the project\n */\n name ? : 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 * The number of Resource records each page should contain, when using [remotePaging](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/mixin/LazyLoadCrudManager#config-remotePaging)\n */\n pageSize ? : 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 * Field name to be used to transfer a phantom record identifier.\n */\n phantomIdField ? : string\n /**\n * Field name to be used to transfer a phantom parent record identifier.\n */\n phantomParentIdField ? : string\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/gantt/docs/api/Gantt/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/gantt/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/gantt/docs/api/Grid/guides/data/lazyloading.md) to find out if your app needs to use the new [isFullyLoaded](https://bryntum.com/products/gantt/docs/api/Core/data/mixin/TreeNode#field-isFullyLoaded) field.\n */\n remoteChildCount ? : number\n /**\n * If set to `true`, this makes the CrudManager load pages of data, instead of loading the complete dataset at\n * once. The requests made to the [loadUrl](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#config-loadUrl) will contain\n * params with info about the current dataset being requested:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-remotePaging)\n */\n remotePaging ? : boolean\n /**\n * When the CrudManager/Project is configured with [lazyLoad](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/mixin/LazyLoadCrudManager#config-lazyLoad) set to `true`, you can configure\n * your own data fetching logic by implementing this function. Doing this will override the built-in fetching\n * mechanism using the [loadUrl](https://bryntum.com/products/gantt/docs/api/Scheduler/data/CrudManager#config-loadUrl).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-requestData)\n * @param {LazyLoadCrudManagerRequestParams} params Object containing info of what data is requested\n * @returns {CrudManagerRequestResponse}\n */\n requestData ? : (params: LazyLoadCrudManagerRequestParams) => Promise<CrudManagerRequestResponse>\n /**\n * `True` to reset identifiers (defined by `idField` config) of phantom records before submitting them\n * to the server.\n */\n resetIdsBeforeSync ? : boolean\n /**\n * Set to `true` to reset the undo/redo queues of the internal [StateTrackingManager](https://bryntum.com/products/gantt/docs/api/Core/data/stm/StateTrackingManager)\n * after the Project has loaded. Defaults to `false`\n */\n resetUndoRedoQueuesAfterLoad ? : boolean\n /**\n * The constructor of the resource model class, to be used in the project. Will be set as the [modelClass](https://bryntum.com/products/gantt/docs/api/Core/data/Store#config-modelClass)\n * property of the [resourceStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-resourceStore)\n */\n resourceModelClass ? : typeof ResourceModel\n /**\n * Data use to fill the [resourceStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-resourceStore). Should be an array of\n * [ResourceModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/ResourceModel) or its configuration objects.\n */\n resources ? : ResourceModel[]|ResourceModelConfig[]\n /**\n * The initial data, to fill the [resourceStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-resourceStore) with.\n * Should be an array of [ResourceModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/ResourceModel) or configuration objects.\n * @deprecated 6.3.0 Use [resources](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-resources) instead\n */\n resourcesData ? : ResourceModelConfig[]|ResourceModel[]\n /**\n * A [ResourceStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/ResourceStore) instance or a config object.\n */\n resourceStore ? : ResourceStore|ResourceStoreConfig\n /**\n * The constructor to create a dependency store instance with. Should be a class, subclassing the [ResourceStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/ResourceStore)\n */\n resourceStoreClass ? : typeof ResourceStore\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/gantt/docs/api/Gantt/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/gantt/docs/api/Gantt/model/ProjectModel#config-silenceInitialCommit)\n */\n silenceInitialCommit ? : boolean\n /**\n * When `true` the project's manually scheduled tasks duration will include only working periods of time.\n * When `false` such tasks will ignore working time calendars and treat all intervals as working.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-skipNonWorkingTimeInDurationWhenSchedulingManually)\n */\n skipNonWorkingTimeInDurationWhenSchedulingManually ? : boolean\n /**\n * When `true` the project manually scheduled tasks will adjust their proposed start/end dates\n * to skip non working time.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-skipNonWorkingTimeWhenSchedulingManually)\n */\n skipNonWorkingTimeWhenSchedulingManually ? : boolean\n /**\n * When `true` treats parsed responses without `success` property as successful.\n * In this mode a parsed response is treated as invalid if it has explicitly set `success : false`.\n */\n skipSuccessProperty ? : boolean\n /**\n * Start date of the project in the ISO 8601 format. Setting this date will constrain all other tasks in the\n * project to start no earlier than it.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-startDate)\n */\n startDate ? : string|Date\n /**\n * Specifies how started tasks are scheduled. Possible values are:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-startedTaskScheduling)\n */\n startedTaskScheduling ? : string\n /**\n * The status date of the project. It is just a date, that sets a reference point to various reporting facilities,\n * like [ProgressLine](https://bryntum.com/products/gantt/docs/api/Gantt/feature/ProgressLine) or [PlannedPercentDoneColumn](#Gantt/column/PlannedPercentDoneColumn).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-statusDate)\n */\n statusDate ? : Date\n /**\n * Configuration options to provide to the STM manager\n */\n stm ? : StateTrackingManagerConfig|CoreStateTrackingManager\n /**\n * Name of a store property to retrieve store identifiers from. Make sure you have an instance of a\n * store to use it by id. Store identifier is used as a container name holding corresponding store data\n * while transferring them to/from the server. By default, `id` property is used. And in case a\n * container identifier has to differ this config can be used:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-storeIdProperty)\n */\n storeIdProperty ? : string\n /**\n * When `true` the Crud Manager does not require all updated and removed records to be mentioned in the\n * *sync* response. In this case response should include only server side changes.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-supportShortSyncResponse)\n */\n supportShortSyncResponse ? : boolean\n /**\n * An array of store identifiers sets an alternative sync responses apply order.\n * By default, the order in which sync responses are applied to the stores is the same as they\n * registered in. But in case of some tricky dependencies between stores this order can be changed:\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-syncApplySequence)\n */\n syncApplySequence ? : string[]|CrudManagerStoreDescriptor[]\n /**\n * Convenience shortcut to set only the url to sync to, when you do not need to supply any other config\n * options in the `sync` section of the `transport` config.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-syncUrl)\n */\n syncUrl ? : string\n /**\n * The constructor of the event model class, to be used in the project. Will be set as the [modelClass](https://bryntum.com/products/gantt/docs/api/Core/data/Store#config-modelClass)\n * property of the [eventStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-eventStore)\n */\n taskModelClass ? : typeof TaskModel\n /**\n * Data use to fill the [taskStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-taskStore). Should be an array of\n * [TaskModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel) or its configuration objects.\n */\n tasks ? : TaskModel[]|TaskModelConfig[]\n /**\n * The initial data, to fill the [taskStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-taskStore) with.\n * Should be an array of [TaskModels](https://bryntum.com/products/gantt/docs/api/Gantt/model/TaskModel) or configuration objects.\n * @deprecated 6.3.0 Use [tasks](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-tasks) instead\n */\n tasksData ? : TaskModelConfig[]|TaskModel[]\n /**\n * An alias for the [eventStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-eventStore).\n */\n taskStore ? : TaskStore|TaskStoreConfig\n /**\n * The constructor to create an task store instance with. Should be a class, subclassing the [TaskStore](https://bryntum.com/products/gantt/docs/api/Gantt/data/TaskStore)\n */\n taskStoreClass ? : typeof TaskStore\n /**\n * Data use to fill the [timeRangeStore](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#property-timeRangeStore). Should be an array of\n * [TimeRangeModels](https://bryntum.com/products/gantt/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/gantt/docs/api/Gantt/model/ProjectModel#property-timeRangeStore) with.\n * Should be an array of [TimeRangeModels](https://bryntum.com/products/gantt/docs/api/Scheduler/model/TimeRangeModel) or configuration objects.\n * @deprecated 6.3.0 Use [timeRanges](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-timeRanges) instead\n */\n timeRangesData ? : TimeSpanConfig[]|TimeSpan[]\n /**\n * Store that holds time ranges - instances of [TimeRangeModel](https://bryntum.com/products/gantt/docs/api/Scheduler/model/TimeRangeModel) for the\n * [TimeRanges](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TimeRanges) feature. A store will be automatically created if none is specified.\n */\n timeRangeStore ? : TimeRangeStoreConfig|TimeRangeStore\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/gantt/docs/api/Gantt/model/ProjectModel#config-timeZone)\n */\n timeZone ? : string|number\n /**\n * Specifies the output format of [toJSON](https://bryntum.com/products/gantt/docs/api/Scheduler/model/mixin/ProjectModelCommon#function-toJSON).\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-toJSONResultFormat)\n */\n toJSONResultFormat ? : 'inlineData'|'model'\n /**\n * If `true`, project [changes](https://bryntum.com/products/gantt/docs/api/SchedulerPro/data/mixin/ProjectCrudManager#property-changes) API will also report project model changes: start/end date,\n * calendar, effort, duration, etc.\n */\n trackProjectModelChanges ? : boolean\n /**\n * When `true` forces the CRUD manager to process responses depending on their `type` attribute.\n * So `load` request may be responded with `sync` response for example.\n * Can be used for smart server logic allowing the server to decide when it's better to respond with a\n * complete data set (`load` response) or it's enough to return just a delta (`sync` response).\n */\n trackResponseType ? : boolean\n /**\n * Configuration of the AJAX requests used by *Crud Manager* to communicate with a server-side.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-transport)\n */\n transport ? : {\n load?: object\n sync?: object\n }\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/gantt/docs/api/Gantt/model/ProjectModel#config-useRawData)\n */\n useRawData ? : boolean\n /**\n * This config validates the response structure for requests made by the Crud Manager.\n * When `true`, the Crud Manager checks every parsed response structure for errors\n * and if the response format is invalid, a warning is logged to the browser console.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-validateResponse)\n */\n validateResponse ? : boolean\n /**\n * `true` to write all fields from the record to the server.\n * If set to `false` it will only send the fields that were modified.\n * Note that any fields that have [persist](https://bryntum.com/products/gantt/docs/api/Core/data/field/DataField#config-persist) set to `false` will\n * still be ignored and fields having [alwaysWrite](https://bryntum.com/products/gantt/docs/api/Core/data/field/DataField#config-alwaysWrite) set to `true`\n * will always be included.\n */\n writeAllFields ? : boolean\n\n}\n\n@Component({\n selector : 'bryntum-gantt-project-model',\n template : ''\n})\nexport class BryntumGanttProjectModelComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ProjectModel;\n\n public static instanceName = 'ProjectModel';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeLoad',\n 'onBeforeLoadApply',\n 'onBeforeResponseApply',\n 'onBeforeSend',\n 'onBeforeSync',\n 'onBeforeSyncApply',\n 'onCatchAll',\n 'onChange',\n 'onCycle',\n 'onDataReady',\n 'onDestroy',\n 'onEmptyCalendar',\n 'onHasChanges',\n 'onLoad',\n 'onLoadCanceled',\n 'onLoadFail',\n 'onNoChanges',\n 'onProgress',\n 'onRequestDone',\n 'onRequestFail',\n 'onRevisionNotification',\n 'onSchedulingConflict',\n 'onSync',\n 'onSyncCanceled',\n 'onSyncDelayed',\n 'onSyncFail'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumGanttProjectModelComponent.bryntumFeatureNames.concat([\n 'addConstraintOnDateSet',\n 'adjustDurationToDST',\n 'allowPostponedConflicts',\n 'assignmentModelClass',\n 'assignments',\n 'assignmentsData',\n 'assignmentStore',\n 'assignmentStoreClass',\n 'autoCalculatePercentDoneForParentTasks',\n 'autoLoad',\n 'autoMergeAdjacentSegments',\n 'autoPostponeConflicts',\n 'autoPostponedConflicts',\n 'autoScheduleManualTasksOnSecondPass',\n 'autoSetConstraints',\n 'autoSync',\n 'autoSyncTimeout',\n 'bubbleEvents',\n 'bwcConflictPostpone',\n 'calendar',\n 'calendarManagerStore',\n 'calendarManagerStoreClass',\n 'calendarModelClass',\n 'calendars',\n 'calendarsData',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'children',\n 'crudStores',\n 'daysPerMonth',\n 'daysPerWeek',\n 'delayCalculation',\n 'dependencies',\n 'dependenciesCalendar',\n 'dependenciesData',\n 'dependencyModelClass',\n 'dependencyStore',\n 'dependencyStoreClass',\n 'description',\n 'direction',\n 'enableProgressNotifications',\n 'encoder',\n 'endDate',\n 'eventsData',\n 'eventStore',\n 'expanded',\n 'forceSync',\n 'hoursPerDay',\n 'id',\n 'ignoreConstraintsOnConflictDuringSecondPass',\n 'ignoreRemoteChangesInSTM',\n 'includeAsapAlapAsConstraints',\n 'includeChildrenInRemoveRequest',\n 'includeLegacyDataProperties',\n 'isFullyLoaded',\n 'json',\n 'lazyLoad',\n 'listeners',\n 'loadUrl',\n 'maxCalendarRange',\n 'maxCriticalPathsCount',\n 'name',\n 'orderedParentIndex',\n 'pageSize',\n 'parentId',\n 'parentIndex',\n 'phantomIdField',\n 'phantomParentIdField',\n 'readOnly',\n 'remoteChildCount',\n 'remotePaging',\n 'requestData',\n 'resetIdsBeforeSync',\n 'resetUndoRedoQueuesAfterLoad',\n 'resourceModelClass',\n 'resources',\n 'resourcesData',\n 'resourceStore',\n 'resourceStoreClass',\n 'shouldSyncDataOnLoad',\n 'silenceInitialCommit',\n 'skipNonWorkingTimeInDurationWhenSchedulingManually',\n 'skipNonWorkingTimeWhenSchedulingManually',\n 'skipSuccessProperty',\n 'startDate',\n 'startedTaskScheduling',\n 'statusDate',\n 'stm',\n 'storeIdProperty',\n 'supportShortSyncResponse',\n 'syncApplySequence',\n 'syncUrl',\n 'taskModelClass',\n 'tasks',\n 'tasksData',\n 'taskStore',\n 'taskStoreClass',\n 'timeRanges',\n 'timeRangesData',\n 'timeRangeStore',\n 'timeZone',\n 'toJSONResultFormat',\n 'trackProjectModelChanges',\n 'trackResponseType',\n 'transport',\n 'useRawData',\n 'validateResponse',\n 'writeAllFields'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adjustDurationToDST',\n 'assignmentModelClass',\n 'assignmentsData',\n 'assignmentStoreClass',\n 'autoLoad',\n 'autoSetConstraints',\n 'autoSync',\n 'autoSyncTimeout',\n 'bubbleEvents',\n 'bwcConflictPostpone',\n 'calendarManagerStoreClass',\n 'calendarModelClass',\n 'calendarsData',\n 'children',\n 'delayCalculation',\n 'dependenciesData',\n 'dependencyModelClass',\n 'dependencyStoreClass',\n 'encoder',\n 'eventsData',\n 'expanded',\n 'includeAsapAlapAsConstraints',\n 'includeChildrenInRemoveRequest',\n 'listeners',\n 'maxCalendarRange',\n 'orderedParentIndex',\n 'pageSize',\n 'parentIndex',\n 'phantomIdField',\n 'phantomParentIdField',\n 'remotePaging',\n 'requestData',\n 'resetIdsBeforeSync',\n 'resetUndoRedoQueuesAfterLoad',\n 'resourceModelClass',\n 'resourcesData',\n 'resourceStoreClass',\n 'silenceInitialCommit',\n 'skipSuccessProperty',\n 'storeIdProperty',\n 'supportShortSyncResponse',\n 'taskModelClass',\n 'tasksData',\n 'taskStoreClass',\n 'timeRangesData',\n 'toJSONResultFormat',\n 'trackResponseType',\n 'transport',\n 'useRawData',\n 'validateResponse',\n 'writeAllFields'\n ];\n\n private static bryntumProps: string[] = BryntumGanttProjectModelComponent.bryntumFeatureNames.concat([\n 'addConstraintOnDateSet',\n 'allChildren',\n 'allowPostponedConflicts',\n 'allUnfilteredChildren',\n 'assignments',\n 'assignmentStore',\n 'autoCalculatePercentDoneForParentTasks',\n 'autoMergeAdjacentSegments',\n 'autoPostponeConflicts',\n 'autoPostponedConflicts',\n 'autoScheduleManualTasksOnSecondPass',\n 'calendar',\n 'calendarManagerStore',\n 'calendars',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'criticalPaths',\n 'crudStores',\n 'daysPerMonth',\n 'daysPerWeek',\n 'dependencies',\n 'dependenciesCalendar',\n 'dependencyStore',\n 'descendantCount',\n 'description',\n 'direction',\n 'enableProgressNotifications',\n 'endDate',\n 'eventStore',\n 'forceSync',\n 'hasGeneratedId',\n 'hoursPerDay',\n 'id',\n 'ignoreConstraintsOnConflictDuringSecondPass',\n 'ignoreRemoteChangesInSTM',\n 'includeLegacyDataProperties',\n 'inlineData',\n 'internalId',\n 'isCommitting',\n 'isCreating',\n 'isFullyLoaded',\n 'isValid',\n 'json',\n 'lazyLoad',\n 'loadUrl',\n 'maxCriticalPathsCount',\n 'name',\n 'parentId',\n 'previousSiblingsTotalCount',\n 'readOnly',\n 'remoteChildCount',\n 'resources',\n 'resourceStore',\n 'segmentModelClass',\n 'shouldSyncDataOnLoad',\n 'skipNonWorkingTimeInDurationWhenSchedulingManually',\n 'skipNonWorkingTimeWhenSchedulingManually',\n 'startDate',\n 'startedTaskScheduling',\n 'statusDate',\n 'stm',\n 'syncApplySequence',\n 'syncUrl',\n 'tasks',\n 'taskStore',\n 'timeRanges',\n 'timeRangeStore',\n 'timeZone',\n 'trackProjectModelChanges',\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 ! : AssignmentModelConfig[]|AssignmentModel[];\n @Input() assignmentStoreClass ! : typeof AssignmentStore;\n @Input() autoLoad ! : boolean;\n @Input() autoSetConstraints ! : boolean;\n @Input() autoSync ! : boolean;\n @Input() autoSyncTimeout ! : number;\n @Input() bubbleEvents ! : object;\n @Input() bwcConflictPostpone ! : boolean;\n @Input() calendarManagerStoreClass ! : typeof CalendarManagerStore;\n @Input() calendarModelClass ! : typeof CalendarModel;\n @Input() calendarsData ! : CalendarModelConfig[]|CalendarModel[];\n @Input() children ! : boolean|object[]|Model[]|ModelConfig[];\n @Input() delayCalculation ! : boolean;\n @Input() dependenciesData ! : DependencyModelConfig[]|DependencyModel[];\n @Input() dependencyModelClass ! : typeof DependencyModel;\n @Input() dependencyStoreClass ! : typeof DependencyStore;\n @Input() encoder ! : {\n requestData?: object\n };\n @Input() eventsData ! : TaskModelConfig[]|TaskModel[];\n @Input() expanded ! : boolean;\n @Input() includeAsapAlapAsConstraints ! : boolean;\n @Input() includeChildrenInRemoveRequest ! : boolean;\n @Input() listeners ! : ProjectModelListeners;\n @Input() maxCalendarRange ! : number;\n @Input() orderedParentIndex ! : number;\n @Input() pageSize ! : number;\n @Input() parentIndex ! : number;\n @Input() phantomIdField ! : string;\n @Input() phantomParentIdField ! : string;\n @Input() remotePaging ! : boolean;\n @Input() requestData ! : (params: LazyLoadCrudManagerRequestParams) => Promise<CrudManagerRequestResponse>;\n @Input() resetIdsBeforeSync ! : boolean;\n @Input() resetUndoRedoQueuesAfterLoad ! : boolean;\n @Input() resourceModelClass ! : typeof ResourceModel;\n @Input() resourcesData ! : ResourceModelConfig[]|ResourceModel[];\n @Input() resourceStoreClass ! : typeof ResourceStore;\n @Input() silenceInitialCommit ! : boolean;\n @Input() skipSuccessProperty ! : boolean;\n @Input() storeIdProperty ! : string;\n @Input() supportShortSyncResponse ! : boolean;\n @Input() taskModelClass ! : typeof TaskModel;\n @Input() tasksData ! : TaskModelConfig[]|TaskModel[];\n @Input() taskStoreClass ! : typeof TaskStore;\n @Input() timeRangesData ! : TimeSpanConfig[]|TimeSpan[];\n @Input() toJSONResultFormat ! : 'inlineData'|'model';\n @Input() trackResponseType ! : boolean;\n @Input() transport ! : {\n load?: object\n sync?: object\n };\n @Input() useRawData ! : boolean;\n @Input() validateResponse ! : boolean;\n @Input() writeAllFields ! : boolean;\n\n // Configs and properties\n @Input() addConstraintOnDateSet ! : boolean;\n @Input() allowPostponedConflicts ! : boolean;\n @Input() assignments ! : AssignmentModel[]|AssignmentModelConfig[];\n @Input() assignmentStore ! : AssignmentStore|AssignmentStoreConfig;\n @Input() autoCalculatePercentDoneForParentTasks ! : boolean;\n @Input() autoMergeAdjacentSegments ! : boolean;\n @Input() autoPostponeConflicts ! : boolean;\n @Input() autoPostponedConflicts ! : boolean;\n @Input() autoScheduleManualTasksOnSecondPass ! : boolean;\n @Input() calendar ! : CalendarModel|string|CalendarModelConfig;\n @Input() calendarManagerStore ! : CalendarManagerStore|CalendarManagerStoreConfig;\n @Input() calendars ! : CalendarModel[]|CalendarModelConfig[];\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() crudStores ! : CrudManagerStoreDescriptor[]|Store[]|string[]|StoreConfig[];\n @Input() daysPerMonth ! : number;\n @Input() daysPerWeek ! : number;\n @Input() dependencies ! : DependencyModel[]|DependencyModelConfig[];\n @Input() dependenciesCalendar ! : 'ToEvent'|'FromEvent'|'Project'|'AllWorking';\n @Input() dependencyStore ! : DependencyStore|DependencyStoreConfig;\n @Input() description ! : string;\n @Input() direction ! : 'Forward'|'Backward';\n @Input() enableProgressNotifications ! : boolean;\n @Input() endDate ! : string|Date;\n @Input() eventStore ! : TaskStore|TaskStoreConfig;\n @Input() forceSync ! : boolean;\n @Input() hoursPerDay ! : number;\n @Input() id ! : string|number;\n @Input() ignoreConstraintsOnConflictDuringSecondPass ! : boolean;\n @Input() ignoreRemoteChangesInSTM ! : boolean;\n @Input() includeLegacyDataProperties ! : boolean;\n @Input() isFullyLoaded ! : boolean;\n @Input() json ! : string;\n @Input() lazyLoad ! : boolean|{lazyLoad: { chunkSize: number }, bufferUnit: DurationUnit, bufferAmount: number};\n @Input() loadUrl ! : string;\n @Input() maxCriticalPathsCount ! : number;\n @Input() name ! : 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() shouldSyncDataOnLoad ! : (options: { store: Store, records: Model, data: object[] }) => Set<any>|boolean;\n @Input() skipNonWorkingTimeInDurationWhenSchedulingManually ! : boolean;\n @Input() skipNonWorkingTimeWhenSchedulingManually ! : boolean;\n @Input() startDate ! : string|Date;\n @Input() startedTaskScheduling ! : string;\n @Input() statusDate ! : Date;\n @Input() stm ! : CoreStateTrackingManager|StateTrackingManagerConfig;\n @Input() syncApplySequence ! : string[]|CrudManagerStoreDescriptor[];\n @Input() syncUrl ! : string;\n @Input() tasks ! : TaskModel[]|TaskModelConfig[];\n @Input() taskStore ! : TaskStore|TaskStoreConfig;\n @Input() timeRanges ! : TimeRangeModel[]|TimeRangeModelConfig[];\n @Input() timeRangeStore ! : Store|TimeRangeStoreConfig|TimeRangeStore;\n @Input() timeZone ! : string|number;\n @Input() trackProjectModelChanges ! : boolean;\n\n // Properties only\n @Input() allChildren ! : Model[];\n @Input() allUnfilteredChildren ! : Model[];\n @Input() criticalPaths ! : any[];\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() segmentModelClass ! : typeof EventSegmentModel;\n @Input() visibleDescendantCount ! : number;\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 * Fires before [load request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) is sent. Return `false` to cancel load request.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.pack The data package which contains data for all stores managed by the crud manager.\n */\n @Output() onBeforeLoad: any = new EventEmitter<((event: { source: AbstractCrudManager, pack: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before loaded data get applied to the stores. Return `false` to prevent data applying.\n * This event can be used for server data preprocessing. To achieve it user can modify the `response` object.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.response The decoded server response object.\n * @param {object} event.options Options provided to the [load](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.\n */\n @Output() onBeforeLoadApply: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object, options: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before server response gets applied to the stores. Return `false` to prevent data applying.\n * This event can be used for server data preprocessing. To achieve it user can modify the `response` object.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {'sync','load'} event.requestType The request type (`sync` or `load`).\n * @param {object} event.response The decoded server response object.\n */\n @Output() onBeforeResponseApply: any = new EventEmitter<((event: { source: AbstractCrudManager, requestType: 'sync'|'load', response: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before a request is sent to the server.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-beforeSend)\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.crudManager The CRUD manager.\n * @param {object} event.params HTTP request params to be passed in the request URL.\n * @param {'sync','load'} event.requestType CrudManager request type (`load`/`sync`)\n * @param {object} event.requestConfig Configuration object for Ajax request call\n */\n @Output() onBeforeSend: any = new EventEmitter<((event: { crudManager: AbstractCrudManager, params: object, requestType: 'sync'|'load', requestConfig: object }) => Promise<void>)|string>();\n /**\n * Fires before [sync request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) is sent. Return `false` to cancel sync request.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-beforeSync)\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.pack The data package which contains data for all stores managed by the crud manager.\n */\n @Output() onBeforeSync: any = new EventEmitter<((event: { source: AbstractCrudManager, pack: object }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires before sync response data get applied to the stores. Return `false` to prevent data applying.\n * This event can be used for server data preprocessing. To achieve it user can modify the `response` object.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.response The decoded server response object.\n */\n @Output() onBeforeSyncApply: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object }) => 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/gantt/docs/api/Gantt/model/ProjectModel#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 data in any of the projects stores changes.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-change)\n * @param {object} event Event object\n * @param {Gantt.model.ProjectModel} 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 the options listed above.\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, 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 detects a computation cycle.\n * @param {object} event Event object\n * @param {object} event.schedulingIssue Scheduling error describing the case:\n * @param {Function} event.schedulingIssue.getDescription Returns the cycle description\n * @param {object} event.schedulingIssue.cycle Object providing the cycle info\n * @param {Function} event.schedulingIssue.getResolutions Returns possible resolutions\n * @param {Function} event.continueWithResolutionResult Function to call after a resolution is chosen to proceed with the Engine calculations: ```javascript project.on('cycle', ({ continueWithResolutionResult }) => { // cancel changes in case of a cycle continueWithResolutionResult(EffectResolutionResult.Cancel); }) ``` Where `EffectResolutionResult.Cancel` results in cancelling the changes.\n */\n @Output() onCycle: any = new EventEmitter<((event: { schedulingIssue: { getDescription: Function, cycle: object, getResolutions: Function }, continueWithResolutionResult: Function }) => 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/gantt/docs/api/Gantt/model/ProjectModel#event-dataReady)\n * @param {object} event Event object\n * @param {Gantt.model.ProjectModel} 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/gantt/docs/api/Core/data/Model)s that were modified in the completed transaction. Use the [modifications](https://bryntum.com/products/gantt/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, isInitialCommit: boolean, records: Set<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 * Fired when the Engine detects a calendar misconfiguration when the calendar does\n * not provide any working periods of time which makes usage impossible.\n * @param {object} event Event object\n * @param {object} event.schedulingIssue Scheduling error describing the case:\n * @param {Function} event.schedulingIssue.getDescription Returns the error description\n * @param {Function} event.schedulingIssue.getCalendar Returns the calendar that must be fixed\n * @param {Function} event.schedulingIssue.getResolutions Returns possible resolutions\n * @param {Function} event.continueWithResolutionResult Function to call after a resolution is chosen to proceed with the Engine calculations: ```javascript project.on('emptyCalendar', ({ schedulingIssue, continueWithResolutionResult }) => { // apply the first resolution and continue schedulingIssue.getResolutions()[0].resolve(); continueWithResolutionResult(EffectResolutionResult.Resume); }) ```\n */\n @Output() onEmptyCalendar: any = new EventEmitter<((event: { schedulingIssue: { getDescription: Function, getCalendar: Function, getResolutions: Function }, continueWithResolutionResult: Function }) => void)|string>();\n /**\n * Fires when data in any of the registered data stores is changed.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-hasChanges)\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n */\n @Output() onHasChanges: any = new EventEmitter<((event: { source: AbstractCrudManager }) => void)|string>();\n /**\n * Fires on successful [load request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) completion after data gets loaded to the stores.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.response The decoded server response object.\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onLoad: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: any }) => void)|string>();\n /**\n * Fired after [load request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)\n * listener or due to incomplete prior load request.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.pack The data package which contains data for all stores managed by the crud manager.\n */\n @Output() onLoadCanceled: any = new EventEmitter<((event: { source: AbstractCrudManager, pack: object }) => void)|string>();\n /**\n * Fires when a [load request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) fails.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager instance.\n * @param {object} event.response The decoded server response object.\n * @param {string} event.responseText The raw server response text\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onLoadFail: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: any }) => void)|string>();\n /**\n * Fires when registered stores get into state when they don't have any\n * not persisted change. This happens after [load](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request\n * completion. Or this may happen after a record update which turns its fields back to their original state.\n * ...\n * [View online docs...](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#event-noChanges)\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n */\n @Output() onNoChanges: any = new EventEmitter<((event: { source: AbstractCrudManager }) => void)|string>();\n /**\n * Fired during the Engine calculation if [enableProgressNotifications](https://bryntum.com/products/gantt/docs/api/Gantt/model/ProjectModel#config-enableProgressNotifications) config is `true`\n * @param {object} event Event object\n * @param {Gantt.model.ProjectModel} event.source The owning project\n * @param {number} event.total The total number of operations\n * @param {number} event.remaining The number of remaining operations\n * @param {'storePopulation','propagating'} event.phase The phase of the calculation, either 'storePopulation' when data is getting loaded, or 'propagating' when data is getting calculated\n */\n @Output() onProgress: any = new EventEmitter<((event: { source: ProjectModel, total: number, remaining: number, phase: 'storePopulation'|'propagating' }) => void)|string>();\n /**\n * Fires on successful request completion after data gets applied to the stores.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {'sync','load'} event.requestType The request type (`sync` or `load`).\n * @param {object} event.response The decoded server response object.\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onRequestDone: any = new EventEmitter<((event: { source: AbstractCrudManager, requestType: 'sync'|'load', response: object, responseOptions: object, requestOptions: object, rawResponse: any }) => void)|string>();\n /**\n * Fires when a request fails.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager instance.\n * @param {'sync','load'} event.requestType The request type (`sync` or `load`).\n * @param {object} event.response The decoded server response object.\n * @param {string} event.responseText The raw server response text\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onRequestFail: any = new EventEmitter<((event: { source: AbstractCrudManager, requestType: 'sync'|'load', response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: any }) => void)|string>();\n /**\n * This event triggers when a new revision is added to the project. It is used to notify the backend about the\n * new revision.\n * @param {object} event Event object\n * @param {string} event.localRevisionId ID of the local revision. Backend should send it in the broadcast channel\n * @param {string} event.conflictResolutionFor ID of the revision with a conflict which was resolved by this revision\n * @param {string} event.clientId ID of the client instance. Used to distinguish own revisions from the broadcast channel\n * @param {object} event.changes Object with changes constituting revision\n */\n @Output() onRevisionNotification: any = new EventEmitter<((event: { localRevisionId: string, conflictResolutionFor?: string, clientId: string, changes: object }) => void)|string>();\n /**\n * Fired when the Engine detects a scheduling conflict.\n * @param {object} event Event object\n * @param {object} event.schedulingIssue The conflict details:\n * @param {Function} event.schedulingIssue.getDescription Returns the conflict description\n * @param {object[]} event.schedulingIssue.intervals Array of conflicting intervals\n * @param {Function} event.schedulingIssue.getResolutions Function to get possible resolutions\n * @param {Function} event.continueWithResolutionResult Function to call after a resolution is chosen to proceed with the Engine calculations: ```javascript project.on('schedulingConflict', ({ schedulingIssue, continueWithResolutionResult }) => { // apply the first resolution and continue schedulingIssue.getResolutions()[0].resolve(); continueWithResolutionResult(EffectResolutionResult.Resume); }) ``` Where `EffectResolutionResult.Resume` results in a resolution being applied and current transaction should be continued.\n */\n @Output() onSchedulingConflict: any = new EventEmitter<((event: { schedulingIssue: { getDescription: Function, intervals: object[], getResolutions: Function }, continueWithResolutionResult: Function }) => void)|string>();\n /**\n * Fires on successful [sync request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) completion.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.response The decoded server response object.\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onSync: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: any }) => void)|string>();\n /**\n * Fires after [sync request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) was canceled by some [beforeSync](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeSync) listener.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.pack The data package which contains data for all stores managed by the crud manager.\n */\n @Output() onSyncCanceled: any = new EventEmitter<((event: { source: AbstractCrudManager, pack: object }) => void)|string>();\n /**\n * Fires after [sync request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) was delayed due to incomplete previous one.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager.\n * @param {object} event.arguments The arguments of [sync](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) call.\n */\n @Output() onSyncDelayed: any = new EventEmitter<((event: { source: AbstractCrudManager, arguments: object }) => void)|string>();\n /**\n * Fires when a [sync request](https://bryntum.com/products/gantt/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-sync) fails.\n * @param {object} event Event object\n * @param {Scheduler.crud.AbstractCrudManager} event.source The CRUD manager instance.\n * @param {object} event.response The decoded server response object.\n * @param {string} event.responseText The raw server response text\n * @param {object} event.responseOptions [DEPRECATED] see `requestOptions`\n * @param {object} event.requestOptions The request options passed to the request.\n * @param {Response} event.rawResponse The native Response object\n */\n @Output() onSyncFail: any = new EventEmitter<((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: 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 } = BryntumGanttProjectModelComponent;\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 } = BryntumGanttProjectModelComponent;\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 } = BryntumGanttProjectModelComponent;\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 Gantt Shared module\n*/\nimport { NgModule } from '@angular/core';\n\nimport { BryntumAssignmentFieldComponent } from './bryntum-assignment-field.component';\nimport { BryntumAssignmentGridComponent } from './bryntum-assignment-grid.component';\nimport { BryntumCalendarPickerComponent } from './bryntum-calendar-picker.component';\nimport { BryntumDependencyFieldComponent } from './bryntum-dependency-field.component';\nimport { BryntumGanttComponent } from './bryntum-gantt.component';\nimport { BryntumGanttBaseComponent } from './bryntum-gantt-base.component';\nimport { BryntumGanttProjectModelComponent } from './bryntum-gantt-project-model.component';\n\n@NgModule({\n declarations : [\n\n BryntumAssignmentFieldComponent,\n BryntumAssignmentGridComponent,\n BryntumCalendarPickerComponent,\n BryntumDependencyFieldComponent,\n BryntumGanttComponent,\n BryntumGanttBaseComponent,\n BryntumGanttProjectModelComponent\n ],\n imports : [],\n exports : [\n\n BryntumAssignmentFieldComponent,\n BryntumAssignmentGridComponent,\n BryntumCalendarPickerComponent,\n BryntumDependencyFieldComponent,\n BryntumGanttComponent,\n BryntumGanttBaseComponent,\n BryntumGanttProjectModelComponent\n ]\n})\nexport class BryntumGanttModule { }\n","/*\n * Public API Surface of Bryntum Gantt\n */\nexport * from './lib/gantt.module';\n\nexport * from './lib/bryntum-assignment-field.component';\nexport * from './lib/bryntum-assignment-grid.component';\nexport * from './lib/bryntum-calendar-picker.component';\nexport * from './lib/bryntum-dependency-field.component';\nexport * from './lib/bryntum-gantt.component';\nexport * from './lib/bryntum-gantt-base.component';\nexport * from './lib/bryntum-gantt-project-model.component'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Widget"],"mappings":";;;;;AAEc,MAAO,aAAa,CAAA;AAC9B;;AAEG;AACI,IAAA,OAAO,UAAU,CAAC,OAAe,EAAE,GAAW,EAAA;;AAEjD,QAAA,IAAI,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC,SAAS,IAAI,SAAS,EAAE,EAAE;AAC3D,YAAA,OAAO,CAAC,IAAI,CAAC,UAAU,OAAO,CAAA,gCAAA,EAAmC,GAAG,CAAI,EAAA,CAAA;AACxE,gBAAA,uHAAuH,CACtH,CAAC;AACL,SAAA;KACJ;AAED;;AAEG;AACI,IAAA,OAAO,mBAAmB,CAAC,OAAe,EAAE,cAAsB,EAAA;AACrE,QAAA,aAAa,CAAC,UAAU,CAAC,OAAO,EAC5B,CAAA,OAAA,EAAU,cAAc,CAAqD,mDAAA,CAAA;YAC7E,+DAA+D;YAC/D,CAAqB,kBAAA,EAAA,cAAc,CAAiC,+BAAA,CAAA,CACvE,CAAC;KACL;AAED;;AAEG;AACI,IAAA,OAAO,oBAAoB,CAAC,OAAe,EAAE,IAAY,EAAA;AAC5D,QAAA,aAAa,CAAC,UAAU,CAAC,OAAO,EAC5B,CAAA,OAAA,EAAU,IAAI,CAAqD,mDAAA,CAAA;YACnE,CAA8C,2CAAA,EAAA,IAAI,CAAwD,sDAAA,CAAA,CAC7G,CAAC;KACL;AAED;;AAEG;AACI,IAAA,OAAO,oBAAoB,CAAC,OAAe,EAAE,IAAY,EAAA;QAC5D,aAAa,CAAC,UAAU,CAAC,OAAO,EAC5B,CAAI,CAAA,EAAA,IAAI,CAA+F,6FAAA,CAAA,CAC1G,CAAC;KACL;AAED;;;;;;AAMG;IACI,OAAO,cAAc,CAAC,gBAA4B,EAAE,IAAY,EAAE,KAAiB,EAAE,QAAA,GAAoB,IAAI,EAAA;QAEhH,IAAI,IAAI,KAAK,SAAS,EAAE;;AAEpB,YAAA,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;gBACpC,gBAAgB,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC;AACpD,aAAA;AACJ,SAAA;aACI,IAAI,IAAI,KAAK,UAAU,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;AACvD,YAAA,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,aAAa,CAAC,cAAc,CAAC,gBAAgB,EAAE,CAAA,EAAG,GAAG,CAAA,OAAA,CAAS,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;AAC5H,SAAA;aACI,IAAI,IAAI,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;AACrD,YAAA,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,GAAG,IAAI,aAAa,CAAC,cAAc,CAAC,gBAAgB,EAAE,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;AAChH,SAAA;AACI,aAAA,IAAI,IAAI,KAAK,SAAS,IAAI,CAAC,QAAQ,EAAE;AACtC,YAAA,gBAAgB,CAAC,SAAS,CAAC,CAAC,IAAI,GAAG,KAAK,CAAC;AAC5C,SAAA;AACI,aAAA,IAAI,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;AAC/B,YAAA,MACI,QAAQ,GAAM,gBAAgB,CAAC,UAAU,CAAC,EAC1C,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;AAC9C,YAAA,IAAI,QAAQ,EAAE;AACV,gBAAA,QAAQ,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC;AACjC,aAAA;AACI,iBAAA;AACD,gBAAA,MAAM,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC,CAAC;AACtC,gBAAA,IAAI,OAAO,EAAE;AACT,oBAAA,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;AAC5B,iBAAA;AACJ,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,gBAAgB,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;AAClC,SAAA;KACJ;AAEJ;;ACxFD;MAu2Ba,+BAA+B,CAAA;AA8VxC,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AA8KF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiH,CAAC;AAC5J;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+L,CAAC;AAC1O;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAC7F;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA4E,CAAC;AACtH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAoE,CAAC;AA3U5G,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AA4UD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,+BAA+B,CAAC;AAExC,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;KAE7G;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,+BAA+B,CAAC;QACvD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,+BAA+B,CAAC;AAC3E,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AA/wBa,+BAAa,CAAA,aAAA,GAAG,eAAe,CAAC;AAEhC,+BAAY,CAAA,YAAA,GAAG,iBAAiB,CAAC;AAEhC,+BAAA,CAAA,aAAa,GAAa;IACrC,UAAU;IACV,iBAAiB;IACjB,cAAc;IACd,cAAc;IACd,YAAY;IACZ,UAAU;IACV,SAAS;IACT,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,QAAQ;IACR,SAAS;IACT,SAAS;IACT,YAAY;IACZ,aAAa;IACb,UAAU;IACV,UAAU;IACV,QAAQ;IACR,WAAW;CACd,CAAC;AAEa,+BAAmB,CAAA,mBAAA,GAAa,EAE9C,CAAC;AAEa,+BAAA,CAAA,cAAc,GAAa,+BAA+B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACjG,OAAO;IACP,OAAO;IACP,WAAW;IACX,QAAQ;IACR,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,OAAO;IACP,cAAc;IACd,iBAAiB;IACjB,iBAAiB;IACjB,eAAe;IACf,6BAA6B;IAC7B,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,KAAK;IACL,OAAO;IACP,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,SAAS;IACT,qBAAqB;IACrB,8BAA8B;IAC9B,UAAU;IACV,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,UAAU;IACV,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,WAAW;IACX,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,MAAM;IACN,UAAU;IACV,QAAQ;IACR,QAAQ;IACR,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,IAAI;IACJ,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,cAAc;IACd,aAAa;IACb,OAAO;IACP,QAAQ;IACR,sBAAsB;IACtB,sBAAsB;IACtB,OAAO;IACP,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,UAAU;IACV,WAAW;IACX,WAAW;IACX,UAAU;IACV,eAAe;IACf,aAAa;IACb,qBAAqB;IACrB,MAAM;IACN,eAAe;IACf,OAAO;IACP,QAAQ;IACR,oBAAoB;IACpB,aAAa;IACb,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,cAAc;IACd,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,uBAAuB;IACvB,yBAAyB;IACzB,gBAAgB;IAChB,MAAM;IACN,YAAY;IACZ,OAAO;IACP,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,SAAS;IACT,iBAAiB;IACjB,eAAe;IACf,UAAU;IACV,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,OAAO;IACP,YAAY;IACZ,QAAQ;IACR,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;AAEY,+BAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,OAAO;IACP,QAAQ;IACR,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,cAAc;IACd,iBAAiB;IACjB,eAAe;IACf,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,OAAO;IACP,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,qBAAqB;IACrB,8BAA8B;IAC9B,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,eAAe;IACf,iBAAiB;IACjB,gBAAgB;IAChB,UAAU;IACV,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,OAAO;IACP,sBAAsB;IACtB,sBAAsB;IACtB,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,cAAc;IACd,QAAQ;IACR,WAAW;IACX,UAAU;IACV,WAAW;IACX,eAAe;IACf,qBAAqB;IACrB,MAAM;IACN,eAAe;IACf,OAAO;IACP,oBAAoB;IACpB,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,cAAc;IACd,kBAAkB;IAClB,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,cAAc;IACd,eAAe;IACf,yBAAyB;IACzB,gBAAgB;IAChB,YAAY;IACZ,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,iBAAiB;IACjB,eAAe;IACf,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,QAAQ;CACX,CAAC;AAEa,+BAAA,CAAA,YAAY,GAAa,+BAA+B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAC/F,WAAW;IACX,YAAY;IACZ,UAAU;IACV,OAAO;IACP,iBAAiB;IACjB,6BAA6B;IAC7B,KAAK;IACL,QAAQ;IACR,SAAS;IACT,SAAS;IACT,UAAU;IACV,UAAU;IACV,WAAW;IACX,gBAAgB;IAChB,MAAM;IACN,cAAc;IACd,SAAS;IACT,QAAQ;IACR,QAAQ;IACR,MAAM;IACN,IAAI;IACJ,OAAO;IACP,cAAc;IACd,aAAa;IACb,QAAQ;IACR,OAAO;IACP,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,UAAU;IACV,aAAa;IACb,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,UAAU;IACV,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,uBAAuB;IACvB,MAAM;IACN,OAAO;IACP,SAAS;IACT,UAAU;IACV,OAAO;IACP,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;4HAhVM,+BAA+B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA/B,+BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,+BAA+B,smJAF7B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAJ3C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,0BAA0B;AACrC,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGAoWY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAGG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBAGG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAYI,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAYG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAQG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBASG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBASG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAOG,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;ACjhDX;MAmiCa,8BAA8B,CAAA;AAgcvC,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AA2NF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAC7J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAyG,CAAC;AACjK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8G,CAAC;AACxK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAC/J;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA8J,CAAC;AAC3N;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAgJ,CAAC;AAC/L;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACrN;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAkH,CAAC;AACxK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACjK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0J,CAAC;AAC1M;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC7H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA8C,CAAC;AACnG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC9H;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC5H;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAsQ,CAAC;AAChU;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACtH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;AAKG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACpI;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACnI;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AAC9L;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAgF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC5I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC3L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACjM;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AAC/M;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyG,CAAC;AAC1J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAChL;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA2H,CAAC;AAClL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC/L;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC5F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC9G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAC9K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8K,CAAC;AAC7N;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8F,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAmI,CAAC;AAC5K;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAuM,CAAC;AACtP;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmE,CAAC;AACxH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA4H,CAAC;AAC9K;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;AAIG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC5G;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA2F,CAAC;AACxI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAAqH,CAAC;AACtL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC/I;;AAEG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAC/E;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAClJ;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACjI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AACnM;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAA8N,CAAC;AAC5R;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACxM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACzJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+G,CAAC;AACpK;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAqM,CAAC;AACrP;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC1I;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyI,CAAC;AAClM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC7I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAgH,CAAC;AACnK;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACrK;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAC9F;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAmD,CAAC;AACjG;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACvL;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA+D,CAAC;AAC7G;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1I;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC7F;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8G,CAAC;AAC7J;;;;AAIG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC/F;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC5K;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAC5J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiE,CAAC;AAC5G;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0P,CAAC;AAC9S;;;;AAIG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuD,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAiJ,CAAC;AAC3L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACpK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAClK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAClI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAgE,CAAC;AACpH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAClH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAoH,CAAC;AACpK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACjH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0D,CAAC;AACxG;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAChG;;AAEG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAxrC/D,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AAyrCD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,8BAA8B,CAAC;AAEvC,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;KAE7G;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,8BAA8B,CAAC;QACtD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,8BAA8B,CAAC;AAC1E,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AA9tDa,8BAAa,CAAA,aAAA,GAAG,cAAc,CAAC;AAE/B,8BAAY,CAAA,YAAA,GAAG,gBAAgB,CAAC;AAE/B,8BAAA,CAAA,aAAa,GAAa;IACrC,wBAAwB;IACxB,uBAAuB;IACvB,uBAAuB;IACvB,yBAAyB;IACzB,uBAAuB;IACvB,yBAAyB;IACzB,4BAA4B;IAC5B,sBAAsB;IACtB,cAAc;IACd,mBAAmB;IACnB,iBAAiB;IACjB,qBAAqB;IACrB,6BAA6B;IAC7B,wBAAwB;IACxB,uBAAuB;IACvB,cAAc;IACd,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,oBAAoB;IACpB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,cAAc;IACd,sBAAsB;IACtB,oBAAoB;IACpB,mBAAmB;IACnB,qBAAqB;IACrB,oBAAoB;IACpB,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,sBAAsB;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,sBAAsB;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,gBAAgB;IAChB,cAAc;IACd,mBAAmB;IACnB,cAAc;IACd,gBAAgB;IAChB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,QAAQ;IACR,cAAc;IACd,WAAW;IACX,oBAAoB;IACpB,iBAAiB;IACjB,kBAAkB;IAClB,UAAU;IACV,cAAc;IACd,YAAY;IACZ,gCAAgC;IAChC,kBAAkB;IAClB,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,kBAAkB;IAClB,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,0BAA0B;IAC1B,6BAA6B;IAC7B,eAAe;IACf,oBAAoB;IACpB,oBAAoB;IACpB,eAAe;IACf,eAAe;IACf,wBAAwB;IACxB,kBAAkB;IAClB,kBAAkB;IAClB,wBAAwB;IACxB,QAAQ;IACR,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,SAAS;IACT,SAAS;IACT,aAAa;IACb,YAAY;IACZ,aAAa;IACb,aAAa;IACb,cAAc;IACd,UAAU;IACV,cAAc;IACd,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,iBAAiB;IACjB,UAAU;IACV,mBAAmB;IACnB,uBAAuB;IACvB,QAAQ;IACR,SAAS;IACT,yBAAyB;IACzB,mBAAmB;IACnB,qBAAqB;IACrB,uBAAuB;IACvB,iBAAiB;IACjB,gBAAgB;IAChB,mBAAmB;IACnB,iBAAiB;IACjB,eAAe;IACf,cAAc;IACd,aAAa;IACb,cAAc;IACd,WAAW;CACd,CAAC;AAEa,8BAAA,CAAA,mBAAmB,GAAa;IAC3C,iBAAiB;IACjB,sBAAsB;IACtB,iBAAiB;IACjB,iBAAiB;IACjB,oBAAoB;IACpB,eAAe;IACf,wBAAwB;IACxB,0BAA0B;IAC1B,qBAAqB;IACrB,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;IACrB,sBAAsB;IACtB,iBAAiB;IACjB,mBAAmB;IACnB,eAAe;IACf,kBAAkB;IAClB,cAAc;IACd,qBAAqB;IACrB,mBAAmB;IACnB,iBAAiB;IACjB,mBAAmB;IACnB,kBAAkB;IAClB,mBAAmB;IACnB,cAAc;IACd,kBAAkB;IAClB,qBAAqB;IACrB,qBAAqB;IACrB,gBAAgB;IAChB,oBAAoB;IACpB,mBAAmB;IACnB,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,cAAc;IACd,oBAAoB;IACpB,eAAe;IACf,gBAAgB;IAChB,aAAa;IACb,kBAAkB;CACrB,CAAC;AAEa,8BAAA,CAAA,cAAc,GAAa,8BAA8B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAChG,OAAO;IACP,WAAW;IACX,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,MAAM;IACN,SAAS;IACT,cAAc;IACd,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,aAAa;IACb,OAAO;IACP,QAAQ;IACR,aAAa;IACb,SAAS;IACT,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,MAAM;IACN,WAAW;IACX,SAAS;IACT,eAAe;IACf,cAAc;IACd,8BAA8B;IAC9B,UAAU;IACV,4BAA4B;IAC5B,4BAA4B;IAC5B,MAAM;IACN,QAAQ;IACR,mBAAmB;IACnB,WAAW;IACX,cAAc;IACd,qBAAqB;IACrB,oBAAoB;IACpB,WAAW;IACX,gBAAgB;IAChB,gBAAgB;IAChB,MAAM;IACN,QAAQ;IACR,kBAAkB;IAClB,gBAAgB;IAChB,cAAc;IACd,QAAQ;IACR,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,yBAAyB;IACzB,UAAU;IACV,MAAM;IACN,IAAI;IACJ,sBAAsB;IACtB,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,eAAe;IACf,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,WAAW;IACX,UAAU;IACV,WAAW;IACX,UAAU;IACV,eAAe;IACf,OAAO;IACP,SAAS;IACT,8BAA8B;IAC9B,gBAAgB;IAChB,+BAA+B;IAC/B,uBAAuB;IACvB,cAAc;IACd,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,WAAW;IACX,2BAA2B;IAC3B,gBAAgB;IAChB,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,eAAe;IACf,eAAe;IACf,eAAe;IACf,WAAW;IACX,MAAM;IACN,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,eAAe;IACf,OAAO;IACP,QAAQ;IACR,gBAAgB;IAChB,UAAU;IACV,KAAK;IACL,aAAa;IACb,MAAM;IACN,OAAO;IACP,OAAO;IACP,YAAY;IACZ,oBAAoB;IACpB,MAAM;IACN,IAAI;IACJ,aAAa;IACb,QAAQ;IACR,OAAO;AACV,CAAA,CAAC,CAAC;AAEY,8BAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,uBAAuB;IACvB,qBAAqB;IACrB,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,MAAM;IACN,SAAS;IACT,cAAc;IACd,aAAa;IACb,OAAO;IACP,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,WAAW;IACX,eAAe;IACf,cAAc;IACd,8BAA8B;IAC9B,4BAA4B;IAC5B,4BAA4B;IAC5B,MAAM;IACN,QAAQ;IACR,mBAAmB;IACnB,cAAc;IACd,qBAAqB;IACrB,gBAAgB;IAChB,gBAAgB;IAChB,QAAQ;IACR,kBAAkB;IAClB,gBAAgB;IAChB,cAAc;IACd,QAAQ;IACR,yBAAyB;IACzB,UAAU;IACV,MAAM;IACN,sBAAsB;IACtB,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,cAAc;IACd,QAAQ;IACR,eAAe;IACf,OAAO;IACP,SAAS;IACT,8BAA8B;IAC9B,+BAA+B;IAC/B,uBAAuB;IACvB,cAAc;IACd,kBAAkB;IAClB,WAAW;IACX,2BAA2B;IAC3B,gBAAgB;IAChB,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,eAAe;IACf,eAAe;IACf,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,UAAU;IACV,KAAK;IACL,aAAa;IACb,MAAM;IACN,MAAM;IACN,IAAI;IACJ,aAAa;IACb,QAAQ;CACX,CAAC;AAEa,8BAAA,CAAA,YAAY,GAAa,8BAA8B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAC9F,WAAW;IACX,uBAAuB;IACvB,UAAU;IACV,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,QAAQ;IACR,aAAa;IACb,SAAS;IACT,MAAM;IACN,SAAS;IACT,UAAU;IACV,WAAW;IACX,oBAAoB;IACpB,WAAW;IACX,MAAM;IACN,cAAc;IACd,YAAY;IACZ,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,IAAI;IACJ,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,eAAe;IACf,QAAQ;IACR,WAAW;IACX,UAAU;IACV,WAAW;IACX,UAAU;IACV,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,UAAU;IACV,WAAW;IACX,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,cAAc;IACd,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,eAAe;IACf,MAAM;IACN,OAAO;IACP,eAAe;IACf,OAAO;IACP,OAAO;IACP,OAAO;IACP,SAAS;IACT,YAAY;IACZ,oBAAoB;IACpB,OAAO;AACV,CAAA,CAAC,CAAC;2HAlbM,8BAA8B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA9B,8BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,8BAA8B,iiTAF5B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAJ1C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,yBAAyB;AACpC,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGAscY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAKG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAOG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAIG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAUG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAGG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBAGG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBASI,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAWG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBASG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAcG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAWG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAaG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAYG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAUG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAOG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAMG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAIG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAcG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAcG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAaG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBASG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAcG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAOG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAIG,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;AC5pFX;MAs1Ba,8BAA8B,CAAA;AA0VvC,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AA4KF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiH,CAAC;AAC5J;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+L,CAAC;AAC1O;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAC7F;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA4E,CAAC;AACtH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAoE,CAAC;AAzU5G,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AA0UD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,8BAA8B,CAAC;AAEvC,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;KAE7G;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,8BAA8B,CAAC;QACtD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,8BAA8B,CAAC;AAC1E,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AAzwBa,8BAAa,CAAA,aAAA,GAAG,cAAc,CAAC;AAE/B,8BAAY,CAAA,YAAA,GAAG,gBAAgB,CAAC;AAE/B,8BAAA,CAAA,aAAa,GAAa;IACrC,UAAU;IACV,iBAAiB;IACjB,cAAc;IACd,cAAc;IACd,YAAY;IACZ,UAAU;IACV,SAAS;IACT,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,QAAQ;IACR,SAAS;IACT,SAAS;IACT,YAAY;IACZ,aAAa;IACb,UAAU;IACV,UAAU;IACV,QAAQ;IACR,WAAW;CACd,CAAC;AAEa,8BAAmB,CAAA,mBAAA,GAAa,EAE9C,CAAC;AAEa,8BAAA,CAAA,cAAc,GAAa,8BAA8B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAChG,OAAO;IACP,OAAO;IACP,WAAW;IACX,QAAQ;IACR,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,OAAO;IACP,cAAc;IACd,iBAAiB;IACjB,iBAAiB;IACjB,eAAe;IACf,6BAA6B;IAC7B,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,KAAK;IACL,OAAO;IACP,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,SAAS;IACT,qBAAqB;IACrB,8BAA8B;IAC9B,UAAU;IACV,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,UAAU;IACV,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,WAAW;IACX,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,MAAM;IACN,UAAU;IACV,QAAQ;IACR,QAAQ;IACR,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,IAAI;IACJ,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,cAAc;IACd,aAAa;IACb,OAAO;IACP,QAAQ;IACR,sBAAsB;IACtB,sBAAsB;IACtB,OAAO;IACP,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,UAAU;IACV,WAAW;IACX,WAAW;IACX,UAAU;IACV,eAAe;IACf,aAAa;IACb,qBAAqB;IACrB,MAAM;IACN,eAAe;IACf,OAAO;IACP,QAAQ;IACR,oBAAoB;IACpB,aAAa;IACb,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,uBAAuB;IACvB,yBAAyB;IACzB,gBAAgB;IAChB,MAAM;IACN,YAAY;IACZ,OAAO;IACP,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,SAAS;IACT,eAAe;IACf,UAAU;IACV,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,OAAO;IACP,YAAY;IACZ,QAAQ;IACR,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;AAEY,8BAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,OAAO;IACP,QAAQ;IACR,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,cAAc;IACd,iBAAiB;IACjB,eAAe;IACf,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,OAAO;IACP,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,qBAAqB;IACrB,8BAA8B;IAC9B,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,eAAe;IACf,iBAAiB;IACjB,gBAAgB;IAChB,UAAU;IACV,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,OAAO;IACP,sBAAsB;IACtB,sBAAsB;IACtB,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,cAAc;IACd,QAAQ;IACR,WAAW;IACX,UAAU;IACV,WAAW;IACX,eAAe;IACf,qBAAqB;IACrB,MAAM;IACN,eAAe;IACf,OAAO;IACP,oBAAoB;IACpB,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,kBAAkB;IAClB,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,cAAc;IACd,eAAe;IACf,yBAAyB;IACzB,gBAAgB;IAChB,YAAY;IACZ,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,eAAe;IACf,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,QAAQ;CACX,CAAC;AAEa,8BAAA,CAAA,YAAY,GAAa,8BAA8B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAC9F,WAAW;IACX,YAAY;IACZ,UAAU;IACV,OAAO;IACP,iBAAiB;IACjB,6BAA6B;IAC7B,KAAK;IACL,QAAQ;IACR,SAAS;IACT,SAAS;IACT,UAAU;IACV,UAAU;IACV,WAAW;IACX,gBAAgB;IAChB,MAAM;IACN,cAAc;IACd,SAAS;IACT,QAAQ;IACR,QAAQ;IACR,MAAM;IACN,IAAI;IACJ,OAAO;IACP,cAAc;IACd,aAAa;IACb,QAAQ;IACR,OAAO;IACP,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,UAAU;IACV,aAAa;IACb,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,UAAU;IACV,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,uBAAuB;IACvB,MAAM;IACN,OAAO;IACP,SAAS;IACT,UAAU;IACV,OAAO;IACP,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;2HA5UM,8BAA8B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA9B,8BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,8BAA8B,miJAF5B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAJ1C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,yBAAyB;AACpC,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGAgWY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAGG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBAGG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAYI,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAYG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAQG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBASG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBASG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAOG,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;AC1/CX;MAw3Ba,+BAA+B,CAAA;AAwWxC,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AAmLF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiH,CAAC;AAC5J;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+L,CAAC;AAC1O;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAC7F;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA4E,CAAC;AACtH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAoE,CAAC;AAhV5G,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AAiVD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,+BAA+B,CAAC;AAExC,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;KAE7G;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,+BAA+B,CAAC;QACvD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,+BAA+B,CAAC;AAC3E,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AA9xBa,+BAAa,CAAA,aAAA,GAAG,eAAe,CAAC;AAEhC,+BAAY,CAAA,YAAA,GAAG,iBAAiB,CAAC;AAEhC,+BAAA,CAAA,aAAa,GAAa;IACrC,UAAU;IACV,iBAAiB;IACjB,cAAc;IACd,cAAc;IACd,YAAY;IACZ,UAAU;IACV,SAAS;IACT,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,QAAQ;IACR,SAAS;IACT,SAAS;IACT,YAAY;IACZ,aAAa;IACb,UAAU;IACV,UAAU;IACV,QAAQ;IACR,WAAW;CACd,CAAC;AAEa,+BAAmB,CAAA,mBAAA,GAAa,EAE9C,CAAC;AAEa,+BAAA,CAAA,cAAc,GAAa,+BAA+B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACjG,OAAO;IACP,OAAO;IACP,WAAW;IACX,QAAQ;IACR,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,OAAO;IACP,cAAc;IACd,iBAAiB;IACjB,iBAAiB;IACjB,eAAe;IACf,6BAA6B;IAC7B,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,KAAK;IACL,OAAO;IACP,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,SAAS;IACT,qBAAqB;IACrB,WAAW;IACX,mBAAmB;IACnB,iBAAiB;IACjB,8BAA8B;IAC9B,UAAU;IACV,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,UAAU;IACV,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,WAAW;IACX,YAAY;IACZ,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,MAAM;IACN,UAAU;IACV,QAAQ;IACR,QAAQ;IACR,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,IAAI;IACJ,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,cAAc;IACd,aAAa;IACb,OAAO;IACP,QAAQ;IACR,sBAAsB;IACtB,sBAAsB;IACtB,OAAO;IACP,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,UAAU;IACV,WAAW;IACX,WAAW;IACX,UAAU;IACV,eAAe;IACf,aAAa;IACb,qBAAqB;IACrB,MAAM;IACN,WAAW;IACX,SAAS;IACT,eAAe;IACf,OAAO;IACP,QAAQ;IACR,oBAAoB;IACpB,aAAa;IACb,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,uBAAuB;IACvB,yBAAyB;IACzB,gBAAgB;IAChB,SAAS;IACT,MAAM;IACN,YAAY;IACZ,OAAO;IACP,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,SAAS;IACT,eAAe;IACf,UAAU;IACV,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,OAAO;IACP,YAAY;IACZ,QAAQ;IACR,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;AAEY,+BAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,OAAO;IACP,QAAQ;IACR,iBAAiB;IACjB,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,cAAc;IACd,iBAAiB;IACjB,eAAe;IACf,UAAU;IACV,UAAU;IACV,WAAW;IACX,uBAAuB;IACvB,sBAAsB;IACtB,qBAAqB;IACrB,OAAO;IACP,QAAQ;IACR,aAAa;IACb,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,WAAW;IACX,qBAAqB;IACrB,WAAW;IACX,mBAAmB;IACnB,iBAAiB;IACjB,8BAA8B;IAC9B,cAAc;IACd,sBAAsB;IACtB,MAAM;IACN,WAAW;IACX,mBAAmB;IACnB,WAAW;IACX,oBAAoB;IACpB,YAAY;IACZ,eAAe;IACf,iBAAiB;IACjB,gBAAgB;IAChB,UAAU;IACV,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,yBAAyB;IACzB,MAAM;IACN,UAAU;IACV,sBAAsB;IACtB,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,UAAU;IACV,WAAW;IACX,YAAY;IACZ,OAAO;IACP,sBAAsB;IACtB,sBAAsB;IACtB,UAAU;IACV,eAAe;IACf,QAAQ;IACR,YAAY;IACZ,SAAS;IACT,WAAW;IACX,aAAa;IACb,aAAa;IACb,aAAa;IACb,uBAAuB;IACvB,cAAc;IACd,QAAQ;IACR,WAAW;IACX,UAAU;IACV,WAAW;IACX,eAAe;IACf,qBAAqB;IACrB,MAAM;IACN,WAAW;IACX,SAAS;IACT,eAAe;IACf,OAAO;IACP,oBAAoB;IACpB,aAAa;IACb,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,kBAAkB;IAClB,gBAAgB;IAChB,QAAQ;IACR,aAAa;IACb,cAAc;IACd,eAAe;IACf,yBAAyB;IACzB,gBAAgB;IAChB,SAAS;IACT,YAAY;IACZ,KAAK;IACL,UAAU;IACV,WAAW;IACX,OAAO;IACP,eAAe;IACf,MAAM;IACN,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,QAAQ;CACX,CAAC;AAEa,+BAAA,CAAA,YAAY,GAAa,+BAA+B,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAC/F,WAAW;IACX,YAAY;IACZ,UAAU;IACV,OAAO;IACP,iBAAiB;IACjB,6BAA6B;IAC7B,KAAK;IACL,QAAQ;IACR,SAAS;IACT,SAAS;IACT,UAAU;IACV,UAAU;IACV,WAAW;IACX,gBAAgB;IAChB,MAAM;IACN,cAAc;IACd,SAAS;IACT,QAAQ;IACR,QAAQ;IACR,MAAM;IACN,IAAI;IACJ,OAAO;IACP,cAAc;IACd,aAAa;IACb,QAAQ;IACR,OAAO;IACP,QAAQ;IACR,WAAW;IACX,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,UAAU;IACV,aAAa;IACb,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,UAAU;IACV,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,uBAAuB;IACvB,MAAM;IACN,OAAO;IACP,SAAS;IACT,UAAU;IACV,OAAO;IACP,OAAO;IACP,GAAG;IACH,GAAG;AACN,CAAA,CAAC,CAAC;4HA1VM,+BAA+B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA/B,+BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,+BAA+B,kuJAF7B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAJ3C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,0BAA0B;AACrC,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGA8WY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAGG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBACG,CAAC,EAAA,CAAA;sBAAT,KAAK;gBAGG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAYI,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAYG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAQG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBASG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBASG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAOG,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;ACjjDX;MA8xDa,qBAAqB,CAAA;AAoxB9B,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AAmWF;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAqG,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0E,CAAC;AAC9H;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+N,CAAC;AAClR;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAuG,CAAC;AAC1J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAClJ;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA+K,CAAC;AAC1O;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAC7J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAyG,CAAC;AACjK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8G,CAAC;AACxK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAC/J;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA8J,CAAC;AAC3N;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAgJ,CAAC;AAC/L;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACrN;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACzN;;;;;AAKG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAA2E,CAAC;AAC1I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gCAAgC,GAAQ,IAAI,YAAY,EAA2K,CAAC;AAC9O;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAwH,CAAC;AACnL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AAC1N;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAuJ,CAAC;AACpN;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AACjM;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAkF,CAAC;AACvI;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA2H,CAAC;AACxL;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAyK,CAAC;AAC/N;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAuM,CAAC;AAC3P;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA6L,CAAC;AACrP;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAyK,CAAC;AAC/N;;;;;;;;;;;;;;;;;AAiBG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAgR,CAAC;AAC9U;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAgI,CAAC;AACpL;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAsK,CAAC;AACnO;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,kCAAkC,GAAQ,IAAI,YAAY,EAAuG,CAAC;AAC5K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAkH,CAAC;AACxK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACjK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC7H;;;;AAIG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuE,CAAC;AACrH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0J,CAAC;AAC1M;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC7H;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA8I,CAAC;AACrM;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AACrL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA6H,CAAC;AACvL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA4H,CAAC;AAClL;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA8C,CAAC;AACnG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC9H;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC5H;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAsQ,CAAC;AAChU;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACtH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA2E,CAAC;AACnI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACpI;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACnI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsE,CAAC;AACxH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AACpL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA6G,CAAC;AAChK;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA0I,CAAC;AACrM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACpN;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACxN;;;;;AAKG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA8F,CAAC;AACnJ;;;;;;;;;;;;;;;AAeG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAyM,CAAC;AACtQ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAClL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA6G,CAAC;AACvK;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,+BAA+B,GAAQ,IAAI,YAAY,EAA0I,CAAC;AAC5M;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAA0J,CAAC;AACtN;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,iCAAiC,GAAQ,IAAI,YAAY,EAAgG,CAAC;AACpK;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AAC9L;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAgF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC5I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC3L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACjM;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AAC/M;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyG,CAAC;AAC1J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAChL;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA2H,CAAC;AAClL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC/L;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC5F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC9G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAC9K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8K,CAAC;AAC7N;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8F,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAmI,CAAC;AAC5K;;;;AAIG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACpF;;;;AAIG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACtF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA+D,CAAC;AACzH;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAuM,CAAC;AACtP;;;;;;;;;;;;;;AAcG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AAC5L;;AAEG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAC7E;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AAChK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACtK;;;;AAIG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAkD,CAAC;AAChH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAC9J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACpK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1J;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmE,CAAC;AACxH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAoH,CAAC;AACtK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0E,CAAC;AAC9H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA4H,CAAC;AAC9K;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAC7I;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuR,CAAC;AAC/U;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAoN,CAAC;AACtQ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgN,CAAC;AAClQ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA0K,CAAC;AACjO;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACzL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+K,CAAC;AACpO;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAqI,CAAC;AACnM;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAiG,CAAC;AAC3J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACzM;;;;AAIG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC5G;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA2F,CAAC;AACxI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAAqH,CAAC;AACtL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC/I;;AAEG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAC/E;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAClJ;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACjI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AACnM;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAA8N,CAAC;AAC5R;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACxM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACzJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+G,CAAC;AACpK;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAqM,CAAC;AACrP;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC1I;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyI,CAAC;AAClM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC7I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAgH,CAAC;AACnK;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACrK;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAC9F;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAmD,CAAC;AACjG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAqE,CAAC;AACnH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAiG,CAAC;AAC9I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC3I;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACvL;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA+D,CAAC;AAC7G;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAgK,CAAC;AACjN;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAgH,CAAC;AAChK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1I;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC7F;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAgH,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAmH,CAAC;AAC/K;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8G,CAAC;AAC7J;;;;AAIG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC/F;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC5K;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAC5J;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA6O,CAAC;AACxS;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAClM;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAqL,CAAC;AAC1O;;;;;AAKG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiE,CAAC;AAC5G;;;;;AAKG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAiG,CAAC;AACvJ;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0P,CAAC;AAC9S;;;;AAIG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuD,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAiJ,CAAC;AAC3L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACpK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAClK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAClI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAgE,CAAC;AACpH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAClH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAyF,CAAC;AACvI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC7I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC1I;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC1L;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC3H;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA0F,CAAC;AACvI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC3J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC5I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1I;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAiJ,CAAC;AACxM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAgH,CAAC;AACjK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA4G,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC1I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAyF,CAAC;AACzI;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACpN;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,+BAA+B,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AAC1N;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACvN;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA2I,CAAC;AACjM;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAuG,CAAC;AACzJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACvJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACjM;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAClI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC9I;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA4H,CAAC;AACzL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAwF,CAAC;AACjJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAiI,CAAC;AAC5L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAqE,CAAC;AACxH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AAC9L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACpM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACjM;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAA8I,CAAC;AAC/M;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAC1J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAqH,CAAC;AAChL;;;;;AAKG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAuF,CAAC;AACjJ;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAChK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAoH,CAAC;AACpK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACjH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0D,CAAC;AACxG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAqD,CAAC;AAC3G;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAChG;;AAEG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACnE;;;;;;;;;;;;;AAaG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAqI,CAAC;AAniF5L,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AAoiFD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,qBAAqB,CAAC;AAE9B,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;;;AAI1G,QAAA,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,YAAY,CAAC,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;;KAE1E;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,qBAAqB,CAAC;QAC7C,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,qBAAqB,CAAC;AACjE,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AAj6Ga,qBAAa,CAAA,aAAA,GAAG,KAAK,CAAC;AAEtB,qBAAY,CAAA,YAAA,GAAG,OAAO,CAAC;AAEtB,qBAAA,CAAA,aAAa,GAAa;IACrC,6BAA6B;IAC7B,uBAAuB;IACvB,mBAAmB;IACnB,kBAAkB;IAClB,kBAAkB;IAClB,oBAAoB;IACpB,oBAAoB;IACpB,iBAAiB;IACjB,iBAAiB;IACjB,iBAAiB;IACjB,wBAAwB;IACxB,0BAA0B;IAC1B,wBAAwB;IACxB,uBAAuB;IACvB,uBAAuB;IACvB,yBAAyB;IACzB,uBAAuB;IACvB,yBAAyB;IACzB,4BAA4B;IAC5B,sBAAsB;IACtB,cAAc;IACd,mBAAmB;IACnB,uBAAuB;IACvB,8BAA8B;IAC9B,kCAAkC;IAClC,0BAA0B;IAC1B,wBAAwB;IACxB,4BAA4B;IAC5B,wBAAwB;IACxB,iBAAiB;IACjB,oBAAoB;IACpB,4BAA4B;IAC5B,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,qBAAqB;IACrB,6BAA6B;IAC7B,mBAAmB;IACnB,4BAA4B;IAC5B,oCAAoC;IACpC,qBAAqB;IACrB,6BAA6B;IAC7B,wBAAwB;IACxB,uBAAuB;IACvB,cAAc;IACd,mBAAmB;IACnB,aAAa;IACb,eAAe;IACf,mBAAmB;IACnB,sBAAsB;IACtB,qBAAqB;IACrB,yBAAyB;IACzB,qBAAqB;IACrB,mBAAmB;IACnB,oBAAoB;IACpB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,cAAc;IACd,uBAAuB;IACvB,sBAAsB;IACtB,oBAAoB;IACpB,mBAAmB;IACnB,iBAAiB;IACjB,oBAAoB;IACpB,kBAAkB;IAClB,0BAA0B;IAC1B,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,4BAA4B;IAC5B,kBAAkB;IAClB,yBAAyB;IACzB,iCAAiC;IACjC,2BAA2B;IAC3B,mCAAmC;IACnC,qBAAqB;IACrB,oBAAoB;IACpB,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,sBAAsB;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,sBAAsB;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,gBAAgB;IAChB,cAAc;IACd,mBAAmB;IACnB,cAAc;IACd,gBAAgB;IAChB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,QAAQ;IACR,4BAA4B;IAC5B,8BAA8B;IAC9B,yBAAyB;IACzB,cAAc;IACd,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,6BAA6B;IAC7B,wBAAwB;IACxB,sBAAsB;IACtB,sBAAsB;IACtB,uBAAuB;IACvB,gCAAgC;IAChC,6BAA6B;IAC7B,WAAW;IACX,oBAAoB;IACpB,iBAAiB;IACjB,mBAAmB;IACnB,iBAAiB;IACjB,kBAAkB;IAClB,4BAA4B;IAC5B,uBAAuB;IACvB,iBAAiB;IACjB,iBAAiB;IACjB,sBAAsB;IACtB,kBAAkB;IAClB,oBAAoB;IACpB,6BAA6B;IAC7B,yBAAyB;IACzB,2BAA2B;IAC3B,UAAU;IACV,cAAc;IACd,YAAY;IACZ,gCAAgC;IAChC,kBAAkB;IAClB,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,kBAAkB;IAClB,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,0BAA0B;IAC1B,6BAA6B;IAC7B,eAAe;IACf,oBAAoB;IACpB,oBAAoB;IACpB,eAAe;IACf,eAAe;IACf,wBAAwB;IACxB,kBAAkB;IAClB,kBAAkB;IAClB,wBAAwB;IACxB,QAAQ;IACR,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,aAAa;IACb,YAAY;IACZ,gBAAgB;IAChB,SAAS;IACT,SAAS;IACT,aAAa;IACb,kBAAkB;IAClB,uBAAuB;IACvB,uBAAuB;IACvB,kBAAkB;IAClB,gBAAgB;IAChB,uBAAuB;IACvB,YAAY;IACZ,aAAa;IACb,eAAe;IACf,aAAa;IACb,cAAc;IACd,cAAc;IACd,UAAU;IACV,2BAA2B;IAC3B,cAAc;IACd,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,iBAAiB;IACjB,0BAA0B;IAC1B,oBAAoB;IACpB,oBAAoB;IACpB,UAAU;IACV,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,QAAQ;IACR,SAAS;IACT,yBAAyB;IACzB,mBAAmB;IACnB,qBAAqB;IACrB,uBAAuB;IACvB,iBAAiB;IACjB,gBAAgB;IAChB,mBAAmB;IACnB,iBAAiB;IACjB,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,YAAY;IACZ,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,eAAe;IACf,aAAa;IACb,sBAAsB;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,iBAAiB;IACjB,eAAe;IACf,2BAA2B;IAC3B,iCAAiC;IACjC,8BAA8B;IAC9B,qBAAqB;IACrB,iBAAiB;IACjB,mBAAmB;IACnB,mBAAmB;IACnB,wBAAwB;IACxB,mBAAmB;IACnB,4BAA4B;IAC5B,wBAAwB;IACxB,0BAA0B;IAC1B,kBAAkB;IAClB,kBAAkB;IAClB,uBAAuB;IACvB,6BAA6B;IAC7B,0BAA0B;IAC1B,gCAAgC;IAChC,0BAA0B;IAC1B,0BAA0B;IAC1B,yBAAyB;IACzB,0BAA0B;IAC1B,wBAAwB;IACxB,8BAA8B;IAC9B,2BAA2B;IAC3B,eAAe;IACf,cAAc;IACd,aAAa;IACb,qBAAqB;IACrB,cAAc;IACd,WAAW;IACX,0BAA0B;CAC7B,CAAC;AAEa,qBAAA,CAAA,mBAAmB,GAAa;IAC3C,iBAAiB;IACjB,kBAAkB;IAClB,sBAAsB;IACtB,iBAAiB;IACjB,iBAAiB;IACjB,oBAAoB;IACpB,eAAe;IACf,wBAAwB;IACxB,0BAA0B;IAC1B,oBAAoB;IACpB,qBAAqB;IACrB,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;IACrB,uBAAuB;IACvB,oBAAoB;IACpB,sBAAsB;IACtB,sBAAsB;IACtB,iBAAiB;IACjB,mBAAmB;IACnB,eAAe;IACf,kBAAkB;IAClB,cAAc;IACd,qBAAqB;IACrB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,mBAAmB;IACnB,kBAAkB;IAClB,uBAAuB;IACvB,YAAY;IACZ,mBAAmB;IACnB,kBAAkB;IAClB,mBAAmB;IACnB,mBAAmB;IACnB,cAAc;IACd,qBAAqB;IACrB,oBAAoB;IACpB,qBAAqB;IACrB,kBAAkB;IAClB,qBAAqB;IACrB,gBAAgB;IAChB,qBAAqB;IACrB,gBAAgB;IAChB,oBAAoB;IACpB,mBAAmB;IACnB,kBAAkB;IAClB,qBAAqB;IACrB,wBAAwB;IACxB,sBAAsB;IACtB,eAAe;IACf,aAAa;IACb,cAAc;IACd,oBAAoB;IACpB,eAAe;IACf,gBAAgB;IAChB,sBAAsB;IACtB,iBAAiB;IACjB,uBAAuB;IACvB,iBAAiB;IACjB,iBAAiB;IACjB,2BAA2B;IAC3B,mBAAmB;IACnB,wBAAwB;IACxB,0BAA0B;IAC1B,oBAAoB;IACpB,2BAA2B;IAC3B,sBAAsB;IACtB,mBAAmB;IACnB,0BAA0B;IAC1B,aAAa;IACb,kBAAkB;IAClB,iBAAiB;CACpB,CAAC;AAEa,qBAAA,CAAA,cAAc,GAAa,qBAAqB,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACvF,OAAO;IACP,WAAW;IACX,aAAa;IACb,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,aAAa;IACb,oBAAoB;IACpB,YAAY;IACZ,WAAW;IACX,MAAM;IACN,SAAS;IACT,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,WAAW;IACX,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,aAAa;IACb,OAAO;IACP,QAAQ;IACR,aAAa;IACb,SAAS;IACT,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,iBAAiB;IACjB,yBAAyB;IACzB,2BAA2B;IAC3B,MAAM;IACN,WAAW;IACX,SAAS;IACT,eAAe;IACf,0BAA0B;IAC1B,cAAc;IACd,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,UAAU;IACV,4BAA4B;IAC5B,4BAA4B;IAC5B,mBAAmB;IACnB,uCAAuC;IACvC,MAAM;IACN,QAAQ;IACR,0BAA0B;IAC1B,mBAAmB;IACnB,WAAW;IACX,iBAAiB;IACjB,uBAAuB;IACvB,uBAAuB;IACvB,cAAc;IACd,qBAAqB;IACrB,6BAA6B;IAC7B,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,WAAW;IACX,gBAAgB;IAChB,WAAW;IACX,gBAAgB;IAChB,MAAM;IACN,QAAQ;IACR,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,yBAAyB;IACzB,cAAc;IACd,UAAU;IACV,MAAM;IACN,IAAI;IACJ,+BAA+B;IAC/B,sBAAsB;IACtB,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,eAAe;IACf,oBAAoB;IACpB,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,SAAS;IACT,WAAW;IACX,iBAAiB;IACjB,UAAU;IACV,cAAc;IACd,SAAS;IACT,WAAW;IACX,UAAU;IACV,cAAc;IACd,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,SAAS;IACT,SAAS;IACT,8BAA8B;IAC9B,gBAAgB;IAChB,+BAA+B;IAC/B,SAAS;IACT,uBAAuB;IACvB,SAAS;IACT,0BAA0B;IAC1B,UAAU;IACV,6BAA6B;IAC7B,kBAAkB;IAClB,WAAW;IACX,WAAW;IACX,2BAA2B;IAC3B,yBAAyB;IACzB,mBAAmB;IACnB,WAAW;IACX,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,WAAW;IACX,UAAU;IACV,KAAK;IACL,qCAAqC;IACrC,YAAY;IACZ,eAAe;IACf,eAAe;IACf,+BAA+B;IAC/B,eAAe;IACf,kBAAkB;IAClB,qBAAqB;IACrB,WAAW;IACX,kBAAkB;IAClB,iBAAiB;IACjB,sBAAsB;IACtB,aAAa;IACb,sBAAsB;IACtB,MAAM;IACN,8BAA8B;IAC9B,MAAM;IACN,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,eAAe;IACf,eAAe;IACf,OAAO;IACP,QAAQ;IACR,gBAAgB;IAChB,aAAa;IACb,UAAU;IACV,KAAK;IACL,aAAa;IACb,cAAc;IACd,OAAO;IACP,WAAW;IACX,MAAM;IACN,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,mBAAmB;IACnB,eAAe;IACf,cAAc;IACd,UAAU;IACV,UAAU;IACV,YAAY;IACZ,gBAAgB;IAChB,UAAU;IACV,OAAO;IACP,0BAA0B;IAC1B,OAAO;IACP,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,MAAM;IACN,IAAI;IACJ,8BAA8B;IAC9B,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,QAAQ;IACR,OAAO;IACP,aAAa;IACb,2BAA2B;IAC3B,kBAAkB;IAClB,2BAA2B;AAC9B,CAAA,CAAC,CAAC;AAEY,qBAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,aAAa;IACb,uBAAuB;IACvB,uBAAuB;IACvB,qBAAqB;IACrB,iBAAiB;IACjB,WAAW;IACX,oBAAoB;IACpB,YAAY;IACZ,MAAM;IACN,SAAS;IACT,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,aAAa;IACb,OAAO;IACP,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,iBAAiB;IACjB,2BAA2B;IAC3B,WAAW;IACX,eAAe;IACf,0BAA0B;IAC1B,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,4BAA4B;IAC5B,4BAA4B;IAC5B,uCAAuC;IACvC,MAAM;IACN,QAAQ;IACR,0BAA0B;IAC1B,mBAAmB;IACnB,iBAAiB;IACjB,uBAAuB;IACvB,cAAc;IACd,qBAAqB;IACrB,6BAA6B;IAC7B,gBAAgB;IAChB,gBAAgB;IAChB,QAAQ;IACR,kBAAkB;IAClB,gBAAgB;IAChB,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,yBAAyB;IACzB,UAAU;IACV,MAAM;IACN,+BAA+B;IAC/B,sBAAsB;IACtB,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,SAAS;IACT,iBAAiB;IACjB,SAAS;IACT,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,SAAS;IACT,SAAS;IACT,8BAA8B;IAC9B,+BAA+B;IAC/B,uBAAuB;IACvB,0BAA0B;IAC1B,kBAAkB;IAClB,WAAW;IACX,2BAA2B;IAC3B,yBAAyB;IACzB,mBAAmB;IACnB,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,qCAAqC;IACrC,eAAe;IACf,eAAe;IACf,kBAAkB;IAClB,qBAAqB;IACrB,WAAW;IACX,kBAAkB;IAClB,iBAAiB;IACjB,sBAAsB;IACtB,8BAA8B;IAC9B,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,UAAU;IACV,KAAK;IACL,aAAa;IACb,cAAc;IACd,MAAM;IACN,aAAa;IACb,eAAe;IACf,UAAU;IACV,MAAM;IACN,IAAI;IACJ,mBAAmB;IACnB,cAAc;IACd,QAAQ;IACR,2BAA2B;IAC3B,kBAAkB;IAClB,2BAA2B;CAC9B,CAAC;AAEa,qBAAA,CAAA,YAAY,GAAa,qBAAqB,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACrF,WAAW;IACX,qBAAqB;IACrB,uBAAuB;IACvB,UAAU;IACV,aAAa;IACb,WAAW;IACX,sBAAsB;IACtB,WAAW;IACX,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,QAAQ;IACR,aAAa;IACb,SAAS;IACT,yBAAyB;IACzB,MAAM;IACN,SAAS;IACT,cAAc;IACd,UAAU;IACV,mBAAmB;IACnB,WAAW;IACX,uBAAuB;IACvB,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,WAAW;IACX,WAAW;IACX,MAAM;IACN,cAAc;IACd,UAAU;IACV,YAAY;IACZ,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,cAAc;IACd,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,eAAe;IACf,QAAQ;IACR,WAAW;IACX,UAAU;IACV,cAAc;IACd,WAAW;IACX,UAAU;IACV,cAAc;IACd,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,SAAS;IACT,SAAS;IACT,UAAU;IACV,6BAA6B;IAC7B,WAAW;IACX,WAAW;IACX,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,YAAY;IACZ,+BAA+B;IAC/B,WAAW;IACX,SAAS;IACT,cAAc;IACd,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,eAAe;IACf,aAAa;IACb,sBAAsB;IACtB,MAAM;IACN,MAAM;IACN,WAAW;IACX,OAAO;IACP,eAAe;IACf,OAAO;IACP,aAAa;IACb,OAAO;IACP,WAAW;IACX,mBAAmB;IACnB,gBAAgB;IAChB,mBAAmB;IACnB,cAAc;IACd,UAAU;IACV,YAAY;IACZ,gBAAgB;IAChB,UAAU;IACV,OAAO;IACP,0BAA0B;IAC1B,OAAO;IACP,SAAS;IACT,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,8BAA8B;IAC9B,YAAY;IACZ,aAAa;IACb,OAAO;IACP,aAAa;IACb,WAAW;AACd,CAAA,CAAC,CAAC;kHAtwBM,qBAAqB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAArB,qBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,2woBAFnB,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAJjC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,eAAe;AAC1B,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGA0xBY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,qCAAqC,EAAA,CAAA;sBAA7C,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBAGG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAKG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAOG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,mCAAmC,EAAA,CAAA;sBAA3C,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAIG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBAIG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAYG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAQG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAGG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBAUI,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAYG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAcG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAWG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBASG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBASG,gCAAgC,EAAA,CAAA;sBAAzC,MAAM;gBAQG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAUG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAaG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAcG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAcG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAYG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBASG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAmBG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAUG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAYG,kCAAkC,EAAA,CAAA;sBAA3C,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAUG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAYG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAUG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBASG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAcG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAcG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAaG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAOG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAiBG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAcG,+BAA+B,EAAA,CAAA;sBAAxC,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAYG,iCAAiC,EAAA,CAAA;sBAA1C,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAWG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAaG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAYG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAUG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAMG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAMG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAOG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAgBG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAIG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAMG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAQG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBAQG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAOG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAcG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAUG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAMG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAIG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAcG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAcG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAaG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAaG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAWG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAOG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAOG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAcG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAOG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBASG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBASG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAYG,+BAA+B,EAAA,CAAA;sBAAxC,MAAM;gBAYG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAWG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAUG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBASG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAYG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAOG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAYG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAQG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAIG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAeG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;;;ACtlKX;MA6xDa,yBAAyB,CAAA;AAkxBlC,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AAkWF;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAqG,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0E,CAAC;AAC9H;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+N,CAAC;AAClR;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAuG,CAAC;AAC1J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAClJ;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA+K,CAAC;AAC1O;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAC7J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAyG,CAAC;AACjK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8G,CAAC;AACxK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAC/J;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA8J,CAAC;AAC3N;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAgJ,CAAC;AAC/L;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACrN;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACzN;;;;;AAKG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAA2E,CAAC;AAC1I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gCAAgC,GAAQ,IAAI,YAAY,EAA2K,CAAC;AAC9O;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAwH,CAAC;AACnL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AAC1N;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAuJ,CAAC;AACpN;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AACjM;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAkF,CAAC;AACvI;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA2H,CAAC;AACxL;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAyK,CAAC;AAC/N;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAuM,CAAC;AAC3P;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA6L,CAAC;AACrP;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAyK,CAAC;AAC/N;;;;;;;;;;;;;;;;;AAiBG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAgR,CAAC;AAC9U;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAgI,CAAC;AACpL;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAsK,CAAC;AACnO;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,kCAAkC,GAAQ,IAAI,YAAY,EAAuG,CAAC;AAC5K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAkH,CAAC;AACxK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACjK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC9J;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAyE,CAAC;AACxH;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC7H;;;;AAIG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuE,CAAC;AACrH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0J,CAAC;AAC1M;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC7H;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA8I,CAAC;AACrM;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AACrL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA6H,CAAC;AACvL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA4H,CAAC;AAClL;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAChJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA8C,CAAC;AACnG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC9H;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwE,CAAC;AAC5H;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAsQ,CAAC;AAChU;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACtH;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6E,CAAC;AAC5H;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA2E,CAAC;AACnI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC/J;;;;AAIG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACpI;;;;AAIG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACnI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsE,CAAC;AACxH;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AACpL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA6G,CAAC;AAChK;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA0I,CAAC;AACrM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACpN;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAiK,CAAC;AACxN;;;;;AAKG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA8F,CAAC;AACnJ;;;;;;;;;;;;;;;AAeG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAyM,CAAC;AACtQ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAClL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA6G,CAAC;AACvK;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,+BAA+B,GAAQ,IAAI,YAAY,EAA0I,CAAC;AAC5M;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAA0J,CAAC;AACtN;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,iCAAiC,GAAQ,IAAI,YAAY,EAAgG,CAAC;AACpK;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AAC9L;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAgF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC5I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC3L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACjM;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AAC/M;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyG,CAAC;AAC1J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAChL;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA2H,CAAC;AAClL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC7K;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC9L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC/L;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC5F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC9G;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA+H,CAAC;AAC9K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8K,CAAC;AAC7N;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA+E,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4E,CAAC;AAChI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA8F,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAmI,CAAC;AAC5K;;;;AAIG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACpF;;;;AAIG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACtF;;;;;AAKG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA+D,CAAC;AACzH;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAuM,CAAC;AACtP;;;;;;;;;;;;;;AAcG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AAC5L;;AAEG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAC7E;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AAChK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACtK;;;;AAIG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAkD,CAAC;AAChH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAqG,CAAC;AAC9J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACpK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1J;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAmE,CAAC;AACxH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAoH,CAAC;AACtK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0E,CAAC;AAC9H;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA4H,CAAC;AAC9K;;;;AAIG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsD,CAAC;AACzG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAC7I;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuR,CAAC;AAC/U;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAoN,CAAC;AACtQ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgN,CAAC;AAClQ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAA0K,CAAC;AACjO;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACzL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+K,CAAC;AACpO;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAqI,CAAC;AACnM;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAiG,CAAC;AAC3J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACzM;;;;AAIG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC1F;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC5G;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA2F,CAAC;AACxI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAAqH,CAAC;AACtL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC/I;;AAEG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuB,CAAC;AAC/E;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAClJ;;;;;AAKG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;;AAKG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA8E,CAAC;AACjI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAsG,CAAC;AACxJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACxM;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA4J,CAAC;AACzM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAwI,CAAC;AACnM;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAA8N,CAAC;AAC5R;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACxM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACzJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA+G,CAAC;AACpK;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAqM,CAAC;AACrP;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC1I;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyI,CAAC;AAClM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC7I;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAgH,CAAC;AACnK;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA4G,CAAC;AACrK;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAC9F;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;;AAIG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAmD,CAAC;AACjG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAqE,CAAC;AACnH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAiG,CAAC;AAC9I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC3I;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAqE,CAAC;AAC/G;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACvL;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA+D,CAAC;AAC7G;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AACvJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAgK,CAAC;AACjN;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AAC3J;;;;AAIG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAmD,CAAC;AAChG;;;AAGG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACrE;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAgH,CAAC;AAChK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1I;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC7F;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAgH,CAAC;AAC/J;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAmH,CAAC;AAC/K;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8G,CAAC;AAC7J;;;;AAIG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA+C,CAAC;AAC/F;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACxJ;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0H,CAAC;AAC5K;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAC5J;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA6O,CAAC;AACxS;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAClM;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAqL,CAAC;AAC1O;;;;;AAKG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAAiE,CAAC;AAC5G;;;;;AAKG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAiG,CAAC;AACvJ;;;;;;;;;;;;AAYG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0P,CAAC;AAC9S;;;;AAIG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAuD,CAAC;AAC/G;;;;AAIG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAgD,CAAC;AACzF;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAiJ,CAAC;AAC3L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AACpK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACrI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAiF,CAAC;AACvI;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAA0G,CAAC;AAClK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAClI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA+E,CAAC;AAChI;;;;;AAKG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAgE,CAAC;AACpH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAClH;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAyF,CAAC;AACvI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC7I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC1I;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA6I,CAAC;AAC1L;;;;;AAKG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAC3H;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAA0F,CAAC;AACvI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,kBAAkB,GAAQ,IAAI,YAAY,EAAsG,CAAC;AAC3J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC5I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA4F,CAAC;AAC1I;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAiJ,CAAC;AACxM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAgH,CAAC;AACjK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA4G,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC1I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAyF,CAAC;AAC3I;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAyF,CAAC;AACzI;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACpN;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,+BAA+B,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AAC1N;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAwJ,CAAC;AACvN;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAA2I,CAAC;AACjM;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAuG,CAAC;AACzJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACvJ;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA6I,CAAC;AACjM;;;;;AAKG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAyE,CAAC;AAClI;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAA0F,CAAC;AAC9I;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,0BAA0B,GAAQ,IAAI,YAAY,EAA4H,CAAC;AACzL;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAwF,CAAC;AACjJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAiI,CAAC;AAC5L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAAqE,CAAC;AACxH;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,gBAAgB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAClJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AAC9L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,2BAA2B,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACpM;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAsI,CAAC;AACjM;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,8BAA8B,GAAQ,IAAI,YAAY,EAA8I,CAAC;AAC/M;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAA+F,CAAC;AAC1J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAqH,CAAC;AAChL;;;;;AAKG;AACO,QAAA,IAAA,CAAA,uBAAuB,GAAQ,IAAI,YAAY,EAAuF,CAAC;AACjJ;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAoH,CAAC;AAC/K;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAC7J;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,4BAA4B,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACnK;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,yBAAyB,GAAQ,IAAI,YAAY,EAAoG,CAAC;AAChK;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAoH,CAAC;AACpK;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAkE,CAAC;AACjH;;;;;AAKG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA0D,CAAC;AACxG;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,mBAAmB,GAAQ,IAAI,YAAY,EAAqD,CAAC;AAC3G;;;;AAIG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAiD,CAAC;AAChG;;AAEG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAAuB,CAAC;AACnE;;;;;;;;;;;;;AAaG;AACO,QAAA,IAAA,CAAA,wBAAwB,GAAQ,IAAI,YAAY,EAAqI,CAAC;AAliF5L,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AAmiFD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,yBAAyB,CAAC;AAElC,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAGA,QAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;;;AAI1G,QAAA,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,YAAY,CAAC,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;;KAE1E;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,yBAAyB,CAAC;QACjD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,yBAAyB,CAAC;AACrE,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AA95Ga,yBAAa,CAAA,aAAA,GAAG,SAAS,CAAC;AAE1B,yBAAY,CAAA,YAAA,GAAG,WAAW,CAAC;AAE1B,yBAAA,CAAA,aAAa,GAAa;IACrC,6BAA6B;IAC7B,uBAAuB;IACvB,mBAAmB;IACnB,kBAAkB;IAClB,kBAAkB;IAClB,oBAAoB;IACpB,oBAAoB;IACpB,iBAAiB;IACjB,iBAAiB;IACjB,iBAAiB;IACjB,wBAAwB;IACxB,0BAA0B;IAC1B,wBAAwB;IACxB,uBAAuB;IACvB,uBAAuB;IACvB,yBAAyB;IACzB,uBAAuB;IACvB,yBAAyB;IACzB,4BAA4B;IAC5B,sBAAsB;IACtB,cAAc;IACd,mBAAmB;IACnB,uBAAuB;IACvB,8BAA8B;IAC9B,kCAAkC;IAClC,0BAA0B;IAC1B,wBAAwB;IACxB,4BAA4B;IAC5B,wBAAwB;IACxB,iBAAiB;IACjB,oBAAoB;IACpB,4BAA4B;IAC5B,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,qBAAqB;IACrB,6BAA6B;IAC7B,mBAAmB;IACnB,4BAA4B;IAC5B,oCAAoC;IACpC,qBAAqB;IACrB,6BAA6B;IAC7B,wBAAwB;IACxB,uBAAuB;IACvB,cAAc;IACd,mBAAmB;IACnB,aAAa;IACb,eAAe;IACf,mBAAmB;IACnB,sBAAsB;IACtB,qBAAqB;IACrB,yBAAyB;IACzB,qBAAqB;IACrB,mBAAmB;IACnB,oBAAoB;IACpB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,cAAc;IACd,uBAAuB;IACvB,sBAAsB;IACtB,oBAAoB;IACpB,mBAAmB;IACnB,iBAAiB;IACjB,oBAAoB;IACpB,kBAAkB;IAClB,0BAA0B;IAC1B,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,4BAA4B;IAC5B,kBAAkB;IAClB,yBAAyB;IACzB,iCAAiC;IACjC,2BAA2B;IAC3B,mCAAmC;IACnC,qBAAqB;IACrB,oBAAoB;IACpB,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,sBAAsB;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,sBAAsB;IACtB,kBAAkB;IAClB,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,YAAY;IACZ,gBAAgB;IAChB,cAAc;IACd,mBAAmB;IACnB,cAAc;IACd,gBAAgB;IAChB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,QAAQ;IACR,4BAA4B;IAC5B,8BAA8B;IAC9B,yBAAyB;IACzB,cAAc;IACd,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB;IACnB,yBAAyB;IACzB,6BAA6B;IAC7B,wBAAwB;IACxB,sBAAsB;IACtB,sBAAsB;IACtB,uBAAuB;IACvB,gCAAgC;IAChC,6BAA6B;IAC7B,WAAW;IACX,oBAAoB;IACpB,iBAAiB;IACjB,mBAAmB;IACnB,iBAAiB;IACjB,kBAAkB;IAClB,4BAA4B;IAC5B,uBAAuB;IACvB,iBAAiB;IACjB,iBAAiB;IACjB,sBAAsB;IACtB,kBAAkB;IAClB,oBAAoB;IACpB,6BAA6B;IAC7B,yBAAyB;IACzB,2BAA2B;IAC3B,UAAU;IACV,cAAc;IACd,YAAY;IACZ,gCAAgC;IAChC,kBAAkB;IAClB,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,kBAAkB;IAClB,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,0BAA0B;IAC1B,6BAA6B;IAC7B,eAAe;IACf,oBAAoB;IACpB,oBAAoB;IACpB,eAAe;IACf,eAAe;IACf,wBAAwB;IACxB,kBAAkB;IAClB,kBAAkB;IAClB,wBAAwB;IACxB,QAAQ;IACR,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,aAAa;IACb,YAAY;IACZ,gBAAgB;IAChB,SAAS;IACT,SAAS;IACT,aAAa;IACb,kBAAkB;IAClB,uBAAuB;IACvB,uBAAuB;IACvB,kBAAkB;IAClB,gBAAgB;IAChB,uBAAuB;IACvB,YAAY;IACZ,aAAa;IACb,eAAe;IACf,aAAa;IACb,cAAc;IACd,cAAc;IACd,UAAU;IACV,2BAA2B;IAC3B,cAAc;IACd,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,iBAAiB;IACjB,0BAA0B;IAC1B,oBAAoB;IACpB,oBAAoB;IACpB,UAAU;IACV,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,QAAQ;IACR,SAAS;IACT,yBAAyB;IACzB,mBAAmB;IACnB,qBAAqB;IACrB,uBAAuB;IACvB,iBAAiB;IACjB,gBAAgB;IAChB,mBAAmB;IACnB,iBAAiB;IACjB,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,YAAY;IACZ,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,eAAe;IACf,aAAa;IACb,sBAAsB;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,iBAAiB;IACjB,eAAe;IACf,2BAA2B;IAC3B,iCAAiC;IACjC,8BAA8B;IAC9B,qBAAqB;IACrB,iBAAiB;IACjB,mBAAmB;IACnB,mBAAmB;IACnB,wBAAwB;IACxB,mBAAmB;IACnB,4BAA4B;IAC5B,wBAAwB;IACxB,0BAA0B;IAC1B,kBAAkB;IAClB,kBAAkB;IAClB,uBAAuB;IACvB,6BAA6B;IAC7B,0BAA0B;IAC1B,gCAAgC;IAChC,0BAA0B;IAC1B,0BAA0B;IAC1B,yBAAyB;IACzB,0BAA0B;IAC1B,wBAAwB;IACxB,8BAA8B;IAC9B,2BAA2B;IAC3B,eAAe;IACf,cAAc;IACd,aAAa;IACb,qBAAqB;IACrB,cAAc;IACd,WAAW;IACX,0BAA0B;CAC7B,CAAC;AAEa,yBAAA,CAAA,mBAAmB,GAAa;IAC3C,iBAAiB;IACjB,kBAAkB;IAClB,sBAAsB;IACtB,iBAAiB;IACjB,iBAAiB;IACjB,oBAAoB;IACpB,eAAe;IACf,wBAAwB;IACxB,0BAA0B;IAC1B,oBAAoB;IACpB,qBAAqB;IACrB,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;IACrB,uBAAuB;IACvB,oBAAoB;IACpB,sBAAsB;IACtB,sBAAsB;IACtB,iBAAiB;IACjB,mBAAmB;IACnB,eAAe;IACf,kBAAkB;IAClB,cAAc;IACd,qBAAqB;IACrB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,mBAAmB;IACnB,kBAAkB;IAClB,uBAAuB;IACvB,YAAY;IACZ,mBAAmB;IACnB,kBAAkB;IAClB,mBAAmB;IACnB,mBAAmB;IACnB,cAAc;IACd,qBAAqB;IACrB,oBAAoB;IACpB,qBAAqB;IACrB,kBAAkB;IAClB,qBAAqB;IACrB,gBAAgB;IAChB,qBAAqB;IACrB,gBAAgB;IAChB,oBAAoB;IACpB,mBAAmB;IACnB,kBAAkB;IAClB,qBAAqB;IACrB,wBAAwB;IACxB,sBAAsB;IACtB,eAAe;IACf,aAAa;IACb,cAAc;IACd,oBAAoB;IACpB,eAAe;IACf,gBAAgB;IAChB,sBAAsB;IACtB,iBAAiB;IACjB,uBAAuB;IACvB,iBAAiB;IACjB,iBAAiB;IACjB,2BAA2B;IAC3B,mBAAmB;IACnB,wBAAwB;IACxB,0BAA0B;IAC1B,oBAAoB;IACpB,2BAA2B;IAC3B,sBAAsB;IACtB,mBAAmB;IACnB,0BAA0B;IAC1B,aAAa;IACb,kBAAkB;IAClB,iBAAiB;CACpB,CAAC;AAEa,yBAAA,CAAA,cAAc,GAAa,yBAAyB,CAAC,mBAAmB,CAAC,MAAM,CAAC;IAC3F,OAAO;IACP,WAAW;IACX,aAAa;IACb,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,qBAAqB;IACrB,uBAAuB;IACvB,UAAU;IACV,iBAAiB;IACjB,WAAW;IACX,aAAa;IACb,oBAAoB;IACpB,YAAY;IACZ,WAAW;IACX,MAAM;IACN,SAAS;IACT,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,WAAW;IACX,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,aAAa;IACb,OAAO;IACP,QAAQ;IACR,aAAa;IACb,SAAS;IACT,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,iBAAiB;IACjB,yBAAyB;IACzB,2BAA2B;IAC3B,MAAM;IACN,WAAW;IACX,SAAS;IACT,eAAe;IACf,0BAA0B;IAC1B,cAAc;IACd,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,UAAU;IACV,4BAA4B;IAC5B,4BAA4B;IAC5B,mBAAmB;IACnB,uCAAuC;IACvC,MAAM;IACN,QAAQ;IACR,0BAA0B;IAC1B,mBAAmB;IACnB,WAAW;IACX,iBAAiB;IACjB,uBAAuB;IACvB,uBAAuB;IACvB,cAAc;IACd,qBAAqB;IACrB,6BAA6B;IAC7B,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,WAAW;IACX,gBAAgB;IAChB,WAAW;IACX,gBAAgB;IAChB,MAAM;IACN,QAAQ;IACR,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,yBAAyB;IACzB,cAAc;IACd,UAAU;IACV,MAAM;IACN,IAAI;IACJ,+BAA+B;IAC/B,sBAAsB;IACtB,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,eAAe;IACf,oBAAoB;IACpB,QAAQ;IACR,cAAc;IACd,QAAQ;IACR,SAAS;IACT,WAAW;IACX,iBAAiB;IACjB,UAAU;IACV,cAAc;IACd,SAAS;IACT,WAAW;IACX,UAAU;IACV,cAAc;IACd,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,SAAS;IACT,SAAS;IACT,8BAA8B;IAC9B,gBAAgB;IAChB,+BAA+B;IAC/B,SAAS;IACT,uBAAuB;IACvB,SAAS;IACT,0BAA0B;IAC1B,UAAU;IACV,6BAA6B;IAC7B,kBAAkB;IAClB,WAAW;IACX,WAAW;IACX,2BAA2B;IAC3B,yBAAyB;IACzB,mBAAmB;IACnB,WAAW;IACX,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,WAAW;IACX,UAAU;IACV,KAAK;IACL,qCAAqC;IACrC,YAAY;IACZ,eAAe;IACf,eAAe;IACf,+BAA+B;IAC/B,eAAe;IACf,kBAAkB;IAClB,qBAAqB;IACrB,WAAW;IACX,kBAAkB;IAClB,iBAAiB;IACjB,sBAAsB;IACtB,aAAa;IACb,sBAAsB;IACtB,MAAM;IACN,8BAA8B;IAC9B,MAAM;IACN,WAAW;IACX,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,eAAe;IACf,eAAe;IACf,OAAO;IACP,QAAQ;IACR,gBAAgB;IAChB,aAAa;IACb,UAAU;IACV,KAAK;IACL,aAAa;IACb,cAAc;IACd,OAAO;IACP,WAAW;IACX,MAAM;IACN,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,mBAAmB;IACnB,eAAe;IACf,cAAc;IACd,UAAU;IACV,UAAU;IACV,YAAY;IACZ,gBAAgB;IAChB,UAAU;IACV,OAAO;IACP,0BAA0B;IAC1B,OAAO;IACP,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,IAAI;IACJ,8BAA8B;IAC9B,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,QAAQ;IACR,OAAO;IACP,aAAa;IACb,2BAA2B;IAC3B,kBAAkB;IAClB,2BAA2B;AAC9B,CAAA,CAAC,CAAC;AAEY,yBAAA,CAAA,kBAAkB,GAAa;IAC1C,OAAO;IACP,aAAa;IACb,uBAAuB;IACvB,uBAAuB;IACvB,qBAAqB;IACrB,iBAAiB;IACjB,WAAW;IACX,oBAAoB;IACpB,YAAY;IACZ,MAAM;IACN,SAAS;IACT,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,aAAa;IACb,OAAO;IACP,QAAQ;IACR,mBAAmB;IACnB,yBAAyB;IACzB,iBAAiB;IACjB,2BAA2B;IAC3B,WAAW;IACX,eAAe;IACf,0BAA0B;IAC1B,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,4BAA4B;IAC5B,4BAA4B;IAC5B,uCAAuC;IACvC,MAAM;IACN,QAAQ;IACR,0BAA0B;IAC1B,mBAAmB;IACnB,iBAAiB;IACjB,uBAAuB;IACvB,cAAc;IACd,qBAAqB;IACrB,6BAA6B;IAC7B,gBAAgB;IAChB,gBAAgB;IAChB,QAAQ;IACR,kBAAkB;IAClB,gBAAgB;IAChB,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,yBAAyB;IACzB,UAAU;IACV,MAAM;IACN,+BAA+B;IAC/B,sBAAsB;IACtB,WAAW;IACX,UAAU;IACV,kBAAkB;IAClB,eAAe;IACf,aAAa;IACb,oBAAoB;IACpB,cAAc;IACd,QAAQ;IACR,SAAS;IACT,iBAAiB;IACjB,SAAS;IACT,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,SAAS;IACT,SAAS;IACT,8BAA8B;IAC9B,+BAA+B;IAC/B,uBAAuB;IACvB,0BAA0B;IAC1B,kBAAkB;IAClB,WAAW;IACX,2BAA2B;IAC3B,yBAAyB;IACzB,mBAAmB;IACnB,kBAAkB;IAClB,QAAQ;IACR,aAAa;IACb,qCAAqC;IACrC,eAAe;IACf,eAAe;IACf,kBAAkB;IAClB,qBAAqB;IACrB,WAAW;IACX,kBAAkB;IAClB,iBAAiB;IACjB,sBAAsB;IACtB,8BAA8B;IAC9B,UAAU;IACV,gBAAgB;IAChB,SAAS;IACT,eAAe;IACf,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,UAAU;IACV,KAAK;IACL,aAAa;IACb,cAAc;IACd,MAAM;IACN,aAAa;IACb,eAAe;IACf,UAAU;IACV,IAAI;IACJ,mBAAmB;IACnB,cAAc;IACd,QAAQ;IACR,2BAA2B;IAC3B,kBAAkB;IAClB,2BAA2B;CAC9B,CAAC;AAEa,yBAAA,CAAA,YAAY,GAAa,yBAAyB,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACzF,WAAW;IACX,qBAAqB;IACrB,uBAAuB;IACvB,UAAU;IACV,aAAa;IACb,WAAW;IACX,sBAAsB;IACtB,WAAW;IACX,iBAAiB;IACjB,6BAA6B;IAC7B,cAAc;IACd,KAAK;IACL,WAAW;IACX,QAAQ;IACR,aAAa;IACb,SAAS;IACT,yBAAyB;IACzB,MAAM;IACN,SAAS;IACT,cAAc;IACd,UAAU;IACV,mBAAmB;IACnB,WAAW;IACX,uBAAuB;IACvB,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,WAAW;IACX,WAAW;IACX,MAAM;IACN,cAAc;IACd,UAAU;IACV,YAAY;IACZ,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,aAAa;IACb,cAAc;IACd,IAAI;IACJ,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,aAAa;IACb,QAAQ;IACR,eAAe;IACf,eAAe;IACf,QAAQ;IACR,WAAW;IACX,UAAU;IACV,cAAc;IACd,WAAW;IACX,UAAU;IACV,cAAc;IACd,eAAe;IACf,QAAQ;IACR,gBAAgB;IAChB,SAAS;IACT,SAAS;IACT,UAAU;IACV,6BAA6B;IAC7B,WAAW;IACX,WAAW;IACX,WAAW;IACX,UAAU;IACV,KAAK;IACL,YAAY;IACZ,YAAY;IACZ,+BAA+B;IAC/B,WAAW;IACX,SAAS;IACT,cAAc;IACd,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,cAAc;IACd,eAAe;IACf,aAAa;IACb,sBAAsB;IACtB,MAAM;IACN,MAAM;IACN,WAAW;IACX,OAAO;IACP,eAAe;IACf,OAAO;IACP,aAAa;IACb,OAAO;IACP,WAAW;IACX,mBAAmB;IACnB,gBAAgB;IAChB,mBAAmB;IACnB,cAAc;IACd,UAAU;IACV,YAAY;IACZ,gBAAgB;IAChB,UAAU;IACV,OAAO;IACP,0BAA0B;IAC1B,OAAO;IACP,SAAS;IACT,iBAAiB;IACjB,YAAY;IACZ,oBAAoB;IACpB,8BAA8B;IAC9B,YAAY;IACZ,aAAa;IACb,OAAO;IACP,aAAa;IACb,WAAW;AACd,CAAA,CAAC,CAAC;sHApwBM,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAzB,yBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,kwoBAFvB,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAJrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,oBAAoB;AAC/B,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGAwxBY,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,qCAAqC,EAAA,CAAA;sBAA7C,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBAGG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAKG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAOG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAMG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,mCAAmC,EAAA,CAAA;sBAA3C,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAIG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBAGG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,6BAA6B,EAAA,CAAA;sBAArC,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBAGG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBAIG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBAYG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAQG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAGG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBAUI,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAYG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAcG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAWG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBASG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBASG,gCAAgC,EAAA,CAAA;sBAAzC,MAAM;gBAQG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAUG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAMG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAaG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAcG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAcG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAYG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBASG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAmBG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAUG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAYG,kCAAkC,EAAA,CAAA;sBAA3C,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAUG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAYG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAUG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBASG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAcG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAMG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAMG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAcG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAaG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAOG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAiBG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAcG,+BAA+B,EAAA,CAAA;sBAAxC,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAYG,iCAAiC,EAAA,CAAA;sBAA1C,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAWG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAaG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAUG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAYG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAUG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAMG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAMG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAOG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAaG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAgBG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAIG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAMG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAQG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBAQG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAOG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAMG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAcG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAUG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAQG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAMG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAIG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAOG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAWG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAaG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAcG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBAcG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBASG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAaG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAMG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAQG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBAWG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBASG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBASG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAUG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAMG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAWG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAUG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBASG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAaG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAUG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAWG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAOG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAOG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAcG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAMG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAMG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBASG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAOG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAOG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAQG,kBAAkB,EAAA,CAAA;sBAA3B,MAAM;gBAQG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAQG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAWG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBASG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBASG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBAYG,+BAA+B,EAAA,CAAA;sBAAxC,MAAM;gBAYG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAUG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAQG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAWG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAOG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBAUG,0BAA0B,EAAA,CAAA;sBAAnC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,gBAAgB,EAAA,CAAA;sBAAzB,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBASG,2BAA2B,EAAA,CAAA;sBAApC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAYG,8BAA8B,EAAA,CAAA;sBAAvC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBASG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAOG,uBAAuB,EAAA,CAAA;sBAAhC,MAAM;gBAYG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;gBAQG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAQG,4BAA4B,EAAA,CAAA;sBAArC,MAAM;gBAQG,yBAAyB,EAAA,CAAA;sBAAlC,MAAM;gBASG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAOG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAQG,mBAAmB,EAAA,CAAA;sBAA5B,MAAM;gBAMG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAIG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAeG,wBAAwB,EAAA,CAAA;sBAAjC,MAAM;;;ACllKX;MAsrBa,iCAAiC,CAAA;AAkS1C,IAAA,WAAA,CAAY,OAAmB,EAAA;AATvB,QAAA,IAAA,CAAA,aAAa,GAAG;AACpB,YAAA,KAAK,EAAc,SAAS;AAC5B,YAAA,QAAQ,EAAW,SAAS;AAC5B,YAAA,IAAI,EAAe,SAAS;AAC5B,YAAA,gBAAgB,EAAG,IAAI;AACvB,YAAA,QAAQ,EAAW,EAAE;AACrB,YAAA,SAAS,EAAU,EAAE;SACxB,CAAC;;AA2IF;;;;AAIG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAChG;;;;;AAKG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACnJ;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAyH,CAAC;AAC7K;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAAQ,IAAI,YAAY,EAAoI,CAAC;AAC5L;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA8I,CAAC;AAC7L;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAAoG,CAAC;AACnJ;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,iBAAiB,GAAQ,IAAI,YAAY,EAAwG,CAAC;AAC5J;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgE,CAAC;AAC7G;;;;;;;;;;;AAWG;AACO,QAAA,IAAA,CAAA,QAAQ,GAAQ,IAAI,YAAY,EAA+M,CAAC;AAC1P;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,OAAO,GAAQ,IAAI,YAAY,EAAgK,CAAC;AAC1M;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAAmG,CAAC;AACjJ;;;;AAIG;AACO,QAAA,IAAA,CAAA,SAAS,GAAQ,IAAI,YAAY,EAA8C,CAAC;AAC1F;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,eAAe,GAAQ,IAAI,YAAY,EAAwK,CAAC;AAC1N;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,YAAY,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC5G;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAkJ,CAAC;AAC3L;;;;;;AAMG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA2E,CAAC;AAC5H;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAwK,CAAC;AACrN;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,WAAW,GAAQ,IAAI,YAAY,EAA6D,CAAC;AAC3G;;;;;;;AAOG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAgI,CAAC;AAC7K;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAA8K,CAAC;AAC9N;;;;;;;;;;AAUG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAoM,CAAC;AACpP;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,sBAAsB,GAAQ,IAAI,YAAY,EAA4H,CAAC;AACrL;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,oBAAoB,GAAQ,IAAI,YAAY,EAAsK,CAAC;AAC7N;;;;;;;;AAQG;AACO,QAAA,IAAA,CAAA,MAAM,GAAQ,IAAI,YAAY,EAAkJ,CAAC;AAC3L;;;;;AAKG;AACO,QAAA,IAAA,CAAA,cAAc,GAAQ,IAAI,YAAY,EAA2E,CAAC;AAC5H;;;;;AAKG;AACO,QAAA,IAAA,CAAA,aAAa,GAAQ,IAAI,YAAY,EAAgF,CAAC;AAChI;;;;;;;;;AASG;AACO,QAAA,IAAA,CAAA,UAAU,GAAQ,IAAI,YAAY,EAAwK,CAAC;AAnYjN,QAAA,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;KAC7B;AAoYD;;AAEG;IACH,QAAQ,GAAA;QACJ,MACI,EAAE,GAAG,IAAI,EACT,EACI,UAAU,EACV,aAAa,EAChB,GAAG,EAAE,EACN,EACI,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EAChB,GAAG,iCAAiC,CAAC;AAE1C,QAAA,cAAc,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,IAAG;;AAEvD,YAAA,aAAa,CAAC,cAAc,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACvC,gBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,aAAA;AACL,SAAC,CAAC,CAAC;;AAEH,QAAA,aAAa,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,IAAG;AAC3F,YAAA,MACI,YAAY,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAC1E,SAAS,GAAG,CAAC,GAAW,KAAK,YAAY,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;YAG5D,aAAa,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAG;;gBAE5C,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;gBAGlB,OAAO,CAAC,CAAC,WAAW,CAAC;AACzB,aAAC,CAAC;AACN,SAAC,CAAC,CAAC;;AAGH,QAAA,MACI,cAAc,GAAG;YACb,OAAO;YACP,UAAU;YACV,aAAa;YACb,cAAc;;SAEjB,CAAC,IAAI,CAAC,IAAI,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE;AACjB,YAAA,IAAI,YAAY,KAAK,QAAQ,IAAI,UAAU,CAAC,aAAa,CAAC,WAAW,EAAE,YAAY,UAAU,EAAE;;AAE3F,gBAAA,aAAa,CAAC,QAAQ,GAAG,UAAU,CAAC,aAAa,CAAC;AACrD,aAAA;AACI,iBAAA;AACD,gBAAA,aAAa,CAAC,KAAK,GAAG,UAAU,CAAC,aAAa,CAAC;AAClD,aAAA;AACJ,SAAA;AACI,aAAA;AACD,YAAA,aAAa,CAAC,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;AACnE,SAAA;;QAGD,EAAE,CAAC,QAAQ,GAAG,YAAY,KAAK,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,aAAa,CAAC,aAAa,CAAC,CAAC;KAE7G;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,OAAsB,EAAA;QAC9B,MACI,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,YAAY,EAAE,GAAG,iCAAiC,CAAC;QACzD,IAAI,CAAC,QAAQ,EAAE;YACX,OAAO;AACV,SAAA;;AAED,QAAA,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,KAAI;AAC/C,YAAA,MACI,QAAQ,GAAI,MAAuB,CAAC,YAAY,EAChD,EAAE,QAAQ,EAAE,GAAG,IAAI,EACnB,EAAE,kBAAkB,EAAE,YAAY,EAAE,GAAG,iCAAiC,CAAC;AAC7E,YAAA,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC7B,aAAa,CAAC,cAAc,CAAC,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;AAC9D,gBAAA,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;AACnC,oBAAA,aAAa,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;AAC1D,iBAAA;AACJ,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;AAEG;IACH,WAAW,GAAA;;QAEP,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AACxC,YAAA,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAA;KACJ;;AA3wBa,iCAAa,CAAA,aAAA,GAAG,YAAY,CAAC;AAE7B,iCAAY,CAAA,YAAA,GAAG,cAAc,CAAC;AAE7B,iCAAA,CAAA,aAAa,GAAa;IACrC,iBAAiB;IACjB,cAAc;IACd,mBAAmB;IACnB,uBAAuB;IACvB,cAAc;IACd,cAAc;IACd,mBAAmB;IACnB,YAAY;IACZ,UAAU;IACV,SAAS;IACT,aAAa;IACb,WAAW;IACX,iBAAiB;IACjB,cAAc;IACd,QAAQ;IACR,gBAAgB;IAChB,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,eAAe;IACf,eAAe;IACf,wBAAwB;IACxB,sBAAsB;IACtB,QAAQ;IACR,gBAAgB;IAChB,eAAe;IACf,YAAY;CACf,CAAC;AAEa,iCAAmB,CAAA,mBAAA,GAAa,EAE9C,CAAC;AAEa,iCAAA,CAAA,cAAc,GAAa,iCAAiC,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACnG,wBAAwB;IACxB,qBAAqB;IACrB,yBAAyB;IACzB,sBAAsB;IACtB,aAAa;IACb,iBAAiB;IACjB,iBAAiB;IACjB,sBAAsB;IACtB,wCAAwC;IACxC,UAAU;IACV,2BAA2B;IAC3B,uBAAuB;IACvB,wBAAwB;IACxB,qCAAqC;IACrC,oBAAoB;IACpB,UAAU;IACV,iBAAiB;IACjB,cAAc;IACd,qBAAqB;IACrB,UAAU;IACV,sBAAsB;IACtB,2BAA2B;IAC3B,oBAAoB;IACpB,WAAW;IACX,eAAe;IACf,iBAAiB;IACjB,6BAA6B;IAC7B,UAAU;IACV,YAAY;IACZ,cAAc;IACd,aAAa;IACb,kBAAkB;IAClB,cAAc;IACd,sBAAsB;IACtB,kBAAkB;IAClB,sBAAsB;IACtB,iBAAiB;IACjB,sBAAsB;IACtB,aAAa;IACb,WAAW;IACX,6BAA6B;IAC7B,SAAS;IACT,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,UAAU;IACV,WAAW;IACX,aAAa;IACb,IAAI;IACJ,6CAA6C;IAC7C,0BAA0B;IAC1B,8BAA8B;IAC9B,gCAAgC;IAChC,6BAA6B;IAC7B,eAAe;IACf,MAAM;IACN,UAAU;IACV,WAAW;IACX,SAAS;IACT,kBAAkB;IAClB,uBAAuB;IACvB,MAAM;IACN,oBAAoB;IACpB,UAAU;IACV,UAAU;IACV,aAAa;IACb,gBAAgB;IAChB,sBAAsB;IACtB,UAAU;IACV,kBAAkB;IAClB,cAAc;IACd,aAAa;IACb,oBAAoB;IACpB,8BAA8B;IAC9B,oBAAoB;IACpB,WAAW;IACX,eAAe;IACf,eAAe;IACf,oBAAoB;IACpB,sBAAsB;IACtB,sBAAsB;IACtB,oDAAoD;IACpD,0CAA0C;IAC1C,qBAAqB;IACrB,WAAW;IACX,uBAAuB;IACvB,YAAY;IACZ,KAAK;IACL,iBAAiB;IACjB,0BAA0B;IAC1B,mBAAmB;IACnB,SAAS;IACT,gBAAgB;IAChB,OAAO;IACP,WAAW;IACX,WAAW;IACX,gBAAgB;IAChB,YAAY;IACZ,gBAAgB;IAChB,gBAAgB;IAChB,UAAU;IACV,oBAAoB;IACpB,0BAA0B;IAC1B,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,gBAAgB;AACnB,CAAA,CAAC,CAAC;AAEY,iCAAA,CAAA,kBAAkB,GAAa;IAC1C,qBAAqB;IACrB,sBAAsB;IACtB,iBAAiB;IACjB,sBAAsB;IACtB,UAAU;IACV,oBAAoB;IACpB,UAAU;IACV,iBAAiB;IACjB,cAAc;IACd,qBAAqB;IACrB,2BAA2B;IAC3B,oBAAoB;IACpB,eAAe;IACf,UAAU;IACV,kBAAkB;IAClB,kBAAkB;IAClB,sBAAsB;IACtB,sBAAsB;IACtB,SAAS;IACT,YAAY;IACZ,UAAU;IACV,8BAA8B;IAC9B,gCAAgC;IAChC,WAAW;IACX,kBAAkB;IAClB,oBAAoB;IACpB,UAAU;IACV,aAAa;IACb,gBAAgB;IAChB,sBAAsB;IACtB,cAAc;IACd,aAAa;IACb,oBAAoB;IACpB,8BAA8B;IAC9B,oBAAoB;IACpB,eAAe;IACf,oBAAoB;IACpB,sBAAsB;IACtB,qBAAqB;IACrB,iBAAiB;IACjB,0BAA0B;IAC1B,gBAAgB;IAChB,WAAW;IACX,gBAAgB;IAChB,gBAAgB;IAChB,oBAAoB;IACpB,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,gBAAgB;CACnB,CAAC;AAEa,iCAAA,CAAA,YAAY,GAAa,iCAAiC,CAAC,mBAAmB,CAAC,MAAM,CAAC;IACjG,wBAAwB;IACxB,aAAa;IACb,yBAAyB;IACzB,uBAAuB;IACvB,aAAa;IACb,iBAAiB;IACjB,wCAAwC;IACxC,2BAA2B;IAC3B,uBAAuB;IACvB,wBAAwB;IACxB,qCAAqC;IACrC,UAAU;IACV,sBAAsB;IACtB,WAAW;IACX,iBAAiB;IACjB,6BAA6B;IAC7B,eAAe;IACf,YAAY;IACZ,cAAc;IACd,aAAa;IACb,cAAc;IACd,sBAAsB;IACtB,iBAAiB;IACjB,iBAAiB;IACjB,aAAa;IACb,WAAW;IACX,6BAA6B;IAC7B,SAAS;IACT,YAAY;IACZ,WAAW;IACX,gBAAgB;IAChB,aAAa;IACb,IAAI;IACJ,6CAA6C;IAC7C,0BAA0B;IAC1B,6BAA6B;IAC7B,YAAY;IACZ,YAAY;IACZ,cAAc;IACd,YAAY;IACZ,eAAe;IACf,SAAS;IACT,MAAM;IACN,UAAU;IACV,SAAS;IACT,uBAAuB;IACvB,MAAM;IACN,UAAU;IACV,4BAA4B;IAC5B,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,eAAe;IACf,mBAAmB;IACnB,sBAAsB;IACtB,oDAAoD;IACpD,0CAA0C;IAC1C,WAAW;IACX,uBAAuB;IACvB,YAAY;IACZ,KAAK;IACL,mBAAmB;IACnB,SAAS;IACT,OAAO;IACP,WAAW;IACX,YAAY;IACZ,gBAAgB;IAChB,UAAU;IACV,0BAA0B;IAC1B,wBAAwB;AAC3B,CAAA,CAAC,CAAC;8HApRM,iCAAiC,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAjC,iCAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iCAAiC,m2KAF/B,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAEJ,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAJ7C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAG,6BAA6B;AACxC,oBAAA,QAAQ,EAAG,EAAE;AAChB,iBAAA,CAAA;iGAwSY,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBAGG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,8BAA8B,EAAA,CAAA;sBAAtC,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,4BAA4B,EAAA,CAAA;sBAApC,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,mBAAmB,EAAA,CAAA;sBAA3B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,kBAAkB,EAAA,CAAA;sBAA1B,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAIG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBAGG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,uBAAuB,EAAA,CAAA;sBAA/B,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,sCAAsC,EAAA,CAAA;sBAA9C,KAAK;gBACG,yBAAyB,EAAA,CAAA;sBAAjC,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBACG,mCAAmC,EAAA,CAAA;sBAA3C,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBACG,2CAA2C,EAAA,CAAA;sBAAnD,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBACG,2BAA2B,EAAA,CAAA;sBAAnC,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,gBAAgB,EAAA,CAAA;sBAAxB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,oBAAoB,EAAA,CAAA;sBAA5B,KAAK;gBACG,kDAAkD,EAAA,CAAA;sBAA1D,KAAK;gBACG,wCAAwC,EAAA,CAAA;sBAAhD,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,wBAAwB,EAAA,CAAA;sBAAhC,KAAK;gBAGG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,qBAAqB,EAAA,CAAA;sBAA7B,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,eAAe,EAAA,CAAA;sBAAvB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,UAAU,EAAA,CAAA;sBAAlB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,0BAA0B,EAAA,CAAA;sBAAlC,KAAK;gBACG,iBAAiB,EAAA,CAAA;sBAAzB,KAAK;gBACG,sBAAsB,EAAA,CAAA;sBAA9B,KAAK;gBAQI,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAOG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,qBAAqB,EAAA,CAAA;sBAA9B,MAAM;gBAWG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBASG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAQG,iBAAiB,EAAA,CAAA;sBAA1B,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAaG,QAAQ,EAAA,CAAA;sBAAjB,MAAM;gBAUG,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBAUG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAMG,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAWG,eAAe,EAAA,CAAA;sBAAxB,MAAM;gBAQG,YAAY,EAAA,CAAA;sBAArB,MAAM;gBAUG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAQG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAWG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAUG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBASG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAWG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAYG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAUG,sBAAsB,EAAA,CAAA;sBAA/B,MAAM;gBAUG,oBAAoB,EAAA,CAAA;sBAA7B,MAAM;gBAUG,MAAM,EAAA,CAAA;sBAAf,MAAM;gBAOG,cAAc,EAAA,CAAA;sBAAvB,MAAM;gBAOG,aAAa,EAAA,CAAA;sBAAtB,MAAM;gBAWG,UAAU,EAAA,CAAA;sBAAnB,MAAM;;;AC51CX;;AAEE;MAkCW,kBAAkB,CAAA;;+GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAlB,kBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,iBApBvB,+BAA+B;QAC/B,8BAA8B;QAC9B,8BAA8B;QAC9B,+BAA+B;QAC/B,qBAAqB;QACrB,yBAAyB;AACzB,QAAA,iCAAiC,aAKjC,+BAA+B;QAC/B,8BAA8B;QAC9B,8BAA8B;QAC9B,+BAA+B;QAC/B,qBAAqB;QACrB,yBAAyB;QACzB,iCAAiC,CAAA,EAAA,CAAA,CAAA;AAG5B,kBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,YAZjB,EAAE,CAAA,EAAA,CAAA,CAAA;2FAYH,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAvB9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,YAAY,EAAG;wBAEX,+BAA+B;wBAC/B,8BAA8B;wBAC9B,8BAA8B;wBAC9B,+BAA+B;wBAC/B,qBAAqB;wBACrB,yBAAyB;wBACzB,iCAAiC;AACpC,qBAAA;AACD,oBAAA,OAAO,EAAG,EAAE;AACZ,oBAAA,OAAO,EAAG;wBAEN,+BAA+B;wBAC/B,8BAA8B;wBAC9B,8BAA8B;wBAC9B,+BAA+B;wBAC/B,qBAAqB;wBACrB,yBAAyB;wBACzB,iCAAiC;AACpC,qBAAA;AACJ,iBAAA,CAAA;;;ACnCD;;AAEG;;ACFH;;AAEG;;;;"}