@xaypay/tui 0.2.34 → 0.3.1

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
@@ -5,6 +5,54 @@ 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.3.1] - 2026-03-19
9
+
10
+ ### Added
11
+ - **FILE** Add `formatValidateError` prop to customize validation error formatting.
12
+ - **FILE** Add `FILE.error.formatValidate` config.
13
+ - **SELECT** Add `selectedDisablePlaceholderColor` prop.
14
+
15
+ ### Changed
16
+ - **FILE** Update validation logic for broken headers/content.
17
+ - **FILE** Deprecate props: `or`, `radius`, `size`, `style`, `weight`, `family`, `labelSize`, `labelStyle`, `labelWeight`, `labelFamily`, `errorSize`, `errorStyle`, `errorWeight`, `errorFamily`.
18
+ - **FILE** Add props: `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`, `labelFontSize`, `labelFontStyle`, `labelFontWeight`, `labelFontFamily`, `errorFontSize`, `errorFontStyle`, `errorFontWeight`, `errorFontFamily`.
19
+ - **INPUT** Deprecate props: `radius`, `size`, `style`, `weight`, `family`, `labelSize`, `labelStyle`, `labelWeight`, `labelFamily`, `errorSize`, `errorStyle`, `errorWeight`, `errorFamily`.
20
+ - **INPUT** Add props: `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`, `labelFontSize`, `labelFontStyle`, `labelFontWeight`, `labelFontFamily`, `errorFontSize`, `errorFontStyle`, `errorFontWeight`, `errorFontFamily`.
21
+ - **MODAL** Rename `noScroll` prop to `underScroll` and adjust scroll-lock logic accordingly.
22
+ - **MODAL** Deprecate props: `headerSize`, `headerStyle`, `headerFamily`, `headerWeight`, `mMaxWidth`, `mMaxHeight`, `noScroll`.
23
+ - **MODAL** Add props: `headerFontSize`, `headerFontStyle`, `headerFontFamily`, `headerFontWeight`, `maxWidth`, `maxHeight`, `underScroll`.
24
+ - **SWIPEMODAL** Deprecate prop: `noScroll`.
25
+ - **SWIPEMODAL** Add prop: `underScroll`.
26
+ - **SELECT** Deprecate props: `errorSize`, `errorStyle`, `errorWeight`, `errorFamily`, `labelWeight`.
27
+ - **SELECT** Add props: `errorFontSize`, `errorFontStyle`, `errorFontWeight`, `errorFontFamily`, `labelFontWeight`.
28
+ - **TEXTAREA** Deprecate props: `size`, `style`, `weight`, `family`, `radius`, `labelSize`, `labelStyle`, `labelWeight`, `errorSize`, `errorStyle`, `errorWeight`, `errorFamily`.
29
+ - **TEXTAREA** Add props: `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`, `borderRadius`, `labelFontSize`, `labelFontStyle`, `labelFontWeight`, `errorFontSize`, `errorFontStyle`, `errorFontWeight`, `errorFontFamily`, `borderWidth`.
30
+ - **TEXTAREA** Add config: `TEXTAREA.box.width`.
31
+ - **TOOLTIP** Deprecate props: `radius`, `tooltipRadius`.
32
+ - **TOOLTIP** Add props: `borderRadius`, `tooltipBorderRadius`.
33
+ - **TYPOGRAPHY** Deprecate props: `size`, `weight`, `radius`.
34
+ - **TYPOGRAPHY** Add props: `fontSize`, `fontWeight`, `borderRadius`.
35
+ - **TABLE** Deprecate prop: `tHeadFamily`.
36
+ - **TABLE** Add props: `tBodyFontStyle`, `tHeadFontFamily`.
37
+ - **AUTOCOMPLETE** Deprecate props: `labelSize`, `labelStyle`, `labelWeight`, `errorSize`, `errorStyle`, `errorWeight`, `errorFamily`.
38
+ - **AUTOCOMPLETE** Add props: `labelFontSize`, `labelFontStyle`, `labelFontWeight`, `errorFontSize`, `errorFontStyle`, `errorFontWeight`, `errorFontFamily`.
39
+ - **LAYOUT** Replace `vh` usage with `dvh` for improved mobile viewport handling.
40
+ - **BUTTON** Align some `BUTTON` prop names with `FILE` naming.
41
+
42
+ ## [0.3.0] - 2025-12-08
43
+
44
+ ### Added
45
+ - **FILE** Add label margin bottom support.
46
+
47
+ ### Changed
48
+ - **BUTTON** Refactor and corrections.
49
+ - **BUTTON** Rename `hoverIcon` prop to `iconHover` and rebuild related storybook usage.
50
+
51
+ ## [0.2.34] - 2025-11-27
52
+
53
+ ### Fixed
54
+ - **INPUT, SELECT, AUTOCOMPLETE** Reuse each component's label margin when rendering the "show more / show less" trigger so the toggle no longer collapses surrounding spacing.
55
+
8
56
  ## [0.2.33] - 2025-11-25
9
57
 
10
58
  ### Added