@meshmakers/shared-ui 3.3.560 → 3.3.570
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
|
@@ -920,6 +920,7 @@ declare class MessageDetailsDialogComponent implements OnInit {
|
|
|
920
920
|
|
|
921
921
|
declare class MessageDetailsDialogService {
|
|
922
922
|
private readonly windowService;
|
|
923
|
+
private readonly windowStateService;
|
|
923
924
|
/**
|
|
924
925
|
* Opens a resizable window to show message details with copy-to-clipboard functionality
|
|
925
926
|
*/
|
|
@@ -1058,6 +1059,7 @@ declare class EntitySelectInputComponent implements OnInit, OnDestroy, ControlVa
|
|
|
1058
1059
|
maxResults: number;
|
|
1059
1060
|
debounceMs: number;
|
|
1060
1061
|
prefix: string;
|
|
1062
|
+
set initialDisplayValue(value: string | undefined);
|
|
1061
1063
|
dialogDataSource?: EntitySelectDialogDataSource<any>;
|
|
1062
1064
|
dialogTitle: string;
|
|
1063
1065
|
multiSelect: boolean;
|
|
@@ -1106,7 +1108,7 @@ declare class EntitySelectInputComponent implements OnInit, OnDestroy, ControlVa
|
|
|
1106
1108
|
private selectEntity;
|
|
1107
1109
|
openAdvancedSearch(event?: Event): Promise<void>;
|
|
1108
1110
|
static ɵfac: i0.ɵɵFactoryDeclaration<EntitySelectInputComponent, never>;
|
|
1109
|
-
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; }; "dialogMessages": { "alias": "dialogMessages"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "entitySelected": "entitySelected"; "entityCleared": "entityCleared"; "entitiesSelected": "entitiesSelected"; }, never, never, true, never>;
|
|
1111
|
+
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; }; "initialDisplayValue": { "alias": "initialDisplayValue"; "required": false; }; "dialogDataSource": { "alias": "dialogDataSource"; "required": false; }; "dialogTitle": { "alias": "dialogTitle"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "advancedSearchLabel": { "alias": "advancedSearchLabel"; "required": false; }; "dialogMessages": { "alias": "dialogMessages"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "entitySelected": "entitySelected"; "entityCleared": "entityCleared"; "entitiesSelected": "entitiesSelected"; }, never, never, true, never>;
|
|
1110
1112
|
}
|
|
1111
1113
|
|
|
1112
1114
|
declare class EntitySelectDialogComponent<T> implements OnInit, OnDestroy {
|
|
@@ -1148,6 +1150,7 @@ declare class EntitySelectDialogComponent<T> implements OnInit, OnDestroy {
|
|
|
1148
1150
|
|
|
1149
1151
|
declare class EntitySelectDialogService {
|
|
1150
1152
|
private readonly windowService;
|
|
1153
|
+
private readonly windowStateService;
|
|
1151
1154
|
/**
|
|
1152
1155
|
* Opens the entity select dialog
|
|
1153
1156
|
* @param dataSource The data source providing grid data and column definitions
|
|
@@ -1901,7 +1904,34 @@ declare class ImportStrategyDialogService {
|
|
|
1901
1904
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImportStrategyDialogService>;
|
|
1902
1905
|
}
|
|
1903
1906
|
|
|
1907
|
+
interface WindowDimensions {
|
|
1908
|
+
width: number;
|
|
1909
|
+
height: number;
|
|
1910
|
+
}
|
|
1911
|
+
declare class WindowStateService {
|
|
1912
|
+
private readonly storageKey;
|
|
1913
|
+
private activeBackdrops;
|
|
1914
|
+
getDimensions(dialogKey: string): WindowDimensions | null;
|
|
1915
|
+
saveDimensions(dialogKey: string, dimensions: WindowDimensions): void;
|
|
1916
|
+
clearDimensions(dialogKey: string): void;
|
|
1917
|
+
resolveWindowSize(dialogKey: string, defaults: WindowDimensions): WindowDimensions;
|
|
1918
|
+
captureAndSave(dialogKey: string, windowElement: HTMLElement): void;
|
|
1919
|
+
/**
|
|
1920
|
+
* Applies modal behavior to a Kendo WindowRef: shows a dark backdrop overlay
|
|
1921
|
+
* that blocks interaction with the background, and removes it when the window closes.
|
|
1922
|
+
* Also captures and saves window dimensions on close.
|
|
1923
|
+
*/
|
|
1924
|
+
applyModalBehavior(dialogKey: string, windowRef: WindowRef): void;
|
|
1925
|
+
private showBackdrop;
|
|
1926
|
+
private hideBackdrop;
|
|
1927
|
+
private getOrCreateBackdropElement;
|
|
1928
|
+
private loadStates;
|
|
1929
|
+
private saveStates;
|
|
1930
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WindowStateService, never>;
|
|
1931
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WindowStateService>;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1904
1934
|
declare function provideMmSharedUi(): EnvironmentProviders;
|
|
1905
1935
|
|
|
1906
|
-
export { BaseFormComponent, BaseTreeDetailComponent, ButtonTypes, BytesToSizePipe, CRON_PRESETS, ConfirmationService, ConfirmationWindowResult, CopyableTextComponent, CronBuilderComponent, CronHumanizerService, CronParserService, DEFAULT_CRON_BUILDER_CONFIG, DEFAULT_ENTITY_SELECT_DIALOG_MESSAGES, DEFAULT_ENTITY_SELECT_INPUT_MESSAGES, DEFAULT_LIST_VIEW_MESSAGES, DEFAULT_RESPONSIVE_COLSPAN, DEFAULT_TIME_RANGE_LABELS, DataSourceBase, DataSourceTyped, DialogType, EntitySelectDialogComponent, EntitySelectDialogService, EntitySelectInputComponent, FetchResultBase, FetchResultTyped, FileUploadResult, FileUploadService, FormTitleExtraDirective, HAS_UNSAVED_CHANGES, HOUR_INTERVALS, HierarchyDataSource, HierarchyDataSourceBase, ImportStrategyDialogComponent, ImportStrategyDialogResult, ImportStrategyDialogService, ImportStrategyDto, InputDialogComponent, InputService, ListViewComponent, MINUTE_INTERVALS, MessageDetailsDialogComponent, MessageDetailsDialogService, MessageListenerService, MmListViewDataBindingDirective, NotificationDisplayService, PascalCasePipe, ProgressValue, ProgressWindowComponent, ProgressWindowService, RELATIVE_WEEKS, SECOND_INTERVALS, SaveAsDialogComponent, SaveAsDialogService, TimeRangePickerComponent, TimeRangeUtils, TreeComponent, UnsavedChangesDirective, UnsavedChangesGuard, UploadFileDialogComponent, WEEKDAYS, WEEKDAY_ABBREVIATIONS, generateDayOfMonthOptions, generateHourOptions, generateMinuteOptions, provideMmSharedUi };
|
|
1907
|
-
export type { BaseFormConfig, BaseFormMessages, ColumnDefinition, ConfirmationButtonLabels, ConfirmationWindowData, ContextMenuType, CronBuilderConfig, CronFields, CronPreset, CronSchedule, CronValidationResult, DialogFetchOptions, DialogFetchResult, DropdownOption, EntitySelectDialogDataSource, EntitySelectDialogMessages, EntitySelectDialogOptions, EntitySelectDialogResult, EntitySelectInputMessages, FetchDataOptions, FetchResult, FileUploadData, HasUnsavedChanges, ListViewMessages, MessageDetailsDialogData, NameAvailabilityResult, NodeDroppedEvent, NodeInfo, ProgressWindowConfig, ProgressWindowData, ProgressWindowOptions, ProgressWindowResult, Quarter, RelativeTimeUnit, ResponsiveFormBreakPoint, SaveAsDialogDataSource, SaveAsDialogOptions, SaveAsDialogResult, ScheduleType, StatusFieldConfig, StatusIconMapping, StatusMapping, TableColumn, TimeRange, TimeRangeISO, TimeRangeOption, TimeRangePickerConfig, TimeRangePickerLabels, TimeRangeSelection, TimeRangeType, UnsavedChangesMessages, Weekday };
|
|
1936
|
+
export { BaseFormComponent, BaseTreeDetailComponent, ButtonTypes, BytesToSizePipe, CRON_PRESETS, ConfirmationService, ConfirmationWindowResult, CopyableTextComponent, CronBuilderComponent, CronHumanizerService, CronParserService, DEFAULT_CRON_BUILDER_CONFIG, DEFAULT_ENTITY_SELECT_DIALOG_MESSAGES, DEFAULT_ENTITY_SELECT_INPUT_MESSAGES, DEFAULT_LIST_VIEW_MESSAGES, DEFAULT_RESPONSIVE_COLSPAN, DEFAULT_TIME_RANGE_LABELS, DataSourceBase, DataSourceTyped, DialogType, EntitySelectDialogComponent, EntitySelectDialogService, EntitySelectInputComponent, FetchResultBase, FetchResultTyped, FileUploadResult, FileUploadService, FormTitleExtraDirective, HAS_UNSAVED_CHANGES, HOUR_INTERVALS, HierarchyDataSource, HierarchyDataSourceBase, ImportStrategyDialogComponent, ImportStrategyDialogResult, ImportStrategyDialogService, ImportStrategyDto, InputDialogComponent, InputService, ListViewComponent, MINUTE_INTERVALS, MessageDetailsDialogComponent, MessageDetailsDialogService, MessageListenerService, MmListViewDataBindingDirective, NotificationDisplayService, PascalCasePipe, ProgressValue, ProgressWindowComponent, ProgressWindowService, RELATIVE_WEEKS, SECOND_INTERVALS, SaveAsDialogComponent, SaveAsDialogService, TimeRangePickerComponent, TimeRangeUtils, TreeComponent, UnsavedChangesDirective, UnsavedChangesGuard, UploadFileDialogComponent, WEEKDAYS, WEEKDAY_ABBREVIATIONS, WindowStateService, generateDayOfMonthOptions, generateHourOptions, generateMinuteOptions, provideMmSharedUi };
|
|
1937
|
+
export type { BaseFormConfig, BaseFormMessages, ColumnDefinition, ConfirmationButtonLabels, ConfirmationWindowData, ContextMenuType, CronBuilderConfig, CronFields, CronPreset, CronSchedule, CronValidationResult, DialogFetchOptions, DialogFetchResult, DropdownOption, EntitySelectDialogDataSource, EntitySelectDialogMessages, EntitySelectDialogOptions, EntitySelectDialogResult, EntitySelectInputMessages, FetchDataOptions, FetchResult, FileUploadData, HasUnsavedChanges, ListViewMessages, MessageDetailsDialogData, NameAvailabilityResult, NodeDroppedEvent, NodeInfo, ProgressWindowConfig, ProgressWindowData, ProgressWindowOptions, ProgressWindowResult, Quarter, RelativeTimeUnit, ResponsiveFormBreakPoint, SaveAsDialogDataSource, SaveAsDialogOptions, SaveAsDialogResult, ScheduleType, StatusFieldConfig, StatusIconMapping, StatusMapping, TableColumn, TimeRange, TimeRangeISO, TimeRangeOption, TimeRangePickerConfig, TimeRangePickerLabels, TimeRangeSelection, TimeRangeType, UnsavedChangesMessages, Weekday, WindowDimensions };
|