dhre-ui-kit 0.0.225 → 0.0.227

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/lib/index.mjs CHANGED
@@ -1556,7 +1556,8 @@ const CustomProgressBar = ({
1556
1556
  interval = 100,
1557
1557
  // Default interval to 100ms
1558
1558
  percentageText,
1559
- valueTextStyle
1559
+ valueTextStyle,
1560
+ percentageTextStyle
1560
1561
  }) => {
1561
1562
  useEffect(() => {
1562
1563
  const progressInterval = setInterval(() => {
@@ -1582,7 +1583,8 @@ const CustomProgressBar = ({
1582
1583
  {
1583
1584
  text: percentageText,
1584
1585
  variant: "L3_REGULAR",
1585
- textColor: "CONTENT_PRIMARY"
1586
+ textColor: "CONTENT_PRIMARY",
1587
+ style: percentageTextStyle
1586
1588
  }
1587
1589
  ) : null);
1588
1590
  };
@@ -3393,6 +3395,10 @@ const CommonTextInput = (props) => {
3393
3395
  TextInput$1,
3394
3396
  {
3395
3397
  mode: "outlined",
3398
+ underlineColor: "transparent",
3399
+ underlineColorAndroid: "transparent",
3400
+ spellCheck: false,
3401
+ autoCorrect: false,
3396
3402
  outlineStyle: {
3397
3403
  ...styles$9.outlineStyle,
3398
3404
  borderColor: errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : value?.length ? activeBorderColor : inactiveBorderColor