@widergy/mobile-ui 2.12.0 → 2.12.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,17 @@
|
|
|
1
|
+
## [2.12.2](https://github.com/widergy/mobile-ui/compare/v2.12.1...v2.12.2) (2026-04-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [UGGC-101] utcoupon title size ([#498](https://github.com/widergy/mobile-ui/issues/498)) ([7544789](https://github.com/widergy/mobile-ui/commit/7544789f1f25bdf10bfd77d80816a32b586cfe10))
|
|
7
|
+
|
|
8
|
+
## [2.12.1](https://github.com/widergy/mobile-ui/compare/v2.12.0...v2.12.1) (2026-04-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* [DEV-766] remove --cache flag from eslint lint scripts ([#497](https://github.com/widergy/mobile-ui/issues/497)) ([fe01153](https://github.com/widergy/mobile-ui/commit/fe011534839012d5b9c67666ad3be7d3f05edb4c))
|
|
14
|
+
|
|
1
15
|
# [2.12.0](https://github.com/widergy/mobile-ui/compare/v2.11.0...v2.12.0) (2026-04-13)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -11,14 +11,7 @@ import UTLabel from '../../../UTLabel';
|
|
|
11
11
|
import { bytesFormater } from './utils';
|
|
12
12
|
import styles from './styles';
|
|
13
13
|
|
|
14
|
-
const UploadedFiles = ({
|
|
15
|
-
dataTestId,
|
|
16
|
-
disabled = false,
|
|
17
|
-
file,
|
|
18
|
-
filePlaceholder,
|
|
19
|
-
index,
|
|
20
|
-
onDelete
|
|
21
|
-
}) => {
|
|
14
|
+
const UploadedFiles = ({ dataTestId, disabled = false, file, filePlaceholder, index, onDelete }) => {
|
|
22
15
|
return (
|
|
23
16
|
<Surface style={styles.container} testID={dataTestId ? `${dataTestId}.preview.${index}` : undefined}>
|
|
24
17
|
<UTIcon name="IconCheck" size={32} colorTheme="accent" shade="04" />
|
|
@@ -99,7 +99,7 @@ const UTCoupon = ({
|
|
|
99
99
|
<UTLabel
|
|
100
100
|
dataTestId={dataTestId ? `${dataTestId}.${titleTestId}` : undefined}
|
|
101
101
|
colorTheme="dark"
|
|
102
|
-
variant="
|
|
102
|
+
variant="title3"
|
|
103
103
|
weight="medium"
|
|
104
104
|
style={themedStyles.title}
|
|
105
105
|
>
|
|
@@ -122,7 +122,7 @@ const UTCoupon = ({
|
|
|
122
122
|
<UTLabel
|
|
123
123
|
dataTestId={dataTestId ? `${dataTestId}.${valueTestId}` : undefined}
|
|
124
124
|
colorTheme="accent"
|
|
125
|
-
variant="
|
|
125
|
+
variant="title3"
|
|
126
126
|
weight="medium"
|
|
127
127
|
style={themedStyles.value}
|
|
128
128
|
>
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@widergy/mobile-ui",
|
|
3
3
|
"description": "Widergy Mobile Components",
|
|
4
4
|
"author": "widergy",
|
|
5
|
-
"version": "2.12.
|
|
5
|
+
"version": "2.12.2",
|
|
6
6
|
"repository": "https://github.com/widergy/mobile-ui.git",
|
|
7
7
|
"main": "lib/index.js",
|
|
8
8
|
"files": [
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"lint:fix": "eslint --fix lib example/src",
|
|
14
14
|
"lint": "yarn lint:example && yarn lint:root",
|
|
15
15
|
"lint-suppress": "yarn lint-suppress:example & yarn lint-suppress:root",
|
|
16
|
-
"lint:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --
|
|
17
|
-
"lint:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --
|
|
18
|
-
"lint-suppress:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --
|
|
19
|
-
"lint-suppress:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --
|
|
16
|
+
"lint:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --prune-suppressions example/src",
|
|
17
|
+
"lint:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --prune-suppressions lib",
|
|
18
|
+
"lint-suppress:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --suppress-all example/src",
|
|
19
|
+
"lint-suppress:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --suppress-all lib",
|
|
20
20
|
"lint-diff": "git diff --name-only --cached --relative --diff-filter=ACM | grep \\.js$ | xargs ./node_modules/eslint/bin/eslint.js",
|
|
21
21
|
"build": "babel lib --out-dir dist",
|
|
22
22
|
"test": "jest",
|