react-native-slot-text 1.0.1 → 1.0.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/package.json +1 -1
- package/styles.d.ts +0 -2
- package/styles.js +0 -2
package/package.json
CHANGED
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;
|