@widergy/mobile-ui 1.36.1 → 1.36.2
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
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.36.2](https://github.com/widergy/mobile-ui/compare/v1.36.1...v1.36.2) (2025-02-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fixes markdown but better ([#411](https://github.com/widergy/mobile-ui/issues/411)) ([da7a66e](https://github.com/widergy/mobile-ui/commit/da7a66edec566c22981035590259ff92101d8318))
|
|
7
|
+
|
|
1
8
|
## [1.36.1](https://github.com/widergy/mobile-ui/compare/v1.36.0...v1.36.1) (2025-02-12)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -7,7 +7,7 @@ import UTLabel from '../UTLabel';
|
|
|
7
7
|
import { REQUIRED_LABEL } from './constants';
|
|
8
8
|
import styles from './styles';
|
|
9
9
|
|
|
10
|
-
const UTFieldLabel = ({ children, colorTheme, required, style, variant, weight, withMarkdown }) => (
|
|
10
|
+
const UTFieldLabel = ({ children, colorTheme, required, style, variant, weight, withMarkdown = true }) => (
|
|
11
11
|
<View style={[styles.label, style]}>
|
|
12
12
|
<UTLabel colorTheme={colorTheme} variant={variant} weight={weight} withMarkdown={withMarkdown}>
|
|
13
13
|
{children}
|
|
@@ -47,7 +47,7 @@ const UTRating = ({
|
|
|
47
47
|
return (
|
|
48
48
|
<View style={[styles.container, classNames.container]} data-testid={dataTestId}>
|
|
49
49
|
{title && (
|
|
50
|
-
<UTFieldLabel colorTheme="dark" required={required}
|
|
50
|
+
<UTFieldLabel colorTheme="dark" required={required}>
|
|
51
51
|
{title}
|
|
52
52
|
</UTFieldLabel>
|
|
53
53
|
)}
|
package/package.json
CHANGED