@bryntum/grid-angular-thin 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/bryntum-grid-angular-thin.d.ts +5 -0
- package/bundles/bryntum-grid-angular-thin.umd.js +12313 -0
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -0
- package/esm2015/bryntum-grid-angular-thin.js +5 -0
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +792 -0
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +944 -0
- package/esm2015/lib/bryntum-grid-base.component.js +2100 -0
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +589 -0
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +755 -0
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +745 -0
- package/esm2015/lib/bryntum-grid.component.js +2104 -0
- package/esm2015/lib/bryntum-group-bar.component.js +728 -0
- package/esm2015/lib/bryntum-tree-combo.component.js +933 -0
- package/esm2015/lib/bryntum-tree-grid.component.js +2104 -0
- package/esm2015/lib/grid.module.js +69 -0
- package/esm2015/lib/wrapper.helper.js +74 -0
- package/esm2015/public-api.js +15 -0
- package/fesm2015/bryntum-grid-angular-thin.js +11856 -0
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -0
- package/lib/bryntum-a-i-filter-field.component.d.ts +969 -0
- package/lib/bryntum-checklist-filter-combo.component.d.ts +1211 -0
- package/lib/bryntum-grid-base.component.d.ts +2272 -0
- package/lib/bryntum-grid-chart-designer.component.d.ts +692 -0
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +930 -0
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +917 -0
- package/lib/bryntum-grid.component.d.ts +2274 -0
- package/lib/bryntum-group-bar.component.d.ts +873 -0
- package/lib/bryntum-tree-combo.component.d.ts +1200 -0
- package/lib/bryntum-tree-grid.component.d.ts +2274 -0
- package/lib/grid.module.d.ts +16 -0
- package/lib/wrapper.helper.d.ts +26 -0
- package/package.json +33 -0
- package/public-api.d.ts +11 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bryntum-grid-angular-thin.js","sources":["../../component/src/lib/wrapper.helper.ts","../../component/src/lib/bryntum-a-i-filter-field.component.ts","../../component/src/lib/bryntum-checklist-filter-combo.component.ts","../../component/src/lib/bryntum-grid.component.ts","../../component/src/lib/bryntum-grid-base.component.ts","../../component/src/lib/bryntum-grid-chart-designer.component.ts","../../component/src/lib/bryntum-grid-field-filter-picker.component.ts","../../component/src/lib/bryntum-grid-field-filter-picker-group.component.ts","../../component/src/lib/bryntum-group-bar.component.ts","../../component/src/lib/bryntum-tree-combo.component.ts","../../component/src/lib/bryntum-tree-grid.component.ts","../../component/src/lib/grid.module.ts","../../component/src/public-api.ts","../../component/src/bryntum-grid-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/grid/docs/guide/Grid/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 AIFilterField\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, DomConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { AIFilterField, AIFilterFieldListeners, GridContainerItemConfig, Grid } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumAIFilterFieldProps = {\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/grid/docs/api/Grid/widget/AIFilterField#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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 * 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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Field#property-triggers).\n */\n clearable ? : boolean|FieldTriggerConfig\n /**\n * The Grid instance this field is filtering. Defaults to the closest Grid instance found when the field is\n * added to the DOM. If you are not adding the field to the Grid's DOM, you must set this property.\n */\n client ? : Grid\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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-container)\n */\n container ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|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/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * Set to `false` to prevent user from editing the field. For TextFields it is basically the same as setting\n * [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), but for PickerFields there is a distinction where it allows you to pick a value\n * but not to type one in the field.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-editable)\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/grid/docs/api/Grid/widget/AIFilterField#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Specify `true` to highlight field after external value changes\n */\n highlightExternalChange ? : boolean\n /**\n * An optional string to display inside the input field as an overlay. This can be useful for displaying\n * a field's units.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-inline)\n */\n inline ? : boolean\n /**\n * Text alignment for the input field.\n */\n inputAlign ? : string\n /**\n * Sets custom attributes of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)\n */\n inputAttributes ? : Record<string, string>\n /**\n * If you need to use something else than a default `input` element, as the input element, provide the tag\n * name here. Please note that this is used for advanced usage only, for example when using WebComponents\n * (custom elements), and that the configured element must fulfil the same contract as a regular input\n * element.\n */\n inputTag ? : string\n /**\n * Sets the `type` attribute of the underlying input element (password, hidden, date, color, etc.).\n */\n inputType ? : string\n /**\n * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any\n * triggers. If a number is specified, `px` will be used.\n */\n inputWidth ? : string|number\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#config-keyStrokeChangeDelay)\n */\n keyStrokeChangeDelay ? : number\n /**\n * Label, prepended to field\n */\n label ? : string\n /**\n * CSS class name or class names to add to any configured [label](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)\n */\n listeners ? : AIFilterFieldListeners\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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Name of the field which is used as a key to get/set values from/to the field.\n * Used prior to [ref](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)\n */\n name ? : string\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-owner)\n */\n owner ? : Widget|any\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/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * The text to show in the load mask when the AI is processing the filter request\n */\n progressText ? : string\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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`\n * to the user).\n */\n skipValidation ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Sets the native `spellcheck` property of the underlying input element. For more information, please refer to\n * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck)\n */\n spellCheck ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Grid/widget/AIFilterField#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * The triggers to add either before or after the input field. Each property name is the reference by which\n * an instantiated Trigger Widget may be retrieved from the live `triggers` property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'aifilterfield'\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/grid/docs/api/Grid/widget/AIFilterField#config-ui)\n */\n ui ? : string|object\n /**\n * Set to `false` to not highlight a field as invalid while typing, to instead show it on ENTER key press\n * or similar.\n */\n validateOnInput ? : boolean\n /**\n * Default value\n */\n value ? : string\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/AIFilterField#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-a-i-filter-field',\n template : ''\n})\nexport class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {\n\n public static instanceClass = AIFilterField;\n\n public static instanceName = 'AIFilterField';\n\n private static bryntumEvents: string[] = [\n 'onAction',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onClear',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onInput',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow',\n 'onTrigger'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumAIFilterFieldComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoSelect',\n 'badge',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'clearable',\n 'client',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'editable',\n 'elementAttributes',\n 'extraData',\n 'flex',\n 'floating',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'id',\n 'ignoreParentReadOnly',\n 'inline',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'keyStrokeChangeDelay',\n 'label',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxLength',\n 'maxWidth',\n 'minHeight',\n 'minLength',\n 'minWidth',\n 'monitorResize',\n 'name',\n 'owner',\n 'placeholder',\n 'positioned',\n 'preventTooltipOnTouch',\n 'progressText',\n 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'required',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollAction',\n 'showAnimation',\n 'showRequiredIndicator',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'span',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'tooltip',\n 'triggers',\n 'type',\n 'ui',\n 'validateOnInput',\n 'value',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoComplete',\n 'autoSelect',\n 'bubbleEvents',\n 'centered',\n 'clearable',\n 'client',\n 'color',\n 'config',\n 'constrainTo',\n 'container',\n 'containValues',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'hideAnimation',\n 'highlightExternalChange',\n 'hint',\n 'hintHtml',\n 'ignoreParentReadOnly',\n 'inline',\n 'inputAlign',\n 'inputAttributes',\n 'inputTag',\n 'inputType',\n 'inputWidth',\n 'keyStrokeChangeDelay',\n 'labelCls',\n 'labelPosition',\n 'labels',\n 'labelWidth',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'maxLength',\n 'minLength',\n 'monitorResize',\n 'name',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'progressText',\n 'relayStoreEvents',\n 'revertOnEscape',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'skipValidation',\n 'spellCheck',\n 'tab',\n 'tabIndex',\n 'textAlign',\n 'title',\n 'type',\n 'ui',\n 'validateOnInput',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumAIFilterFieldComponent.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 'flex',\n 'focusVisible',\n 'formula',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'input',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'label',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'placeholder',\n 'readOnly',\n 'rendition',\n 'required',\n 'rtl',\n 'scrollable',\n 'showRequiredIndicator',\n 'span',\n 'tooltip',\n 'triggers',\n 'value',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: AIFilterField;\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() autoSelect ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() clearable ! : boolean|FieldTriggerConfig;\n @Input() client ! : Grid;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() container ! : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig|FieldContainer;\n @Input() containValues ! : boolean|string|((field: Field) => boolean);\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() hideAnimation ! : boolean|object;\n @Input() highlightExternalChange ! : boolean;\n @Input() hint ! : string|((data: { source: Field, value: any }) => string);\n @Input() hintHtml ! : string|((data: { source: Field, value: any }) => string);\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() inline ! : boolean;\n @Input() inputAlign ! : string;\n @Input() inputAttributes ! : Record<string, string>;\n @Input() inputTag ! : string;\n @Input() inputType ! : string;\n @Input() inputWidth ! : string|number;\n @Input() keyStrokeChangeDelay ! : number;\n @Input() labelCls ! : string|object;\n @Input() labelPosition ! : 'before'|'above'|null;\n @Input() labels ! : object[];\n @Input() labelWidth ! : string|number;\n @Input() listeners ! : AIFilterFieldListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() maxLength ! : number;\n @Input() minLength ! : number;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() name ! : string;\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() progressText ! : string;\n @Input() relayStoreEvents ! : boolean;\n @Input() revertOnEscape ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() skipValidation ! : boolean;\n @Input() spellCheck ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabIndex ! : number;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() title ! : string;\n @Input() type ! : 'aifilterfield';\n @Input() ui ! : string|object;\n @Input() validateOnInput ! : boolean;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() badge ! : string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() editable ! : boolean;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() label ! : string;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() placeholder ! : string;\n @Input() readOnly ! : boolean;\n @Input() rendition ! : 'outlined'|'filled'|string;\n @Input() required ! : boolean;\n @Input() rtl ! : boolean;\n @Input() showRequiredIndicator ! : string;\n @Input() span ! : number;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() triggers ! : Record<string, FieldTriggerConfig>|Record<string, Widget>;\n @Input() value ! : any|string;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() content ! : string;\n @Input() focusVisible ! : boolean;\n @Input() formula ! : string;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() input ! : HTMLElement;\n @Input() parent ! : Widget;\n @Input() scrollable ! : Scroller;\n\n // Events emitters\n /**\n * User performed default action (typed into this field).\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This Field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {string,number,boolean,any} event.oldValue This field's previous value\n * @param {boolean} event.valid True if this field is in a valid state\n * @param {Event} event.event The triggering DOM event if any\n * @param {Core.data.Model} event.record Selected record. Available for fields with records selection functionality\n * @param {Core.data.Model[]} event.records Selected records as an array. Available for fields with records selection functionality\n * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)\n * @param {boolean} event.checked\n */\n @Output() onAction: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, record: Model, records: Model[], userAction: boolean, checked: boolean }) => void)|string>();\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Fired when the user types into this field.\n * @param {object} event Event object\n * @param {Core.widget.Field,any} event.source This field\n * @param {string,number,boolean,any} event.value This field's value\n * @param {Event} event.event The triggering DOM event\n */\n @Output() onInput: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#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/grid/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/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User clicked one of this field's [triggers](https://bryntum.com/products/grid/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 } = BryntumAIFilterFieldComponent;\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 } = BryntumAIFilterFieldComponent;\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 } = BryntumAIFilterFieldComponent;\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 ChecklistFilterCombo\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 { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumChecklistFilterComboProps = {\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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)\n */\n container ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|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/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * CSS class to add to picker\n */\n listCls ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)\n */\n listeners ? : ChecklistFilterComboListeners\n /**\n * Template to render optional content next to list items.\n * @param {Core.data.Model} record The list item's backing record\n * @returns {string}\n */\n listItemPillTpl ? : (record: Model) => string\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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 * The text in the search box, which will filter the list to matching records only. See also [filterOperator](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator).\n */\n searchText ? : string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * When `true`, shows an \"Apply\" button in place of the \"Select All\" button, and does not\n * raise `change` events until the Apply button is clicked.\n */\n showApplyButton ? : boolean\n /**\n * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'checklistfiltercombo'\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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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. An array of record ids.\n */\n value ? : 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/grid/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-checklist-filter-combo',\n template : ''\n})\nexport class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {\n\n public static instanceClass = ChecklistFilterCombo;\n\n public static instanceName = 'ChecklistFilterCombo';\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[] = BryntumChecklistFilterComboComponent.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 'listItemPillTpl',\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 '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 'searchText',\n 'showAnimation',\n 'showApplyButton',\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[] = BryntumChecklistFilterComboComponent.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 'listItemPillTpl',\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 'searchText',\n 'showApplyButton',\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!: ChecklistFilterCombo;\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, GridContainerItemConfig>|GridContainerItemConfig[]|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 ! : ChecklistFilterComboListeners;\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 ! : 'checklistfiltercombo';\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() listItemPillTpl ! : (record: Model) => 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() 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() searchText ! : string;\n @Input() showApplyButton ! : 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() multiSelect ! : boolean;\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/grid/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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/docs/api/Grid/widget/ChecklistFilterCombo#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/grid/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/grid/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/grid/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/grid/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 } = BryntumChecklistFilterComboComponent;\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 } = BryntumChecklistFilterComboComponent;\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 } = BryntumChecklistFilterComboComponent;\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 Grid\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, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridColumnConfig, GridListeners, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGridProps = {\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/grid/docs/api/Grid/view/Grid#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-bbar)\n */\n bbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-columns)\n */\n columns ? : ColumnStore|GridColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#config-listeners)\n */\n listeners ? : GridListeners\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/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 * 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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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 * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/grid/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/grid/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-strips)\n */\n strips ? : Record<string, GridContainerItemConfig>\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/grid/docs/api/Grid/view/Grid#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/Grid#config-tbar)\n */\n tbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/Grid#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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 ? : 'grid'\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/grid/docs/api/Grid/view/Grid#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|ExcelExporter|ExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|LockRows|LockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Core/data/Store).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|RowResize|RowResizeConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n\n}\n\n@Component({\n selector : 'bryntum-grid',\n template : ''\n})\nexport class BryntumGridComponent implements OnInit, OnDestroy {\n\n public static instanceClass = Grid;\n\n public static instanceName = 'Grid';\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[] = BryntumGridComponent.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 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 '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 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGridComponent.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!: Grid;\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 ! : (GridContainerItemConfig|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 ! : GridListeners;\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() 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() 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, GridContainerItemConfig>;\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 ! : (GridContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() type ! : 'grid';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\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|GridColumnConfig[]|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|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() 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|ExcelExporter|ExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() lockRowsFeature ! : object|boolean|string|LockRows|LockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|RowResize|RowResizeConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/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/grid/docs/api/Grid/view/Grid#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/grid/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/grid/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 } = BryntumGridComponent;\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 } = BryntumGridComponent;\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 } = BryntumGridComponent;\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 GridBase\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, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridBaseListeners, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGridBaseProps = {\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/grid/docs/api/Grid/view/GridBase#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-bbar)\n */\n bbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-columns)\n */\n columns ? : ColumnStore|GridColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#config-listeners)\n */\n listeners ? : GridBaseListeners\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/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 * 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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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 * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/grid/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/grid/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-strips)\n */\n strips ? : Record<string, GridContainerItemConfig>\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/grid/docs/api/Grid/view/GridBase#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/GridBase#config-tbar)\n */\n tbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/GridBase#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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 /**\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/grid/docs/api/Grid/view/GridBase#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|ExcelExporter|ExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|LockRows|LockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Core/data/Store).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|RowResize|RowResizeConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n\n}\n\n@Component({\n selector : 'bryntum-grid-base',\n template : ''\n})\nexport class BryntumGridBaseComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GridBase;\n\n public static instanceName = 'GridBase';\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[] = BryntumGridBaseComponent.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 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 'ui',\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 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 'ui',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGridBaseComponent.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!: GridBase;\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 ! : (GridContainerItemConfig|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 ! : GridBaseListeners;\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() 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() 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, GridContainerItemConfig>;\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 ! : (GridContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() ui ! : 'plain'|'toolbar'|string|object;\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|GridColumnConfig[]|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|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() 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|ExcelExporter|ExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() lockRowsFeature ! : object|boolean|string|LockRows|LockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|RowResize|RowResizeConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/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/grid/docs/api/Grid/view/GridBase#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/grid/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/grid/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 } = BryntumGridBaseComponent;\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 } = BryntumGridBaseComponent;\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 } = BryntumGridBaseComponent;\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 GridChartDesigner\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, DomConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { Grid, GridChartDesigner, GridChartDesignerListeners } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGridChartDesignerProps = {\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/grid/docs/api/Grid/widget/GridChartDesigner#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * [Grid](https://bryntum.com/products/grid/docs/api/Grid/view/Grid) whose selected cells will provide the data series for the chart.\n * Columns in the grid will become series available for use in the chart designer, and cell values\n * in the selected cells becomes data values shown in the preview chart.\n */\n grid ? : Grid\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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-listeners)\n */\n listeners ? : GridChartDesignerListeners\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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\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/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Whether this widget is read-only. This is only valid if the widget is an input\n * field, <strong>or contains input fields at any depth</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Whether to update the chart designer's data series options and preview data as the\n * grid selection changes.\n */\n sync ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/docs/api/Grid/widget/GridChartDesigner#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n type ? : 'gridchartdesigner'\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/grid/docs/api/Grid/widget/GridChartDesigner#config-ui)\n */\n ui ? : string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridChartDesigner#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-grid-chart-designer',\n template : ''\n})\nexport class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GridChartDesigner;\n\n public static instanceName = 'GridChartDesigner';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeShow',\n 'onCatchAll',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumGridChartDesignerComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'extraData',\n 'flex',\n 'floating',\n 'grid',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'html',\n 'htmlCls',\n 'id',\n 'ignoreParentReadOnly',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'span',\n 'sync',\n 'tab',\n 'tag',\n 'textAlign',\n 'title',\n 'tooltip',\n 'type',\n 'ui',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'centered',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'grid',\n 'hideAnimation',\n 'htmlCls',\n 'ignoreParentReadOnly',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'sync',\n 'tab',\n 'tag',\n 'textAlign',\n 'title',\n 'type',\n 'ui',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGridChartDesignerComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'insertBefore',\n 'insertFirst',\n 'keyMap',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'readOnly',\n 'rtl',\n 'scrollable',\n 'span',\n 'tooltip',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: GridChartDesigner;\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() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() grid ! : Grid;\n @Input() hideAnimation ! : boolean|object;\n @Input() htmlCls ! : string|object;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() listeners ! : GridChartDesignerListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() sync ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tag ! : string;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() title ! : string;\n @Input() type ! : 'gridchartdesigner';\n @Input() ui ! : string|object;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() readOnly ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() span ! : number;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() parent ! : Widget;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * 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/grid/docs/api/Grid/widget/GridChartDesigner#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#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/grid/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/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumGridChartDesignerComponent;\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 } = BryntumGridChartDesignerComponent;\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 } = BryntumGridChartDesignerComponent;\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 GridFieldFilterPicker\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, CollectionFilter, CollectionFilterConfig, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';\nimport { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPicker, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGridFieldFilterPickerProps = {\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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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 * Optional array of field names that are allowed as selectable properties for filters.\n * This is a subset of the field names found in the [grid](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-grid)'s columns. When supplied, only\n * the named fields will be shown in the property selector combo.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-allowedFieldNames)\n */\n allowedFieldNames ? : string[]\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes\n */\n autoUpdateRecord ? : boolean\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The date format string used to display dates in value input fields. Defaults to the current locale's\n * `FieldFilterPicker.dateFormat` value.\n */\n dateFormat ? : string\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * A [query](https://bryntum.com/products/grid/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which\n * focus should be directed by default.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-defaultFocus)\n * @param {Core.widget.Widget} widget Widget passed to method\n * @returns {boolean} truthy value if widget is the default one\n */\n defaultFocus ? : ((widget: Widget) => boolean)|string\n /**\n * A config object containing default settings to apply to all child widgets.\n */\n defaults ? : GridContainerItemConfig\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Make the entire picker disabled.\n */\n disabled ? : boolean\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * Dictionary of [FieldOption](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#typedef-FieldOption) representing the fields against which filters can be defined,\n * keyed by field name.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-fields)\n */\n fields ? : Record<string, FieldOption>\n /**\n * Configuration object for the [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) displayed\n * and editable in this picker.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-filter)\n */\n filter ? : CollectionFilterConfig\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Optional function that modifies the configuration of value fields shown for a filter. The default configuration\n * is received as an argument and the returned value will be used as the final configuration. For example:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-getValueFieldConfig)\n * @param {Core.util.CollectionFilter} filter The filter being displayed\n * @param {GridContainerItemConfig} fieldConfig Configuration object for the value field\n * @returns {GridContainerItemConfig} the resulting configuration\n */\n getValueFieldConfig ? : (filter: CollectionFilter, fieldConfig: GridContainerItemConfig) => GridContainerItemConfig\n /**\n * [Grid](https://bryntum.com/products/grid/docs/api/Grid/view/Grid) from which to read the available field list. In order to\n * appear as a selectable property for a filter, a column must have a `field` property.\n * If the column has a `text` property, that will be shown as the displayed text in the\n * selector; otherwise, the `field` property will be shown as-is.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-grid)\n */\n grid ? : Grid\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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Specify `true` to make this container hide when it has no visible children (Either empty\n * or all children hidden).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-hideWhenEmpty)\n */\n hideWhenEmpty ? : boolean\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An optional CSS class to add to child items of this container.\n */\n itemCls ? : string\n /**\n * An object containing typed child widget config objects or Widgets. May also be specified\n * as an array.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-items)\n */\n items ? : Record<string, GridContainerItemConfig|MenuItemEntry>|(GridContainerItemConfig|MenuItemEntry|Widget)[]\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * The short name of a helper class which manages rendering and styling of child items.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-layout)\n */\n layout ? : string|GridContainerLayoutConfig\n /**\n * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-layoutStyle)\n */\n layoutStyle ? : object\n /**\n * An array of [child item](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into\n * instances only when this Container is rendered, rather than eagerly at construct time.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-lazyItems)\n */\n lazyItems ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|Widget[]\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-listeners)\n */\n listeners ? : GridFieldFilterPickerListeners\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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items)\n * config. For example, a specialized [Menu](https://bryntum.com/products/grid/docs/api/Core/widget/Menu) subclass may have a `namedItems` default\n * value defined like this:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-namedItems)\n */\n namedItems ? : Record<string, GridContainerItemConfig>\n /**\n * Make only the operator selector readOnly.\n */\n operatorLocked ? : boolean\n /**\n * Overrides the built-in list of operators that are available for selection. Specify operators as\n * an object with data types as keys and lists of operators as values, like this:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)\n */\n operators ? : 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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#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 * Optional configuration for the property selector [Combo](https://bryntum.com/products/grid/docs/api/Core/widget/Combo).\n */\n propertyFieldConfig ? : ComboConfig\n /**\n * Make only the property selector readOnly.\n */\n propertyLocked ? : boolean\n /**\n * Make the entire picker read-only.\n */\n readOnly ? : boolean\n /**\n * [Record](https://bryntum.com/products/grid/docs/api/Core/data/Model) whose values will be used to populate fields in the container.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-record)\n */\n record ? : Model\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record),\n * without falling back to `ref`.\n */\n strictRecordMapping ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`\n * which specifies a default max-width that makes long text more readable.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-textContent)\n */\n textContent ? : boolean\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * Whether to raise [change](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#event-change) events as the user types into a value field. If `false`,\n * [change](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#event-change) events will be raised only when the value input field's own `change` event\n * occurs, for example on field blur.\n */\n triggerChangeOnInput ? : boolean\n type ? : 'gridfieldfilterpicker'\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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-ui)\n */\n ui ? : string|object\n /**\n * Optional [ValueFieldPlaceholders](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#typedef-ValueFieldPlaceholders) object specifying custom placeholder text for value input fields.\n */\n valueFieldPlaceholders ? : ValueFieldPlaceholders\n /**\n * Make only the value input(s) readOnly.\n */\n valueLocked ? : boolean\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-grid-field-filter-picker',\n template : ''\n})\nexport class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GridFieldFilterPicker;\n\n public static instanceName = 'GridFieldFilterPicker';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumGridFieldFilterPickerComponent.bryntumFeatureNames.concat([\n 'adopt',\n 'align',\n 'alignSelf',\n 'allowedFieldNames',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'dateFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'extraData',\n 'fields',\n 'filter',\n 'flex',\n 'floating',\n 'getValueFieldConfig',\n 'grid',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'html',\n 'htmlCls',\n 'id',\n 'ignoreParentReadOnly',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'itemCls',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'namedItems',\n 'operatorLocked',\n 'operators',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'propertyFieldConfig',\n 'propertyLocked',\n 'readOnly',\n 'record',\n 'relayStoreEvents',\n 'rendition',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'span',\n 'strictRecordMapping',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'textAlign',\n 'textContent',\n 'title',\n 'tooltip',\n 'triggerChangeOnInput',\n 'type',\n 'ui',\n 'valueFieldPlaceholders',\n 'valueLocked',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'adopt',\n 'align',\n 'allowedFieldNames',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'centered',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'dateFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'fields',\n 'filter',\n 'floating',\n 'getValueFieldConfig',\n 'grid',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'htmlCls',\n 'ignoreParentReadOnly',\n 'itemCls',\n 'lazyItems',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'namedItems',\n 'operatorLocked',\n 'operators',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'propertyFieldConfig',\n 'propertyLocked',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'textAlign',\n 'textContent',\n 'title',\n 'triggerChangeOnInput',\n 'type',\n 'ui',\n 'valueFieldPlaceholders',\n 'valueLocked',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGridFieldFilterPickerComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'hasChanges',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isSettingValues',\n 'isValid',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'readOnly',\n 'record',\n 'rendition',\n 'rtl',\n 'scrollable',\n 'span',\n 'strictRecordMapping',\n 'tooltip',\n 'values',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: GridFieldFilterPicker;\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() allowedFieldNames ! : string[];\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoUpdateRecord ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() dateFormat ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() defaultFocus ! : ((widget: Widget) => boolean)|string;\n @Input() defaults ! : GridContainerItemConfig;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() fields ! : Record<string, FieldOption>;\n @Input() filter ! : CollectionFilterConfig;\n @Input() floating ! : boolean;\n @Input() getValueFieldConfig ! : (filter: CollectionFilter, fieldConfig: GridContainerItemConfig) => GridContainerItemConfig;\n @Input() grid ! : Grid;\n @Input() hideAnimation ! : boolean|object;\n @Input() hideWhenEmpty ! : boolean;\n @Input() htmlCls ! : string|object;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() itemCls ! : string;\n @Input() lazyItems ! : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|Widget[];\n @Input() listeners ! : GridFieldFilterPickerListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() namedItems ! : Record<string, GridContainerItemConfig>;\n @Input() operatorLocked ! : boolean;\n @Input() operators ! : object;\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() propertyFieldConfig ! : ComboConfig;\n @Input() propertyLocked ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tag ! : string;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() textContent ! : boolean;\n @Input() title ! : string;\n @Input() triggerChangeOnInput ! : boolean;\n @Input() type ! : 'gridfieldfilterpicker';\n @Input() ui ! : string|object;\n @Input() valueFieldPlaceholders ! : ValueFieldPlaceholders;\n @Input() valueLocked ! : boolean;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : (GridContainerItemConfig|MenuItemConfig|Widget)[]|Record<string, GridContainerItemConfig|MenuItemConfig>|Widget[]|Record<string, GridContainerItemConfig|MenuItemEntry>|(GridContainerItemConfig|MenuItemEntry|Widget)[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() layout ! : Layout|string|GridContainerLayoutConfig;\n @Input() layoutStyle ! : object;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() readOnly ! : boolean;\n @Input() record ! : Model;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() span ! : number;\n @Input() strictRecordMapping ! : boolean;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isSettingValues ! : boolean;\n @Input() isValid ! : boolean;\n @Input() parent ! : Widget;\n @Input() values ! : Record<string, object>;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fires when the filter is modified.\n * @param {object} event Event object\n * @param {Core.widget.FieldFilterPicker} event.source The FieldFilterPicker instance that fired the event.\n * @param {any[]} event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).\n * @param {boolean} event.isValid Whether the current configuration object represents a complete and valid filter\n */\n @Output() onChange: any = new EventEmitter<((event: { source: FieldFilterPicker, filter: any[], isValid: boolean }) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#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/grid/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/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumGridFieldFilterPickerComponent;\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 } = BryntumGridFieldFilterPickerComponent;\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 } = BryntumGridFieldFilterPickerComponent;\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 GridFieldFilterPickerGroup\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, CollectionFilterConfig, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroup, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGridFieldFilterPickerGroupProps = {\n // Configs\n /**\n * Sets the text displayed in the 'add filter' button if one is present.\n */\n addFilterButtonText ? : string\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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 * Optional array of field names that are allowed as selectable properties for filters.\n * This should be a subset of the field names found in the [store](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-store). When supplied,\n * only the named fields will be shown in the property selector combo.\n */\n allowedFieldNames ? : string[]\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes\n */\n autoUpdateRecord ? : boolean\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-callOnFunctions)\n */\n callOnFunctions ? : boolean\n /**\n * Optional predicate that returns whether a given filter can be deleted. When `canDeleteFilter` is provided,\n * it will be called for each filter and will not show the delete button for those for which the\n * function returns `false`.\n * @param {any} filter filter for checking\n * @returns {boolean} truthy value if filter can be deleted\n */\n canDeleteFilter ? : (filter: any) => boolean\n /**\n * Optional predicate that returns whether a given filter can be managed by this widget. When `canManageFilter`\n * is provided, it will be used to decide whether to display filters found in the configured\n * [store](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-store).\n * @param {any} filter filter for checking\n * @returns {boolean} truthy value if filter can be managed\n */\n canManageFilter ? : (filter: any) => 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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Custom CSS classes to add to element.\n * May be specified as a space separated string, or as an object in which property names\n * with truthy values are used as the class names:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The date format string used to display dates when using the 'is one of' / 'is not one of' operators with a date\n * field. Defaults to the current locale's `FieldFilterPicker.dateFormat` value.\n */\n dateFormat ? : string\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * A [query](https://bryntum.com/products/grid/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which\n * focus should be directed by default.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-defaultFocus)\n * @param {Core.widget.Widget} widget Widget passed to method\n * @returns {boolean} truthy value if widget is the default one\n */\n defaultFocus ? : ((widget: Widget) => boolean)|string\n /**\n * A config object containing default settings to apply to all child widgets.\n */\n defaults ? : GridContainerItemConfig\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Whether the picker group is disabled.\n */\n disabled ? : boolean\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n extraData ? : any\n /**\n * Array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects. One\n * [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker) will be created\n * for each object in the array.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-filters)\n */\n filters ? : CollectionFilterConfig[]\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Optional function that returns [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker) configuration properties for\n * a given filter. When `getFieldFilterPickerConfig` is provided, it will be called for each filter and the returned\n * object will be merged with the configuration properties for the individual\n * [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker) representing that filter.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-getFieldFilterPickerConfig)\n * @param {CollectionFilterConfig} filter The filter to be displayed in the FieldFilterPicker being configured\n * @returns {FieldFilterPickerConfig}\n */\n getFieldFilterPickerConfig ? : (filter: CollectionFilterConfig) => FieldFilterPickerConfig\n /**\n * [Grid](https://bryntum.com/products/grid/docs/api/Grid/view/Grid) from which to read the available field list. In order to\n * appear as a selectable property for a filter, a column must have a `field` property.\n * If the column has a `text` property, that will be shown as the displayed text in the\n * selector; otherwise, the `field` property will be shown as-is.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-grid)\n */\n grid ? : Grid\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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * Specify `true` to make this container hide when it has no visible children (Either empty\n * or all children hidden).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideWhenEmpty)\n */\n hideWhenEmpty ? : boolean\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById\n */\n id ? : string\n /**\n * Determines if the widgets read-only state should be controlled by its parent.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * An optional CSS class to add to child items of this container.\n */\n itemCls ? : string\n /**\n * An object containing typed child widget config objects or Widgets. May also be specified\n * as an array.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-items)\n */\n items ? : Record<string, GridContainerItemConfig|MenuItemEntry>|(GridContainerItemConfig|MenuItemEntry|Widget)[]\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * Convenience setting to use same label placement on all child widgets.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelPosition)\n */\n labelPosition ? : 'before'|'above'|'align-before'|'auto'|null\n /**\n * The short name of a helper class which manages rendering and styling of child items.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layout)\n */\n layout ? : string|GridContainerLayoutConfig\n /**\n * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layoutStyle)\n */\n layoutStyle ? : object\n /**\n * An array of [child item](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into\n * instances only when this Container is rendered, rather than eagerly at construct time.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-lazyItems)\n */\n lazyItems ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|Widget[]\n /**\n * When `limitToProperty` is set to the name of an available field (as specified either\n * explicitly in [fields](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-fields) or implicitly in the\n * [store](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-store)'s model), it has the following effects:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-limitToProperty)\n */\n limitToProperty ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-listeners)\n */\n listeners ? : GridFieldFilterPickerGroupListeners\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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items)\n * config. For example, a specialized [Menu](https://bryntum.com/products/grid/docs/api/Core/widget/Menu) subclass may have a `namedItems` default\n * value defined like this:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-namedItems)\n */\n namedItems ? : Record<string, GridContainerItemConfig>\n /**\n * When specified, overrides the built-in list of available operators. See\n * [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).\n */\n operators ? : 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/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Whether the picker group is read-only.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-readOnly)\n */\n readOnly ? : boolean\n /**\n * [Record](https://bryntum.com/products/grid/docs/api/Core/data/Model) whose values will be used to populate fields in the container.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-record)\n */\n record ? : Model\n relayStoreEvents ? : boolean\n /**\n * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget\n * `type`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rendition)\n */\n rendition ? : string|Record<string, string>|null\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * Show a button at the bottom of the group that adds a new, blank filter to the group.\n */\n showAddFilterButton ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record),\n * without falling back to `ref`.\n */\n strictRecordMapping ? : boolean\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`\n * which specifies a default max-width that makes long text more readable.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-textContent)\n */\n textContent ? : boolean\n /**\n * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)\n */\n title ? : string\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * Whether to raise [change](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#event-change) events as the user types into a value field. If `false`,\n * [change](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#event-change) events will be raised only when the value input field's own `change` event\n * occurs, for example on field blur.\n */\n triggerChangeOnInput ? : boolean\n type ? : 'gridfieldfilterpickergroup'\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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ui)\n */\n ui ? : string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-grid-field-filter-picker-group',\n template : ''\n})\nexport class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GridFieldFilterPickerGroup;\n\n public static instanceName = 'GridFieldFilterPickerGroup';\n\n private static bryntumEvents: string[] = [\n 'onBeforeAddFilter',\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeSetRecord',\n 'onBeforeShow',\n 'onCatchAll',\n 'onChange',\n 'onDestroy',\n 'onDirtyStateChange',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onShow'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumGridFieldFilterPickerGroupComponent.bryntumFeatureNames.concat([\n 'addFilterButtonText',\n 'adopt',\n 'align',\n 'alignSelf',\n 'allowedFieldNames',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'callOnFunctions',\n 'canDeleteFilter',\n 'canManageFilter',\n 'catchEventHandlerExceptions',\n 'centered',\n 'cls',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'dateFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'extraData',\n 'filters',\n 'flex',\n 'floating',\n 'getFieldFilterPickerConfig',\n 'grid',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'html',\n 'htmlCls',\n 'id',\n 'ignoreParentReadOnly',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'itemCls',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'lazyItems',\n 'limitToProperty',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'namedItems',\n 'operators',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'record',\n 'relayStoreEvents',\n 'rendition',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'showAddFilterButton',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'span',\n 'strictRecordMapping',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'textAlign',\n 'textContent',\n 'title',\n 'tooltip',\n 'triggerChangeOnInput',\n 'type',\n 'ui',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'addFilterButtonText',\n 'adopt',\n 'align',\n 'allowedFieldNames',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'autoUpdateRecord',\n 'bubbleEvents',\n 'canDeleteFilter',\n 'canManageFilter',\n 'centered',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'dateFormat',\n 'defaultBindProperty',\n 'defaultFocus',\n 'defaults',\n 'detectCSSCompatibilityIssues',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'filters',\n 'floating',\n 'getFieldFilterPickerConfig',\n 'grid',\n 'hideAnimation',\n 'hideWhenEmpty',\n 'htmlCls',\n 'ignoreParentReadOnly',\n 'itemCls',\n 'lazyItems',\n 'limitToProperty',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'namedItems',\n 'operators',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'showAddFilterButton',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'tab',\n 'tabBarItems',\n 'tag',\n 'textAlign',\n 'textContent',\n 'title',\n 'triggerChangeOnInput',\n 'type',\n 'ui',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGridFieldFilterPickerGroupComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'hasChanges',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'inputFieldAlign',\n 'insertBefore',\n 'insertFirst',\n 'isSettingValues',\n 'isValid',\n 'items',\n 'keyMap',\n 'labelPosition',\n 'layout',\n 'layoutStyle',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'parent',\n 'readOnly',\n 'record',\n 'rendition',\n 'rtl',\n 'scrollable',\n 'span',\n 'strictRecordMapping',\n 'tooltip',\n 'value',\n 'values',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: GridFieldFilterPickerGroup;\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() addFilterButtonText ! : string;\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() allowedFieldNames ! : string[];\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() autoUpdateRecord ! : boolean;\n @Input() bubbleEvents ! : object;\n @Input() canDeleteFilter ! : (filter: any) => boolean;\n @Input() canManageFilter ! : (filter: any) => boolean;\n @Input() centered ! : boolean;\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() dateFormat ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() defaultFocus ! : ((widget: Widget) => boolean)|string;\n @Input() defaults ! : GridContainerItemConfig;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() filters ! : CollectionFilterConfig[];\n @Input() floating ! : boolean;\n @Input() getFieldFilterPickerConfig ! : (filter: CollectionFilterConfig) => FieldFilterPickerConfig;\n @Input() grid ! : Grid;\n @Input() hideAnimation ! : boolean|object;\n @Input() hideWhenEmpty ! : boolean;\n @Input() htmlCls ! : string|object;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() itemCls ! : string;\n @Input() lazyItems ! : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|Widget[];\n @Input() limitToProperty ! : string;\n @Input() listeners ! : GridFieldFilterPickerGroupListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() namedItems ! : Record<string, GridContainerItemConfig>;\n @Input() operators ! : object;\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() showAddFilterButton ! : boolean;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tabBarItems ! : ToolbarItems[]|Widget[];\n @Input() tag ! : string;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() textContent ! : boolean;\n @Input() title ! : string;\n @Input() triggerChangeOnInput ! : boolean;\n @Input() type ! : 'gridfieldfilterpickergroup';\n @Input() ui ! : string|object;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() inputFieldAlign ! : 'start'|'end';\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : (GridContainerItemConfig|MenuItemConfig|Widget)[]|Record<string, GridContainerItemConfig|MenuItemConfig>|Widget[]|Record<string, GridContainerItemConfig|MenuItemEntry>|(GridContainerItemConfig|MenuItemEntry|Widget)[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() labelPosition ! : 'before'|'above'|'align-before'|'auto'|null;\n @Input() layout ! : Layout|string|GridContainerLayoutConfig;\n @Input() layoutStyle ! : object;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() readOnly ! : boolean;\n @Input() record ! : Model;\n @Input() rendition ! : string|Record<string, string>|null;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() span ! : number;\n @Input() strictRecordMapping ! : boolean;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() hasChanges ! : boolean;\n @Input() isSettingValues ! : boolean;\n @Input() isValid ! : boolean;\n @Input() parent ! : Widget;\n @Input() value ! : CollectionFilterConfig[];\n @Input() values ! : Record<string, object>;\n\n // Events emitters\n /**\n * Fires before a new filter is added to the picker group (and its store, if configured and the filter is valid).\n * Return `false` from the event handler to prevent the filter being added.\n * @param {object} event Event object\n * @param {Core.widget.FieldFilterPicker} event.source The FieldFilterPicker instance that fired the event.\n * @param {CollectionFilterConfig} event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).\n */\n @Output() onBeforeAddFilter: any = new EventEmitter<((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => 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 * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fired before this container will load record values into its child fields. This is useful if you\n * want to modify the UI before data is loaded (e.g. set some input field to be readonly)\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container\n * @param {Core.data.Model} event.record The record\n */\n @Output() onBeforeSetRecord: any = new EventEmitter<((event: { source: Container, record: Model }) => void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fires when any filter in the group is added, removed, or modified.\n * @param {object} event Event object\n * @param {Core.widget.FieldFilterPickerGroup} event.source The FieldFilterPickerGroup instance that fired the event.\n * @param {CollectionFilterConfig[]} event.filters The array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.\n * @param {CollectionFilterConfig[]} event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.\n */\n @Output() onChange: any = new EventEmitter<((event: { source: FieldFilterPickerGroup, filters: CollectionFilterConfig[], validFilters: CollectionFilterConfig[] }) => 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/grid/docs/api/Core/widget/Container#property-hasChanges) property changes\n * @param {object} event Event object\n * @param {Core.widget.Container} event.source The container.\n * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.\n */\n @Output() onDirtyStateChange: any = new EventEmitter<((event: { source: Container, dirty: boolean }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#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/grid/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/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumGridFieldFilterPickerGroupComponent;\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 } = BryntumGridFieldFilterPickerGroupComponent;\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 } = BryntumGridFieldFilterPickerGroupComponent;\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 GroupBar\n */\n\nimport { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, SimpleChanges, OnDestroy, OnInit } from '@angular/core';\n\nimport WrapperHelper from './wrapper.helper';\n\nimport { AlignSpec, Base, Collection, CollectionConfig, DomConfig, KeyMapConfig, List, MaskConfig, Model, ModelConfig, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';\nimport { GroupBar, GroupBarListeners } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumGroupBarProps = {\n // Configs\n /**\n * Configure as `true` to activate items on mouseover. This is used by the Combo\n * field when using a List as its dropdown.\n */\n activateOnMouseover ? : boolean\n /**\n * Element (or element id) to adopt as this Widget's encapsulating element. The widget's\n * content will be placed inside this element.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.\n */\n alignSelf ? : string\n /**\n * Configure as `true` to allow selecting groups (all the group child records will be toggled). Only\n * applicable when the store is grouped.\n */\n allowGroupSelect ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Grid/widget/GroupBar#config-ariaLabel)\n */\n ariaLabel ? : string\n /**\n * An object where property names with a truthy value indicate which events should bubble up the ownership\n * hierarchy when triggered.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Grid/widget/GroupBar#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * Set to `true` to centre the Widget in browser viewport space.\n */\n centered ? : boolean\n /**\n * Configure as `true` to clear selection when clicking on empty space inside the List´s element.\n */\n clearSelectionOnEmptySpaceClick ? : boolean\n /**\n * Configure as `true` to display a clickable close icon after the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-itemTpl).\n * When tapped, the configured [closeHandler](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closeHandler) is called passing the associated record.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-closable)\n */\n closable ? : boolean\n /**\n * If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the \"close\"\n * action means. If not provided, the record representing the chip is removed from the store.\n * @returns {void}\n */\n closeHandler ? : string|(() => void)\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/grid/docs/api/Grid/widget/GroupBar#config-cls)\n */\n cls ? : string|object\n /**\n * True to add a collapse icon to toggle groups being collapsed or expanded\n */\n collapsibleGroups ? : boolean\n /**\n * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets\n * `style` block.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*\n * Element, Widget or Rectangle to which this Widget is constrained.\n */\n constrainTo ? : HTMLElement|Widget|Rectangle\n /**\n * The HTML content that coexists with sibling elements which may have been added to the\n * [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.\n * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-htmlCls)\n * class added to its classList, to allow targeted styling.\n */\n content ? : string\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-contentElementCls)\n */\n contentElementCls ? : string|object\n /**\n * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the\n * field on the expanded record to use for populating this widget's store (if applicable)\n */\n dataField ? : string\n /**\n * Object to apply to elements dataset (each key will be used as a data-attribute on the element)\n */\n dataset ? : Record<string, string>\n /**\n * The name of the property to set when a single value is to be applied to this Widget. Such as when used\n * in a grid WidgetColumn, this is the property to which the column's `field` is applied.\n */\n defaultBindProperty ? : string\n /**\n * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * The model field to render into each list item\n */\n displayField ? : string\n /**\n * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#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/grid/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/grid/docs/api/Grid/widget/GroupBar#config-draggable)\n */\n draggable ? : boolean|{\n handleSelector?: string\n }\n /**\n * An object specifying attributes to assign to the root element of this widget.\n * Set `null` value to attribute to remove it.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * The text to show when the list is empty. If not set, the list will be empty.\n */\n emptyText ? : string\n extraData ? : any\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Configure this as a function or the name of a function, which when passed a record in the\n * list, returns a CSS class name string to apply to its list item.\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n getItemCls ? : ((record: Model) => string)|string\n /**\n * Configure this as a function or the name of a function, which when passed a record in the\n * list, returns a style string to apply to its list item.\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n getItemStyle ? : ((record: Model) => string)|string\n /**\n * Template function which is passed a group record and the uppercased group field name. The text returned\n * will be rendered as the group header.\n * @param {Core.data.Model} record The record\n * @param {string} groupName The current group name\n * @returns {string}\n */\n groupHeaderTpl ? : (record: Model, groupName: string) => string\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-hideAnimation)\n */\n hideAnimation ? : boolean|object\n /**\n * The HTML to display initially or a function returning the markup (called at widget construction time).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-html)\n * @param {Core.widget.Widget} widget The calling Widget\n * @returns {string}\n */\n html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig\n /**\n * The CSS class(es) to add when HTML content is being applied to this widget.\n */\n htmlCls ? : string|object\n /**\n * A template function, which, when passed a record, returns the markup which encapsulates a chip's icon to be\n * placed before the [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-itemTpl).\n * @param {Core.data.Model} record The record to provide an icon for\n * @returns {DomConfig,string,void}\n */\n iconTpl ? : (record: Model) => DomConfig|string|void\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/grid/docs/api/Grid/widget/GroupBar#config-ignoreParentReadOnly)\n */\n ignoreParentReadOnly ? : boolean\n /**\n * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * A function, or the name of a function in the ownership hierarchy which is used to determine\n * whether a record is selectable. By default, all records are selectable except group header\n * records in a grouped store.\n * @returns {boolean} `true` if the record is selectable\n */\n isSelectable ? : (() => boolean)|string\n /**\n * An array of Objects which are converted into records and used to create this\n * List's [store](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-store)\n */\n items ? : object[]\n /**\n * Template function (or name of a template function), which, when passed a record, returns the textual HTML for\n * that item. Defaults to a function returning the value of the record´s [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-displayField)\n * @param {Core.data.Model} record The record\n * @returns {string}\n */\n itemTpl ? : ((record: Model) => string)|string\n /**\n * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name\n * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values\n * are the name of the instance method to call when the keystroke is received.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-keyMap)\n */\n keyMap ? : Record<string, KeyMapConfig>\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-listeners)\n */\n listeners ? : GroupBarListeners\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/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-maximizeOnMobile)\n */\n maximizeOnMobile ? : number|string\n /**\n * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.\n */\n maxWidth ? : string|number\n /**\n * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.\n */\n minHeight ? : string|number\n /**\n * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that\n * like [width](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-monitorResize)\n */\n monitorResize ? : boolean|{\n immediate?: boolean\n }\n /**\n * Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.\n */\n multiSelect ? : boolean\n /**\n * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the\n * [items](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-owner)\n */\n owner ? : Widget|any\n /**\n * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-positioned)\n */\n positioned ? : boolean\n /**\n * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a\n * menu on click etc, since the tooltip would be displayed at the same time.\n */\n preventTooltipOnTouch ? : boolean\n /**\n * Whether this widget is read-only. This is only valid if the widget is an input\n * field, <strong>or contains input fields at any depth</strong>.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-readOnly)\n */\n readOnly ? : boolean\n relayStoreEvents ? : boolean\n /**\n * Configure as `true` to have the component display a translucent ripple when its\n * [focusElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#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/grid/docs/api/Grid/widget/GroupBar#config-rtl)\n */\n rtl ? : boolean\n /**\n * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll\n * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are\n * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to\n * CSS overflow properties thus:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).\n * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.\n */\n scrollAction ? : 'hide'|'realign'|null\n /**\n * Set to `true` to add a \"Select all\" item to the list to select/unselect all items at once.\n * Only applies when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-multiSelect) mode is enabled.\n */\n selectAllItem ? : boolean|string\n /**\n * A [Collection](https://bryntum.com/products/grid/docs/api/Core/util/Collection), or Collection config object to use to contain this List's selected\n * records.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-selected)\n */\n selected ? : object[]|number[]|string[]|Collection|CollectionConfig|CollectionConfig[]\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-showAnimation)\n */\n showAnimation ? : boolean|object\n /**\n * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-disabled)\n */\n showTooltipWhenDisabled ? : boolean\n /**\n * Programmatic control over how many columns to span when used in a grid layout.\n */\n span ? : number\n /**\n * A [Store](https://bryntum.com/products/grid/docs/api/Core/data/Store) which provides the records which map to List items. Each record is passed through the\n * [itemTpl](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-itemTpl) to produce the DOM structure of the List. May be generated from an array of [items](#Core/widget/List#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-store)\n */\n store ? : object|object[]|StoreConfig|Store|StoreConfig[]\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-tab)\n */\n tab ? : boolean|TabConfig\n /**\n * The tag name of this Widget's root element\n */\n tag ? : string\n /**\n * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-textAlign)\n */\n textAlign ? : 'left'|'center'|'right'|'start'|'end'\n /**\n * The title to show at the top of the list.\n */\n title ? : string\n /**\n * Select/deselect all if `CMD`/`CTRL` is pressed when clicking\n */\n toggleAllIfCtrlPressed ? : boolean\n /**\n * Tooltip for the widget, either as a string or as a Tooltip config object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-tooltip)\n */\n tooltip ? : string|TooltipConfig|null\n /**\n * Template function to provide a tooltip (textual, will be automatically HTML-encoded) shown when hovering an item.\n * @param {Core.data.Model} record The record representing the item\n * @returns {string}\n */\n tooltipTemplate ? : (record: Model) => string\n type ? : 'groupbar'\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/grid/docs/api/Grid/widget/GroupBar#config-ui)\n */\n ui ? : string|object\n /**\n * Controls virtualization of list items using the `IntersectionObserver` API to render items only when\n * scrolled into view. This is only useful for lists with complex markup, for simple lists it likely adds\n * overhead.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-virtualize)\n */\n virtualize ? : boolean|number\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/GroupBar#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-group-bar',\n template : ''\n})\nexport class BryntumGroupBarComponent implements OnInit, OnDestroy {\n\n public static instanceClass = GroupBar;\n\n public static instanceName = 'GroupBar';\n\n private static bryntumEvents: string[] = [\n 'onBeforeDestroy',\n 'onBeforeHide',\n 'onBeforeItem',\n 'onBeforeShow',\n 'onCatchAll',\n 'onDestroy',\n 'onElementCreated',\n 'onFocusIn',\n 'onFocusOut',\n 'onHide',\n 'onItem',\n 'onPaint',\n 'onReadOnly',\n 'onRecompose',\n 'onResize',\n 'onSelectionChange',\n 'onShow',\n 'onToggleGroup',\n 'onToggleNode'\n ];\n\n private static bryntumFeatureNames: string[] = [\n\n ];\n\n private static bryntumConfigs: string[] = BryntumGroupBarComponent.bryntumFeatureNames.concat([\n 'activateOnMouseover',\n 'adopt',\n 'align',\n 'alignSelf',\n 'allowGroupSelect',\n 'anchor',\n 'appendTo',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'centered',\n 'clearSelectionOnEmptySpaceClick',\n 'closable',\n 'closeHandler',\n 'cls',\n 'collapsibleGroups',\n 'color',\n 'column',\n 'config',\n 'constrainTo',\n 'content',\n 'contentElementCls',\n 'dataField',\n 'dataset',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'disabled',\n 'displayField',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'emptyText',\n 'extraData',\n 'flex',\n 'floating',\n 'getItemCls',\n 'getItemStyle',\n 'groupHeaderTpl',\n 'height',\n 'hidden',\n 'hideAnimation',\n 'html',\n 'htmlCls',\n 'iconTpl',\n 'id',\n 'ignoreParentReadOnly',\n 'insertBefore',\n 'insertFirst',\n 'isSelectable',\n 'items',\n 'itemTpl',\n 'keyMap',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'margin',\n 'maskDefaults',\n 'masked',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'monitorResize',\n 'multiSelect',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'readOnly',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'rtl',\n 'scrollable',\n 'scrollAction',\n 'selectAllItem',\n 'selected',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'span',\n 'store',\n 'tab',\n 'tag',\n 'textAlign',\n 'title',\n 'toggleAllIfCtrlPressed',\n 'tooltip',\n 'tooltipTemplate',\n 'type',\n 'ui',\n 'virtualize',\n 'weight',\n 'width',\n 'x',\n 'y'\n ]);\n\n private static bryntumConfigsOnly: string[] = [\n 'activateOnMouseover',\n 'adopt',\n 'align',\n 'allowGroupSelect',\n 'anchor',\n 'ariaDescription',\n 'ariaLabel',\n 'bubbleEvents',\n 'centered',\n 'clearSelectionOnEmptySpaceClick',\n 'closable',\n 'closeHandler',\n 'color',\n 'config',\n 'constrainTo',\n 'contentElementCls',\n 'dataField',\n 'defaultBindProperty',\n 'detectCSSCompatibilityIssues',\n 'displayField',\n 'dock',\n 'draggable',\n 'elementAttributes',\n 'floating',\n 'getItemCls',\n 'getItemStyle',\n 'groupHeaderTpl',\n 'hideAnimation',\n 'htmlCls',\n 'iconTpl',\n 'ignoreParentReadOnly',\n 'isSelectable',\n 'itemTpl',\n 'listeners',\n 'localeClass',\n 'localizable',\n 'localizableProperties',\n 'maskDefaults',\n 'masked',\n 'monitorResize',\n 'owner',\n 'positioned',\n 'preventTooltipOnTouch',\n 'relayStoreEvents',\n 'ripple',\n 'rootElement',\n 'scrollAction',\n 'selectAllItem',\n 'showAnimation',\n 'showTooltipWhenDisabled',\n 'tab',\n 'tag',\n 'textAlign',\n 'tooltipTemplate',\n 'type',\n 'ui',\n 'virtualize',\n 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumGroupBarComponent.bryntumFeatureNames.concat([\n 'alignSelf',\n 'anchorSize',\n 'appendTo',\n 'callOnFunctions',\n 'catchEventHandlerExceptions',\n 'cls',\n 'collapsibleGroups',\n 'column',\n 'content',\n 'dataset',\n 'disabled',\n 'emptyText',\n 'extraData',\n 'flex',\n 'focusVisible',\n 'height',\n 'hidden',\n 'html',\n 'id',\n 'insertBefore',\n 'insertFirst',\n 'items',\n 'keyMap',\n 'margin',\n 'maxHeight',\n 'maximizeOnMobile',\n 'maxWidth',\n 'minHeight',\n 'minWidth',\n 'multiSelect',\n 'parent',\n 'readOnly',\n 'rtl',\n 'scrollable',\n 'selected',\n 'span',\n 'store',\n 'title',\n 'toggleAllIfCtrlPressed',\n 'tooltip',\n 'width',\n 'x',\n 'y'\n ]);\n\n private elementRef: ElementRef;\n public instance!: GroupBar;\n\n private bryntumConfig = {\n adopt : undefined,\n appendTo : undefined,\n href : undefined,\n angularComponent : this,\n features : {},\n listeners : {}\n };\n\n constructor(element: ElementRef) {\n this.elementRef = element;\n }\n\n // Configs only\n @Input() activateOnMouseover ! : boolean;\n @Input() adopt ! : HTMLElement|string;\n @Input() align ! : AlignSpec|string;\n @Input() allowGroupSelect ! : boolean;\n @Input() anchor ! : boolean;\n @Input() ariaDescription ! : string;\n @Input() ariaLabel ! : string;\n @Input() bubbleEvents ! : object;\n @Input() centered ! : boolean;\n @Input() clearSelectionOnEmptySpaceClick ! : boolean;\n @Input() closable ! : boolean;\n @Input() closeHandler ! : string|(() => void);\n @Input() color ! : string;\n @Input() config ! : object;\n @Input() constrainTo ! : HTMLElement|Widget|Rectangle;\n @Input() contentElementCls ! : string|object;\n @Input() dataField ! : string;\n @Input() defaultBindProperty ! : string;\n @Input() detectCSSCompatibilityIssues ! : boolean;\n @Input() displayField ! : string;\n @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;\n @Input() draggable ! : boolean|{\n handleSelector?: string\n };\n @Input() elementAttributes ! : Record<string, string|null>;\n @Input() floating ! : boolean;\n @Input() getItemCls ! : ((record: Model) => string)|string;\n @Input() getItemStyle ! : ((record: Model) => string)|string;\n @Input() groupHeaderTpl ! : (record: Model, groupName: string) => string;\n @Input() hideAnimation ! : boolean|object;\n @Input() htmlCls ! : string|object;\n @Input() iconTpl ! : (record: Model) => DomConfig|string|void;\n @Input() ignoreParentReadOnly ! : boolean;\n @Input() isSelectable ! : (() => boolean)|string;\n @Input() itemTpl ! : ((record: Model) => string)|string;\n @Input() listeners ! : GroupBarListeners;\n @Input() localeClass ! : typeof Base;\n @Input() localizable ! : boolean;\n @Input() localizableProperties ! : string[];\n @Input() maskDefaults ! : MaskConfig;\n @Input() masked ! : boolean|string|MaskConfig;\n @Input() monitorResize ! : boolean|{\n immediate?: boolean\n };\n @Input() owner ! : Widget|any;\n @Input() positioned ! : boolean;\n @Input() preventTooltipOnTouch ! : boolean;\n @Input() relayStoreEvents ! : boolean;\n @Input() ripple ! : boolean|{\n delegate?: string\n color?: string\n radius?: number\n clip?: string\n };\n @Input() rootElement ! : ShadowRoot|HTMLElement;\n @Input() scrollAction ! : 'hide'|'realign'|null;\n @Input() selectAllItem ! : boolean|string;\n @Input() showAnimation ! : boolean|object;\n @Input() showTooltipWhenDisabled ! : boolean;\n @Input() tab ! : boolean|TabConfig;\n @Input() tag ! : string;\n @Input() textAlign ! : 'left'|'center'|'right'|'start'|'end';\n @Input() tooltipTemplate ! : (record: Model) => string;\n @Input() type ! : 'groupbar';\n @Input() ui ! : string|object;\n @Input() virtualize ! : boolean|number;\n @Input() weight ! : number;\n\n // Configs and properties\n @Input() alignSelf ! : string;\n @Input() appendTo ! : HTMLElement|string;\n @Input() callOnFunctions ! : boolean;\n @Input() catchEventHandlerExceptions ! : boolean;\n @Input() cls ! : string|object;\n @Input() collapsibleGroups ! : boolean;\n @Input() column ! : number;\n @Input() content ! : string;\n @Input() dataset ! : object|Record<string, string>;\n @Input() disabled ! : boolean|'inert';\n @Input() emptyText ! : string;\n @Input() extraData ! : any;\n @Input() flex ! : number|string;\n @Input() height ! : number|string;\n @Input() hidden ! : boolean;\n @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;\n @Input() id ! : string;\n @Input() insertBefore ! : HTMLElement|string;\n @Input() insertFirst ! : HTMLElement|string;\n @Input() items ! : object[];\n @Input() keyMap ! : Record<string, KeyMapConfig>;\n @Input() margin ! : number|string;\n @Input() maxHeight ! : string|number;\n @Input() maximizeOnMobile ! : number|string;\n @Input() maxWidth ! : string|number;\n @Input() minHeight ! : string|number;\n @Input() minWidth ! : string|number;\n @Input() multiSelect ! : boolean;\n @Input() readOnly ! : boolean;\n @Input() rtl ! : boolean;\n @Input() scrollable ! : Scroller|boolean|ScrollerConfig;\n @Input() selected ! : Model|Model[]|string|string[]|number|number[]|Collection|object[]|CollectionConfig|ModelConfig[]|CollectionConfig[];\n @Input() span ! : number;\n @Input() store ! : object|object[]|StoreConfig|Store|StoreConfig[];\n @Input() title ! : string;\n @Input() toggleAllIfCtrlPressed ! : boolean;\n @Input() tooltip ! : string|TooltipConfig|null;\n @Input() width ! : number|string;\n @Input() x ! : number;\n @Input() y ! : number;\n\n // Properties only\n @Input() anchorSize ! : number[];\n @Input() focusVisible ! : boolean;\n @Input() parent ! : Widget;\n\n // Events emitters\n /**\n * Fires before an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onBeforeDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered before a widget is hidden. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget being hidden.\n */\n @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();\n /**\n * User going to activate an item in the list either by pointer or keyboard.\n * The active record, list item index, and the triggering event are passed.\n * It is preventable by returning `false`\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {HTMLElement} event.item The clicked list element\n * @param {Core.data.Model} event.record Activated record\n * @param {number} event.index List item index\n * @param {Event} event.event Triggering event\n */\n @Output() onBeforeItem: any = new EventEmitter<((event: { source: List, item: HTMLElement, record: Model, index: number, event: Event }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Triggered before a widget is shown. Return `false` to prevent the action.\n * @param {object} event Event object\n * @param {Core.widget.Widget,any} event.source The widget being shown\n */\n @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();\n /**\n * Fires when any other event is fired from the object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#event-catchAll)\n * @param {object} event Event object\n * @param {{[key: string]: any, type: string}} event.event The Object that contains event details\n * @param {string} event.event.type The type of the event which is caught by the listener\n */\n @Output() onCatchAll: any = new EventEmitter<((event: {[key: string]: any, type: string}) => void)|string>();\n /**\n * Fires when an object is destroyed.\n * @param {object} event Event object\n * @param {Core.Base} event.source The Object that is being destroyed.\n */\n @Output() onDestroy: any = new EventEmitter<((event: { source: Base }) => void)|string>();\n /**\n * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.\n * @param {object} event Event object\n * @param {HTMLElement} event.element The Widget's element.\n */\n @Output() onElementCreated: any = new EventEmitter<((event: { element: HTMLElement }) => void)|string>();\n /**\n * Fired when focus enters this Widget.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusIn: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.\n * focus moving from within this Widget's ownership tree, even if there are floating widgets\n * will not trigger this event. This is when focus exits this widget completely.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {HTMLElement} event.fromElement The element which lost focus.\n * @param {HTMLElement} event.toElement The element which gained focus.\n * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.\n * @param {Core.widget.Widget} event.toWidget The widget which gained focus.\n * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.\n */\n @Output() onFocusOut: any = new EventEmitter<((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string>();\n /**\n * Triggered after a widget was hidden\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * User activated an item in the list either by pointer or keyboard.\n * The active record, list item index, and the triggering event are passed.\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {HTMLElement} event.item The clicked list element\n * @param {Core.data.Model} event.record Activated record\n * @param {number} event.index List item index\n * @param {Event} event.event Triggering event\n */\n @Output() onItem: any = new EventEmitter<((event: { source: List, item: HTMLElement, record: Model, index: number, event: Event }) => void)|string>();\n /**\n * Triggered when a widget which had been in a non-visible state for any reason\n * achieves visibility.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#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/grid/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/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source This Widget\n * @param {number} event.width The new width\n * @param {number} event.height The new height\n * @param {number} event.oldWidth The old width\n * @param {number} event.oldHeight The old height\n */\n @Output() onResize: any = new EventEmitter<((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string>();\n /**\n * Fired when selection changes\n * @param {object} event Event object\n * @param {Core.widget.List} event.source The List instance\n * @param {Core.data.Model[]} event.selected An array of the currently selected records\n */\n @Output() onSelectionChange: any = new EventEmitter<((event: { source: List, selected: Model[] }) => void)|string>();\n /**\n * Triggered after a widget is shown.\n * @param {object} event Event object\n * @param {Core.widget.Widget} event.source The widget\n */\n @Output() onShow: any = new EventEmitter<((event: { source: Widget }) => void)|string>();\n /**\n * Group item expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.groupRecord Group record\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n */\n @Output() onToggleGroup: any = new EventEmitter<((event: { groupRecord: Model, collapse: boolean }) => void)|string>();\n /**\n * Tree parent node expanded or collapsed\n * @param {object} event Event object\n * @param {Core.data.Model} event.record The parent record which has been toggled\n * @param {boolean} event.collapse Collapsed (true) or expanded (false)\n */\n @Output() onToggleNode: any = new EventEmitter<((event: { record: Model, collapse: boolean }) => void)|string>();\n\n /**\n * Create and append the underlying widget\n */\n ngOnInit(): void {\n const\n me = this,\n {\n elementRef,\n bryntumConfig\n } = me,\n {\n instanceClass,\n instanceName,\n bryntumConfigs,\n bryntumEvents\n } = BryntumGroupBarComponent;\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 } = BryntumGroupBarComponent;\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 } = BryntumGroupBarComponent;\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 TreeCombo\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 { GridContainerItemConfig, TreeCombo, TreeComboListeners } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumTreeComboProps = {\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/grid/docs/api/Grid/widget/TreeCombo#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-align)\n */\n align ? : AlignSpec|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-catchEventHandlerExceptions)\n */\n catchEventHandlerExceptions ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/ChipView) to display the\n * selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-chipView)\n */\n chipView ? : ChipViewConfig\n /**\n * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available\n * in the [triggers](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#config-container)\n */\n container ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|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/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Core/widget/Combo#config-displayField).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-emptyText)\n */\n emptyText ? : string\n /**\n * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/Combo#config-encodeFilterParams)\n */\n filterParamName ? : string\n /**\n * When [multiSelect](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Set to `true` to move the widget out of the document flow and position it\n * absolutely in browser viewport space.\n */\n floating ? : boolean\n /**\n * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,\n * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some\n * cases this config is convenient.\n */\n height ? : string|number\n /**\n * Configure with true to make widget initially hidden.\n */\n hidden ? : boolean\n /**\n * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the\n * [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-labels)\n */\n labels ? : object[]\n /**\n * The width to apply to the `<label>` element. If a number is specified, `px` will be used.\n */\n labelWidth ? : string|number\n /**\n * CSS class to add to picker\n */\n listCls ? : string\n /**\n * The listener set for this object.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-listeners)\n */\n listeners ? : TreeComboListeners\n /**\n * Template string used to render the list items in the dropdown list\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/Mask) created for the\n * [masked](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Core/widget/Combo#config-editable) is `true`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-multiSelect)\n */\n multiSelect ? : boolean\n /**\n * A key value which, when typed in a [multiSelect](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in\n * [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#config-owner)\n */\n owner ? : Widget|any\n /**\n * Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the\n * [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) instance at runtime.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Core/widget/Widget#property-contentElement).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/Widget#config-floating).*\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Grid/widget/TreeCombo#config-triggers)\n */\n triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>\n type ? : 'treecombo'\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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Core/widget/Combo#property-value).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#config-x)\n */\n x ? : number\n /**\n * The y position for the widget.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-y)\n */\n y ? : number\n\n}\n\n@Component({\n selector : 'bryntum-tree-combo',\n template : ''\n})\nexport class BryntumTreeComboComponent implements OnInit, OnDestroy {\n\n public static instanceClass = TreeCombo;\n\n public static instanceName = 'TreeCombo';\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[] = BryntumTreeComboComponent.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[] = BryntumTreeComboComponent.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!: TreeCombo;\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, GridContainerItemConfig>|GridContainerItemConfig[]|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 ! : TreeComboListeners;\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 ! : 'treecombo';\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/grid/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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/docs/api/Core/widget/Field#function-clear).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/docs/api/Grid/widget/TreeCombo#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/grid/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/grid/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/grid/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/grid/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 } = BryntumTreeComboComponent;\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 } = BryntumTreeComboComponent;\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 } = BryntumTreeComboComponent;\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 TreeGrid\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, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGrid, TreeGridListeners, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';\n\nimport { StringHelper } from '@bryntum/core-thin';\n\nexport type BryntumTreeGridProps = {\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/grid/docs/api/Grid/view/TreeGrid#config-adopt)\n */\n adopt ? : HTMLElement|string\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-bbar)\n */\n bbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Core/widget/Panel#config-collapsed).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/column/Column) instances that are added to a [ColumnStore](#Grid/data/ColumnStore).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-columns)\n */\n columns ? : ColumnStore|GridColumnConfig[]|ColumnStoreConfig\n config ? : object\n /**\n * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/GridBase#property-store) property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#config-detectCSSCompatibilityIssues)\n */\n detectCSSCompatibilityIssues ? : boolean\n /**\n * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#config-disabled)\n */\n disabled ? : boolean|'inert'\n /**\n * Set to `true` to not get a warning when calling [getState](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/Panel)\n * [strips collection](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#config-elementAttributes)\n */\n elementAttributes ? : Record<string, string|null>\n /**\n * Text or HTML, or a [EmptyTextDomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#config-fixedRowHeight)\n */\n fixedRowHeight ? : boolean\n /**\n * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a\n * flexbox layout. This config allows you to set this widget's\n * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.\n * This may be configured as a single number or a `<flex-grow> <flex-shrink> <flex-basis>` format string.\n * numeric-only values are interpreted as the `flex-grow` value.\n */\n flex ? : number|string\n /**\n * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,\n * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/GridBase#config-rowHeight) is used.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a\n * [DomConfig](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.\n */\n insertFirst ? : HTMLElement|string\n /**\n * See [Keyboard shortcuts](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#config-listeners)\n */\n listeners ? : TreeGridListeners\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#config-loadMaskDefaults)\n */\n loadMaskDefaults ? : MaskConfig\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/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 * 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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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 * \"Break points\" for which responsive config to use for columns and css.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from\n * a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Core/helper/util/Scroller).\n * See the [scrollerClass](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-scrollerClass) config option.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-scrollable)\n */\n scrollable ? : boolean|ScrollerConfig|Scroller\n /**\n * The class to instantiate to use as the [scrollable](https://bryntum.com/products/grid/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/grid/docs/api/Core/util/ScrollManager) class on initialization. Returns the\n * [ScrollManager](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Core/mixin/State#function-saveState).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is\n * not assigned, and [stateful](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#config-stateId)\n */\n stateId ? : string\n /**\n * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`\n * will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#config-stateSettings)\n */\n stateSettings ? : {\n restoreUnconfiguredColumns?: boolean\n }\n /**\n * The store instance or config object that holds the records to be displayed by this TreeGrid. If assigning\n * a store instance, it must be configured with `tree: true`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-store)\n */\n store ? : Store|StoreConfig\n /**\n * An object containing widgets keyed by name. By default (when no `type` is given), strips are\n * [toolbars](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use\n * the toolbar's [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-strips)\n */\n strips ? : Record<string, GridContainerItemConfig>\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/grid/docs/api/Grid/view/TreeGrid#config-subGridConfigs)\n */\n subGridConfigs ? : Record<string, SubGridConfig>\n /**\n * A [Mask](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#config-syncMask)\n */\n syncMask ? : string|MaskConfig|null\n /**\n * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a\n * [TabPanel](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Core/widget/TabBar) when this container is the active tab.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-tabBarItems)\n */\n tabBarItems ? : ToolbarItems[]|Widget[]\n /**\n * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/grid/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/grid/docs/api/Grid/view/TreeGrid#config-tbar)\n */\n tbar ? : (GridContainerItemConfig|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/grid/docs/api/Grid/view/TreeGrid#config-title)\n */\n title ? : string\n /**\n * The [tools](https://bryntum.com/products/grid/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/grid/docs/api/Core/widget/mixin/Toolable#property-tools)` property.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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 ? : 'treegrid'\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/grid/docs/api/Grid/view/TreeGrid#config-ui)\n */\n ui ? : 'plain'|'toolbar'|string|object\n /**\n * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Core/widget/Field) can be used\n * as editor for the [Column](https://bryntum.com/products/grid/docs/api/Grid/column/Column). The most popular are:\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit)\n */\n cellEditFeature ? : object|boolean|string|CellEdit|CellEditConfig\n /**\n * Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the\n * `SPACE` key when the cell is focused.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/docs/api/Grid/feature/Charts)\n */\n chartsFeature ? : object|boolean|string|Charts|ChartsConfig\n /**\n * Enables the [autoWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-autoWidth) config for a grid's columns.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/data/ColumnStore) store.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/experimental/ExcelExporter)\n */\n excelExporterFeature ? : object|boolean|string|ExcelExporter|ExcelExporterConfig\n /**\n * An experimental feature that lets users drop files on a Widget. The widget fires an event when a file is dropped onto it.\n * In the event, you get access to the raw files as strings, that were parsed by calling `readAsBinaryString`.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreFilter).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary)\n */\n groupSummaryFeature ? : object|boolean|string|GroupSummary|GroupSummaryConfig\n /**\n * Right click column header or focus it and press SPACE key to show the context menu for headers.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/LockRows)\n */\n lockRowsFeature ? : object|boolean|string|LockRows|LockRowsConfig\n /**\n * This feature merges cells that have the same value in sorted (or [optionally](https://bryntum.com/products/grid/docs/api/Grid/feature/MergeCells#config-sortedOnly) any) columns\n * configured to [mergeCells](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-mergeCells).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/PdfExport)\n */\n pdfExportFeature ? : object|boolean|string|PdfExport|PdfExportConfig\n /**\n * Allows pinning columns to the start or end region of the grid without any additional subGrid configurations.\n * When pinning to a region that does not yet exist, the feature creates the required subGrid on the fly.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/export/Print)\n */\n printFeature ? : object|boolean|string|Print|PrintConfig\n /**\n * Feature that allows the user to search in a column by focusing a cell and typing. Navigate between hits using the\n * keyboard, [f3] or [ctrl]/[cmd] + [g] moves to next, also pressing [shift] moves to previous.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/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/grid/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/grid/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/grid/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/grid/docs/api/Core/data/Store).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/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/grid/docs/api/Grid/data/GridRowModel#field-rowHeight)\n * field of the record is updated (when [applyToAllRows](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize#config-applyToAllRows) is `false`).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowResize)\n */\n rowResizeFeature ? : object|boolean|string|RowResize|RowResizeConfig\n /**\n * <div class=\"external-example vertical\" data-file=\"Grid/feature/Search.js\"></div>\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Core/data/mixin/StoreSort#function-sort).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/docs/api/Grid/feature/Split#function-split).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Split)\n */\n splitFeature ? : object|boolean|string|Split|SplitConfig\n /**\n * A feature which pins configurable content from a grid row to the top of the grid\n * while the row scrolls off the top but is still visible.\n * ...\n * [View online docs...](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/Summary)\n */\n summaryFeature ? : object|boolean|string|Summary|SummaryConfig\n /**\n * Feature that makes the grid work more like a tree. Included by default in [TreeGrid](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid). Requires\n * exactly one [TreeColumn](https://bryntum.com/products/grid/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/grid/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/grid/docs/api/Grid/feature/TreeGroup)\n */\n treeGroupFeature ? : object|boolean|string|TreeGroup|TreeGroupConfig\n\n}\n\n@Component({\n selector : 'bryntum-tree-grid',\n template : ''\n})\nexport class BryntumTreeGridComponent implements OnInit, OnDestroy {\n\n public static instanceClass = TreeGrid;\n\n public static instanceName = 'TreeGrid';\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[] = BryntumTreeGridComponent.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 'readOnly',\n 'relayStoreEvents',\n 'rendition',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 '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 'relayStoreEvents',\n 'resizable',\n 'resizeToFitIncludesHeader',\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 'weight'\n ];\n\n private static bryntumProps: string[] = BryntumTreeGridComponent.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!: TreeGrid;\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 ! : (GridContainerItemConfig|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 ! : TreeGridListeners;\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() 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() 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, GridContainerItemConfig>;\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 ! : (GridContainerItemConfig|string)[]|ToolbarConfig|PagingToolbarConfig|null;\n @Input() type ! : 'treegrid';\n @Input() ui ! : 'plain'|'toolbar'|string|object;\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|GridColumnConfig[]|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|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() 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|ExcelExporter|ExcelExporterConfig;\n @Input() fileDropFeature ! : object|boolean|string|FileDrop|FileDropConfig;\n @Input() fillHandleFeature ! : object|boolean|string|FillHandle|FillHandleConfig;\n @Input() filterFeature ! : object|boolean|string|Filter|FilterConfig;\n @Input() filterBarFeature ! : object|boolean|string|FilterBar|FilterBarConfig;\n @Input() groupFeature ! : object|boolean|string|Group|GroupConfig;\n @Input() groupSummaryFeature ! : object|boolean|string|GroupSummary|GroupSummaryConfig;\n @Input() headerMenuFeature ! : object|boolean|string|HeaderMenu|HeaderMenuConfig;\n @Input() lockRowsFeature ! : object|boolean|string|LockRows|LockRowsConfig;\n @Input() mergeCellsFeature ! : object|boolean|string|MergeCells|MergeCellsConfig;\n @Input() pdfExportFeature ! : object|boolean|string|PdfExport|PdfExportConfig;\n @Input() pinColumnsFeature ! : object|boolean|string|PinColumns|PinColumnsConfig;\n @Input() printFeature ! : object|boolean|string|Print|PrintConfig;\n @Input() quickFindFeature ! : object|boolean|string|QuickFind|QuickFindConfig;\n @Input() regionResizeFeature ! : object|boolean|string|RegionResize|RegionResizeConfig;\n @Input() rowCopyPasteFeature ! : object|boolean|string|RowCopyPaste|RowCopyPasteConfig;\n @Input() rowEditFeature ! : object|boolean|string|RowEdit|RowEditConfig;\n @Input() rowExpanderFeature ! : object|boolean|string|RowExpander|RowExpanderConfig;\n @Input() rowReorderFeature ! : object|boolean|string|RowReorder|RowReorderConfig;\n @Input() rowResizeFeature ! : object|boolean|string|RowResize|RowResizeConfig;\n @Input() searchFeature ! : object|boolean|string|Search|SearchConfig;\n @Input() sortFeature ! : object|boolean|string|Sort|SortConfig;\n @Input() splitFeature ! : object|boolean|string|Split|SplitConfig;\n @Input() stickyCellsFeature ! : object|boolean|string|StickyCells|StickyCellsConfig;\n @Input() stripeFeature ! : object|boolean|string|Stripe|StripeConfig;\n @Input() summaryFeature ! : object|boolean|string|Summary|SummaryConfig;\n @Input() treeFeature ! : object|boolean|string|Tree|TreeConfig;\n @Input() treeGroupFeature ! : object|boolean|string|TreeGroup|TreeGroupConfig;\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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/feature/CellMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/feature/HeaderMenu#config-processItems).\n * ...\n * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/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/grid/docs/api/Grid/view/TreeGrid#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/grid/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/grid/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 } = BryntumTreeGridComponent;\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 } = BryntumTreeGridComponent;\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 } = BryntumTreeGridComponent;\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 Grid Shared module\n*/\nimport { NgModule } from '@angular/core';\n\nimport { BryntumAIFilterFieldComponent } from './bryntum-a-i-filter-field.component';\nimport { BryntumChecklistFilterComboComponent } from './bryntum-checklist-filter-combo.component';\nimport { BryntumGridComponent } from './bryntum-grid.component';\nimport { BryntumGridBaseComponent } from './bryntum-grid-base.component';\nimport { BryntumGridChartDesignerComponent } from './bryntum-grid-chart-designer.component';\nimport { BryntumGridFieldFilterPickerComponent } from './bryntum-grid-field-filter-picker.component';\nimport { BryntumGridFieldFilterPickerGroupComponent } from './bryntum-grid-field-filter-picker-group.component';\nimport { BryntumGroupBarComponent } from './bryntum-group-bar.component';\nimport { BryntumTreeComboComponent } from './bryntum-tree-combo.component';\nimport { BryntumTreeGridComponent } from './bryntum-tree-grid.component';\n\n@NgModule({\n declarations : [\n\n BryntumAIFilterFieldComponent,\n BryntumChecklistFilterComboComponent,\n BryntumGridComponent,\n BryntumGridBaseComponent,\n BryntumGridChartDesignerComponent,\n BryntumGridFieldFilterPickerComponent,\n BryntumGridFieldFilterPickerGroupComponent,\n BryntumGroupBarComponent,\n BryntumTreeComboComponent,\n BryntumTreeGridComponent\n ],\n imports : [],\n exports : [\n\n BryntumAIFilterFieldComponent,\n BryntumChecklistFilterComboComponent,\n BryntumGridComponent,\n BryntumGridBaseComponent,\n BryntumGridChartDesignerComponent,\n BryntumGridFieldFilterPickerComponent,\n BryntumGridFieldFilterPickerGroupComponent,\n BryntumGroupBarComponent,\n BryntumTreeComboComponent,\n BryntumTreeGridComponent\n ]\n})\nexport class BryntumGridModule { }\n","/*\n * Public API Surface of Bryntum Grid\n */\nexport * from './lib/grid.module';\n\nexport * from './lib/bryntum-a-i-filter-field.component';\nexport * from './lib/bryntum-checklist-filter-combo.component';\nexport * from './lib/bryntum-grid.component';\nexport * from './lib/bryntum-grid-base.component';\nexport * from './lib/bryntum-grid-chart-designer.component';\nexport * from './lib/bryntum-grid-field-filter-picker.component';\nexport * from './lib/bryntum-grid-field-filter-picker-group.component';\nexport * from './lib/bryntum-group-bar.component';\nexport * from './lib/bryntum-tree-combo.component';\nexport * from './lib/bryntum-tree-grid.component'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|