@bryntum/grid-angular-thin 7.3.0 → 7.3.2
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 +5 -5
- package/bundles/bryntum-grid-angular-thin.umd.js +15 -3
- 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 +1 -1
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +1 -1
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +1 -1
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +1 -1
- package/esm2015/lib/bryntum-grid.component.js +1 -1
- package/esm2015/lib/bryntum-group-bar.component.js +1 -1
- package/esm2015/lib/bryntum-tree-combo.component.js +6 -2
- package/esm2015/lib/bryntum-tree-grid.component.js +1 -1
- package/fesm2015/bryntum-grid-angular-thin.js +15 -3
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +17 -1
- package/lib/bryntum-checklist-filter-combo.component.d.ts +17 -1
- package/lib/bryntum-grid-base.component.d.ts +6 -0
- package/lib/bryntum-grid-chart-designer.component.d.ts +6 -0
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +6 -0
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +6 -0
- package/lib/bryntum-grid.component.d.ts +6 -0
- package/lib/bryntum-group-bar.component.d.ts +10 -2
- package/lib/bryntum-tree-combo.component.d.ts +17 -1
- package/lib/bryntum-tree-grid.component.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +19 -1
- package/src/lib/bryntum-checklist-filter-combo.component.ts +19 -1
- package/src/lib/bryntum-grid-base.component.ts +31 -25
- package/src/lib/bryntum-grid-chart-designer.component.ts +7 -1
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +8 -2
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +7 -1
- package/src/lib/bryntum-grid.component.ts +31 -25
- package/src/lib/bryntum-group-bar.component.ts +12 -4
- package/src/lib/bryntum-theme-combo.component.ts +0 -1
- package/src/lib/bryntum-tree-combo.component.ts +19 -1
- package/src/lib/bryntum-tree-grid.component.ts +31 -25
|
@@ -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
|
/**
|
|
@@ -80,6 +82,15 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
80
82
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
81
83
|
*/
|
|
82
84
|
centered?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
87
|
+
* 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)
|
|
88
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
89
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-checkValidity)
|
|
90
|
+
* @param {Core.widget.Field} field The field being validated
|
|
91
|
+
* @returns {void}
|
|
92
|
+
*/
|
|
93
|
+
checkValidity?: ((field: Field) => void) | string;
|
|
83
94
|
/**
|
|
84
95
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
85
96
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
@@ -294,10 +305,14 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
294
305
|
inputWidth?: string | number;
|
|
295
306
|
/**
|
|
296
307
|
* 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.
|
|
308
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
309
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
297
310
|
*/
|
|
298
311
|
insertBefore?: HTMLElement | string;
|
|
299
312
|
/**
|
|
300
313
|
* 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.
|
|
314
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
315
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
301
316
|
*/
|
|
302
317
|
insertFirst?: HTMLElement | string;
|
|
303
318
|
/**
|
|
@@ -624,6 +639,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
|
|
|
624
639
|
autoSelect: boolean;
|
|
625
640
|
bubbleEvents: object;
|
|
626
641
|
centered: boolean;
|
|
642
|
+
checkValidity: ((field: Field) => void) | string;
|
|
627
643
|
clearable: boolean | FieldTriggerConfig;
|
|
628
644
|
client: Grid;
|
|
629
645
|
color: Color;
|
|
@@ -910,5 +926,5 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
|
|
|
910
926
|
*/
|
|
911
927
|
ngOnDestroy(): void;
|
|
912
928
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumAIFilterFieldComponent, never>;
|
|
913
|
-
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"; "centered": "centered"; "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"; "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>;
|
|
929
|
+
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"; "centered": "centered"; "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"; "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>;
|
|
914
930
|
}
|
|
@@ -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
|
/**
|
|
@@ -93,6 +95,15 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
93
95
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
94
96
|
*/
|
|
95
97
|
centered?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
100
|
+
* 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)
|
|
101
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
102
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-checkValidity)
|
|
103
|
+
* @param {Core.widget.Field} field The field being validated
|
|
104
|
+
* @returns {void}
|
|
105
|
+
*/
|
|
106
|
+
checkValidity?: ((field: Field) => void) | string;
|
|
96
107
|
/**
|
|
97
108
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
98
109
|
* selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
|
|
@@ -392,10 +403,14 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
392
403
|
inputWidth?: string | number;
|
|
393
404
|
/**
|
|
394
405
|
* 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.
|
|
406
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
407
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
395
408
|
*/
|
|
396
409
|
insertBefore?: HTMLElement | string;
|
|
397
410
|
/**
|
|
398
411
|
* 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.
|
|
412
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
413
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
399
414
|
*/
|
|
400
415
|
insertFirst?: HTMLElement | string;
|
|
401
416
|
/**
|
|
@@ -813,6 +828,7 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
813
828
|
cacheLastResult: number | string | Duration | DurationConfig;
|
|
814
829
|
caseSensitive: boolean;
|
|
815
830
|
centered: boolean;
|
|
831
|
+
checkValidity: ((field: Field) => void) | string;
|
|
816
832
|
chipView: ChipViewConfig;
|
|
817
833
|
clearable: boolean | FieldTriggerConfig;
|
|
818
834
|
clearTextOnPickerHide: boolean;
|
|
@@ -1138,5 +1154,5 @@ export declare class BryntumChecklistFilterComboComponent implements OnInit, OnD
|
|
|
1138
1154
|
*/
|
|
1139
1155
|
ngOnDestroy(): void;
|
|
1140
1156
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumChecklistFilterComboComponent, never>;
|
|
1141
|
-
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"; "centered": "centered"; "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"; "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>;
|
|
1157
|
+
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"; "centered": "centered"; "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"; "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>;
|
|
1142
1158
|
}
|
|
@@ -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
|
/**
|
|
@@ -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
|
/**
|
|
@@ -208,10 +210,14 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
208
210
|
ignoreParentReadOnly?: boolean;
|
|
209
211
|
/**
|
|
210
212
|
* 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.
|
|
213
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
214
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
|
|
211
215
|
*/
|
|
212
216
|
insertBefore?: HTMLElement | string;
|
|
213
217
|
/**
|
|
214
218
|
* 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.
|
|
219
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
220
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
|
|
215
221
|
*/
|
|
216
222
|
insertFirst?: HTMLElement | string;
|
|
217
223
|
/**
|
|
@@ -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
|
/**
|
|
@@ -289,10 +291,14 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
289
291
|
inputFieldAlign?: 'start' | 'end';
|
|
290
292
|
/**
|
|
291
293
|
* 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.
|
|
294
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
295
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
292
296
|
*/
|
|
293
297
|
insertBefore?: HTMLElement | string;
|
|
294
298
|
/**
|
|
295
299
|
* 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.
|
|
300
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
301
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
296
302
|
*/
|
|
297
303
|
insertFirst?: HTMLElement | string;
|
|
298
304
|
/**
|
|
@@ -38,6 +38,8 @@ export declare type BryntumGridFieldFilterPickerProps = {
|
|
|
38
38
|
/**
|
|
39
39
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
40
40
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
41
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
|
|
41
43
|
*/
|
|
42
44
|
appendTo?: HTMLElement | string;
|
|
43
45
|
/**
|
|
@@ -274,10 +276,14 @@ export declare type BryntumGridFieldFilterPickerProps = {
|
|
|
274
276
|
inputFieldAlign?: 'start' | 'end';
|
|
275
277
|
/**
|
|
276
278
|
* 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.
|
|
279
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
280
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
|
|
277
281
|
*/
|
|
278
282
|
insertBefore?: HTMLElement | string;
|
|
279
283
|
/**
|
|
280
284
|
* 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.
|
|
285
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
286
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
|
|
281
287
|
*/
|
|
282
288
|
insertFirst?: HTMLElement | string;
|
|
283
289
|
/**
|
|
@@ -39,6 +39,8 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#config-appendTo)
|
|
42
44
|
*/
|
|
43
45
|
appendTo?: HTMLElement | string;
|
|
44
46
|
/**
|
|
@@ -360,10 +362,14 @@ export declare type BryntumGridProps = {
|
|
|
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/Grid#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/Grid#config-insertFirst)
|
|
367
373
|
*/
|
|
368
374
|
insertFirst?: HTMLElement | string;
|
|
369
375
|
/**
|
|
@@ -41,6 +41,8 @@ export declare type BryntumGroupBarProps = {
|
|
|
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/GroupBar#config-appendTo)
|
|
44
46
|
*/
|
|
45
47
|
appendTo?: HTMLElement | string;
|
|
46
48
|
/**
|
|
@@ -90,9 +92,11 @@ export declare type BryntumGroupBarProps = {
|
|
|
90
92
|
/**
|
|
91
93
|
* If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
92
94
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
95
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
96
|
+
* @param {object} options Close options
|
|
93
97
|
* @returns {void}
|
|
94
98
|
*/
|
|
95
|
-
closeHandler?: string | (() => void);
|
|
99
|
+
closeHandler?: string | ((records: Model[], options: object) => void);
|
|
96
100
|
/**
|
|
97
101
|
* Custom CSS classes to add to element.
|
|
98
102
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -269,10 +273,14 @@ export declare type BryntumGroupBarProps = {
|
|
|
269
273
|
ignoreParentReadOnly?: boolean;
|
|
270
274
|
/**
|
|
271
275
|
* 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.
|
|
276
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
277
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
|
|
272
278
|
*/
|
|
273
279
|
insertBefore?: HTMLElement | string;
|
|
274
280
|
/**
|
|
275
281
|
* 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.
|
|
282
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
283
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertFirst)
|
|
276
284
|
*/
|
|
277
285
|
insertFirst?: HTMLElement | string;
|
|
278
286
|
/**
|
|
@@ -559,7 +567,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
559
567
|
bubbleEvents: object;
|
|
560
568
|
centered: boolean;
|
|
561
569
|
closable: boolean;
|
|
562
|
-
closeHandler: string | (() => void);
|
|
570
|
+
closeHandler: string | ((records: Model[], options: object) => void);
|
|
563
571
|
color: Color;
|
|
564
572
|
config: object;
|
|
565
573
|
constrainTo: HTMLElement | Widget | Rectangle;
|
|
@@ -31,6 +31,8 @@ export declare type BryntumTreeComboProps = {
|
|
|
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/TreeCombo#config-appendTo)
|
|
34
36
|
*/
|
|
35
37
|
appendTo?: HTMLElement | string;
|
|
36
38
|
/**
|
|
@@ -93,6 +95,15 @@ export declare type BryntumTreeComboProps = {
|
|
|
93
95
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
94
96
|
*/
|
|
95
97
|
centered?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
100
|
+
* 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)
|
|
101
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
102
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-checkValidity)
|
|
103
|
+
* @param {Core.widget.Field} field The field being validated
|
|
104
|
+
* @returns {void}
|
|
105
|
+
*/
|
|
106
|
+
checkValidity?: ((field: Field) => void) | string;
|
|
96
107
|
/**
|
|
97
108
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
98
109
|
* selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
|
|
@@ -392,10 +403,14 @@ export declare type BryntumTreeComboProps = {
|
|
|
392
403
|
inputWidth?: string | number;
|
|
393
404
|
/**
|
|
394
405
|
* 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.
|
|
406
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
407
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
|
|
395
408
|
*/
|
|
396
409
|
insertBefore?: HTMLElement | string;
|
|
397
410
|
/**
|
|
398
411
|
* 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.
|
|
412
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
413
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
|
|
399
414
|
*/
|
|
400
415
|
insertFirst?: HTMLElement | string;
|
|
401
416
|
/**
|
|
@@ -804,6 +819,7 @@ export declare class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
804
819
|
cacheLastResult: number | string | Duration | DurationConfig;
|
|
805
820
|
caseSensitive: boolean;
|
|
806
821
|
centered: boolean;
|
|
822
|
+
checkValidity: ((field: Field) => void) | string;
|
|
807
823
|
chipView: ChipViewConfig;
|
|
808
824
|
clearable: boolean | FieldTriggerConfig;
|
|
809
825
|
clearTextOnPickerHide: boolean;
|
|
@@ -1126,5 +1142,5 @@ export declare class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
1126
1142
|
*/
|
|
1127
1143
|
ngOnDestroy(): void;
|
|
1128
1144
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumTreeComboComponent, never>;
|
|
1129
|
-
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"; "centered": "centered"; "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"; "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>;
|
|
1145
|
+
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"; "centered": "centered"; "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"; "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>;
|
|
1130
1146
|
}
|
|
@@ -39,6 +39,8 @@ export declare type BryntumTreeGridProps = {
|
|
|
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/TreeGrid#config-appendTo)
|
|
42
44
|
*/
|
|
43
45
|
appendTo?: HTMLElement | string;
|
|
44
46
|
/**
|
|
@@ -360,10 +362,14 @@ export declare type BryntumTreeGridProps = {
|
|
|
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/TreeGrid#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/TreeGrid#config-insertFirst)
|
|
367
373
|
*/
|
|
368
374
|
insertFirst?: HTMLElement | string;
|
|
369
375
|
/**
|
package/package.json
CHANGED
|
@@ -40,6 +40,8 @@ export type BryntumAIFilterFieldProps = {
|
|
|
40
40
|
/**
|
|
41
41
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
42
42
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
43
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
|
|
43
45
|
*/
|
|
44
46
|
appendTo ? : HTMLElement|string
|
|
45
47
|
/**
|
|
@@ -89,6 +91,15 @@ export type BryntumAIFilterFieldProps = {
|
|
|
89
91
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
90
92
|
*/
|
|
91
93
|
centered ? : boolean
|
|
94
|
+
/**
|
|
95
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
96
|
+
* 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)
|
|
97
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
98
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-checkValidity)
|
|
99
|
+
* @param {Core.widget.Field} field The field being validated
|
|
100
|
+
* @returns {void}
|
|
101
|
+
*/
|
|
102
|
+
checkValidity ? : ((field: Field) => void)|string
|
|
92
103
|
/**
|
|
93
104
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
94
105
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
@@ -297,10 +308,14 @@ export type BryntumAIFilterFieldProps = {
|
|
|
297
308
|
inputWidth ? : string|number
|
|
298
309
|
/**
|
|
299
310
|
* 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.
|
|
311
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
312
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
300
313
|
*/
|
|
301
314
|
insertBefore ? : HTMLElement|string
|
|
302
315
|
/**
|
|
303
316
|
* 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.
|
|
317
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
318
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
304
319
|
*/
|
|
305
320
|
insertFirst ? : HTMLElement|string
|
|
306
321
|
/**
|
|
@@ -659,6 +674,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
659
674
|
'callOnFunctions',
|
|
660
675
|
'catchEventHandlerExceptions',
|
|
661
676
|
'centered',
|
|
677
|
+
'checkValidity',
|
|
662
678
|
'clearable',
|
|
663
679
|
'client',
|
|
664
680
|
'cls',
|
|
@@ -766,6 +782,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
766
782
|
'autoSelect',
|
|
767
783
|
'bubbleEvents',
|
|
768
784
|
'centered',
|
|
785
|
+
'checkValidity',
|
|
769
786
|
'clearable',
|
|
770
787
|
'client',
|
|
771
788
|
'color',
|
|
@@ -903,6 +920,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
903
920
|
@Input() autoSelect ! : boolean;
|
|
904
921
|
@Input() bubbleEvents ! : object;
|
|
905
922
|
@Input() centered ! : boolean;
|
|
923
|
+
@Input() checkValidity ! : ((field: Field) => void)|string;
|
|
906
924
|
@Input() clearable ! : boolean|FieldTriggerConfig;
|
|
907
925
|
@Input() client ! : Grid;
|
|
908
926
|
@Input() color ! : Color;
|
|
@@ -1040,7 +1058,7 @@ export class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
|
|
|
1040
1058
|
* @param {object} event Event object
|
|
1041
1059
|
* @param {Core.widget.Widget} event.source The widget being hidden.
|
|
1042
1060
|
*/
|
|
1043
|
-
@Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) =>
|
|
1061
|
+
@Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => boolean|void)|string>();
|
|
1044
1062
|
/**
|
|
1045
1063
|
* Triggered before a widget is shown. Return `false` to prevent the action.
|
|
1046
1064
|
* @param {object} event Event object
|
|
@@ -40,6 +40,8 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
40
40
|
/**
|
|
41
41
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
42
42
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
43
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
|
|
43
45
|
*/
|
|
44
46
|
appendTo ? : HTMLElement|string
|
|
45
47
|
/**
|
|
@@ -102,6 +104,15 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
102
104
|
* Set to `true` to centre the Widget in browser viewport space.
|
|
103
105
|
*/
|
|
104
106
|
centered ? : boolean
|
|
107
|
+
/**
|
|
108
|
+
* A function (or the name of a function in the ownership hierarchy) called during field validation
|
|
109
|
+
* 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)
|
|
110
|
+
* evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
|
|
111
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-checkValidity)
|
|
112
|
+
* @param {Core.widget.Field} field The field being validated
|
|
113
|
+
* @returns {void}
|
|
114
|
+
*/
|
|
115
|
+
checkValidity ? : ((field: Field) => void)|string
|
|
105
116
|
/**
|
|
106
117
|
* A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
|
|
107
118
|
* selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
|
|
@@ -395,10 +406,14 @@ export type BryntumChecklistFilterComboProps = {
|
|
|
395
406
|
inputWidth ? : string|number
|
|
396
407
|
/**
|
|
397
408
|
* 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.
|
|
409
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
410
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
398
411
|
*/
|
|
399
412
|
insertBefore ? : HTMLElement|string
|
|
400
413
|
/**
|
|
401
414
|
* 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.
|
|
415
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
416
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
402
417
|
*/
|
|
403
418
|
insertFirst ? : HTMLElement|string
|
|
404
419
|
/**
|
|
@@ -849,6 +864,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
849
864
|
'caseSensitive',
|
|
850
865
|
'catchEventHandlerExceptions',
|
|
851
866
|
'centered',
|
|
867
|
+
'checkValidity',
|
|
852
868
|
'chipView',
|
|
853
869
|
'clearable',
|
|
854
870
|
'clearTextOnPickerHide',
|
|
@@ -991,6 +1007,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
991
1007
|
'cacheLastResult',
|
|
992
1008
|
'caseSensitive',
|
|
993
1009
|
'centered',
|
|
1010
|
+
'checkValidity',
|
|
994
1011
|
'chipView',
|
|
995
1012
|
'clearable',
|
|
996
1013
|
'clearTextOnPickerHide',
|
|
@@ -1164,6 +1181,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
1164
1181
|
@Input() cacheLastResult ! : number|string|Duration|DurationConfig;
|
|
1165
1182
|
@Input() caseSensitive ! : boolean;
|
|
1166
1183
|
@Input() centered ! : boolean;
|
|
1184
|
+
@Input() checkValidity ! : ((field: Field) => void)|string;
|
|
1167
1185
|
@Input() chipView ! : ChipViewConfig;
|
|
1168
1186
|
@Input() clearable ! : boolean|FieldTriggerConfig;
|
|
1169
1187
|
@Input() clearTextOnPickerHide ! : boolean;
|
|
@@ -1330,7 +1348,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
|
|
|
1330
1348
|
* @param {object} event Event object
|
|
1331
1349
|
* @param {Core.widget.Widget} event.source The widget being hidden.
|
|
1332
1350
|
*/
|
|
1333
|
-
@Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) =>
|
|
1351
|
+
@Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => boolean|void)|string>();
|
|
1334
1352
|
/**
|
|
1335
1353
|
* Triggered before a widget is shown. Return `false` to prevent the action.
|
|
1336
1354
|
* @param {object} event Event object
|