react-native-ui-lib 7.38.1-snapshot.6451 → 7.38.1-snapshot.6453

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "7.38.1-snapshot.6451",
3
+ "version": "7.38.1-snapshot.6453",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -27,6 +27,6 @@ export const components = {
27
27
  return require("./plusSmall.png");
28
28
  },
29
29
  get transparentSwatch() {
30
- return require("./TransparentSwatch.png");
30
+ return require("./transparentSwatch.png");
31
31
  }
32
32
  };
@@ -156,7 +156,7 @@ class Image extends PureComponent {
156
156
  } = modifiers;
157
157
  return (
158
158
  // @ts-ignore
159
- <ImageView style={[Constants.isWeb && source?.dimensions, tintColor && {
159
+ <ImageView style={[tintColor && {
160
160
  tintColor
161
161
  }, shouldFlipRTL && styles.rtlFlipped, width && {
162
162
  width
@@ -1,36 +0,0 @@
1
- const outline = require('./outline').default;
2
-
3
- const components = {
4
- get outline() {
5
- return outline;
6
- },
7
- get arrowDown() {
8
- return {uri: require('./arrowDown.png'), dimensions: {width: 16, height: 16}};
9
- },
10
- get checkMarkSmall() {
11
- return {uri: require('./checkMarkSmall.png'), dimensions: {width: 16, height: 16}};
12
- },
13
- get dropdown() {
14
- return {uri: require('./dropdown.png'), dimensions: {width: 16, height: 16}};
15
- },
16
- get exclamationSmall() {
17
- return {uri: require('./exclamationSmall.png'), dimensions: {width: 16, height: 16}};
18
- },
19
- get hintTipMiddle() {
20
- return {uri: require('./hintTipMiddle.png'), dimensions: {width: 20, height: 7}};
21
- },
22
- get hintTipSide() {
23
- return {uri: require('./hintTipSide.png'), dimensions: {width: 20, height: 24}};
24
- },
25
- get minusSmall() {
26
- return {uri: require('./minusSmall.png'), dimensions: {width: 16, height: 16}};
27
- },
28
- get plusSmall() {
29
- return {uri: require('./plusSmall.png'), dimensions: {width: 16, height: 16}};
30
- },
31
- get transparentSwatch() {
32
- return {uri: require('./TransparentSwatch.png'), dimensions: {width: 100, height: 100}};
33
- }
34
- };
35
-
36
- module.exports = components;
@@ -1,14 +0,0 @@
1
- export default {
2
- get minus() {
3
- return {uri: require('./minusOutline.png'), dimensions: {width: 32, height: 32}};
4
- },
5
- get minusSmall() {
6
- return {uri: require('./minusOutlineSmall.png'), dimensions: {width: 24, height: 24}};
7
- },
8
- get plus() {
9
- return {uri: require('./plusOutline.png'), dimensions: {width: 32, height: 32}};
10
- },
11
- get plusSmall() {
12
- return {uri: require('./plusOutlineSmall.png'), dimensions: {width: 24, height: 24}};
13
- }
14
- };
@@ -1,31 +0,0 @@
1
- const icons = {
2
- get check() {
3
- return {uri: require('./check.png'), dimensions: {width: 21, height: 15}};
4
- },
5
- get checkSmall() {
6
- return {uri: require('./check-small.png'), dimensions: {width: 24, height: 24}};
7
- },
8
- get minusSmall() {
9
- return {uri: require('./minusSmall.png'), dimensions: {width: 16, height: 16}};
10
- },
11
- get plusSmall() {
12
- return {uri: require('./plusSmall.png'), dimensions: {width: 16, height: 16}};
13
- },
14
- get search() {
15
- return {uri: require('./search.png'), dimensions: {width: 24, height: 24}};
16
- },
17
- get x() {
18
- return {uri: require('./x.png'), dimensions: {width: 17, height: 16}};
19
- },
20
- get xSmall() {
21
- return {uri: require('./xSmall.png'), dimensions: {width: 16, height: 16}};
22
- },
23
- get xMedium() {
24
- return {uri: require('./xMedium.png'), dimensions: {width: 24, height: 24}};
25
- },
26
- get xFlat() {
27
- return {uri: require('./xFlat.png'), dimensions: {width: 16, height: 16}};
28
- }
29
- };
30
-
31
- module.exports = icons;