ngx-tethys 19.1.2 → 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 +10 -0
- package/fesm2022/ngx-tethys-date-picker.mjs +2 -1
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-dropdown.mjs +1 -1
- package/fesm2022/ngx-tethys-dropdown.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,16 @@
|
|
|
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
|
+
|
|
5
15
|
## [19.1.2](https://github.com/atinc/ngx-tethys/compare/19.1.1...19.1.2) (2025-09-11)
|
|
6
16
|
|
|
7
17
|
|
|
@@ -3137,7 +3137,8 @@ class BasePicker extends AbstractPickerComponent {
|
|
|
3137
3137
|
return this._panelMode;
|
|
3138
3138
|
}
|
|
3139
3139
|
open() {
|
|
3140
|
-
this.
|
|
3140
|
+
this.thyPicker().focus();
|
|
3141
|
+
this.thyPicker().onClickInputBox();
|
|
3141
3142
|
}
|
|
3142
3143
|
ngOnInit() {
|
|
3143
3144
|
super.ngOnInit();
|