react-native-reanimated-carousel 2.3.8 → 2.3.9

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.
Files changed (28) hide show
  1. package/lib/typescript/{src/Carousel.d.ts → Carousel.d.ts} +0 -0
  2. package/lib/typescript/{src/LazyView.d.ts → LazyView.d.ts} +0 -0
  3. package/lib/typescript/{src/ScrollViewGesture.d.ts → ScrollViewGesture.d.ts} +0 -0
  4. package/lib/typescript/{src/constants → constants}/index.d.ts +0 -0
  5. package/lib/typescript/{src/hooks → hooks}/useAutoPlay.d.ts +0 -0
  6. package/lib/typescript/{src/hooks → hooks}/useCarouselController.d.ts +0 -0
  7. package/lib/typescript/{src/hooks → hooks}/useCheckMounted.d.ts +0 -0
  8. package/lib/typescript/{src/hooks → hooks}/useCommonVariables.d.ts +0 -0
  9. package/lib/typescript/{src/hooks → hooks}/useInitProps.d.ts +0 -0
  10. package/lib/typescript/{src/hooks → hooks}/useLayoutConfig.d.ts +0 -0
  11. package/lib/typescript/{src/hooks → hooks}/useOffsetX.d.ts +0 -0
  12. package/lib/typescript/{src/hooks → hooks}/useOnProgressChange.d.ts +0 -0
  13. package/lib/typescript/{src/hooks → hooks}/usePropsErrorBoundary.d.ts +0 -0
  14. package/lib/typescript/{src/hooks → hooks}/useVisibleRanges.d.ts +0 -0
  15. package/lib/typescript/{src/index.d.ts → index.d.ts} +0 -0
  16. package/lib/typescript/{src/layouts → layouts}/BaseLayout.d.ts +0 -0
  17. package/lib/typescript/{src/layouts → layouts}/ParallaxLayout.d.ts +0 -0
  18. package/lib/typescript/{src/layouts → layouts}/index.d.ts +0 -0
  19. package/lib/typescript/{src/layouts → layouts}/normal.d.ts +0 -0
  20. package/lib/typescript/{src/layouts → layouts}/parallax.d.ts +0 -0
  21. package/lib/typescript/{src/layouts → layouts}/stack.d.ts +0 -0
  22. package/lib/typescript/{src/store → store}/index.d.ts +0 -0
  23. package/lib/typescript/{src/types.d.ts → types.d.ts} +1 -0
  24. package/lib/typescript/{src/utils → utils}/computedWithAutoFillData.d.ts +0 -0
  25. package/lib/typescript/{src/utils → utils}/dealWithAnimation.d.ts +0 -0
  26. package/lib/typescript/{src/utils → utils}/log.d.ts +0 -0
  27. package/package.json +1 -1
  28. package/lib/typescript/exampleBare/App.d.ts +0 -2
File without changes
File without changes
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { ViewStyle } from 'react-native';
2
3
  import type { PanGestureHandlerProps } from 'react-native-gesture-handler';
3
4
  import type { AnimatedStyleProp, WithSpringConfig, WithTimingConfig } from 'react-native-reanimated';
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-reanimated-carousel",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.",
5
5
  "main": "lib/commonjs/index",
6
6
  "types": "lib/typescript/index.d.ts",
@@ -1,2 +0,0 @@
1
- declare const App: () => JSX.Element;
2
- export default App;