@meshmakers/shared-ui 3.3.1000 → 3.3.1010

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/shared-ui",
3
- "version": "3.3.1000",
3
+ "version": "3.3.1010",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -6,13 +6,13 @@ import { FormGroup, ControlValueAccessor, Validator, FormControl, AbstractContro
6
6
  import { CommandBaseService, CommandItem, TreeItemData, TreeItemDataTyped, EntitySelectDataSource } from '@meshmakers/shared-services';
7
7
  import { TreeViewComponent, TreeItem, NodeClickEvent, TreeItemDropEvent } from '@progress/kendo-angular-treeview';
8
8
  import { Observable } from 'rxjs';
9
+ import { DialogContentBase, DialogRef, WindowRef } from '@progress/kendo-angular-dialog';
9
10
  import * as _meshmakers_shared_ui from '@meshmakers/shared-ui';
10
11
  import { State } from '@progress/kendo-data-query/dist/npm/state';
11
12
  import { PagerSettings, SelectableSettings, SelectionEvent, PageChangeEvent, CellClickEvent, DataBindingDirective } from '@progress/kendo-angular-grid';
12
13
  import { SVGIcon as SVGIcon$1 } from '@progress/kendo-svg-icons/dist/svg-icon.interface';
13
14
  import { MenuItem, ContextMenuComponent, ContextMenuSelectEvent, ContextMenuPopupEvent } from '@progress/kendo-angular-menu';
14
15
  import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
15
- import { DialogContentBase, DialogRef, WindowRef } from '@progress/kendo-angular-dialog';
16
16
  import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
17
17
  import { CanDeactivate } from '@angular/router';
18
18
 
@@ -342,17 +342,26 @@ declare class UploadFileDialogComponent extends DialogContentBase {
342
342
  static ɵcmp: i0.ɵɵComponentDeclaration<UploadFileDialogComponent, "mm-upload-file-dialog", never, { "message": { "alias": "message"; "required": false; }; "mimeTypes": { "alias": "mimeTypes"; "required": false; }; "fileExtensions": { "alias": "fileExtensions"; "required": false; }; }, {}, never, never, true, never>;
343
343
  }
344
344
 
345
+ interface InputDialogMessages {
346
+ ok: string;
347
+ cancel: string;
348
+ placeholder: string;
349
+ }
350
+ declare const DEFAULT_INPUT_DIALOG_MESSAGES: InputDialogMessages;
351
+
345
352
  declare class InputDialogComponent extends DialogContentBase {
346
353
  private readonly dialogRef;
347
354
  buttonOkText: string;
348
355
  message: string;
349
356
  placeholder: string;
350
357
  protected inputValue: string | null;
358
+ _messages: InputDialogMessages;
359
+ set messages(value: Partial<InputDialogMessages> | undefined);
351
360
  constructor();
352
361
  protected onOk(): void;
353
362
  protected onCancel(): void;
354
363
  static ɵfac: i0.ɵɵFactoryDeclaration<InputDialogComponent, never>;
355
- static ɵcmp: i0.ɵɵComponentDeclaration<InputDialogComponent, "mm-input-dialog", never, { "buttonOkText": { "alias": "buttonOkText"; "required": false; }; "message": { "alias": "message"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; }, {}, never, never, true, never>;
364
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputDialogComponent, "mm-input-dialog", never, { "buttonOkText": { "alias": "buttonOkText"; "required": false; }; "message": { "alias": "message"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
356
365
  }
357
366
 
358
367
  declare abstract class HierarchyDataSource {
@@ -692,6 +701,11 @@ declare class ProgressValue {
692
701
  constructor();
693
702
  }
694
703
 
704
+ interface ProgressWindowMessages {
705
+ cancel: string;
706
+ }
707
+ declare const DEFAULT_PROGRESS_WINDOW_MESSAGES: ProgressWindowMessages;
708
+
695
709
  interface ProgressWindowData {
696
710
  title: string;
697
711
  isDeterminate: boolean;
@@ -709,21 +723,19 @@ declare class ProgressWindowComponent extends DialogContentBase implements OnDes
709
723
  cancelOperation?: () => void;
710
724
  statusText: string | null;
711
725
  progressValue: number;
726
+ _messages: ProgressWindowMessages;
727
+ set messages(value: Partial<ProgressWindowMessages> | undefined);
712
728
  constructor();
713
729
  ngAfterViewInit(): void;
714
730
  ngOnDestroy(): void;
715
731
  onCancelClick(): void;
716
732
  static ɵfac: i0.ɵɵFactoryDeclaration<ProgressWindowComponent, never>;
717
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressWindowComponent, "mm-progress-window", never, { "isDeterminate": { "alias": "isDeterminate"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "isCancelOperationAvailable": { "alias": "isCancelOperationAvailable"; "required": false; }; "cancelOperation": { "alias": "cancelOperation"; "required": false; }; }, {}, never, never, true, never>;
733
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressWindowComponent, "mm-progress-window", never, { "isDeterminate": { "alias": "isDeterminate"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "isCancelOperationAvailable": { "alias": "isCancelOperationAvailable"; "required": false; }; "cancelOperation": { "alias": "cancelOperation"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
718
734
  }
719
735
 
720
736
  declare class ProgressWindowService {
721
737
  private readonly dialogService;
722
- /**
723
- * Opens a progress window dialog
724
- * @param config Configuration for the progress window
725
- * @returns DialogRef for the progress window
726
- */
738
+ defaultMessages: Partial<ProgressWindowMessages> | undefined;
727
739
  showProgress(config: ProgressWindowConfig): DialogRef;
728
740
  /**
729
741
  * Shows a determinate progress window (with percentage)
@@ -753,6 +765,7 @@ interface ProgressWindowConfig {
753
765
  width?: number;
754
766
  height?: number | string;
755
767
  allowClose?: boolean;
768
+ messages?: Partial<ProgressWindowMessages>;
756
769
  }
757
770
  interface ProgressWindowOptions {
758
771
  isCancelOperationAvailable?: boolean;
@@ -760,6 +773,73 @@ interface ProgressWindowOptions {
760
773
  width?: number;
761
774
  height?: number | string;
762
775
  allowClose?: boolean;
776
+ messages?: Partial<ProgressWindowMessages>;
777
+ }
778
+
779
+ interface ConfirmationWindowMessages {
780
+ ok: string;
781
+ cancel: string;
782
+ yes: string;
783
+ no: string;
784
+ }
785
+ declare const DEFAULT_CONFIRMATION_WINDOW_MESSAGES: ConfirmationWindowMessages;
786
+
787
+ declare enum ButtonTypes {
788
+ Ok = 0,
789
+ Cancel = 1,
790
+ Yes = 2,
791
+ No = 3
792
+ }
793
+ declare enum DialogType {
794
+ YesNo = 0,
795
+ YesNoCancel = 1,
796
+ OkCancel = 2,
797
+ Ok = 3
798
+ }
799
+ interface ConfirmationButtonLabels {
800
+ yes?: string;
801
+ no?: string;
802
+ ok?: string;
803
+ cancel?: string;
804
+ }
805
+ interface ConfirmationWindowData {
806
+ title: string;
807
+ message: string;
808
+ dialogType: DialogType;
809
+ buttonLabels?: ConfirmationButtonLabels;
810
+ messages?: Partial<ConfirmationWindowMessages>;
811
+ }
812
+ declare class ConfirmationWindowResult {
813
+ result: ButtonTypes;
814
+ constructor(result: ButtonTypes);
815
+ }
816
+ interface FileUploadData {
817
+ title: string;
818
+ message: string;
819
+ mimeTypes: string;
820
+ fileExtensions: string | null;
821
+ }
822
+ declare class FileUploadResult {
823
+ selectedFile: File | null;
824
+ constructor(selectedFile: File);
825
+ }
826
+
827
+ declare class ConfirmationWindowComponent extends DialogContentBase implements OnInit {
828
+ private readonly dialogRef;
829
+ data?: ConfirmationWindowData;
830
+ protected button1Text: string;
831
+ protected button1Result: ButtonTypes;
832
+ protected button2Text: string | null;
833
+ protected button2Result: ButtonTypes | null;
834
+ protected button3Text: string | null;
835
+ protected button3Result: ButtonTypes | null;
836
+ constructor();
837
+ ngOnInit(): void;
838
+ onButton1(): void;
839
+ onButton2(): void;
840
+ onButton3(): void;
841
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationWindowComponent, never>;
842
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationWindowComponent, "mm-confirmation-window", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
763
843
  }
764
844
 
765
845
  interface FetchResult<T = unknown> {
@@ -854,45 +934,6 @@ declare enum ImportStrategyDto {
854
934
  Upsert = 1
855
935
  }
856
936
 
857
- declare enum ButtonTypes {
858
- Ok = 0,
859
- Cancel = 1,
860
- Yes = 2,
861
- No = 3
862
- }
863
- declare enum DialogType {
864
- YesNo = 0,
865
- YesNoCancel = 1,
866
- OkCancel = 2,
867
- Ok = 3
868
- }
869
- interface ConfirmationButtonLabels {
870
- yes?: string;
871
- no?: string;
872
- ok?: string;
873
- cancel?: string;
874
- }
875
- interface ConfirmationWindowData {
876
- title: string;
877
- message: string;
878
- dialogType: DialogType;
879
- buttonLabels?: ConfirmationButtonLabels;
880
- }
881
- declare class ConfirmationWindowResult {
882
- result: ButtonTypes;
883
- constructor(result: ButtonTypes);
884
- }
885
- interface FileUploadData {
886
- title: string;
887
- message: string;
888
- mimeTypes: string;
889
- fileExtensions: string | null;
890
- }
891
- declare class FileUploadResult {
892
- selectedFile: File | null;
893
- constructor(selectedFile: File);
894
- }
895
-
896
937
  declare class FileUploadService {
897
938
  private readonly dialogService;
898
939
  showUploadDialog(title: string, message: string, mimeTypes?: string | null, fileExtensions?: string | null): Promise<File | null>;
@@ -902,10 +943,11 @@ declare class FileUploadService {
902
943
 
903
944
  declare class ConfirmationService {
904
945
  private readonly dialogService;
905
- showYesNoConfirmationDialog(title: string, message: string, cssClass?: string, buttonLabels?: ConfirmationButtonLabels): Promise<boolean>;
906
- showYesNoCancelConfirmationDialog(title: string, message: string, buttonLabels?: ConfirmationButtonLabels): Promise<ConfirmationWindowResult | undefined>;
907
- showOkCancelConfirmationDialog(title: string, message: string): Promise<boolean>;
908
- showOkDialog(title: string, message: string): Promise<boolean>;
946
+ defaultMessages: Partial<ConfirmationWindowMessages> | undefined;
947
+ showYesNoConfirmationDialog(title: string, message: string, cssClass?: string, buttonLabels?: ConfirmationButtonLabels, messages?: Partial<ConfirmationWindowMessages>): Promise<boolean>;
948
+ showYesNoCancelConfirmationDialog(title: string, message: string, buttonLabels?: ConfirmationButtonLabels, messages?: Partial<ConfirmationWindowMessages>): Promise<ConfirmationWindowResult | undefined>;
949
+ showOkCancelConfirmationDialog(title: string, message: string, messages?: Partial<ConfirmationWindowMessages>): Promise<boolean>;
950
+ showOkDialog(title: string, message: string, messages?: Partial<ConfirmationWindowMessages>): Promise<boolean>;
909
951
  private openDialog;
910
952
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationService, never>;
911
953
  static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmationService>;
@@ -913,11 +955,17 @@ declare class ConfirmationService {
913
955
 
914
956
  declare class InputService {
915
957
  private readonly dialogService;
916
- showInputDialog(title: string, message: string, placeholder: string, buttonOkText?: string | null): Promise<string | null>;
958
+ defaultMessages: Partial<InputDialogMessages> | undefined;
959
+ showInputDialog(title: string, message: string, placeholder: string, buttonOkText?: string | null, messages?: Partial<InputDialogMessages>): Promise<string | null>;
917
960
  static ɵfac: i0.ɵɵFactoryDeclaration<InputService, never>;
918
961
  static ɵprov: i0.ɵɵInjectableDeclaration<InputService>;
919
962
  }
920
963
 
964
+ interface NotificationDisplayMessages {
965
+ showDetails: string;
966
+ }
967
+ declare const DEFAULT_NOTIFICATION_DISPLAY_MESSAGES: NotificationDisplayMessages;
968
+
921
969
  declare class NotificationDisplayService implements OnDestroy {
922
970
  private readonly notificationService;
923
971
  private readonly messageDetailsDialogService;
@@ -929,6 +977,8 @@ declare class NotificationDisplayService implements OnDestroy {
929
977
  private interactionDebounceTime;
930
978
  private gracePeriod;
931
979
  private notificationOpenTimes;
980
+ messages: NotificationDisplayMessages;
981
+ setMessages(value: Partial<NotificationDisplayMessages>): void;
932
982
  private readonly defaultSettings;
933
983
  constructor();
934
984
  ngOnDestroy(): void;
@@ -984,12 +1034,23 @@ declare class MessageListenerService implements OnDestroy {
984
1034
  static ɵprov: i0.ɵɵInjectableDeclaration<MessageListenerService>;
985
1035
  }
986
1036
 
1037
+ interface MessageDetailsDialogMessages {
1038
+ copyToClipboard: string;
1039
+ close: string;
1040
+ closeTitle: string;
1041
+ minimizeTitle: string;
1042
+ maximizeTitle: string;
1043
+ restoreTitle: string;
1044
+ }
1045
+ declare const DEFAULT_MESSAGE_DETAILS_DIALOG_MESSAGES: MessageDetailsDialogMessages;
1046
+
987
1047
  interface MessageDetailsDialogData {
988
1048
  title: string;
989
1049
  details: string;
990
1050
  level: 'error' | 'warning';
991
1051
  copyLabel?: string;
992
1052
  closeLabel?: string;
1053
+ messages?: Partial<MessageDetailsDialogMessages>;
993
1054
  }
994
1055
  declare class MessageDetailsDialogComponent implements OnInit {
995
1056
  protected readonly copyIcon: _progress_kendo_svg_icons.SVGIcon;
@@ -999,6 +1060,7 @@ declare class MessageDetailsDialogComponent implements OnInit {
999
1060
  details: string;
1000
1061
  copyLabel: string;
1001
1062
  closeLabel: string;
1063
+ messages: MessageDetailsDialogMessages;
1002
1064
  ngOnInit(): void;
1003
1065
  onClose(): void;
1004
1066
  copyToClipboard(): Promise<void>;
@@ -1010,9 +1072,7 @@ declare class MessageDetailsDialogComponent implements OnInit {
1010
1072
  declare class MessageDetailsDialogService {
1011
1073
  private readonly windowService;
1012
1074
  private readonly windowStateService;
1013
- /**
1014
- * Opens a resizable window to show message details with copy-to-clipboard functionality
1015
- */
1075
+ defaultMessages: Partial<MessageDetailsDialogMessages> | undefined;
1016
1076
  showDetailsDialog(data: MessageDetailsDialogData): WindowRef;
1017
1077
  static ɵfac: i0.ɵɵFactoryDeclaration<MessageDetailsDialogService, never>;
1018
1078
  static ɵprov: i0.ɵɵInjectableDeclaration<MessageDetailsDialogService>;
@@ -1285,6 +1345,23 @@ declare class UnsavedChangesGuard implements CanDeactivate<HasUnsavedChanges> {
1285
1345
  static ɵprov: i0.ɵɵInjectableDeclaration<UnsavedChangesGuard>;
1286
1346
  }
1287
1347
 
1348
+ interface SaveAsDialogMessages {
1349
+ nameLabel: string;
1350
+ placeholder: string;
1351
+ save: string;
1352
+ cancel: string;
1353
+ patternError: string;
1354
+ nameRequired: string;
1355
+ /** `{0}` is replaced with the minimum length. */
1356
+ nameTooShort: string;
1357
+ /** `{0}` is replaced with the maximum length. */
1358
+ nameTooLong: string;
1359
+ checkingAvailability: string;
1360
+ nameAvailable: string;
1361
+ nameAlreadyTaken: string;
1362
+ }
1363
+ declare const DEFAULT_SAVE_AS_DIALOG_MESSAGES: SaveAsDialogMessages;
1364
+
1288
1365
  /**
1289
1366
  * Result from checking if a name is available
1290
1367
  */
@@ -1336,6 +1413,7 @@ interface SaveAsDialogOptions {
1336
1413
  dataSource?: SaveAsDialogDataSource;
1337
1414
  /** Debounce time in ms for name availability check (default: 300) */
1338
1415
  debounceTime?: number;
1416
+ messages?: Partial<SaveAsDialogMessages>;
1339
1417
  }
1340
1418
  /**
1341
1419
  * Result returned from the Save As dialog
@@ -1359,6 +1437,7 @@ declare class SaveAsDialogComponent extends DialogContentBase implements OnInit,
1359
1437
  isCheckingAvailability: boolean;
1360
1438
  isNameAvailable: boolean;
1361
1439
  availabilityMessage: string;
1440
+ _messages: SaveAsDialogMessages;
1362
1441
  private dataSource?;
1363
1442
  private debounceMs;
1364
1443
  private subscriptions;
@@ -1366,6 +1445,8 @@ declare class SaveAsDialogComponent extends DialogContentBase implements OnInit,
1366
1445
  constructor();
1367
1446
  ngOnInit(): void;
1368
1447
  ngOnDestroy(): void;
1448
+ protected formatNameTooShort(min: number): string;
1449
+ protected formatNameTooLong(max: number): string;
1369
1450
  private setupAvailabilityCheck;
1370
1451
  canSave(): boolean;
1371
1452
  onSave(): void;
@@ -2035,5 +2116,5 @@ declare class WindowStateService {
2035
2116
 
2036
2117
  declare function provideMmSharedUi(): EnvironmentProviders;
2037
2118
 
2038
- 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 };
2039
- export type { BadgeMapping, BadgeMappingTable, 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, RowClassFn, SaveAsDialogDataSource, SaveAsDialogOptions, SaveAsDialogResult, ScheduleType, StatusFieldConfig, StatusIconMapping, StatusMapping, TableColumn, TimeRange, TimeRangeISO, TimeRangeOption, TimeRangePickerConfig, TimeRangePickerLabels, TimeRangeSelection, TimeRangeType, UnsavedChangesMessages, Weekday, WindowDimensions };
2119
+ export { BaseFormComponent, BaseTreeDetailComponent, ButtonTypes, BytesToSizePipe, CRON_PRESETS, ConfirmationService, ConfirmationWindowComponent, ConfirmationWindowResult, CopyableTextComponent, CronBuilderComponent, CronHumanizerService, CronParserService, DEFAULT_CONFIRMATION_WINDOW_MESSAGES, DEFAULT_CRON_BUILDER_CONFIG, DEFAULT_ENTITY_SELECT_DIALOG_MESSAGES, DEFAULT_ENTITY_SELECT_INPUT_MESSAGES, DEFAULT_INPUT_DIALOG_MESSAGES, DEFAULT_LIST_VIEW_MESSAGES, DEFAULT_MESSAGE_DETAILS_DIALOG_MESSAGES, DEFAULT_NOTIFICATION_DISPLAY_MESSAGES, DEFAULT_PROGRESS_WINDOW_MESSAGES, DEFAULT_RESPONSIVE_COLSPAN, DEFAULT_SAVE_AS_DIALOG_MESSAGES, 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 };
2120
+ export type { BadgeMapping, BadgeMappingTable, BaseFormConfig, BaseFormMessages, ColumnDefinition, ConfirmationButtonLabels, ConfirmationWindowData, ConfirmationWindowMessages, ContextMenuType, CronBuilderConfig, CronFields, CronPreset, CronSchedule, CronValidationResult, DialogFetchOptions, DialogFetchResult, DropdownOption, EntitySelectDialogDataSource, EntitySelectDialogMessages, EntitySelectDialogOptions, EntitySelectDialogResult, EntitySelectInputMessages, FetchDataOptions, FetchResult, FileUploadData, HasUnsavedChanges, InputDialogMessages, ListViewMessages, MessageDetailsDialogData, MessageDetailsDialogMessages, NameAvailabilityResult, NodeDroppedEvent, NodeInfo, NotificationDisplayMessages, ProgressWindowConfig, ProgressWindowData, ProgressWindowMessages, ProgressWindowOptions, ProgressWindowResult, Quarter, RelativeTimeUnit, ResponsiveFormBreakPoint, RowClassFn, SaveAsDialogDataSource, SaveAsDialogMessages, SaveAsDialogOptions, SaveAsDialogResult, ScheduleType, StatusFieldConfig, StatusIconMapping, StatusMapping, TableColumn, TimeRange, TimeRangeISO, TimeRangeOption, TimeRangePickerConfig, TimeRangePickerLabels, TimeRangeSelection, TimeRangeType, UnsavedChangesMessages, Weekday, WindowDimensions };