@xaypay/tui 0.2.33 → 0.2.34

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,14 @@ 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.33] - 2025-11-25
9
+
10
+ ### Added
11
+ - **INPUT, SELECT, TEXTAREA, AUTOCOMPLETE** Add label show more or less functionality on input, select, textarea, and autocomplete components like file component
12
+
13
+ ### Changed
14
+ - **INPUT, SELECT, TEXTAREA, AUTOCOMPLETE, FILE** Change show less position in all labels
15
+
8
16
  ## [0.2.32] - 2025-11-10
9
17
 
10
18
  ### Fixed
package/dist/index.es.js CHANGED
@@ -5828,7 +5828,8 @@ const Input = ({
5828
5828
  fontStyle: labelStyle ?? configStyles.INPUT.label.font.style,
5829
5829
  fontWeight: labelWeight ?? configStyles.INPUT.label.font.weight,
5830
5830
  fontFamily: labelFontFamily ?? configStyles.INPUT.label.font.family,
5831
- color: showMoreTextColor ?? configStyles.INPUT.label.showMoreTextColor
5831
+ color: showMoreTextColor ?? configStyles.INPUT.label.showMoreTextColor,
5832
+ marginBottom: labelMarginBottom ?? configStyles.INPUT.label.marginBottom
5832
5833
  },
5833
5834
  onClick: handleChangeShowMore
5834
5835
  }, labelShowMoreText ?? configStyles.INPUT.label.showMoreText) : ''), /*#__PURE__*/React__default.createElement("div", {
@@ -6656,7 +6657,8 @@ const Select = ({
6656
6657
  fontStyle: labelFontStyle ?? configStyles.SELECT.label.font.style,
6657
6658
  fontWeight: labelWeight ?? configStyles.SELECT.label.font.weight,
6658
6659
  fontFamily: labelFontFamily ?? configStyles.SELECT.label.font.family,
6659
- color: showMoreTextColor ?? configStyles.SELECT.label.showMoreTextColor
6660
+ color: showMoreTextColor ?? configStyles.SELECT.label.showMoreTextColor,
6661
+ marginBottom: labelMarginBottom ?? configStyles.INPUT.label.marginBottom
6660
6662
  },
6661
6663
  onClick: handleChangeShowMore
6662
6664
  }, labelShowMoreText ?? configStyles.SELECT.label.showMoreText) : ''), /*#__PURE__*/React__default.createElement("div", {
@@ -9891,7 +9893,8 @@ const Autocomplete = ({
9891
9893
  fontStyle: labelStyle ?? configStyles.AUTOCOMPLETE.label.font.style,
9892
9894
  fontWeight: labelWeight ?? configStyles.AUTOCOMPLETE.label.font.weight,
9893
9895
  fontFamily: labelFontFamily ?? configStyles.AUTOCOMPLETE.label.font.family,
9894
- color: showMoreTextColor ?? configStyles.AUTOCOMPLETE.label.showMoreTextColor
9896
+ color: showMoreTextColor ?? configStyles.AUTOCOMPLETE.label.showMoreTextColor,
9897
+ marginBottom: labelMarginBottom ?? configStyles.AUTOCOMPLETE.label.marginBottom
9895
9898
  },
9896
9899
  onClick: handleChangeShowMore
9897
9900
  }, labelShowMoreText ?? configStyles.AUTOCOMPLETE.label.showMoreText) : ''), /*#__PURE__*/React__default.createElement("div", {
package/dist/index.js CHANGED
@@ -5859,7 +5859,8 @@ const Input = ({
5859
5859
  fontStyle: labelStyle ?? configStyles.INPUT.label.font.style,
5860
5860
  fontWeight: labelWeight ?? configStyles.INPUT.label.font.weight,
5861
5861
  fontFamily: labelFontFamily ?? configStyles.INPUT.label.font.family,
5862
- color: showMoreTextColor ?? configStyles.INPUT.label.showMoreTextColor
5862
+ color: showMoreTextColor ?? configStyles.INPUT.label.showMoreTextColor,
5863
+ marginBottom: labelMarginBottom ?? configStyles.INPUT.label.marginBottom
5863
5864
  },
5864
5865
  onClick: handleChangeShowMore
5865
5866
  }, labelShowMoreText ?? configStyles.INPUT.label.showMoreText) : ''), /*#__PURE__*/React__default["default"].createElement("div", {
@@ -6687,7 +6688,8 @@ const Select = ({
6687
6688
  fontStyle: labelFontStyle ?? configStyles.SELECT.label.font.style,
6688
6689
  fontWeight: labelWeight ?? configStyles.SELECT.label.font.weight,
6689
6690
  fontFamily: labelFontFamily ?? configStyles.SELECT.label.font.family,
6690
- color: showMoreTextColor ?? configStyles.SELECT.label.showMoreTextColor
6691
+ color: showMoreTextColor ?? configStyles.SELECT.label.showMoreTextColor,
6692
+ marginBottom: labelMarginBottom ?? configStyles.INPUT.label.marginBottom
6691
6693
  },
6692
6694
  onClick: handleChangeShowMore
6693
6695
  }, labelShowMoreText ?? configStyles.SELECT.label.showMoreText) : ''), /*#__PURE__*/React__default["default"].createElement("div", {
@@ -9922,7 +9924,8 @@ const Autocomplete = ({
9922
9924
  fontStyle: labelStyle ?? configStyles.AUTOCOMPLETE.label.font.style,
9923
9925
  fontWeight: labelWeight ?? configStyles.AUTOCOMPLETE.label.font.weight,
9924
9926
  fontFamily: labelFontFamily ?? configStyles.AUTOCOMPLETE.label.font.family,
9925
- color: showMoreTextColor ?? configStyles.AUTOCOMPLETE.label.showMoreTextColor
9927
+ color: showMoreTextColor ?? configStyles.AUTOCOMPLETE.label.showMoreTextColor,
9928
+ marginBottom: labelMarginBottom ?? configStyles.AUTOCOMPLETE.label.marginBottom
9926
9929
  },
9927
9930
  onClick: handleChangeShowMore
9928
9931
  }, labelShowMoreText ?? configStyles.AUTOCOMPLETE.label.showMoreText) : ''), /*#__PURE__*/React__default["default"].createElement("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaypay/tui",
3
- "version": "0.2.33",
3
+ "version": "0.2.34",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",