@kris701/ez-ui 1.4.12 → 1.4.13
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/package.json
CHANGED
package/types/kris701-ez-ui.d.ts
CHANGED
|
@@ -206,9 +206,10 @@ declare class EzUITreeMultiSelect implements OnChanges {
|
|
|
206
206
|
enableSearch: boolean;
|
|
207
207
|
searchValue: i0.WritableSignal<string>;
|
|
208
208
|
showClear: boolean;
|
|
209
|
-
protected map: Map<
|
|
209
|
+
protected map: Map<string, boolean>;
|
|
210
210
|
protected visMap: Map<TreeMultiSelectNode, boolean>;
|
|
211
211
|
ngOnChanges(changes: SimpleChanges): void;
|
|
212
|
+
setIDs(parent: TreeMultiSelectNode, prefix: string): void;
|
|
212
213
|
stringify: (value: TreeMultiSelectNode) => string;
|
|
213
214
|
expandAll(): void;
|
|
214
215
|
expandAllRec(from: TreeMultiSelectNode): void;
|
|
@@ -217,11 +218,12 @@ declare class EzUITreeMultiSelect implements OnChanges {
|
|
|
217
218
|
searchChange(): void;
|
|
218
219
|
expandSearchRec(from: TreeMultiSelectNode, newMap: Map<TreeMultiSelectNode, boolean>): boolean;
|
|
219
220
|
onChecked(node: TreeMultiSelectNode, value: boolean): void;
|
|
220
|
-
readonly getValue: (item: TreeMultiSelectNode, map: Map<
|
|
221
|
+
readonly getValue: (item: TreeMultiSelectNode, map: Map<string, boolean>) => boolean | null;
|
|
221
222
|
static ɵfac: i0.ɵɵFactoryDeclaration<EzUITreeMultiSelect, never>;
|
|
222
223
|
static ɵcmp: i0.ɵɵComponentDeclaration<EzUITreeMultiSelect, "ezui-treemultiselect", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "options": { "alias": "options"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; }, { "selectedChange": "selectedChange"; }, ["itemTemplate"], never, true, never>;
|
|
223
224
|
}
|
|
224
225
|
interface TreeMultiSelectNode {
|
|
226
|
+
id: string;
|
|
225
227
|
icon?: string;
|
|
226
228
|
label: string;
|
|
227
229
|
children: TreeMultiSelectNode[];
|