Skip to content

Commit 8a76f3e

Browse files
authored
v50
1 parent 3112d4f commit 8a76f3e

File tree

1,063 files changed

+66591
-1302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,063 files changed

+66591
-1302
lines changed

.types/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.zip

.types/packages.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@legendapp/motion=2.4.0
2+
@lingui/core=5.4.1
3+
@lingui/react=5.4.1
4+
@types/react=19.1.1
5+
@types/react-dom=19.1.1
6+
react-exo=0.20.18
7+
# FIXME react-native=0.81.1
8+
react-native-svg=15.13.0
9+
react-native-unistyles=3.0.12
10+
csstype=3.1.3
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './typescript/index';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './typescript/linear-gradient-expo';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './typescript/linear-gradient';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"@legendapp/motion","version":"2.4.0","types":"index.d.ts","exports":{".":{"types":"./index.d.ts"},"./styled":{"types":"./styled.d.ts"},"./svg":{"types":"./svg.d.ts"},"./linear-gradient-expo":{"types":"./linear-gradient-expo.d.ts"},"./linear-gradient":{"types":"./linear-gradient.d.ts"},"./typescript":{"types":"./typescript/index.d.ts"}},"dependencies":{"@legendapp/tools":"2.0.1"},"peerDependencies":{"react":">=16","react-native":"*","nativewind":"*"}}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './lib/typescript/styled';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './lib/typescript/svg';
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { ReactNode } from 'react';
2+
interface Props {
3+
children: ReactNode;
4+
}
5+
export declare function AnimatePresence({ children }: Props): JSX.Element;
6+
export {};
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Animated } from 'react-native';
2+
import { MotionPressable } from './MotionPressable';
3+
export declare namespace Motion {
4+
const View: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("./Interfaces").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement;
5+
const Text: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<import("react-native").TextProps & import("react").RefAttributes<import("react-native").Text>> & import("./Interfaces").MotionComponentProps<typeof import("react-native").Text, import("react-native").TextStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").Text>) => import("react").ReactElement;
6+
const FlatList: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<Animated.AnimatedProps<import("react-native").FlatListProps<unknown>> & import("react").RefAttributes<Animated.FlatList<unknown>>> & import("./Interfaces").MotionComponentProps<typeof Animated.FlatList, Animated.Value | Animated.AnimatedInterpolation | Animated.WithAnimatedObject<import("react-native").ViewStyle>, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<Animated.FlatList<unknown>>) => import("react").ReactElement;
7+
const Image: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<import("react-native").ImageProps & import("react").RefAttributes<import("react-native").Image>> & import("./Interfaces").MotionComponentProps<typeof import("react-native").Image, import("react-native").ImageStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").Image>) => import("react").ReactElement;
8+
const ScrollView: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<import("react-native").ScrollViewProps & import("react").RefAttributes<import("react-native").ScrollView>> & import("./Interfaces").MotionComponentProps<typeof import("react-native").ScrollView, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").ScrollView>) => import("react").ReactElement;
9+
const SectionList: <TAnimate, TAnimateProps>(p: Animated.AnimatedProps<Animated.AnimatedProps<import("react-native").SectionListProps<unknown, unknown>> & import("react").RefAttributes<Animated.SectionList<unknown, unknown>>> & import("./Interfaces").MotionComponentProps<typeof Animated.SectionList, Animated.Value | Animated.AnimatedInterpolation | Animated.WithAnimatedObject<import("react-native").ViewStyle>, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<Animated.SectionList<unknown, unknown>>) => import("react").ReactElement;
10+
const Pressable: typeof MotionPressable;
11+
}

0 commit comments

Comments
 (0)