@xaypay/tui 0.2.32 → 0.2.33
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 +29 -0
- package/dist/index.es.js +342 -91
- package/dist/index.js +342 -91
- package/package.json +1 -1
- package/tui.config.js +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,35 @@ All notable changes to `@xaypay/tui` will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.32] - 2025-11-10
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **SWIPEMODAL** Limit the `noScroll` touch guard to the `#swipable` wrapper so inner content can scroll while the page stays locked.
|
|
12
|
+
|
|
13
|
+
## [0.2.31] - 2025-11-07
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **FILE** Left-align truncated filenames and helper text for better readability in single-file mode.
|
|
17
|
+
|
|
18
|
+
## [0.2.30] - 2025-11-07
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **MODAL** Allow touch scrolling inside the modal by excluding the modal container from the global `noScroll` handler.
|
|
22
|
+
- **SWIPEMODAL** Mirror the container guard so swipe modals retain internal scroll while keeping the background frozen.
|
|
23
|
+
- **FILE** Improve long-filename truncation and spacing when a single file is selected.
|
|
24
|
+
|
|
25
|
+
## [0.2.29] - 2025-11-07
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- **FILE** Remove redundant tooltip state resets (`setCheckTextLength`) during cleanup.
|
|
29
|
+
|
|
30
|
+
## [0.2.28] - 2025-11-07
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- **MODAL** Hook document-level `touchmove` listeners when `noScroll` is enabled to block background scrolling on iOS/Android.
|
|
34
|
+
- **SWIPEMODAL** Apply the same `noScroll` logic on mobile devices to keep the backdrop locked.
|
|
35
|
+
- **FILE** Tighten helper text spacing and clamp long filenames to the available width.
|
|
36
|
+
|
|
8
37
|
## [0.2.27] - 2025-11-05
|
|
9
38
|
|
|
10
39
|
### Added
|