cps-ui-kit 17.15.0 → 17.16.0
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/esm2022/lib/components/cps-tree-autocomplete/cps-tree-autocomplete.component.mjs +23 -23
- package/esm2022/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.mjs +83 -83
- package/fesm2022/cps-ui-kit.mjs +104 -104
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-tree-autocomplete/cps-tree-autocomplete.component.d.ts +2 -2
- package/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.d.ts +11 -11
- package/package.json +1 -1
|
@@ -44,12 +44,12 @@ export declare class CpsTreeAutocompleteComponent extends CpsBaseTreeDropdownCom
|
|
|
44
44
|
onInputKeyDown(event: any): void;
|
|
45
45
|
onChevronClick(event: any): void;
|
|
46
46
|
remove(option: TreeNode): void;
|
|
47
|
-
|
|
48
|
-
clear(event: any): void;
|
|
47
|
+
clear(event?: any): void;
|
|
49
48
|
focusInput(): void;
|
|
50
49
|
focus(): void;
|
|
51
50
|
onFilterOptions(): void;
|
|
52
51
|
filterOptions(event: any): void;
|
|
52
|
+
private _select;
|
|
53
53
|
private _getValueLabel;
|
|
54
54
|
private _clearInput;
|
|
55
55
|
private _closeAndClear;
|
package/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.d.ts
CHANGED
|
@@ -185,38 +185,38 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
185
185
|
ngOnInit(): void;
|
|
186
186
|
ngAfterViewInit(): void;
|
|
187
187
|
ngOnDestroy(): void;
|
|
188
|
-
private _initContainerClickListener;
|
|
189
|
-
private _handleOnContainerClick;
|
|
190
188
|
onChange: (event: any) => void;
|
|
191
189
|
onTouched: () => void;
|
|
192
190
|
registerOnChange(fn: any): void;
|
|
193
191
|
registerOnTouched(fn: any): void;
|
|
194
192
|
writeValue(value: any, internal?: boolean): void;
|
|
193
|
+
setDisabledState(disabled: boolean): void;
|
|
194
|
+
onBlur(): void;
|
|
195
|
+
focus(): void;
|
|
195
196
|
updateValue(value: any): void;
|
|
197
|
+
clear(event?: any): void;
|
|
196
198
|
onSelectNode(): void;
|
|
197
199
|
onClickFullyExpandable(elem: HTMLElement): void;
|
|
198
|
-
private _getHTMLElementKey;
|
|
199
200
|
treeSelectionChanged(selection: any): void;
|
|
200
201
|
recalcVirtualListHeight(): void;
|
|
201
202
|
toggleOptions(show?: boolean): void;
|
|
202
203
|
remove(option: TreeNode): void;
|
|
203
204
|
initArrowsNavigaton(): void;
|
|
205
|
+
onNodeExpand(event: any): void;
|
|
206
|
+
onNodeCollapse(event: any): void;
|
|
207
|
+
treeSelectionToValue(selection: any): any;
|
|
208
|
+
updateOptions(): void;
|
|
209
|
+
private _initContainerClickListener;
|
|
210
|
+
private _handleOnContainerClick;
|
|
211
|
+
private _getHTMLElementKey;
|
|
204
212
|
private _setTreeListHeight;
|
|
205
213
|
private _nodeToggled;
|
|
206
214
|
private _nodeToggledWithChevron;
|
|
207
|
-
onNodeExpand(event: any): void;
|
|
208
|
-
onNodeCollapse(event: any): void;
|
|
209
|
-
clear(event: any): void;
|
|
210
215
|
private _checkErrors;
|
|
211
|
-
setDisabledState(disabled: boolean): void;
|
|
212
|
-
onBlur(): void;
|
|
213
|
-
focus(): void;
|
|
214
216
|
private _expandToNodes;
|
|
215
217
|
private _toInnerOptions;
|
|
216
218
|
private _buildOptionsMap;
|
|
217
|
-
treeSelectionToValue(selection: any): any;
|
|
218
219
|
private _valueToTreeSelection;
|
|
219
|
-
updateOptions(): void;
|
|
220
220
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsBaseTreeDropdownComponent, [{ optional: true; self: true; }, null]>;
|
|
221
221
|
static ɵcmp: i0.ɵɵComponentDeclaration<CpsBaseTreeDropdownComponent, "ng-component", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "width": { "alias": "width"; "required": false; }; "chips": { "alias": "chips"; "required": false; }; "closableChips": { "alias": "closableChips"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "openOnClear": { "alias": "openOnClear"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionInfo": { "alias": "optionInfo"; "required": false; }; "hideDetails": { "alias": "hideDetails"; "required": false; }; "persistentClear": { "alias": "persistentClear"; "required": false; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "prefixIconSize": { "alias": "prefixIconSize"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "numToleratedItems": { "alias": "numToleratedItems"; "required": false; }; "infoTooltip": { "alias": "infoTooltip"; "required": false; }; "infoTooltipClass": { "alias": "infoTooltipClass"; "required": false; }; "infoTooltipMaxWidth": { "alias": "infoTooltipMaxWidth"; "required": false; }; "infoTooltipPersistent": { "alias": "infoTooltipPersistent"; "required": false; }; "infoTooltipPosition": { "alias": "infoTooltipPosition"; "required": false; }; "initialExpandDirectories": { "alias": "initialExpandDirectories"; "required": false; }; "initialExpandAll": { "alias": "initialExpandAll"; "required": false; }; "showChevron": { "alias": "showChevron"; "required": false; }; "options": { "alias": "options"; "required": false; }; "_value": { "alias": "value"; "required": false; }; }, { "valueChanged": "valueChanged"; }, never, never, false, never>;
|
|
222
222
|
}
|