@hoddy-ui/next 2.0.0
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/index.ts +33 -0
- package/package.json +42 -0
package/index.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { initialize } from "../src/config";
|
|
2
|
+
|
|
3
|
+
// Components
|
|
4
|
+
export { default as AdaptiveStatusBar } from "../src/Components/AdaptiveStatusBarNext";
|
|
5
|
+
export { default as AlertX } from "../src/Components/AlertX";
|
|
6
|
+
export { default as Avatar } from "../src/Components/Avatar";
|
|
7
|
+
export * from "../src/Components/Button";
|
|
8
|
+
export { default as Button } from "../src/Components/Button";
|
|
9
|
+
export * from "../src/Components/Checkbox";
|
|
10
|
+
export * from "../src/Components/FlashMessage";
|
|
11
|
+
export * from "../src/Components/FormWrapper";
|
|
12
|
+
export * from "../src/Components/StarRating";
|
|
13
|
+
export * from "../src/Components/Grid";
|
|
14
|
+
export * from "../src/Components/Locator";
|
|
15
|
+
export * from "../src/Components/Popup";
|
|
16
|
+
export * from "../src/Components/SafeAreaView";
|
|
17
|
+
export * from "../src/Components/Divider";
|
|
18
|
+
export { default as SelectMenu } from "../src/Components/SelectMenu";
|
|
19
|
+
export { default as Spinner } from "../src/Components/Spinner";
|
|
20
|
+
export * from "../src/Components/TextField";
|
|
21
|
+
export { default as TextField } from "../src/Components/TextField";
|
|
22
|
+
export { default as Typography } from "../src/Components/Typography";
|
|
23
|
+
export * from "../src/Components/OTPInput";
|
|
24
|
+
// Others
|
|
25
|
+
// export * from "../src/config";
|
|
26
|
+
export * from "../src/hooks";
|
|
27
|
+
export * from "../src/theme";
|
|
28
|
+
|
|
29
|
+
const HoddyUI = {
|
|
30
|
+
initialize: initialize,
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export default HoddyUI;
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hoddy-ui/next",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Core rich react native components written in typescript, with support for expo-router",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"repository": {
|
|
7
|
+
"directory": "packages/core/next",
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/kinghoddy/hoddy-ui"
|
|
10
|
+
},
|
|
11
|
+
"author": "Hoddy inc",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"private": false,
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"@expo/vector-icons": "^13.0.0",
|
|
16
|
+
"@types/react": "^18.2.6",
|
|
17
|
+
"@types/react-native": "^0.72.0",
|
|
18
|
+
"expo-haptics": ">=12.4.0",
|
|
19
|
+
"expo-location": ">=15.1.1",
|
|
20
|
+
"expo-navigation-bar": ">=2.1.1",
|
|
21
|
+
"expo-router": ">=1.0.0",
|
|
22
|
+
"expo-system-ui": ">=2.2.1",
|
|
23
|
+
"react": "^18.2.0",
|
|
24
|
+
"react-native": ">=0.71.8",
|
|
25
|
+
"react-native-safe-area-context": ">=4.5.3",
|
|
26
|
+
"typescript": "^5.0.4"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"react-native",
|
|
30
|
+
"react-native-component",
|
|
31
|
+
"hui",
|
|
32
|
+
"hoddy-ui",
|
|
33
|
+
"kinghoddy"
|
|
34
|
+
],
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@react-native-async-storage/async-storage": "^1.18.1",
|
|
37
|
+
"react-native-size-matters": "^0.4.0"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
}
|
|
42
|
+
}
|