@bryntum/grid-angular-thin 7.3.1 → 7.3.3
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 +4 -4
- package/bundles/bryntum-grid-angular-thin.umd.js +40 -31
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +5 -5
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +5 -5
- package/esm2015/lib/bryntum-grid-base.component.js +5 -2
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +5 -5
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +5 -5
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +5 -5
- package/esm2015/lib/bryntum-grid.component.js +5 -2
- package/esm2015/lib/bryntum-group-bar.component.js +5 -5
- package/esm2015/lib/bryntum-tree-combo.component.js +5 -5
- package/esm2015/lib/bryntum-tree-grid.component.js +5 -2
- package/fesm2015/bryntum-grid-angular-thin.js +40 -31
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +15 -6
- package/lib/bryntum-checklist-filter-combo.component.d.ts +15 -6
- package/lib/bryntum-grid-base.component.d.ts +11 -2
- package/lib/bryntum-grid-chart-designer.component.d.ts +15 -6
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +16 -7
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +16 -7
- package/lib/bryntum-grid.component.d.ts +11 -2
- package/lib/bryntum-group-bar.component.d.ts +19 -8
- package/lib/bryntum-tree-combo.component.d.ts +15 -6
- package/lib/bryntum-tree-grid.component.d.ts +11 -2
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +15 -6
- package/src/lib/bryntum-checklist-filter-combo.component.ts +15 -6
- package/src/lib/bryntum-grid-base.component.ts +11 -1
- package/src/lib/bryntum-grid-chart-designer.component.ts +15 -6
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +16 -7
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +16 -7
- package/src/lib/bryntum-grid.component.ts +11 -1
- package/src/lib/bryntum-group-bar.component.ts +19 -8
- package/src/lib/bryntum-tree-combo.component.ts +15 -6
- package/src/lib/bryntum-tree-grid.component.ts +11 -1
|
@@ -31,6 +31,8 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
31
31
|
/**
|
|
32
32
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
33
33
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
34
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
|
|
34
36
|
*/
|
|
35
37
|
appendTo?: HTMLElement | string;
|
|
36
38
|
/**
|
|
@@ -77,9 +79,10 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
77
79
|
catchEventHandlerExceptions?: boolean;
|
|
78
80
|
/**
|
|
79
81
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
80
|
-
*
|
|
82
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-centered)
|
|
83
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
81
84
|
*/
|
|
82
|
-
centered?: boolean;
|
|
85
|
+
centered?: boolean | object;
|
|
83
86
|
/**
|
|
84
87
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
85
88
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -181,7 +184,7 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
181
184
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
182
185
|
/**
|
|
183
186
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
184
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
187
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
185
188
|
* property which controls when a drag should start.
|
|
186
189
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-draggable)
|
|
187
190
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -303,10 +306,14 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
303
306
|
inputWidth?: string | number;
|
|
304
307
|
/**
|
|
305
308
|
* 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.
|
|
309
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
310
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
306
311
|
*/
|
|
307
312
|
insertBefore?: HTMLElement | string;
|
|
308
313
|
/**
|
|
309
314
|
* 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.
|
|
315
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
316
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
310
317
|
*/
|
|
311
318
|
insertFirst?: HTMLElement | string;
|
|
312
319
|
/**
|
|
@@ -508,7 +515,7 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
508
515
|
rtl?: boolean;
|
|
509
516
|
/**
|
|
510
517
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
511
|
-
* Valid values:
|
|
518
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
512
519
|
*/
|
|
513
520
|
scrollAction?: 'hide' | 'realign' | null;
|
|
514
521
|
/**
|
|
@@ -632,7 +639,6 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
|
|
|
632
639
|
autoComplete: string;
|
|
633
640
|
autoSelect: boolean;
|
|
634
641
|
bubbleEvents: object;
|
|
635
|
-
centered: boolean;
|
|
636
642
|
checkValidity: ((field: Field) => void) | string;
|
|
637
643
|
clearable: boolean | FieldTriggerConfig;
|
|
638
644
|
client: Grid;
|
|
@@ -707,6 +713,9 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
|
|
|
707
713
|
badge: string;
|
|
708
714
|
callOnFunctions: boolean;
|
|
709
715
|
catchEventHandlerExceptions: boolean;
|
|
716
|
+
centered: boolean | {
|
|
717
|
+
once?: boolean;
|
|
718
|
+
} | boolean | object;
|
|
710
719
|
cls: string | object;
|
|
711
720
|
column: number;
|
|
712
721
|
dataset: object | Record<string, string>;
|
|
@@ -920,5 +929,5 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
|
|
|
920
929
|
*/
|
|
921
930
|
ngOnDestroy(): void;
|
|
922
931
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumAIFilterFieldComponent, never>;
|
|
923
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumAIFilterFieldComponent, "bryntum-a-i-filter-field", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "
|
|
932
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumAIFilterFieldComponent, "bryntum-a-i-filter-field", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "checkValidity": "checkValidity"; "clearable": "clearable"; "client": "client"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minLength": "minLength"; "monitorResize": "monitorResize"; "name": "name"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "progressText": "progressText"; "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"; "type": "type"; "ui": "ui"; "validateOnInput": "validateOnInput"; "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"; "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"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "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"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
|
|
924
933
|
}
|
|
@@ -31,6 +31,8 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
31
31
|
/**
|
|
32
32
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
33
33
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
34
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
|
|
34
36
|
*/
|
|
35
37
|
appendTo?: HTMLElement | string;
|
|
36
38
|
/**
|
|
@@ -90,9 +92,10 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
90
92
|
catchEventHandlerExceptions?: boolean;
|
|
91
93
|
/**
|
|
92
94
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
93
|
-
*
|
|
95
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-centered)
|
|
96
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
94
97
|
*/
|
|
95
|
-
centered?: boolean;
|
|
98
|
+
centered?: boolean | object;
|
|
96
99
|
/**
|
|
97
100
|
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
98
101
|
* to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
|
|
@@ -228,7 +231,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
228
231
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
229
232
|
/**
|
|
230
233
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
231
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
234
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
232
235
|
* property which controls when a drag should start.
|
|
233
236
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
|
|
234
237
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -401,10 +404,14 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
401
404
|
inputWidth?: string | number;
|
|
402
405
|
/**
|
|
403
406
|
* 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.
|
|
407
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
408
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
404
409
|
*/
|
|
405
410
|
insertBefore?: HTMLElement | string;
|
|
406
411
|
/**
|
|
407
412
|
* 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.
|
|
413
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
414
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
408
415
|
*/
|
|
409
416
|
insertFirst?: HTMLElement | string;
|
|
410
417
|
/**
|
|
@@ -666,7 +673,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
666
673
|
rtl?: boolean;
|
|
667
674
|
/**
|
|
668
675
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
669
|
-
* Valid values:
|
|
676
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
670
677
|
*/
|
|
671
678
|
scrollAction?: 'hide' | 'realign' | null;
|
|
672
679
|
/**
|
|
@@ -821,7 +828,6 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
821
828
|
bubbleEvents: object;
|
|
822
829
|
cacheLastResult: number | string | Duration | DurationConfig;
|
|
823
830
|
caseSensitive: boolean;
|
|
824
|
-
centered: boolean;
|
|
825
831
|
checkValidity: ((field: Field) => void) | string;
|
|
826
832
|
chipView: ChipViewConfig;
|
|
827
833
|
clearable: boolean | FieldTriggerConfig;
|
|
@@ -922,6 +928,9 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
922
928
|
badge: string;
|
|
923
929
|
callOnFunctions: boolean;
|
|
924
930
|
catchEventHandlerExceptions: boolean;
|
|
931
|
+
centered: boolean | {
|
|
932
|
+
once?: boolean;
|
|
933
|
+
} | boolean | object;
|
|
925
934
|
cls: string | object;
|
|
926
935
|
column: number;
|
|
927
936
|
dataset: object | Record<string, string>;
|
|
@@ -1148,5 +1157,5 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1148
1157
|
*/
|
|
1149
1158
|
ngOnDestroy(): void;
|
|
1150
1159
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumChecklistFilterComboComponent, never>;
|
|
1151
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChecklistFilterComboComponent, "bryntum-checklist-filter-combo", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoExpand": "autoExpand"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "cacheLastResult": "cacheLastResult"; "caseSensitive": "caseSensitive"; "
|
|
1160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChecklistFilterComboComponent, "bryntum-checklist-filter-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"; "listItemPillTpl": "listItemPillTpl"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "picker": "picker"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "searchText": "searchText"; "showApplyButton": "showApplyButton"; "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"; "multiSelect": "multiSelect"; "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>;
|
|
1152
1161
|
}
|
|
@@ -39,6 +39,8 @@ export declare type BryntumGridBaseProps = {
|
|
|
39
39
|
/**
|
|
40
40
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
41
41
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
42
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
|
|
42
44
|
*/
|
|
43
45
|
appendTo?: HTMLElement | string;
|
|
44
46
|
/**
|
|
@@ -360,10 +362,14 @@ export declare type BryntumGridBaseProps = {
|
|
|
360
362
|
inputFieldAlign?: 'start' | 'end';
|
|
361
363
|
/**
|
|
362
364
|
* 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.
|
|
365
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
366
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
|
|
363
367
|
*/
|
|
364
368
|
insertBefore?: HTMLElement | string;
|
|
365
369
|
/**
|
|
366
370
|
* 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.
|
|
371
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
372
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
|
|
367
373
|
*/
|
|
368
374
|
insertFirst?: HTMLElement | string;
|
|
369
375
|
/**
|
|
@@ -376,7 +382,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
376
382
|
*/
|
|
377
383
|
labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
|
|
378
384
|
/**
|
|
379
|
-
* Sets `labelWidth
|
|
385
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
380
386
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-labelWidth)
|
|
381
387
|
*/
|
|
382
388
|
labelWidth?: number | null;
|
|
@@ -1156,6 +1162,9 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1156
1162
|
};
|
|
1157
1163
|
transitionDuration: number;
|
|
1158
1164
|
width: number | string;
|
|
1165
|
+
centered: boolean | {
|
|
1166
|
+
once?: boolean;
|
|
1167
|
+
};
|
|
1159
1168
|
originalStore: Store;
|
|
1160
1169
|
parent: Widget;
|
|
1161
1170
|
selectedCell: GridLocation | GridLocationConfig;
|
|
@@ -2233,5 +2242,5 @@ export declare class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
2233
2242
|
*/
|
|
2234
2243
|
ngOnDestroy(): void;
|
|
2235
2244
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGridBaseComponent, never>;
|
|
2236
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridBaseComponent, "bryntum-grid-base", 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"; "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"; "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>;
|
|
2245
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridBaseComponent, "bryntum-grid-base", 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"; "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>;
|
|
2237
2246
|
}
|
|
@@ -31,6 +31,8 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
31
31
|
/**
|
|
32
32
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
33
33
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
34
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
|
|
34
36
|
*/
|
|
35
37
|
appendTo?: HTMLElement | string;
|
|
36
38
|
/**
|
|
@@ -64,9 +66,10 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
64
66
|
catchEventHandlerExceptions?: boolean;
|
|
65
67
|
/**
|
|
66
68
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
67
|
-
*
|
|
69
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-centered)
|
|
70
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
68
71
|
*/
|
|
69
|
-
centered?: boolean;
|
|
72
|
+
centered?: boolean | object;
|
|
70
73
|
/**
|
|
71
74
|
* Custom CSS classes to add to element.
|
|
72
75
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -140,7 +143,7 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
140
143
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
141
144
|
/**
|
|
142
145
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
143
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
146
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
144
147
|
* property which controls when a drag should start.
|
|
145
148
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-draggable)
|
|
146
149
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -208,10 +211,14 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
208
211
|
ignoreParentReadOnly?: boolean;
|
|
209
212
|
/**
|
|
210
213
|
* 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.
|
|
214
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
215
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
|
|
211
216
|
*/
|
|
212
217
|
insertBefore?: HTMLElement | string;
|
|
213
218
|
/**
|
|
214
219
|
* 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.
|
|
220
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
221
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
|
|
215
222
|
*/
|
|
216
223
|
insertFirst?: HTMLElement | string;
|
|
217
224
|
/**
|
|
@@ -349,7 +356,7 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
349
356
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
350
357
|
/**
|
|
351
358
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
352
|
-
* Valid values:
|
|
359
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
353
360
|
*/
|
|
354
361
|
scrollAction?: 'hide' | 'realign' | null;
|
|
355
362
|
/**
|
|
@@ -443,7 +450,6 @@ export declare class BryntumGridChartDesignerComponent implements OnInit, OnDest
|
|
|
443
450
|
ariaDescription: string;
|
|
444
451
|
ariaLabel: string;
|
|
445
452
|
bubbleEvents: object;
|
|
446
|
-
centered: boolean;
|
|
447
453
|
color: Color;
|
|
448
454
|
config: object;
|
|
449
455
|
constrainTo: HTMLElement | Widget | Rectangle;
|
|
@@ -487,6 +493,9 @@ export declare class BryntumGridChartDesignerComponent implements OnInit, OnDest
|
|
|
487
493
|
appendTo: HTMLElement | string;
|
|
488
494
|
callOnFunctions: boolean;
|
|
489
495
|
catchEventHandlerExceptions: boolean;
|
|
496
|
+
centered: boolean | {
|
|
497
|
+
once?: boolean;
|
|
498
|
+
} | boolean | object;
|
|
490
499
|
cls: string | object;
|
|
491
500
|
column: number;
|
|
492
501
|
content: string;
|
|
@@ -642,5 +651,5 @@ export declare class BryntumGridChartDesignerComponent implements OnInit, OnDest
|
|
|
642
651
|
*/
|
|
643
652
|
ngOnDestroy(): void;
|
|
644
653
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGridChartDesignerComponent, never>;
|
|
645
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridChartDesignerComponent, "bryntum-grid-chart-designer", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "
|
|
654
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridChartDesignerComponent, "bryntum-grid-chart-designer", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bubbleEvents": "bubbleEvents"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "grid": "grid"; "hideAnimation": "hideAnimation"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "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"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "sync": "sync"; "tab": "tab"; "tag": "tag"; "textAlign": "textAlign"; "title": "title"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "cls": "cls"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "readOnly": "readOnly"; "rtl": "rtl"; "scrollable": "scrollable"; "span": "span"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
|
|
646
655
|
}
|
|
@@ -41,6 +41,8 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
41
41
|
/**
|
|
42
42
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43
43
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
44
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
44
46
|
*/
|
|
45
47
|
appendTo?: HTMLElement | string;
|
|
46
48
|
/**
|
|
@@ -98,9 +100,10 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
98
100
|
catchEventHandlerExceptions?: boolean;
|
|
99
101
|
/**
|
|
100
102
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
101
|
-
*
|
|
103
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-centered)
|
|
104
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
102
105
|
*/
|
|
103
|
-
centered?: boolean;
|
|
106
|
+
centered?: boolean | object;
|
|
104
107
|
/**
|
|
105
108
|
* Custom CSS classes to add to element.
|
|
106
109
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -189,7 +192,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
189
192
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
190
193
|
/**
|
|
191
194
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
|
|
192
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
195
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
193
196
|
* property which controls when a drag should start.
|
|
194
197
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-draggable)
|
|
195
198
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -289,10 +292,14 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
289
292
|
inputFieldAlign?: 'start' | 'end';
|
|
290
293
|
/**
|
|
291
294
|
* 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.
|
|
295
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
296
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
292
297
|
*/
|
|
293
298
|
insertBefore?: HTMLElement | string;
|
|
294
299
|
/**
|
|
295
300
|
* 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.
|
|
301
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
302
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
296
303
|
*/
|
|
297
304
|
insertFirst?: HTMLElement | string;
|
|
298
305
|
/**
|
|
@@ -318,7 +325,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
318
325
|
*/
|
|
319
326
|
labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
|
|
320
327
|
/**
|
|
321
|
-
* Sets `labelWidth
|
|
328
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
322
329
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelWidth)
|
|
323
330
|
*/
|
|
324
331
|
labelWidth?: number | null;
|
|
@@ -495,7 +502,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
495
502
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
496
503
|
/**
|
|
497
504
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
498
|
-
* Valid values:
|
|
505
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
499
506
|
*/
|
|
500
507
|
scrollAction?: 'hide' | 'realign' | null;
|
|
501
508
|
/**
|
|
@@ -617,7 +624,6 @@ export declare class BryntumGridFieldFilterPickerGroupComponent implements OnIni
|
|
|
617
624
|
bubbleEvents: object;
|
|
618
625
|
canDeleteFilter: (filter: any) => boolean;
|
|
619
626
|
canManageFilter: (filter: any) => boolean;
|
|
620
|
-
centered: boolean;
|
|
621
627
|
color: Color;
|
|
622
628
|
config: object;
|
|
623
629
|
constrainTo: HTMLElement | Widget | Rectangle;
|
|
@@ -675,6 +681,9 @@ export declare class BryntumGridFieldFilterPickerGroupComponent implements OnIni
|
|
|
675
681
|
appendTo: HTMLElement | string;
|
|
676
682
|
callOnFunctions: boolean;
|
|
677
683
|
catchEventHandlerExceptions: boolean;
|
|
684
|
+
centered: boolean | {
|
|
685
|
+
once?: boolean;
|
|
686
|
+
} | boolean | object;
|
|
678
687
|
cls: string | object;
|
|
679
688
|
column: number;
|
|
680
689
|
content: string;
|
|
@@ -872,5 +881,5 @@ export declare class BryntumGridFieldFilterPickerGroupComponent implements OnIni
|
|
|
872
881
|
*/
|
|
873
882
|
ngOnDestroy(): void;
|
|
874
883
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumGridFieldFilterPickerGroupComponent, never>;
|
|
875
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridFieldFilterPickerGroupComponent, "bryntum-grid-field-filter-picker-group", never, { "addFilterButtonText": "addFilterButtonText"; "adopt": "adopt"; "align": "align"; "allowedFieldNames": "allowedFieldNames"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "border": "border"; "bubbleEvents": "bubbleEvents"; "canDeleteFilter": "canDeleteFilter"; "canManageFilter": "canManageFilter"; "
|
|
884
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumGridFieldFilterPickerGroupComponent, "bryntum-grid-field-filter-picker-group", never, { "addFilterButtonText": "addFilterButtonText"; "adopt": "adopt"; "align": "align"; "allowedFieldNames": "allowedFieldNames"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "border": "border"; "bubbleEvents": "bubbleEvents"; "canDeleteFilter": "canDeleteFilter"; "canManageFilter": "canManageFilter"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "dateFormat": "dateFormat"; "defaultBindProperty": "defaultBindProperty"; "defaultFocus": "defaultFocus"; "defaults": "defaults"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "filters": "filters"; "floating": "floating"; "getFieldFilterPickerConfig": "getFieldFilterPickerConfig"; "grid": "grid"; "hideAnimation": "hideAnimation"; "hideWhenEmpty": "hideWhenEmpty"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "itemCls": "itemCls"; "lazyItems": "lazyItems"; "limitToProperty": "limitToProperty"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "namedItems": "namedItems"; "operators": "operators"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAddFilterButton": "showAddFilterButton"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tag": "tag"; "textAlign": "textAlign"; "textContent": "textContent"; "title": "title"; "triggerChangeOnInput": "triggerChangeOnInput"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "cls": "cls"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "labelWidth": "labelWidth"; "layout": "layout"; "layoutStyle": "layoutStyle"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "readOnly": "readOnly"; "record": "record"; "rendition": "rendition"; "rtl": "rtl"; "scrollable": "scrollable"; "span": "span"; "strictRecordMapping": "strictRecordMapping"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; "value": "value"; "values": "values"; }, { "onBeforeAddFilter": "onBeforeAddFilter"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
|
|
876
885
|
}
|