ngx-tethys 19.1.10 → 19.1.11
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 +9 -0
- package/fesm2022/ngx-tethys-date-picker.mjs +2 -1
- package/fesm2022/ngx-tethys-date-picker.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,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.1.11](https://github.com/atinc/ngx-tethys/compare/19.1.10...19.1.11) (2025-10-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **date-picker:** 可选时间时,优化为选择到分 #TINFR-2955 ([#3597](https://github.com/atinc/ngx-tethys/issues/3597)) ([0b12381](https://github.com/atinc/ngx-tethys/commit/0b123812a416e00b6f7382411587f447bfdc7a84)), closes [#TINFR-2955](https://github.com/atinc/ngx-tethys/issues/TINFR-2955)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## [19.1.10](https://github.com/atinc/ngx-tethys/compare/19.1.9...19.1.10) (2025-10-28)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -468,7 +468,8 @@ function makeValue(value, isRange = false, withTime, timeZone) {
|
|
|
468
468
|
if (!value) {
|
|
469
469
|
return null;
|
|
470
470
|
}
|
|
471
|
-
|
|
471
|
+
const date = new TinyDate(value, timeZone);
|
|
472
|
+
return withTime ? date.setSeconds(0) : date.startOfDay();
|
|
472
473
|
}
|
|
473
474
|
}
|
|
474
475
|
function dateAddAmount(value, amount, mode) {
|