ngx-tethys 19.1.0 → 19.1.2
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 +18 -0
- package/fesm2022/ngx-tethys-date-picker.mjs +2 -2
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tabs.mjs +54 -61
- package/fesm2022/ngx-tethys-tabs.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/tabs/tabs.component.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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.2](https://github.com/atinc/ngx-tethys/compare/19.1.1...19.1.2) (2025-09-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **date-picker:** fix disable date error when not set disabledDate parameter ([#3556](https://github.com/atinc/ngx-tethys/issues/3556)) ([5f8fc70](https://github.com/atinc/ngx-tethys/commit/5f8fc70aeba6cacc89691752f1f05d29b92c10dc))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [19.1.1](https://github.com/atinc/ngx-tethys/compare/19.1.0...19.1.1) (2025-09-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **tabs:** fix thyActiveTab is number bug and optimize doc [@wumeimin](https://github.com/wumeimin) ([#3553](https://github.com/atinc/ngx-tethys/issues/3553)) ([f7727eb](https://github.com/atinc/ngx-tethys/commit/f7727eba8243305395f9a0197d9a881ce460e756))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
5
23
|
# [19.1.0](https://github.com/atinc/ngx-tethys/compare/19.1.0-next.12...19.1.0) (2025-08-29)
|
|
6
24
|
|
|
7
25
|
|
|
@@ -1492,7 +1492,7 @@ class MonthTable extends CalendarTable {
|
|
|
1492
1492
|
for (let colIndex = 0; colIndex < this.MAX_COL; colIndex++) {
|
|
1493
1493
|
const month = this.activeDate().setMonth(monthValue);
|
|
1494
1494
|
const monthFormat = this.locale().monthFormat;
|
|
1495
|
-
const isDisabled = this.disabledDate ? this.disabledDate()(this.activeDate().setMonth(monthValue).nativeDate) : false;
|
|
1495
|
+
const isDisabled = this.disabledDate() ? this.disabledDate()(this.activeDate().setMonth(monthValue).nativeDate) : false;
|
|
1496
1496
|
const content = this.dateHelper.format(month.nativeDate, monthFormat);
|
|
1497
1497
|
const cell = {
|
|
1498
1498
|
trackByIndex: colIndex,
|
|
@@ -1583,7 +1583,7 @@ class QuarterTable extends CalendarTable {
|
|
|
1583
1583
|
};
|
|
1584
1584
|
for (let colIndex = 0; colIndex < this.MAX_COL; colIndex++) {
|
|
1585
1585
|
const quarter = this.activeDate().setQuarter(quarterValue + 1);
|
|
1586
|
-
const isDisabled = this.disabledDate ? this.disabledDate()(quarter.nativeDate) : false;
|
|
1586
|
+
const isDisabled = this.disabledDate() ? this.disabledDate()(quarter.nativeDate) : false;
|
|
1587
1587
|
const content = `${quarter.format(QUARTER_FORMAT)}`;
|
|
1588
1588
|
const cell = {
|
|
1589
1589
|
trackByIndex: colIndex,
|