ngx-tethys 19.0.13 → 19.0.15

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,25 @@
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.15](https://github.com/atinc/ngx-tethys/compare/19.0.14...19.0.15) (2025-07-14)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **datePicker:** fix week mode today style error #TINFR-2359 ([e867dfc](https://github.com/atinc/ngx-tethys/commit/e867dfc40efefb9fcbf376f9ca94c5ce2e89eead)), closes [#TINFR-2359](https://github.com/atinc/ngx-tethys/issues/TINFR-2359)
11
+ * **shared:** fix select control search style error #TINFR-2321 ([1a44bd1](https://github.com/atinc/ngx-tethys/commit/1a44bd1c1aaf49c649a9e07ba792d31001568f55)), closes [#TINFR-2321](https://github.com/atinc/ngx-tethys/issues/TINFR-2321)
12
+
13
+
14
+
15
+ ## [19.0.14](https://github.com/atinc/ngx-tethys/compare/19.0.13...19.0.14) (2025-06-27)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **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)
21
+
22
+
23
+
5
24
  ## [19.0.13](https://github.com/atinc/ngx-tethys/compare/19.0.11...19.0.13) (2025-05-20)
6
25
 
7
26
 
@@ -131,7 +131,7 @@
131
131
  position: relative;
132
132
  border: style.$border-width-base style.$border-style-base transparent;
133
133
  color: style.$disabled-color;
134
- background: style.$disabled-bg;
134
+ background: style.$disabled-bg !important;
135
135
  border-radius: 0;
136
136
  cursor: variables.$disabled-cursor;
137
137
  width: auto;
@@ -29,6 +29,7 @@
29
29
  &.#{style.$calendar-prefix-cls}-active-week {
30
30
  .#{style.$calendar-prefix-cls}-date {
31
31
  color: variables.$white;
32
+ background: variables.$primary;
32
33
  }
33
34
  &::after {
34
35
  background: variables.$primary;
@@ -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;