@meshmakers/shared-ui 3.3.470 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/shared-ui",
3
- "version": "3.3.470",
3
+ "version": "3.3.490",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -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> extends DialogContentBase implements OnInit, OnDestroy {
891
- private readonly dialogRef;
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 dialogService;
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
@@ -1177,15 +1176,18 @@ declare const DEFAULT_TIME_RANGE_LABELS: TimeRangePickerLabels;
1177
1176
  */
1178
1177
  declare class TimeRangeUtils {
1179
1178
  /**
1180
- * Calculate time range for a specific year
1179
+ * Calculate time range for a specific year.
1180
+ * Uses exclusive end boundary (start of next year) for correct LESS_THAN filtering.
1181
1181
  */
1182
1182
  static getYearRange(year: number): TimeRange;
1183
1183
  /**
1184
- * Calculate time range for a specific quarter
1184
+ * Calculate time range for a specific quarter.
1185
+ * Uses exclusive end boundary (start of next quarter) for correct LESS_THAN filtering.
1185
1186
  */
1186
1187
  static getQuarterRange(year: number, quarter: Quarter): TimeRange;
1187
1188
  /**
1188
- * Calculate time range for a specific month
1189
+ * Calculate time range for a specific month.
1190
+ * Uses exclusive end boundary (start of next month) for correct LESS_THAN filtering.
1189
1191
  */
1190
1192
  static getMonthRange(year: number, month: number): TimeRange;
1191
1193
  /**