react-native-terra-ui 0.2.0 → 0.2.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 +6 -0
- package/package.json +2 -4
- package/src/components/image/Image.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.1](https://github.com/earthling-std/react-native-terra-ui/compare/v0.2.0...v0.2.1) (2026-08-22)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **ui:** stop exporting a source condition consumers cannot resolve ([641385d](https://github.com/earthling-std/react-native-terra-ui/commit/641385da5e1b639c924d267fad3a66f79ac3a96a))
|
|
8
|
+
|
|
3
9
|
## [0.2.0](https://github.com/earthling-std/react-native-terra-ui/compare/v0.1.1...v0.2.0) (2026-08-22)
|
|
4
10
|
|
|
5
11
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-terra-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Themeable React Native UI components built on react-native-unistyles",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
7
7
|
"imports": {
|
|
8
|
-
"#*": "./src
|
|
8
|
+
"#*": "./src/*.ts"
|
|
9
9
|
},
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"source": "./src/index.tsx",
|
|
13
12
|
"types": "./lib/typescript/src/index.d.ts",
|
|
14
13
|
"default": "./lib/module/index.js"
|
|
15
14
|
},
|
|
16
15
|
"./theme": {
|
|
17
|
-
"source": "./src/theme/index.ts",
|
|
18
16
|
"types": "./lib/typescript/src/theme/index.d.ts",
|
|
19
17
|
"default": "./lib/module/theme/index.js"
|
|
20
18
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { View } from 'react-native';
|
|
2
2
|
import { StyleSheet } from 'react-native-unistyles';
|
|
3
3
|
import { getImageComponent } from '#theme/registry';
|
|
4
|
-
import type { RadiusKey } from '#theme/types
|
|
4
|
+
import type { RadiusKey } from '#theme/types';
|
|
5
5
|
import type { ImageProps } from './types';
|
|
6
6
|
|
|
7
7
|
/**
|