@meshmakers/shared-ui 3.3.470 → 3.3.480

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.480",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -1177,15 +1177,18 @@ declare const DEFAULT_TIME_RANGE_LABELS: TimeRangePickerLabels;
1177
1177
  */
1178
1178
  declare class TimeRangeUtils {
1179
1179
  /**
1180
- * Calculate time range for a specific year
1180
+ * Calculate time range for a specific year.
1181
+ * Uses exclusive end boundary (start of next year) for correct LESS_THAN filtering.
1181
1182
  */
1182
1183
  static getYearRange(year: number): TimeRange;
1183
1184
  /**
1184
- * Calculate time range for a specific quarter
1185
+ * Calculate time range for a specific quarter.
1186
+ * Uses exclusive end boundary (start of next quarter) for correct LESS_THAN filtering.
1185
1187
  */
1186
1188
  static getQuarterRange(year: number, quarter: Quarter): TimeRange;
1187
1189
  /**
1188
- * Calculate time range for a specific month
1190
+ * Calculate time range for a specific month.
1191
+ * Uses exclusive end boundary (start of next month) for correct LESS_THAN filtering.
1189
1192
  */
1190
1193
  static getMonthRange(year: number, month: number): TimeRange;
1191
1194
  /**