@meshmakers/shared-ui 3.3.480 → 3.3.490
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
|
@@ -11,8 +11,8 @@ import { State } from '@progress/kendo-data-query/dist/npm/state';
|
|
|
11
11
|
import { PagerSettings, SelectableSettings, SelectionEvent, PageChangeEvent, CellClickEvent, DataBindingDirective } from '@progress/kendo-angular-grid';
|
|
12
12
|
import { SVGIcon as SVGIcon$1 } from '@progress/kendo-svg-icons/dist/svg-icon.interface';
|
|
13
13
|
import { MenuItem, ContextMenuComponent, ContextMenuSelectEvent, ContextMenuPopupEvent } from '@progress/kendo-angular-menu';
|
|
14
|
-
import { DialogContentBase, DialogRef } from '@progress/kendo-angular-dialog';
|
|
15
14
|
import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
|
|
15
|
+
import { DialogContentBase, DialogRef } from '@progress/kendo-angular-dialog';
|
|
16
16
|
import { CanDeactivate } from '@angular/router';
|
|
17
17
|
|
|
18
18
|
/**
|
|
@@ -887,8 +887,8 @@ declare class EntitySelectInputComponent implements OnInit, OnDestroy, ControlVa
|
|
|
887
887
|
static ɵcmp: i0.ɵɵComponentDeclaration<EntitySelectInputComponent, "mm-entity-select-input", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "minSearchLength": { "alias": "minSearchLength"; "required": false; }; "maxResults": { "alias": "maxResults"; "required": false; }; "debounceMs": { "alias": "debounceMs"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "dialogDataSource": { "alias": "dialogDataSource"; "required": false; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "advancedSearchLabel": { "alias": "advancedSearchLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "entitySelected": "entitySelected"; "entityCleared": "entityCleared"; "entitiesSelected": "entitiesSelected"; }, never, never, true, never>;
|
|
888
888
|
}
|
|
889
889
|
|
|
890
|
-
declare class EntitySelectDialogComponent<T>
|
|
891
|
-
private readonly
|
|
890
|
+
declare class EntitySelectDialogComponent<T> implements OnInit, OnDestroy {
|
|
891
|
+
private readonly windowRef;
|
|
892
892
|
private searchSubject;
|
|
893
893
|
private destroy$;
|
|
894
894
|
dataSource: EntitySelectDialogDataSource<T>;
|
|
@@ -907,7 +907,6 @@ declare class EntitySelectDialogComponent<T> extends DialogContentBase implement
|
|
|
907
907
|
skip: number;
|
|
908
908
|
pageable: PagerSettings;
|
|
909
909
|
get selectableSettings(): SelectableSettings;
|
|
910
|
-
constructor();
|
|
911
910
|
ngOnInit(): void;
|
|
912
911
|
ngOnDestroy(): void;
|
|
913
912
|
private initializeColumns;
|
|
@@ -924,7 +923,7 @@ declare class EntitySelectDialogComponent<T> extends DialogContentBase implement
|
|
|
924
923
|
}
|
|
925
924
|
|
|
926
925
|
declare class EntitySelectDialogService {
|
|
927
|
-
private readonly
|
|
926
|
+
private readonly windowService;
|
|
928
927
|
/**
|
|
929
928
|
* Opens the entity select dialog
|
|
930
929
|
* @param dataSource The data source providing grid data and column definitions
|