@bryntum/grid-angular-thin 7.3.4 → 7.3.5
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 +32 -55
- package/bundles/bryntum-grid-angular-thin.umd.js +59 -19
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +6 -2
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +6 -2
- package/esm2015/lib/bryntum-grid-base.component.js +9 -5
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +6 -2
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +6 -2
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +6 -2
- package/esm2015/lib/bryntum-grid.component.js +9 -5
- package/esm2015/lib/bryntum-group-bar.component.js +6 -2
- package/esm2015/lib/bryntum-tree-combo.component.js +6 -2
- package/esm2015/lib/bryntum-tree-grid.component.js +9 -5
- package/fesm2015/bryntum-grid-angular-thin.js +59 -19
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +9 -2
- package/lib/bryntum-checklist-filter-combo.component.d.ts +9 -2
- package/lib/bryntum-grid-base.component.d.ts +11 -4
- package/lib/bryntum-grid-chart-designer.component.d.ts +9 -2
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +9 -2
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +9 -2
- package/lib/bryntum-grid.component.d.ts +11 -4
- package/lib/bryntum-group-bar.component.d.ts +9 -2
- package/lib/bryntum-tree-combo.component.d.ts +9 -2
- package/lib/bryntum-tree-grid.component.d.ts +11 -4
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +10 -1
- package/src/lib/bryntum-checklist-filter-combo.component.ts +10 -1
- package/src/lib/bryntum-grid-base.component.ts +13 -4
- package/src/lib/bryntum-grid-chart-designer.component.ts +10 -1
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +10 -1
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +10 -1
- package/src/lib/bryntum-grid.component.ts +13 -4
- package/src/lib/bryntum-group-bar.component.ts +10 -1
- package/src/lib/bryntum-tree-combo.component.ts +10 -1
- package/src/lib/bryntum-tree-grid.component.ts +13 -4
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum GroupBar
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, MaskConfig, Model, ModelConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
5
|
+
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, MaskConfig, Model, ModelConfig, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { GroupBar, GroupBarListeners } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumGroupBarProps = {
|
|
@@ -387,6 +387,12 @@ export declare type BryntumGroupBarProps = {
|
|
|
387
387
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
388
388
|
*/
|
|
389
389
|
multiSelect?: boolean;
|
|
390
|
+
/**
|
|
391
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
392
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
393
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-overflowTwinConfig)
|
|
394
|
+
*/
|
|
395
|
+
overflowTwinConfig?: OverflowTwinConfig | null;
|
|
390
396
|
/**
|
|
391
397
|
* 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
|
|
392
398
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -596,6 +602,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
596
602
|
maskDefaults: MaskConfig;
|
|
597
603
|
masked: boolean | string | MaskConfig;
|
|
598
604
|
monitorResize: boolean | object;
|
|
605
|
+
overflowTwinConfig: OverflowTwinConfig | null;
|
|
599
606
|
positioned: boolean;
|
|
600
607
|
preventTooltipOnTouch: boolean;
|
|
601
608
|
relayStoreEvents: boolean;
|
|
@@ -830,5 +837,5 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
830
837
|
*/
|
|
831
838
|
ngOnDestroy(): void;
|
|
832
839
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGroupBarComponent, never>;
|
|
833
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGroupBarComponent, "bryntum-group-bar", never, { "activateOnMouseover": "activateOnMouseover"; "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "closable": "closable"; "closeHandler": "closeHandler"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "getItemCls": "getItemCls"; "getItemStyle": "getItemStyle"; "groupHeaderTpl": "groupHeaderTpl"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "iconTpl": "iconTpl"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "isSelectable": "isSelectable"; "itemTpl": "itemTpl"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "selectAllItem": "selectAllItem"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tag": "tag"; "textAlign": "textAlign"; "tooltipTemplate": "tooltipTemplate"; "type": "type"; "ui": "ui"; "virtualize": "virtualize"; "weight": "weight"; "alignSelf": "alignSelf"; "allowGroupSelect": "allowGroupSelect"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "clearSelectionOnEmptySpaceClick": "clearSelectionOnEmptySpaceClick"; "cls": "cls"; "collapsibleGroups": "collapsibleGroups"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "selected": "selected"; "span": "span"; "store": "store"; "title": "title"; "toggleAllIfCtrlPressed": "toggleAllIfCtrlPressed"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeItem": "onBeforeItem"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onItem": "onItem"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelectionChange": "onSelectionChange"; "onShow": "onShow"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; }, never, never>;
|
|
840
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGroupBarComponent, "bryntum-group-bar", never, { "activateOnMouseover": "activateOnMouseover"; "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "closable": "closable"; "closeHandler": "closeHandler"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "getItemCls": "getItemCls"; "getItemStyle": "getItemStyle"; "groupHeaderTpl": "groupHeaderTpl"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "iconTpl": "iconTpl"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "isSelectable": "isSelectable"; "itemTpl": "itemTpl"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "overflowTwinConfig": "overflowTwinConfig"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "selectAllItem": "selectAllItem"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tag": "tag"; "textAlign": "textAlign"; "tooltipTemplate": "tooltipTemplate"; "type": "type"; "ui": "ui"; "virtualize": "virtualize"; "weight": "weight"; "alignSelf": "alignSelf"; "allowGroupSelect": "allowGroupSelect"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "clearSelectionOnEmptySpaceClick": "clearSelectionOnEmptySpaceClick"; "cls": "cls"; "collapsibleGroups": "collapsibleGroups"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "selected": "selected"; "span": "span"; "store": "store"; "title": "title"; "toggleAllIfCtrlPressed": "toggleAllIfCtrlPressed"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeItem": "onBeforeItem"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onItem": "onItem"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelectionChange": "onSelectionChange"; "onShow": "onShow"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; }, never, never>;
|
|
834
841
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum TreeCombo
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
5
|
+
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { GridContainerItemConfig, TreeCombo, TreeComboListeners } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumTreeComboProps = {
|
|
@@ -579,6 +579,12 @@ export declare type BryntumTreeComboProps = {
|
|
|
579
579
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-name)
|
|
580
580
|
*/
|
|
581
581
|
name?: string;
|
|
582
|
+
/**
|
|
583
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
584
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
585
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-overflowTwinConfig)
|
|
586
|
+
*/
|
|
587
|
+
overflowTwinConfig?: OverflowTwinConfig | null;
|
|
582
588
|
/**
|
|
583
589
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
584
590
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -888,6 +894,7 @@ export declare class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
888
894
|
monitorResize: boolean | object;
|
|
889
895
|
multiValueSeparator: string;
|
|
890
896
|
name: string;
|
|
897
|
+
overflowTwinConfig: OverflowTwinConfig | null;
|
|
891
898
|
overlayAnchor: boolean;
|
|
892
899
|
pickerAlignElement: string;
|
|
893
900
|
pickerWidth: number | string;
|
|
@@ -1146,5 +1153,5 @@ export declare class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
1146
1153
|
*/
|
|
1147
1154
|
ngOnDestroy(): void;
|
|
1148
1155
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumTreeComboComponent, never>;
|
|
1149
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumTreeComboComponent, "bryntum-tree-combo", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoExpand": "autoExpand"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "cacheLastResult": "cacheLastResult"; "caseSensitive": "caseSensitive"; "checkValidity": "checkValidity"; "chipView": "chipView"; "clearable": "clearable"; "clearTextOnPickerHide": "clearTextOnPickerHide"; "clearTextOnSelection": "clearTextOnSelection"; "clearWhenInputEmpty": "clearWhenInputEmpty"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "createOnUnmatched": "createOnUnmatched"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "displayValueRenderer": "displayValueRenderer"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "emptyText": "emptyText"; "encodeFilterParams": "encodeFilterParams"; "filterOnEnter": "filterOnEnter"; "filterParamName": "filterParamName"; "filterSelected": "filterSelected"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hidePickerOnSelect": "hidePickerOnSelect"; "hideTrigger": "hideTrigger"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inlinePicker": "inlinePicker"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "items": "items"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "keyStrokeFilterDelay": "keyStrokeFilterDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listCls": "listCls"; "listeners": "listeners"; "listItemTpl": "listItemTpl"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minChars": "minChars"; "minLength": "minLength"; "monitorResize": "monitorResize"; "multiValueSeparator": "multiValueSeparator"; "name": "name"; "overlayAnchor": "overlayAnchor"; "pickerAlignElement": "pickerAlignElement"; "pickerWidth": "pickerWidth"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "primaryFilter": "primaryFilter"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "triggerAction": "triggerAction"; "type": "type"; "ui": "ui"; "validateFilter": "validateFilter"; "validateOnInput": "validateOnInput"; "valueField": "valueField"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "filterOperator": "filterOperator"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "picker": "picker"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "store": "store"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "content": "content"; "formula": "formula"; "html": "html"; "input": "input"; "parent": "parent"; "scrollable": "scrollable"; }, { "onAction": "onAction"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onClear": "onClear"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelect": "onSelect"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
|
|
1156
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumTreeComboComponent, "bryntum-tree-combo", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoExpand": "autoExpand"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "cacheLastResult": "cacheLastResult"; "caseSensitive": "caseSensitive"; "checkValidity": "checkValidity"; "chipView": "chipView"; "clearable": "clearable"; "clearTextOnPickerHide": "clearTextOnPickerHide"; "clearTextOnSelection": "clearTextOnSelection"; "clearWhenInputEmpty": "clearWhenInputEmpty"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "createOnUnmatched": "createOnUnmatched"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "displayField": "displayField"; "displayValueRenderer": "displayValueRenderer"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "emptyText": "emptyText"; "encodeFilterParams": "encodeFilterParams"; "filterOnEnter": "filterOnEnter"; "filterParamName": "filterParamName"; "filterSelected": "filterSelected"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hidePickerOnSelect": "hidePickerOnSelect"; "hideTrigger": "hideTrigger"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inlinePicker": "inlinePicker"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "items": "items"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "keyStrokeFilterDelay": "keyStrokeFilterDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listCls": "listCls"; "listeners": "listeners"; "listItemTpl": "listItemTpl"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minChars": "minChars"; "minLength": "minLength"; "monitorResize": "monitorResize"; "multiValueSeparator": "multiValueSeparator"; "name": "name"; "overflowTwinConfig": "overflowTwinConfig"; "overlayAnchor": "overlayAnchor"; "pickerAlignElement": "pickerAlignElement"; "pickerWidth": "pickerWidth"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "primaryFilter": "primaryFilter"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "triggerAction": "triggerAction"; "type": "type"; "ui": "ui"; "validateFilter": "validateFilter"; "validateOnInput": "validateOnInput"; "valueField": "valueField"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "filterOperator": "filterOperator"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "multiSelect": "multiSelect"; "picker": "picker"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "store": "store"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "content": "content"; "formula": "formula"; "html": "html"; "input": "input"; "parent": "parent"; "scrollable": "scrollable"; }, { "onAction": "onAction"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onClear": "onClear"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onSelect": "onSelect"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
|
|
1150
1157
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Angular wrapper for Bryntum TreeGrid
|
|
3
3
|
*/
|
|
4
4
|
import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
|
|
5
|
-
import { AjaxStore, AjaxStoreConfig, Color, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
5
|
+
import { AjaxStore, AjaxStoreConfig, Color, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, OverflowTwinConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
6
6
|
import { AI, AIConfig, AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGrid, TreeGridListeners, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare type BryntumTreeGridProps = {
|
|
@@ -457,6 +457,12 @@ export declare type BryntumTreeGridProps = {
|
|
|
457
457
|
* Grid monitors window resize by default.
|
|
458
458
|
*/
|
|
459
459
|
monitorResize?: boolean;
|
|
460
|
+
/**
|
|
461
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
462
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
463
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-overflowTwinConfig)
|
|
464
|
+
*/
|
|
465
|
+
overflowTwinConfig?: OverflowTwinConfig | null;
|
|
460
466
|
/**
|
|
461
467
|
* Specify plugins (an array of classes) in config
|
|
462
468
|
*/
|
|
@@ -625,7 +631,7 @@ export declare type BryntumTreeGridProps = {
|
|
|
625
631
|
* (if explicitly specified) will be used as the `stateId`.
|
|
626
632
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-stateId)
|
|
627
633
|
*/
|
|
628
|
-
stateId?: string;
|
|
634
|
+
stateId?: string | null;
|
|
629
635
|
/**
|
|
630
636
|
* 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`
|
|
631
637
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -1057,6 +1063,7 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1057
1063
|
maskDefaults: MaskConfig;
|
|
1058
1064
|
masked: boolean | string | MaskConfig;
|
|
1059
1065
|
monitorResize: boolean;
|
|
1066
|
+
overflowTwinConfig: OverflowTwinConfig | null;
|
|
1060
1067
|
plugins: InstancePlugin[] | InstancePlugin;
|
|
1061
1068
|
preserveFocusOnDatasetChange: boolean;
|
|
1062
1069
|
preserveScrollOnDatasetChange: boolean;
|
|
@@ -1091,7 +1098,6 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1091
1098
|
};
|
|
1092
1099
|
stateful: boolean | object | string[];
|
|
1093
1100
|
statefulEvents: object | string[];
|
|
1094
|
-
stateId: string;
|
|
1095
1101
|
stateProvider: StateProvider;
|
|
1096
1102
|
strips: Record<string, GridContainerItemConfig>;
|
|
1097
1103
|
subGridConfigs: Record<string, SubGridConfig>;
|
|
@@ -1146,6 +1152,7 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1146
1152
|
scrollable: Scroller | boolean | ScrollerConfig;
|
|
1147
1153
|
selectionMode: GridSelectionMode;
|
|
1148
1154
|
span: number;
|
|
1155
|
+
stateId: string | null;
|
|
1149
1156
|
stateSettings: {
|
|
1150
1157
|
restoreUnconfiguredColumns?: boolean;
|
|
1151
1158
|
};
|
|
@@ -2244,5 +2251,5 @@ export declare class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
2244
2251
|
*/
|
|
2245
2252
|
ngOnDestroy(): void;
|
|
2246
2253
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumTreeGridComponent, never>;
|
|
2247
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumTreeGridComponent, "bryntum-tree-grid", never, { "adopt": "adopt"; "animateFilterRemovals": "animateFilterRemovals"; "animateRemovingRows": "animateRemovingRows"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoHeight": "autoHeight"; "bbar": "bbar"; "bodyCls": "bodyCls"; "border": "border"; "bubbleEvents": "bubbleEvents"; "collapsible": "collapsible"; "color": "color"; "config": "config"; "contentElementCls": "contentElementCls"; "contextMenuTriggerEvent": "contextMenuTriggerEvent"; "dataField": "dataField"; "defaultRegion": "defaultRegion"; "destroyStore": "destroyStore"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "disableGridColumnIdWarning": "disableGridColumnIdWarning"; "disableGridRowModelWarning": "disableGridRowModelWarning"; "dock": "dock"; "drawer": "drawer"; "elementAttributes": "elementAttributes"; "enableSticky": "enableSticky"; "enableTextSelection": "enableTextSelection"; "fillLastColumn": "fillLastColumn"; "fixedRowHeight": "fixedRowHeight"; "footer": "footer"; "formulaProviders": "formulaProviders"; "fullRowRefresh": "fullRowRefresh"; "getRowHeight": "getRowHeight"; "header": "header"; "hideHorizontalScrollbar": "hideHorizontalScrollbar"; "hoverCls": "hoverCls"; "icon": "icon"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "listeners": "listeners"; "loadMask": "loadMask"; "loadMaskDefaults": "loadMaskDefaults"; "loadMaskError": "loadMaskError"; "localizable": "localizable"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "plugins": "plugins"; "preserveFocusOnDatasetChange": "preserveFocusOnDatasetChange"; "preserveScrollOnDatasetChange": "preserveScrollOnDatasetChange"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "resizable": "resizable"; "resizeToFitIncludesHeader": "resizeToFitIncludesHeader"; "responsiveLevels": "responsiveLevels"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollerClass": "scrollerClass"; "scrollManager": "scrollManager"; "showDirty": "showDirty"; "stateful": "stateful"; "statefulEvents": "statefulEvents"; "stateId": "stateId"; "stateProvider": "stateProvider"; "strips": "strips"; "subGridConfigs": "subGridConfigs"; "syncMask": "syncMask"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tbar": "tbar"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "animateTreeNodeToggle": "animateTreeNodeToggle"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cellEllipsis": "cellEllipsis"; "cls": "cls"; "collapsed": "collapsed"; "column": "column"; "columnLines": "columnLines"; "columns": "columns"; "data": "data"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "enableUndoRedoKeys": "enableUndoRedoKeys"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "hideFooters": "hideFooters"; "hideHeaders": "hideHeaders"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "labelWidth": "labelWidth"; "longPressTime": "longPressTime"; "margin": "margin"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "preserveScroll": "preserveScroll"; "readOnly": "readOnly"; "rendition": "rendition"; "rowHeight": "rowHeight"; "rowLines": "rowLines"; "rtl": "rtl"; "scrollable": "scrollable"; "selectionMode": "selectionMode"; "span": "span"; "stateSettings": "stateSettings"; "store": "store"; "title": "title"; "tools": "tools"; "transition": "transition"; "transitionDuration": "transitionDuration"; "width": "width"; "centered": "centered"; "originalStore": "originalStore"; "parent": "parent"; "selectedCell": "selectedCell"; "selectedCells": "selectedCells"; "selectedRecord": "selectedRecord"; "selectedRecords": "selectedRecords"; "selectedRows": "selectedRows"; "state": "state"; "tooltip": "tooltip"; "aiFeature": "aiFeature"; "aiFilterFeature": "aiFilterFeature"; "cellCopyPasteFeature": "cellCopyPasteFeature"; "cellEditFeature": "cellEditFeature"; "cellMenuFeature": "cellMenuFeature"; "cellTooltipFeature": "cellTooltipFeature"; "chartsFeature": "chartsFeature"; "columnAutoWidthFeature": "columnAutoWidthFeature"; "columnDragToolbarFeature": "columnDragToolbarFeature"; "columnPickerFeature": "columnPickerFeature"; "columnRenameFeature": "columnRenameFeature"; "columnReorderFeature": "columnReorderFeature"; "columnResizeFeature": "columnResizeFeature"; "excelExporterFeature": "excelExporterFeature"; "fileDropFeature": "fileDropFeature"; "fillHandleFeature": "fillHandleFeature"; "filterFeature": "filterFeature"; "filterBarFeature": "filterBarFeature"; "groupFeature": "groupFeature"; "groupSummaryFeature": "groupSummaryFeature"; "headerMenuFeature": "headerMenuFeature"; "lockRowsFeature": "lockRowsFeature"; "mergeCellsFeature": "mergeCellsFeature"; "pdfExportFeature": "pdfExportFeature"; "pinColumnsFeature": "pinColumnsFeature"; "printFeature": "printFeature"; "quickFindFeature": "quickFindFeature"; "regionResizeFeature": "regionResizeFeature"; "rowCopyPasteFeature": "rowCopyPasteFeature"; "rowEditFeature": "rowEditFeature"; "rowExpanderFeature": "rowExpanderFeature"; "rowReorderFeature": "rowReorderFeature"; "rowResizeFeature": "rowResizeFeature"; "searchFeature": "searchFeature"; "sortFeature": "sortFeature"; "splitFeature": "splitFeature"; "stickyCellsFeature": "stickyCellsFeature"; "stripeFeature": "stripeFeature"; "summaryFeature": "summaryFeature"; "treeFeature": "treeFeature"; "treeGroupFeature": "treeGroupFeature"; }, { "onBeforeCancelCellEdit": "onBeforeCancelCellEdit"; "onBeforeCancelRowEdit": "onBeforeCancelRowEdit"; "onBeforeCellEditStart": "onBeforeCellEditStart"; "onBeforeCellRangeDelete": "onBeforeCellRangeDelete"; "onBeforeCellRangeEdit": "onBeforeCellRangeEdit"; "onBeforeColumnCollapseToggle": "onBeforeColumnCollapseToggle"; "onBeforeColumnDragStart": "onBeforeColumnDragStart"; "onBeforeColumnDropFinalize": "onBeforeColumnDropFinalize"; "onBeforeColumnResize": "onBeforeColumnResize"; "onBeforeCopy": "onBeforeCopy"; "onBeforeCSVExport": "onBeforeCSVExport"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeExcelExport": "onBeforeExcelExport"; "onBeforeFillHandleDragStart": "onBeforeFillHandleDragStart"; "onBeforeFinishCellEdit": "onBeforeFinishCellEdit"; "onBeforeFinishRowEdit": "onBeforeFinishRowEdit"; "onBeforeHide": "onBeforeHide"; "onBeforePaste": "onBeforePaste"; "onBeforePdfExport": "onBeforePdfExport"; "onBeforeRenderRow": "onBeforeRenderRow"; "onBeforeRenderRows": "onBeforeRenderRows"; "onBeforeRowCollapse": "onBeforeRowCollapse"; "onBeforeRowExpand": "onBeforeRowExpand"; "onBeforeSelectionChange": "onBeforeSelectionChange"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onBeforeStartRowEdit": "onBeforeStartRowEdit"; "onBeforeStateApply": "onBeforeStateApply"; "onBeforeStateSave": "onBeforeStateSave"; "onBeforeToggleGroup": "onBeforeToggleGroup"; "onBeforeToggleNode": "onBeforeToggleNode"; "onCancelCellEdit": "onCancelCellEdit"; "onCatchAll": "onCatchAll"; "onCellClick": "onCellClick"; "onCellContextMenu": "onCellContextMenu"; "onCellDblClick": "onCellDblClick"; "onCellMenuBeforeShow": "onCellMenuBeforeShow"; "onCellMenuItem": "onCellMenuItem"; "onCellMenuShow": "onCellMenuShow"; "onCellMenuToggleItem": "onCellMenuToggleItem"; "onCellMouseEnter": "onCellMouseEnter"; "onCellMouseLeave": "onCellMouseLeave"; "onCellMouseOut": "onCellMouseOut"; "onCellMouseOver": "onCellMouseOver"; "onCollapse": "onCollapse"; "onCollapseNode": "onCollapseNode"; "onColumnCollapseToggle": "onColumnCollapseToggle"; "onColumnDrag": "onColumnDrag"; "onColumnDragStart": "onColumnDragStart"; "onColumnDrop": "onColumnDrop"; "onColumnResize": "onColumnResize"; "onColumnResizeStart": "onColumnResizeStart"; "onContextMenuItem": "onContextMenuItem"; "onContextMenuToggleItem": "onContextMenuToggleItem"; "onCopy": "onCopy"; "onDataChange": "onDataChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onDragSelecting": "onDragSelecting"; "onElementCreated": "onElementCreated"; "onExpand": "onExpand"; "onExpandNode": "onExpandNode"; "onFileDrop": "onFileDrop"; "onFillHandleBeforeDragFinalize": "onFillHandleBeforeDragFinalize"; "onFillHandleDrag": "onFillHandleDrag"; "onFillHandleDragAbort": "onFillHandleDragAbort"; "onFillHandleDragEnd": "onFillHandleDragEnd"; "onFillHandleDragStart": "onFillHandleDragStart"; "onFinishCellEdit": "onFinishCellEdit"; "onFinishRowEdit": "onFinishRowEdit"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onGridRowBeforeDragStart": "onGridRowBeforeDragStart"; "onGridRowBeforeDropFinalize": "onGridRowBeforeDropFinalize"; "onGridRowDrag": "onGridRowDrag"; "onGridRowDragAbort": "onGridRowDragAbort"; "onGridRowDragStart": "onGridRowDragStart"; "onGridRowDrop": "onGridRowDrop"; "onHeaderClick": "onHeaderClick"; "onHeaderMenuBeforeShow": "onHeaderMenuBeforeShow"; "onHeaderMenuItem": "onHeaderMenuItem"; "onHeaderMenuShow": "onHeaderMenuShow"; "onHeaderMenuToggleItem": "onHeaderMenuToggleItem"; "onHide": "onHide"; "onLockRows": "onLockRows"; "onMouseOut": "onMouseOut"; "onMouseOver": "onMouseOver"; "onPaint": "onPaint"; "onPaste": "onPaste"; "onPdfExport": "onPdfExport"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onRenderRow": "onRenderRow"; "onRenderRows": "onRenderRows"; "onResize": "onResize"; "onResponsive": "onResponsive"; "onRowCollapse": "onRowCollapse"; "onRowExpand": "onRowExpand"; "onRowMouseEnter": "onRowMouseEnter"; "onRowMouseLeave": "onRowMouseLeave"; "onScroll": "onScroll"; "onSelectionChange": "onSelectionChange"; "onSelectionModeChange": "onSelectionModeChange"; "onShow": "onShow"; "onSplit": "onSplit"; "onSplitterCollapseClick": "onSplitterCollapseClick"; "onSplitterDragEnd": "onSplitterDragEnd"; "onSplitterDragStart": "onSplitterDragStart"; "onSplitterExpandClick": "onSplitterExpandClick"; "onStartCellEdit": "onStartCellEdit"; "onStartRowEdit": "onStartRowEdit"; "onSubGridCollapse": "onSubGridCollapse"; "onSubGridExpand": "onSubGridExpand"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; "onToolClick": "onToolClick"; "onTreeGroup": "onTreeGroup"; "onUnlockRows": "onUnlockRows"; "onUnsplit": "onUnsplit"; }, never, never>;
|
|
2254
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumTreeGridComponent, "bryntum-tree-grid", never, { "adopt": "adopt"; "animateFilterRemovals": "animateFilterRemovals"; "animateRemovingRows": "animateRemovingRows"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoHeight": "autoHeight"; "bbar": "bbar"; "bodyCls": "bodyCls"; "border": "border"; "bubbleEvents": "bubbleEvents"; "collapsible": "collapsible"; "color": "color"; "config": "config"; "contentElementCls": "contentElementCls"; "contextMenuTriggerEvent": "contextMenuTriggerEvent"; "dataField": "dataField"; "defaultRegion": "defaultRegion"; "destroyStore": "destroyStore"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "disableGridColumnIdWarning": "disableGridColumnIdWarning"; "disableGridRowModelWarning": "disableGridRowModelWarning"; "dock": "dock"; "drawer": "drawer"; "elementAttributes": "elementAttributes"; "enableSticky": "enableSticky"; "enableTextSelection": "enableTextSelection"; "fillLastColumn": "fillLastColumn"; "fixedRowHeight": "fixedRowHeight"; "footer": "footer"; "formulaProviders": "formulaProviders"; "fullRowRefresh": "fullRowRefresh"; "getRowHeight": "getRowHeight"; "header": "header"; "hideHorizontalScrollbar": "hideHorizontalScrollbar"; "hoverCls": "hoverCls"; "icon": "icon"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "listeners": "listeners"; "loadMask": "loadMask"; "loadMaskDefaults": "loadMaskDefaults"; "loadMaskError": "loadMaskError"; "localizable": "localizable"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "overflowTwinConfig": "overflowTwinConfig"; "plugins": "plugins"; "preserveFocusOnDatasetChange": "preserveFocusOnDatasetChange"; "preserveScrollOnDatasetChange": "preserveScrollOnDatasetChange"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "resizable": "resizable"; "resizeToFitIncludesHeader": "resizeToFitIncludesHeader"; "responsiveLevels": "responsiveLevels"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollerClass": "scrollerClass"; "scrollManager": "scrollManager"; "showDirty": "showDirty"; "stateful": "stateful"; "statefulEvents": "statefulEvents"; "stateProvider": "stateProvider"; "strips": "strips"; "subGridConfigs": "subGridConfigs"; "syncMask": "syncMask"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tbar": "tbar"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "animateTreeNodeToggle": "animateTreeNodeToggle"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cellEllipsis": "cellEllipsis"; "cls": "cls"; "collapsed": "collapsed"; "column": "column"; "columnLines": "columnLines"; "columns": "columns"; "data": "data"; "dataset": "dataset"; "disabled": "disabled"; "emptyText": "emptyText"; "enableUndoRedoKeys": "enableUndoRedoKeys"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "hideFooters": "hideFooters"; "hideHeaders": "hideHeaders"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "labelWidth": "labelWidth"; "longPressTime": "longPressTime"; "margin": "margin"; "maxHeight": "maxHeight"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "preserveScroll": "preserveScroll"; "readOnly": "readOnly"; "rendition": "rendition"; "rowHeight": "rowHeight"; "rowLines": "rowLines"; "rtl": "rtl"; "scrollable": "scrollable"; "selectionMode": "selectionMode"; "span": "span"; "stateId": "stateId"; "stateSettings": "stateSettings"; "store": "store"; "title": "title"; "tools": "tools"; "transition": "transition"; "transitionDuration": "transitionDuration"; "width": "width"; "centered": "centered"; "originalStore": "originalStore"; "parent": "parent"; "selectedCell": "selectedCell"; "selectedCells": "selectedCells"; "selectedRecord": "selectedRecord"; "selectedRecords": "selectedRecords"; "selectedRows": "selectedRows"; "state": "state"; "tooltip": "tooltip"; "aiFeature": "aiFeature"; "aiFilterFeature": "aiFilterFeature"; "cellCopyPasteFeature": "cellCopyPasteFeature"; "cellEditFeature": "cellEditFeature"; "cellMenuFeature": "cellMenuFeature"; "cellTooltipFeature": "cellTooltipFeature"; "chartsFeature": "chartsFeature"; "columnAutoWidthFeature": "columnAutoWidthFeature"; "columnDragToolbarFeature": "columnDragToolbarFeature"; "columnPickerFeature": "columnPickerFeature"; "columnRenameFeature": "columnRenameFeature"; "columnReorderFeature": "columnReorderFeature"; "columnResizeFeature": "columnResizeFeature"; "excelExporterFeature": "excelExporterFeature"; "fileDropFeature": "fileDropFeature"; "fillHandleFeature": "fillHandleFeature"; "filterFeature": "filterFeature"; "filterBarFeature": "filterBarFeature"; "groupFeature": "groupFeature"; "groupSummaryFeature": "groupSummaryFeature"; "headerMenuFeature": "headerMenuFeature"; "lockRowsFeature": "lockRowsFeature"; "mergeCellsFeature": "mergeCellsFeature"; "pdfExportFeature": "pdfExportFeature"; "pinColumnsFeature": "pinColumnsFeature"; "printFeature": "printFeature"; "quickFindFeature": "quickFindFeature"; "regionResizeFeature": "regionResizeFeature"; "rowCopyPasteFeature": "rowCopyPasteFeature"; "rowEditFeature": "rowEditFeature"; "rowExpanderFeature": "rowExpanderFeature"; "rowReorderFeature": "rowReorderFeature"; "rowResizeFeature": "rowResizeFeature"; "searchFeature": "searchFeature"; "sortFeature": "sortFeature"; "splitFeature": "splitFeature"; "stickyCellsFeature": "stickyCellsFeature"; "stripeFeature": "stripeFeature"; "summaryFeature": "summaryFeature"; "treeFeature": "treeFeature"; "treeGroupFeature": "treeGroupFeature"; }, { "onBeforeCancelCellEdit": "onBeforeCancelCellEdit"; "onBeforeCancelRowEdit": "onBeforeCancelRowEdit"; "onBeforeCellEditStart": "onBeforeCellEditStart"; "onBeforeCellRangeDelete": "onBeforeCellRangeDelete"; "onBeforeCellRangeEdit": "onBeforeCellRangeEdit"; "onBeforeColumnCollapseToggle": "onBeforeColumnCollapseToggle"; "onBeforeColumnDragStart": "onBeforeColumnDragStart"; "onBeforeColumnDropFinalize": "onBeforeColumnDropFinalize"; "onBeforeColumnResize": "onBeforeColumnResize"; "onBeforeCopy": "onBeforeCopy"; "onBeforeCSVExport": "onBeforeCSVExport"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeExcelExport": "onBeforeExcelExport"; "onBeforeFillHandleDragStart": "onBeforeFillHandleDragStart"; "onBeforeFinishCellEdit": "onBeforeFinishCellEdit"; "onBeforeFinishRowEdit": "onBeforeFinishRowEdit"; "onBeforeHide": "onBeforeHide"; "onBeforePaste": "onBeforePaste"; "onBeforePdfExport": "onBeforePdfExport"; "onBeforeRenderRow": "onBeforeRenderRow"; "onBeforeRenderRows": "onBeforeRenderRows"; "onBeforeRowCollapse": "onBeforeRowCollapse"; "onBeforeRowExpand": "onBeforeRowExpand"; "onBeforeSelectionChange": "onBeforeSelectionChange"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onBeforeStartRowEdit": "onBeforeStartRowEdit"; "onBeforeStateApply": "onBeforeStateApply"; "onBeforeStateSave": "onBeforeStateSave"; "onBeforeToggleGroup": "onBeforeToggleGroup"; "onBeforeToggleNode": "onBeforeToggleNode"; "onCancelCellEdit": "onCancelCellEdit"; "onCatchAll": "onCatchAll"; "onCellClick": "onCellClick"; "onCellContextMenu": "onCellContextMenu"; "onCellDblClick": "onCellDblClick"; "onCellMenuBeforeShow": "onCellMenuBeforeShow"; "onCellMenuItem": "onCellMenuItem"; "onCellMenuShow": "onCellMenuShow"; "onCellMenuToggleItem": "onCellMenuToggleItem"; "onCellMouseEnter": "onCellMouseEnter"; "onCellMouseLeave": "onCellMouseLeave"; "onCellMouseOut": "onCellMouseOut"; "onCellMouseOver": "onCellMouseOver"; "onCollapse": "onCollapse"; "onCollapseNode": "onCollapseNode"; "onColumnCollapseToggle": "onColumnCollapseToggle"; "onColumnDrag": "onColumnDrag"; "onColumnDragStart": "onColumnDragStart"; "onColumnDrop": "onColumnDrop"; "onColumnResize": "onColumnResize"; "onColumnResizeStart": "onColumnResizeStart"; "onContextMenuItem": "onContextMenuItem"; "onContextMenuToggleItem": "onContextMenuToggleItem"; "onCopy": "onCopy"; "onDataChange": "onDataChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onDragSelecting": "onDragSelecting"; "onElementCreated": "onElementCreated"; "onExpand": "onExpand"; "onExpandNode": "onExpandNode"; "onFileDrop": "onFileDrop"; "onFillHandleBeforeDragFinalize": "onFillHandleBeforeDragFinalize"; "onFillHandleDrag": "onFillHandleDrag"; "onFillHandleDragAbort": "onFillHandleDragAbort"; "onFillHandleDragEnd": "onFillHandleDragEnd"; "onFillHandleDragStart": "onFillHandleDragStart"; "onFinishCellEdit": "onFinishCellEdit"; "onFinishRowEdit": "onFinishRowEdit"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onGridRowBeforeDragStart": "onGridRowBeforeDragStart"; "onGridRowBeforeDropFinalize": "onGridRowBeforeDropFinalize"; "onGridRowDrag": "onGridRowDrag"; "onGridRowDragAbort": "onGridRowDragAbort"; "onGridRowDragStart": "onGridRowDragStart"; "onGridRowDrop": "onGridRowDrop"; "onHeaderClick": "onHeaderClick"; "onHeaderMenuBeforeShow": "onHeaderMenuBeforeShow"; "onHeaderMenuItem": "onHeaderMenuItem"; "onHeaderMenuShow": "onHeaderMenuShow"; "onHeaderMenuToggleItem": "onHeaderMenuToggleItem"; "onHide": "onHide"; "onLockRows": "onLockRows"; "onMouseOut": "onMouseOut"; "onMouseOver": "onMouseOver"; "onPaint": "onPaint"; "onPaste": "onPaste"; "onPdfExport": "onPdfExport"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onRenderRow": "onRenderRow"; "onRenderRows": "onRenderRows"; "onResize": "onResize"; "onResponsive": "onResponsive"; "onRowCollapse": "onRowCollapse"; "onRowExpand": "onRowExpand"; "onRowMouseEnter": "onRowMouseEnter"; "onRowMouseLeave": "onRowMouseLeave"; "onScroll": "onScroll"; "onSelectionChange": "onSelectionChange"; "onSelectionModeChange": "onSelectionModeChange"; "onShow": "onShow"; "onSplit": "onSplit"; "onSplitterCollapseClick": "onSplitterCollapseClick"; "onSplitterDragEnd": "onSplitterDragEnd"; "onSplitterDragStart": "onSplitterDragStart"; "onSplitterExpandClick": "onSplitterExpandClick"; "onStartCellEdit": "onStartCellEdit"; "onStartRowEdit": "onStartRowEdit"; "onSubGridCollapse": "onSubGridCollapse"; "onSubGridExpand": "onSubGridExpand"; "onToggleGroup": "onToggleGroup"; "onToggleNode": "onToggleNode"; "onToolClick": "onToolClick"; "onTreeGroup": "onTreeGroup"; "onUnlockRows": "onUnlockRows"; "onUnsplit": "onUnsplit"; }, never, never>;
|
|
2248
2255
|
}
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, Color, DomConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, Color, DomConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { AIFilterField, AIFilterFieldListeners, GridContainerItemConfig, Grid } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -447,6 +447,12 @@ export type BryntumAIFilterFieldProps = {
|
|
|
447
447
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
|
|
448
448
|
*/
|
|
449
449
|
name ? : string
|
|
450
|
+
/**
|
|
451
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
452
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
453
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-overflowTwinConfig)
|
|
454
|
+
*/
|
|
455
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
450
456
|
/**
|
|
451
457
|
* Text to display in empty field.
|
|
452
458
|
*/
|
|
@@ -738,6 +744,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
738
744
|
'minWidth',
|
|
739
745
|
'monitorResize',
|
|
740
746
|
'name',
|
|
747
|
+
'overflowTwinConfig',
|
|
741
748
|
'placeholder',
|
|
742
749
|
'positioned',
|
|
743
750
|
'preventTooltipOnTouch',
|
|
@@ -825,6 +832,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
825
832
|
'minLength',
|
|
826
833
|
'monitorResize',
|
|
827
834
|
'name',
|
|
835
|
+
'overflowTwinConfig',
|
|
828
836
|
'positioned',
|
|
829
837
|
'preventTooltipOnTouch',
|
|
830
838
|
'progressText',
|
|
@@ -963,6 +971,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
963
971
|
@Input() minLength ! : number;
|
|
964
972
|
@Input() monitorResize ! : boolean|object;
|
|
965
973
|
@Input() name ! : string;
|
|
974
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
966
975
|
@Input() positioned ! : boolean;
|
|
967
976
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
968
977
|
@Input() progressText ! : string;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -583,6 +583,12 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
583
583
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
584
584
|
*/
|
|
585
585
|
name ? : string
|
|
586
|
+
/**
|
|
587
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
588
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
589
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-overflowTwinConfig)
|
|
590
|
+
*/
|
|
591
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
586
592
|
/**
|
|
587
593
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
588
594
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -950,6 +956,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
950
956
|
'monitorResize',
|
|
951
957
|
'multiValueSeparator',
|
|
952
958
|
'name',
|
|
959
|
+
'overflowTwinConfig',
|
|
953
960
|
'overlayAnchor',
|
|
954
961
|
'picker',
|
|
955
962
|
'pickerAlignElement',
|
|
@@ -1070,6 +1077,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
1070
1077
|
'monitorResize',
|
|
1071
1078
|
'multiValueSeparator',
|
|
1072
1079
|
'name',
|
|
1080
|
+
'overflowTwinConfig',
|
|
1073
1081
|
'overlayAnchor',
|
|
1074
1082
|
'pickerAlignElement',
|
|
1075
1083
|
'pickerWidth',
|
|
@@ -1244,6 +1252,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
1244
1252
|
@Input() monitorResize ! : boolean|object;
|
|
1245
1253
|
@Input() multiValueSeparator ! : string;
|
|
1246
1254
|
@Input() name ! : string;
|
|
1255
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1247
1256
|
@Input() overlayAnchor ! : boolean;
|
|
1248
1257
|
@Input() pickerAlignElement ! : string;
|
|
1249
1258
|
@Input() pickerWidth ! : number|string;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, 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';
|
|
10
|
+
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, OverflowTwinConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { AI, AIConfig, 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';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -456,6 +456,12 @@ export type BryntumGridBaseProps = {
|
|
|
456
456
|
* Grid monitors window resize by default.
|
|
457
457
|
*/
|
|
458
458
|
monitorResize ? : boolean
|
|
459
|
+
/**
|
|
460
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
461
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
462
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-overflowTwinConfig)
|
|
463
|
+
*/
|
|
464
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
459
465
|
/**
|
|
460
466
|
* Specify plugins (an array of classes) in config
|
|
461
467
|
*/
|
|
@@ -606,7 +612,7 @@ export type BryntumGridBaseProps = {
|
|
|
606
612
|
* (if explicitly specified) will be used as the `stateId`.
|
|
607
613
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
608
614
|
*/
|
|
609
|
-
stateId ? : string
|
|
615
|
+
stateId ? : string|null
|
|
610
616
|
/**
|
|
611
617
|
* 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`
|
|
612
618
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -1231,6 +1237,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1231
1237
|
'minHeight',
|
|
1232
1238
|
'minWidth',
|
|
1233
1239
|
'monitorResize',
|
|
1240
|
+
'overflowTwinConfig',
|
|
1234
1241
|
'plugins',
|
|
1235
1242
|
'preserveFocusOnDatasetChange',
|
|
1236
1243
|
'preserveScroll',
|
|
@@ -1321,6 +1328,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1321
1328
|
'maskDefaults',
|
|
1322
1329
|
'masked',
|
|
1323
1330
|
'monitorResize',
|
|
1331
|
+
'overflowTwinConfig',
|
|
1324
1332
|
'plugins',
|
|
1325
1333
|
'preserveFocusOnDatasetChange',
|
|
1326
1334
|
'preserveScrollOnDatasetChange',
|
|
@@ -1337,7 +1345,6 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1337
1345
|
'showDirty',
|
|
1338
1346
|
'stateful',
|
|
1339
1347
|
'statefulEvents',
|
|
1340
|
-
'stateId',
|
|
1341
1348
|
'stateProvider',
|
|
1342
1349
|
'strips',
|
|
1343
1350
|
'subGridConfigs',
|
|
@@ -1403,6 +1410,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1403
1410
|
'selectionMode',
|
|
1404
1411
|
'span',
|
|
1405
1412
|
'state',
|
|
1413
|
+
'stateId',
|
|
1406
1414
|
'stateSettings',
|
|
1407
1415
|
'store',
|
|
1408
1416
|
'title',
|
|
@@ -1475,6 +1483,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1475
1483
|
@Input() maskDefaults ! : MaskConfig;
|
|
1476
1484
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
1477
1485
|
@Input() monitorResize ! : boolean;
|
|
1486
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1478
1487
|
@Input() plugins ! : InstancePlugin[]|InstancePlugin;
|
|
1479
1488
|
@Input() preserveFocusOnDatasetChange ! : boolean;
|
|
1480
1489
|
@Input() preserveScrollOnDatasetChange ! : boolean;
|
|
@@ -1491,7 +1500,6 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1491
1500
|
@Input() showDirty ! : boolean|{ duringEdit: boolean, newRecord: boolean };
|
|
1492
1501
|
@Input() stateful ! : boolean|object|string[];
|
|
1493
1502
|
@Input() statefulEvents ! : object|string[];
|
|
1494
|
-
@Input() stateId ! : string;
|
|
1495
1503
|
@Input() stateProvider ! : StateProvider;
|
|
1496
1504
|
@Input() strips ! : Record<string, GridContainerItemConfig>;
|
|
1497
1505
|
@Input() subGridConfigs ! : Record<string, SubGridConfig>;
|
|
@@ -1547,6 +1555,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1547
1555
|
@Input() scrollable ! : Scroller|boolean|ScrollerConfig;
|
|
1548
1556
|
@Input() selectionMode ! : GridSelectionMode;
|
|
1549
1557
|
@Input() span ! : number;
|
|
1558
|
+
@Input() stateId ! : string|null;
|
|
1550
1559
|
@Input() stateSettings ! : {
|
|
1551
1560
|
restoreUnconfiguredColumns?: boolean
|
|
1552
1561
|
};
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { Grid, GridChartDesigner, GridChartDesignerListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -310,6 +310,12 @@ export type BryntumGridChartDesignerProps = {
|
|
|
310
310
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
311
311
|
*/
|
|
312
312
|
monitorResize ? : boolean|object
|
|
313
|
+
/**
|
|
314
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
315
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
316
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-overflowTwinConfig)
|
|
317
|
+
*/
|
|
318
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
313
319
|
/**
|
|
314
320
|
* 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
|
|
315
321
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -528,6 +534,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
528
534
|
'minHeight',
|
|
529
535
|
'minWidth',
|
|
530
536
|
'monitorResize',
|
|
537
|
+
'overflowTwinConfig',
|
|
531
538
|
'positioned',
|
|
532
539
|
'preventTooltipOnTouch',
|
|
533
540
|
'readOnly',
|
|
@@ -584,6 +591,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
584
591
|
'maskDefaults',
|
|
585
592
|
'masked',
|
|
586
593
|
'monitorResize',
|
|
594
|
+
'overflowTwinConfig',
|
|
587
595
|
'positioned',
|
|
588
596
|
'preventTooltipOnTouch',
|
|
589
597
|
'relayStoreEvents',
|
|
@@ -685,6 +693,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
685
693
|
@Input() maskDefaults ! : MaskConfig;
|
|
686
694
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
687
695
|
@Input() monitorResize ! : boolean|object;
|
|
696
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
688
697
|
@Input() positioned ! : boolean;
|
|
689
698
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
690
699
|
@Input() relayStoreEvents ! : boolean;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroup, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -446,6 +446,12 @@ export type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
446
446
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
447
447
|
*/
|
|
448
448
|
operators ? : object
|
|
449
|
+
/**
|
|
450
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
451
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
452
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-overflowTwinConfig)
|
|
453
|
+
*/
|
|
454
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
449
455
|
/**
|
|
450
456
|
* 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
|
|
451
457
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -723,6 +729,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
723
729
|
'monitorResize',
|
|
724
730
|
'namedItems',
|
|
725
731
|
'operators',
|
|
732
|
+
'overflowTwinConfig',
|
|
726
733
|
'positioned',
|
|
727
734
|
'preventTooltipOnTouch',
|
|
728
735
|
'readOnly',
|
|
@@ -802,6 +809,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
802
809
|
'monitorResize',
|
|
803
810
|
'namedItems',
|
|
804
811
|
'operators',
|
|
812
|
+
'overflowTwinConfig',
|
|
805
813
|
'positioned',
|
|
806
814
|
'preventTooltipOnTouch',
|
|
807
815
|
'relayStoreEvents',
|
|
@@ -934,6 +942,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
934
942
|
@Input() monitorResize ! : boolean|object;
|
|
935
943
|
@Input() namedItems ! : Record<string, GridContainerItemConfig>;
|
|
936
944
|
@Input() operators ! : object;
|
|
945
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
937
946
|
@Input() positioned ! : boolean;
|
|
938
947
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
939
948
|
@Input() relayStoreEvents ! : boolean;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPicker, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -429,6 +429,12 @@ export type BryntumGridFieldFilterPickerProps = {
|
|
|
429
429
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)
|
|
430
430
|
*/
|
|
431
431
|
operators ? : object
|
|
432
|
+
/**
|
|
433
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
434
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
435
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-overflowTwinConfig)
|
|
436
|
+
*/
|
|
437
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
432
438
|
/**
|
|
433
439
|
* 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
|
|
434
440
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -714,6 +720,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
714
720
|
'namedItems',
|
|
715
721
|
'operatorLocked',
|
|
716
722
|
'operators',
|
|
723
|
+
'overflowTwinConfig',
|
|
717
724
|
'positioned',
|
|
718
725
|
'preventTooltipOnTouch',
|
|
719
726
|
'propertyFieldConfig',
|
|
@@ -794,6 +801,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
794
801
|
'namedItems',
|
|
795
802
|
'operatorLocked',
|
|
796
803
|
'operators',
|
|
804
|
+
'overflowTwinConfig',
|
|
797
805
|
'positioned',
|
|
798
806
|
'preventTooltipOnTouch',
|
|
799
807
|
'propertyFieldConfig',
|
|
@@ -926,6 +934,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
926
934
|
@Input() namedItems ! : Record<string, GridContainerItemConfig>;
|
|
927
935
|
@Input() operatorLocked ! : boolean;
|
|
928
936
|
@Input() operators ! : object;
|
|
937
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
929
938
|
@Input() positioned ! : boolean;
|
|
930
939
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
931
940
|
@Input() propertyFieldConfig ! : ComboConfig;
|