@umituz/react-native-design-system 2.3.27 → 2.3.28
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/src/types/react-native.d.ts +21 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.28",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import 'react-native';
|
|
2
|
+
|
|
3
|
+
declare module 'react-native' {
|
|
4
|
+
import { FC } from 'react';
|
|
5
|
+
import { ViewProps as RNViewProps, TextProps as RNTextProps } from 'react-native';
|
|
6
|
+
|
|
7
|
+
export const View: FC<RNViewProps>;
|
|
8
|
+
export const Text: FC<RNTextProps>;
|
|
9
|
+
export const ScrollView: FC<any>;
|
|
10
|
+
export const FlatList: FC<any>;
|
|
11
|
+
export const TouchableOpacity: FC<any>;
|
|
12
|
+
export const TouchableHighlight: FC<any>;
|
|
13
|
+
export const Pressable: FC<any>;
|
|
14
|
+
export const TextInput: FC<any>;
|
|
15
|
+
export const Image: FC<any>;
|
|
16
|
+
export const ActivityIndicator: FC<any>;
|
|
17
|
+
export const Modal: FC<any>;
|
|
18
|
+
export const Switch: FC<any>;
|
|
19
|
+
export const KeyboardAvoidingView: FC<any>;
|
|
20
|
+
export const RefreshControl: FC<any>;
|
|
21
|
+
}
|