react-native-album-display 1.0.1 → 1.0.3
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/components/index.js +7 -0
- package/index.js +7 -0
- package/package.json +2 -3
@@ -0,0 +1,7 @@
|
|
1
|
+
export { default as AlbumBasicData } from './albumDetailsSubcomponents/AlbumBasicData';
|
2
|
+
export { default as AlbumTracklist } from './albumDetailsSubcomponents/AlbumTracklist';
|
3
|
+
export { default as RatesStatistics } from './albumDetailsSubcomponents/RatesStatistics';
|
4
|
+
export { default as FadeInView } from './animations/FadeInView';
|
5
|
+
export { default as CoverComponent } from './CoverComponent';
|
6
|
+
export { default as AlbumDetails } from './AlbumDetails';
|
7
|
+
export { default as CoverGroup } from './CoverGroup';
|
package/index.js
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
import { registerRootComponent } from 'expo';
|
2
|
+
import App from './App';
|
3
|
+
|
4
|
+
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
|
5
|
+
// It also ensures that whether you load the app in Expo Go or in a native build,
|
6
|
+
// the environment is set up appropriately
|
7
|
+
registerRootComponent(App);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-native-album-display",
|
3
3
|
"description": "A simple album display component for React Native",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.3",
|
5
5
|
"authors": [
|
6
6
|
{
|
7
7
|
"email": "guille@carvajal.es",
|
@@ -11,7 +11,7 @@
|
|
11
11
|
"name": "Diego Moragón Merallo"
|
12
12
|
}
|
13
13
|
],
|
14
|
-
"main": "
|
14
|
+
"main": "components/index.js",
|
15
15
|
"scripts": {
|
16
16
|
"start": "expo start",
|
17
17
|
"android": "expo start --android",
|
@@ -26,7 +26,6 @@
|
|
26
26
|
"react": "18.3.1",
|
27
27
|
"react-dom": "18.3.1",
|
28
28
|
"react-native": "0.76.7",
|
29
|
-
"react-native-album-display": "^1.0.0",
|
30
29
|
"react-native-chart-kit": "^6.12.0",
|
31
30
|
"react-native-linear-gradient": "^2.8.3",
|
32
31
|
"react-native-star-rating-widget": "^1.9.2",
|