ngx-tethys 19.1.1 → 19.1.3

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.1.3](https://github.com/atinc/ngx-tethys/compare/19.1.2...19.1.3) (2025-09-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **date-picker:** #TINFR-2875 after date-picker popup closed, clicking again cannot open it. ([acd82c1](https://github.com/atinc/ngx-tethys/commit/acd82c119ad3a631da4325f38e86b6af9c252005)), closes [#TINFR-2875](https://github.com/atinc/ngx-tethys/issues/TINFR-2875)
11
+ * **drop-down:** set the default value for thyMenuInsideClosable to undefined ([#3559](https://github.com/atinc/ngx-tethys/issues/3559)) ([ed07891](https://github.com/atinc/ngx-tethys/commit/ed07891bb1918983ffb476e1c0e2d77b8829d9df))
12
+
13
+
14
+
15
+ ## [19.1.2](https://github.com/atinc/ngx-tethys/compare/19.1.1...19.1.2) (2025-09-11)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **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))
21
+
22
+
23
+
5
24
  ## [19.1.1](https://github.com/atinc/ngx-tethys/compare/19.1.0...19.1.1) (2025-09-05)
6
25
 
7
26
 
@@ -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,
@@ -3137,7 +3137,8 @@ class BasePicker extends AbstractPickerComponent {
3137
3137
  return this._panelMode;
3138
3138
  }
3139
3139
  open() {
3140
- this.opened.set(true);
3140
+ this.thyPicker().focus();
3141
+ this.thyPicker().onClickInputBox();
3141
3142
  }
3142
3143
  ngOnInit() {
3143
3144
  super.ngOnInit();