ngx-tethys 19.0.13 → 19.0.14

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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [19.0.14](https://github.com/atinc/ngx-tethys/compare/19.0.13...19.0.14) (2025-06-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **date-picker:** fix date-carousel pick month the end time sometimes is not correctly #TINFR-2309 ([#3477](https://github.com/atinc/ngx-tethys/issues/3477)) ([590c2c3](https://github.com/atinc/ngx-tethys/commit/590c2c320bb12097b9479f1a2a44ab56bbbe13b1)), closes [#TINFR-2309](https://github.com/atinc/ngx-tethys/issues/TINFR-2309)
11
+
12
+
13
+
5
14
  ## [19.0.13](https://github.com/atinc/ngx-tethys/compare/19.0.11...19.0.13) (2025-05-20)
6
15
 
7
16
 
@@ -918,8 +918,8 @@ class DateCarousel {
918
918
  return {
919
919
  type: 'year',
920
920
  content: `${currentDate.addYears(preOrNextcount).getYear()}`,
921
- startValue: currentDate.startOfYear().addYears(preOrNextcount),
922
- endValue: currentDate.endOfYear().addYears(preOrNextcount),
921
+ startValue: currentDate.addYears(preOrNextcount).startOfYear(),
922
+ endValue: currentDate.addYears(preOrNextcount).endOfYear(),
923
923
  classMap: {}
924
924
  };
925
925
  }
@@ -928,8 +928,8 @@ class DateCarousel {
928
928
  return {
929
929
  type: 'quarter',
930
930
  content: `${currentDate.addQuarters(preOrNextcount).format('qqq')}`,
931
- startValue: currentDate.startOfQuarter().addQuarters(preOrNextcount),
932
- endValue: currentDate.endOfQuarter().addQuarters(preOrNextcount),
931
+ startValue: currentDate.addQuarters(preOrNextcount).startOfQuarter(),
932
+ endValue: currentDate.addQuarters(preOrNextcount).endOfQuarter(),
933
933
  classMap: {}
934
934
  };
935
935
  }
@@ -939,8 +939,8 @@ class DateCarousel {
939
939
  const cell = {
940
940
  type: 'month',
941
941
  content: this.dateHelper.format(currentDate.addMonths(preOrNextcount).nativeDate, this.locale().monthFormat),
942
- startValue: currentDate.startOfMonth().addMonths(preOrNextcount),
943
- endValue: currentDate.endOfMonth().addMonths(preOrNextcount),
942
+ startValue: currentDate.addMonths(preOrNextcount).startOfMonth(),
943
+ endValue: currentDate.addMonths(preOrNextcount).endOfMonth(),
944
944
  classMap: {}
945
945
  };
946
946
  return cell;