react-native-slot-text 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-slot-text",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "author": "sc-mitton <scm.mitton@gmail.com> (https://github.com/sc-mitton)",
5
5
  "main": "index.js",
6
6
  "module": "index.ts",
package/styles.d.ts CHANGED
@@ -6,13 +6,11 @@ declare const styles: {
6
6
  position: "absolute";
7
7
  flexDirection: "row";
8
8
  opacity: number;
9
- gap: number;
10
9
  };
11
10
  slotsContainer: {
12
11
  position: "absolute";
13
12
  flexDirection: "row";
14
13
  justifyContent: "center";
15
- gap: number;
16
14
  };
17
15
  };
18
16
  export default styles;
package/styles.js CHANGED
@@ -7,13 +7,11 @@ const styles = StyleSheet.create({
7
7
  position: 'absolute',
8
8
  flexDirection: 'row',
9
9
  opacity: 0,
10
- gap: 2
11
10
  },
12
11
  slotsContainer: {
13
12
  position: 'absolute',
14
13
  flexDirection: 'row',
15
14
  justifyContent: 'center',
16
- gap: 2,
17
15
  }
18
16
  });
19
17
  export default styles;