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 +19 -0
- package/date-picker/styles/calendar.scss +1 -1
- package/date-picker/styles/week-picker.scss +1 -0
- package/fesm2022/ngx-tethys-date-picker.mjs +6 -6
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-shared.mjs +2 -1
- package/fesm2022/ngx-tethys-shared.mjs.map +1 -1
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
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;
|
|
@@ -918,8 +918,8 @@ class DateCarousel {
|
|
|
918
918
|
return {
|
|
919
919
|
type: 'year',
|
|
920
920
|
content: `${currentDate.addYears(preOrNextcount).getYear()}`,
|
|
921
|
-
startValue: currentDate.
|
|
922
|
-
endValue: currentDate.
|
|
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.
|
|
932
|
-
endValue: currentDate.
|
|
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.
|
|
943
|
-
endValue: currentDate.
|
|
942
|
+
startValue: currentDate.addMonths(preOrNextcount).startOfMonth(),
|
|
943
|
+
endValue: currentDate.addMonths(preOrNextcount).endOfMonth(),
|
|
944
944
|
classMap: {}
|
|
945
945
|
};
|
|
946
946
|
return cell;
|