related-ui-components 1.9.2 → 1.9.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/lib/commonjs/app.js +159 -151
- package/lib/commonjs/app.js.map +1 -1
- package/lib/commonjs/components/Banner/Banner.js +1 -2
- package/lib/commonjs/components/Banner/Banner.js.map +1 -1
- package/lib/commonjs/components/index.js +29 -29
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/index.js +5 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/app.js +153 -151
- package/lib/module/app.js.map +1 -1
- package/lib/module/components/Banner/Banner.js +1 -2
- package/lib/module/components/Banner/Banner.js.map +1 -1
- package/lib/module/index.js +4 -7
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/app.d.ts +3 -0
- package/lib/typescript/commonjs/app.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/Banner/Banner.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/DateRangePicker/index.d.ts +1 -0
- package/lib/typescript/commonjs/components/SelectAmount/index.d.ts +1 -0
- package/lib/typescript/commonjs/components/TravelBooking/index.d.ts +1 -0
- package/lib/typescript/commonjs/index.d.ts +1 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/module/app.d.ts +3 -0
- package/lib/typescript/module/app.d.ts.map +1 -1
- package/lib/typescript/module/components/Banner/Banner.d.ts.map +1 -1
- package/lib/typescript/module/components/DateRangePicker/index.d.ts +1 -0
- package/lib/typescript/module/components/SelectAmount/index.d.ts +1 -0
- package/lib/typescript/module/components/TravelBooking/index.d.ts +1 -0
- package/lib/typescript/module/index.d.ts +1 -0
- package/lib/typescript/module/index.d.ts.map +1 -1
- package/package.json +24 -27
- package/src/app.tsx +121 -145
- package/src/components/Banner/Banner.tsx +1 -1
- package/src/index.ts +4 -4
package/lib/module/app.js
CHANGED
|
@@ -1,153 +1,155 @@
|
|
|
1
|
-
// // App.tsx or any other screen component
|
|
2
|
-
// import React, { useState } from "react";
|
|
3
|
-
// import {
|
|
4
|
-
// SafeAreaView,
|
|
5
|
-
// StyleSheet,
|
|
6
|
-
// TextInput,
|
|
7
|
-
// View,
|
|
8
|
-
// Text,
|
|
9
|
-
// ScrollView,
|
|
10
|
-
// Button,
|
|
11
|
-
// } from "react-native";
|
|
12
|
-
// import Barcode, { BarcodeFormat } from "./components/Barcode/Barcode";
|
|
13
|
-
|
|
14
|
-
// export default function App() {
|
|
15
|
-
// const [barcodeValue, setBarcodeValue] = useState("123456789012");
|
|
16
|
-
// const [barcodeFormat, setBarcodeFormat] = useState<BarcodeFormat>(
|
|
17
|
-
// BarcodeFormat.EAN13,
|
|
18
|
-
// );
|
|
19
|
-
// const [errorMsg, setErrorMsg] = useState<string | null>(null);
|
|
20
|
-
|
|
21
|
-
// const handleBarcodeError = (error: Error) => {
|
|
22
|
-
// console.error("Custom Barcode Error:", error.message);
|
|
23
|
-
// setErrorMsg(`Barcode Error: ${error.message}`);
|
|
24
|
-
// };
|
|
25
|
-
|
|
26
|
-
// const cycleFormat = () => {
|
|
27
|
-
// const formats = Object.values(BarcodeFormat);
|
|
28
|
-
// const currentIndex = formats.indexOf(barcodeFormat);
|
|
29
|
-
// const nextIndex = (currentIndex + 1) % formats.length;
|
|
30
|
-
// setBarcodeFormat(formats[nextIndex]);
|
|
31
|
-
// // Adjust value for specific formats if needed
|
|
32
|
-
// if (formats[nextIndex] === BarcodeFormat.EAN13) setBarcodeValue("978020137962"); // Valid EAN13
|
|
33
|
-
// else if (formats[nextIndex] === BarcodeFormat.UPC) setBarcodeValue("012345678905"); // Valid UPC
|
|
34
|
-
// else if (formats[nextIndex] === BarcodeFormat.CODE39) setBarcodeValue("HELLO-WORLD");
|
|
35
|
-
// else setBarcodeValue("TEST12345");
|
|
36
|
-
|
|
37
|
-
// };
|
|
38
|
-
|
|
39
|
-
// return (
|
|
40
|
-
// <SafeAreaView style={styles.container}>
|
|
41
|
-
// <ScrollView contentContainerStyle={styles.scrollContent}>
|
|
42
|
-
// <Text style={styles.title}>Custom Barcode Generator</Text>
|
|
43
|
-
|
|
44
|
-
// <TextInput
|
|
45
|
-
// style={styles.input}
|
|
46
|
-
// placeholder="Enter barcode value"
|
|
47
|
-
// value={barcodeValue}
|
|
48
|
-
// onChangeText={setBarcodeValue}
|
|
49
|
-
// autoCapitalize="characters" // Good for some formats like CODE39
|
|
50
|
-
// />
|
|
51
|
-
|
|
52
|
-
// <View style={styles.formatSelector}>
|
|
53
|
-
// <Text>Format: {barcodeFormat}</Text>
|
|
54
|
-
// <Button title="Cycle Format" onPress={cycleFormat} />
|
|
55
|
-
// </View>
|
|
56
|
-
|
|
57
|
-
// {errorMsg && <Text style={styles.errorTextDisplay}>{errorMsg}</Text>}
|
|
58
|
-
|
|
59
|
-
// <Text style={styles.label}>Default:</Text>
|
|
60
|
-
// <Barcode
|
|
61
|
-
// value={barcodeValue}
|
|
62
|
-
// format={barcodeFormat}
|
|
63
|
-
// onError={handleBarcodeError}
|
|
64
|
-
// />
|
|
65
|
-
|
|
66
|
-
// <Text style={styles.label}>Customized (CODE128):</Text>
|
|
67
|
-
// <Barcode
|
|
68
|
-
// value="CUSTOM-CODE-128"
|
|
69
|
-
// format={BarcodeFormat.CODE128}
|
|
70
|
-
// lineColor="blue"
|
|
71
|
-
// backgroundColor="#e0e0ff"
|
|
72
|
-
// height={80}
|
|
73
|
-
// width={1.5} // Bar width
|
|
74
|
-
// fontSize={16}
|
|
75
|
-
// textMargin={5}
|
|
76
|
-
// margin={20} // Margin around the SVG
|
|
77
|
-
// onError={handleBarcodeError}
|
|
78
|
-
// style={styles.customBarcodeStyle}
|
|
79
|
-
// />
|
|
80
|
-
|
|
81
|
-
// <Text style={styles.label}>No Text Value (EAN13):</Text>
|
|
82
|
-
// <Barcode
|
|
83
|
-
// value="590123412345" // Needs valid check digit for EAN13
|
|
84
|
-
// format={BarcodeFormat.EAN13}
|
|
85
|
-
// displayValue={false}
|
|
86
|
-
// onError={handleBarcodeError}
|
|
87
|
-
// />
|
|
88
|
-
|
|
89
|
-
// <Text style={styles.label}>Invalid Value Example (for EAN13):</Text>
|
|
90
|
-
// <Barcode
|
|
91
|
-
// value="INVALID" // This will likely cause an error for EAN13
|
|
92
|
-
// format={BarcodeFormat.EAN13}
|
|
93
|
-
// onError={handleBarcodeError}
|
|
94
|
-
// />
|
|
95
|
-
// <Text style={styles.label}>Empty Value:</Text>
|
|
96
|
-
// <Barcode
|
|
97
|
-
// value=""
|
|
98
|
-
// format={BarcodeFormat.CODE128}
|
|
99
|
-
// onError={handleBarcodeError}
|
|
100
|
-
// />
|
|
101
|
-
// </ScrollView>
|
|
102
|
-
// </SafeAreaView>
|
|
103
|
-
// );
|
|
104
|
-
// }
|
|
105
|
-
|
|
106
|
-
// const styles = StyleSheet.create({
|
|
107
|
-
// container: {
|
|
108
|
-
// flex: 1,
|
|
109
|
-
// backgroundColor: "#f0f0f0",
|
|
110
|
-
// },
|
|
111
|
-
// scrollContent: {
|
|
112
|
-
// alignItems: "center",
|
|
113
|
-
// padding: 20,
|
|
114
|
-
// },
|
|
115
|
-
// title: {
|
|
116
|
-
// fontSize: 24,
|
|
117
|
-
// fontWeight: "bold",
|
|
118
|
-
// marginBottom: 20,
|
|
119
|
-
// },
|
|
120
|
-
// input: {
|
|
121
|
-
// height: 40,
|
|
122
|
-
// borderColor: "gray",
|
|
123
|
-
// borderWidth: 1,
|
|
124
|
-
// paddingHorizontal: 10,
|
|
125
|
-
// marginBottom: 20,
|
|
126
|
-
// width: "90%",
|
|
127
|
-
// backgroundColor: "white",
|
|
128
|
-
// },
|
|
129
|
-
// label: {
|
|
130
|
-
// fontSize: 16,
|
|
131
|
-
// fontWeight: "600",
|
|
132
|
-
// marginTop: 20,
|
|
133
|
-
// marginBottom: 8,
|
|
134
|
-
// },
|
|
135
|
-
// customBarcodeStyle: {
|
|
136
|
-
// borderWidth: 1,
|
|
137
|
-
// borderColor: "purple",
|
|
138
|
-
// padding: 5, // Padding for the View container, not the barcode margin
|
|
139
|
-
// },
|
|
140
|
-
// formatSelector: {
|
|
141
|
-
// flexDirection: "row",
|
|
142
|
-
// alignItems: "center",
|
|
143
|
-
// justifyContent: "space-between",
|
|
144
|
-
// width: "90%",
|
|
145
|
-
// marginBottom: 15,
|
|
146
|
-
// },
|
|
147
|
-
// errorTextDisplay: {
|
|
148
|
-
// color: 'red',
|
|
149
|
-
// marginVertical: 10,
|
|
150
|
-
// }
|
|
151
|
-
// });
|
|
152
1
|
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { useState } from "react";
|
|
4
|
+
import { Text } from "react-native";
|
|
5
|
+
import { Popup, ScratchCard, ScratchCardContent } from "./components/index.js";
|
|
6
|
+
import { Ionicons } from "@expo/vector-icons";
|
|
7
|
+
import { useTheme } from "./theme/index.js";
|
|
8
|
+
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
9
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
10
|
+
const MyScreen = () => {
|
|
11
|
+
const [isFilterVisible, setIsFilterVisible] = useState(false);
|
|
12
|
+
const {
|
|
13
|
+
theme
|
|
14
|
+
} = useTheme();
|
|
15
|
+
const handleApplyFilters = result => {
|
|
16
|
+
console.log("Filters applied:", result);
|
|
17
|
+
// Process filter results...
|
|
18
|
+
};
|
|
19
|
+
const rewardsData = [{
|
|
20
|
+
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
21
|
+
name: "briefcase-outline",
|
|
22
|
+
size: 30,
|
|
23
|
+
color: theme.primary
|
|
24
|
+
}),
|
|
25
|
+
activeIcon: /*#__PURE__*/_jsx(Ionicons, {
|
|
26
|
+
name: "briefcase-outline",
|
|
27
|
+
size: 30,
|
|
28
|
+
color: theme.onPrimary
|
|
29
|
+
}),
|
|
30
|
+
title: "Aqua Guardian",
|
|
31
|
+
description: "Maintain water usage below the community average for a month.",
|
|
32
|
+
isActive: false,
|
|
33
|
+
status: "0/1",
|
|
34
|
+
statusBackgroundColor: "#FFCDD2",
|
|
35
|
+
statusTextColor: "#D32F2F"
|
|
36
|
+
}, {
|
|
37
|
+
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
38
|
+
name: "heart-outline",
|
|
39
|
+
size: 30,
|
|
40
|
+
color: theme.primary
|
|
41
|
+
}),
|
|
42
|
+
activeIcon: /*#__PURE__*/_jsx(Ionicons, {
|
|
43
|
+
name: "heart-outline",
|
|
44
|
+
size: 30,
|
|
45
|
+
color: theme.onPrimary
|
|
46
|
+
}),
|
|
47
|
+
title: "Wellness Warrior",
|
|
48
|
+
description: "Complete 30 days of healthy hydration tracking.",
|
|
49
|
+
isActive: true,
|
|
50
|
+
status: "15/30",
|
|
51
|
+
statusBackgroundColor: "#C8E6C9",
|
|
52
|
+
statusTextColor: "#388E3C"
|
|
53
|
+
}, {
|
|
54
|
+
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
55
|
+
name: "airplane-outline",
|
|
56
|
+
size: 24,
|
|
57
|
+
color: theme.helper
|
|
58
|
+
}),
|
|
59
|
+
activeIcon: /*#__PURE__*/_jsx(Ionicons, {
|
|
60
|
+
name: "airplane-outline",
|
|
61
|
+
size: 24,
|
|
62
|
+
color: theme.primary
|
|
63
|
+
}),
|
|
64
|
+
title: "Eco Traveler",
|
|
65
|
+
description: "Log 5 trips where you chose sustainable travel options.",
|
|
66
|
+
isActive: false,
|
|
67
|
+
status: "2/5",
|
|
68
|
+
statusBackgroundColor: theme.disabled,
|
|
69
|
+
statusTextColor: theme.text
|
|
70
|
+
}, {
|
|
71
|
+
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
72
|
+
name: "school-outline",
|
|
73
|
+
size: 24,
|
|
74
|
+
color: theme.helper
|
|
75
|
+
}),
|
|
76
|
+
activeIcon: /*#__PURE__*/_jsx(Ionicons, {
|
|
77
|
+
name: "school-outline",
|
|
78
|
+
size: 24,
|
|
79
|
+
color: theme.primary
|
|
80
|
+
}),
|
|
81
|
+
title: "Knowledge Seeker",
|
|
82
|
+
description: "Complete all water conservation learning modules.",
|
|
83
|
+
isActive: false,
|
|
84
|
+
status: "3/5",
|
|
85
|
+
statusBackgroundColor: theme.disabled,
|
|
86
|
+
statusTextColor: theme.text
|
|
87
|
+
}, {
|
|
88
|
+
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
89
|
+
name: "settings-outline",
|
|
90
|
+
size: 24,
|
|
91
|
+
color: theme.helper
|
|
92
|
+
}),
|
|
93
|
+
activeIcon: /*#__PURE__*/_jsx(Ionicons, {
|
|
94
|
+
name: "settings-outline",
|
|
95
|
+
size: 24,
|
|
96
|
+
color: theme.primary
|
|
97
|
+
}),
|
|
98
|
+
title: "Smart Saver",
|
|
99
|
+
description: "Set up and use all water-saving features in the app.",
|
|
100
|
+
isActive: true,
|
|
101
|
+
status: "4/4",
|
|
102
|
+
statusBackgroundColor: theme.primary,
|
|
103
|
+
statusTextColor: theme.background
|
|
104
|
+
}];
|
|
105
|
+
return /*#__PURE__*/_jsx(_Fragment, {
|
|
106
|
+
children: /*#__PURE__*/_jsx(GestureHandlerRootView, {
|
|
107
|
+
children: /*#__PURE__*/_jsx(Popup, {
|
|
108
|
+
visible: true,
|
|
109
|
+
onClose: () => {},
|
|
110
|
+
children: /*#__PURE__*/_jsx(ScratchCard, {
|
|
111
|
+
backgroundColor: "#8A2BE2",
|
|
112
|
+
text: "Scratch to reveal your prize!",
|
|
113
|
+
textFontColor: "#FFFFFF",
|
|
114
|
+
textFontSize: 18,
|
|
115
|
+
textFont: require("@/assets/fonts/SpaceMono-Regular.ttf"),
|
|
116
|
+
width: 300,
|
|
117
|
+
height: 150,
|
|
118
|
+
gradient: {
|
|
119
|
+
colors: ["#ff0000", "#00ff00", "#0000ff"],
|
|
120
|
+
start: {
|
|
121
|
+
x: 0,
|
|
122
|
+
y: 0
|
|
123
|
+
},
|
|
124
|
+
end: {
|
|
125
|
+
x: 300,
|
|
126
|
+
y: 300
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
onScratched: () => alert("Congratulations! You won a prize!"),
|
|
130
|
+
children: /*#__PURE__*/_jsxs(ScratchCardContent, {
|
|
131
|
+
style: {
|
|
132
|
+
backgroundColor: "#FFD700"
|
|
133
|
+
},
|
|
134
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
135
|
+
style: {
|
|
136
|
+
fontSize: 24,
|
|
137
|
+
fontWeight: "bold",
|
|
138
|
+
color: "#000"
|
|
139
|
+
},
|
|
140
|
+
children: "50% OFF COUPON"
|
|
141
|
+
}), /*#__PURE__*/_jsx(Text, {
|
|
142
|
+
style: {
|
|
143
|
+
marginTop: 8,
|
|
144
|
+
color: "#333"
|
|
145
|
+
},
|
|
146
|
+
children: "Use code: SCRATCH50"
|
|
147
|
+
})]
|
|
148
|
+
})
|
|
149
|
+
})
|
|
150
|
+
})
|
|
151
|
+
})
|
|
152
|
+
});
|
|
153
|
+
};
|
|
154
|
+
export default MyScreen;
|
|
153
155
|
//# sourceMappingURL=app.js.map
|
package/lib/module/app.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"..\\..\\src","sources":["app.tsx"],"mappings":"AAAA;
|
|
1
|
+
{"version":3,"names":["React","useState","Text","Popup","ScratchCard","ScratchCardContent","Ionicons","useTheme","GestureHandlerRootView","jsx","_jsx","jsxs","_jsxs","Fragment","_Fragment","MyScreen","isFilterVisible","setIsFilterVisible","theme","handleApplyFilters","result","console","log","rewardsData","icon","name","size","color","primary","activeIcon","onPrimary","title","description","isActive","status","statusBackgroundColor","statusTextColor","helper","disabled","text","background","children","visible","onClose","backgroundColor","textFontColor","textFontSize","textFont","require","width","height","gradient","colors","start","x","y","end","onScratched","alert","style","fontSize","fontWeight","marginTop"],"sourceRoot":"..\\..\\src","sources":["app.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React from "react";
|
|
4
|
-
import { StyleSheet, Text, View } from "react-native";
|
|
4
|
+
import { StyleSheet, Text, TouchableOpacity, View } from "react-native";
|
|
5
5
|
import { Card, CardFooter } from "../Card/index.js";
|
|
6
6
|
import { useTheme } from "../../theme/index.js";
|
|
7
|
-
import { TouchableOpacity } from "react-native-gesture-handler";
|
|
8
7
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
8
|
/**
|
|
10
9
|
* A customizable banner component with background image and action button
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","StyleSheet","Text","View","Card","CardFooter","useTheme","
|
|
1
|
+
{"version":3,"names":["React","StyleSheet","Text","TouchableOpacity","View","Card","CardFooter","useTheme","jsx","_jsx","jsxs","_jsxs","Banner","backgroundImage","buttonText","onButtonPress","onBannerPress","containerStyle","backgroundImageStyle","contentContainerStyle","buttonStyle","buttonTextStyle","height","customButton","contentAlignment","icon","iconPosition","iconStyle","iconSpacing","theme","handlePress","undefined","renderButton","style","styles","button","borderColor","primary","onPress","accessibilityRole","accessibilityLabel","children","buttonContent","flexDirection","iconContainer","marginRight","marginLeft","accessible","importantForAccessibility","color","source","resizeMode","imageStyle","justifyContent","footer","footerTop","footerCenter","footerBottom","create","position","left","right","top","transform","translateY","bottom","backgroundColor","paddingHorizontal","paddingVertical","borderRadius","borderWidth","alignItems","fontSize","fontWeight","letterSpacing"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/Banner/Banner.tsx"],"mappings":"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","ignoreList":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// registerRootComponent(App);
|
|
9
|
-
|
|
3
|
+
import { registerRootComponent } from 'expo';
|
|
4
|
+
import "react-native-reanimated";
|
|
5
|
+
import App from "./app.js";
|
|
6
|
+
registerRootComponent(App);
|
|
10
7
|
export * from "./theme/index.js";
|
|
11
8
|
export * from "./components/index.js";
|
|
12
9
|
//# sourceMappingURL=index.js.map
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"..\\..\\src","sources":["index.ts"],"mappings":";;AAAA;
|
|
1
|
+
{"version":3,"names":["registerRootComponent","App"],"sourceRoot":"..\\..\\src","sources":["index.ts"],"mappings":";;AAAA,SAASA,qBAAqB,QAAQ,MAAM;AAC5C,OAAO,yBAAyB;AAGhC,OAAOC,GAAG,MAAM,UAAO;AAEvBD,qBAAqB,CAACC,GAAG,CAAC;AAE1B,cAAc,kBAAS;AACvB,cAAc,uBAAc","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAgBxC,QAAA,MAAM,QAAQ,yBA4Gb,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../../src/components/Banner/Banner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,
|
|
1
|
+
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../../src/components/Banner/Banner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAIL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,cAAc,EAEd,UAAU,EACX,MAAM,cAAc,CAAC;AAItB,MAAM,WAAW,WAAW;IAC1B,eAAe,EAAE,mBAAmB,CAAC;IACrC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,qBAAqB,CAAC,EAAE,SAAS,CAAC;IAClC,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,eAAe,CAAC,EAAE,SAAS,CAAC;IAC5B,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,gBAAgB,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAG/C,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAChC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA0FjC,CAAC;AA2CF,eAAe,MAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,yBAAyB,CAAC;AAOjC,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/app.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAgBxC,QAAA,MAAM,QAAQ,yBA4Gb,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../../src/components/Banner/Banner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,
|
|
1
|
+
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../../src/components/Banner/Banner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAIL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,cAAc,EAEd,UAAU,EACX,MAAM,cAAc,CAAC;AAItB,MAAM,WAAW,WAAW;IAC1B,eAAe,EAAE,mBAAmB,CAAC;IACrC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,oBAAoB,CAAC,EAAE,UAAU,CAAC;IAClC,qBAAqB,CAAC,EAAE,SAAS,CAAC;IAClC,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,eAAe,CAAC,EAAE,SAAS,CAAC;IAC5B,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B,gBAAgB,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAG/C,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAChC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA0FjC,CAAC;AA2CF,eAAe,MAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,yBAAyB,CAAC;AAOjC,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "related-ui-components",
|
|
3
3
|
"main": "./src/index.ts",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.3",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "expo start",
|
|
7
7
|
"reset-project": "node ./scripts/reset-project.js",
|
|
@@ -19,38 +19,37 @@
|
|
|
19
19
|
]
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@expo/metro-runtime": "~
|
|
23
|
-
"@expo/vector-icons": "^14.0
|
|
22
|
+
"@expo/metro-runtime": "~5.0.4",
|
|
23
|
+
"@expo/vector-icons": "^14.1.0",
|
|
24
24
|
"@gorhom/bottom-sheet": "^5.1.2",
|
|
25
25
|
"@ptomasroos/react-native-multi-slider": "^2.2.2",
|
|
26
26
|
"@react-native-community/slider": "4.5.5",
|
|
27
|
-
"@react-native-picker/picker": "2.
|
|
27
|
+
"@react-native-picker/picker": "2.11.0",
|
|
28
28
|
"@react-navigation/native": "^7.0.14",
|
|
29
|
-
"@shopify/react-native-skia": "
|
|
29
|
+
"@shopify/react-native-skia": "v2.0.0-next.4",
|
|
30
30
|
"date-fns": "^4.1.0",
|
|
31
|
-
"expo": "
|
|
32
|
-
"expo-
|
|
33
|
-
"expo-
|
|
34
|
-
"expo-
|
|
35
|
-
"expo-
|
|
36
|
-
"expo-
|
|
37
|
-
"expo-
|
|
38
|
-
"expo-
|
|
39
|
-
"expo-
|
|
40
|
-
"
|
|
41
|
-
"react": "
|
|
42
|
-
"react-
|
|
43
|
-
"react-native": "0.76.9",
|
|
31
|
+
"expo": "^53.0.9",
|
|
32
|
+
"expo-checkbox": "~4.1.4",
|
|
33
|
+
"expo-clipboard": "~7.1.4",
|
|
34
|
+
"expo-constants": "~17.1.6",
|
|
35
|
+
"expo-font": "~13.3.1",
|
|
36
|
+
"expo-linear-gradient": "~14.1.4",
|
|
37
|
+
"expo-linking": "~7.1.5",
|
|
38
|
+
"expo-splash-screen": "~0.30.8",
|
|
39
|
+
"expo-status-bar": "~2.2.3",
|
|
40
|
+
"react": "19.0.0",
|
|
41
|
+
"react-dom": "19.0.0",
|
|
42
|
+
"react-native": "0.79.2",
|
|
44
43
|
"react-native-calendars": "^1.1310.0",
|
|
45
|
-
"react-native-gesture-handler": "~2.
|
|
44
|
+
"react-native-gesture-handler": "~2.24.0",
|
|
46
45
|
"react-native-modal": "^14.0.0-rc.1",
|
|
47
46
|
"react-native-qrcode-svg": "^6.3.15",
|
|
48
|
-
"react-native-reanimated": "
|
|
49
|
-
"react-native-safe-area-context": "4.
|
|
50
|
-
"react-native-screens": "~4.
|
|
51
|
-
"react-native-svg": "15.
|
|
52
|
-
"react-native-web": "
|
|
53
|
-
"react-native-webview": "13.
|
|
47
|
+
"react-native-reanimated": "~3.17.4",
|
|
48
|
+
"react-native-safe-area-context": "5.4.0",
|
|
49
|
+
"react-native-screens": "~4.10.0",
|
|
50
|
+
"react-native-svg": "15.11.2",
|
|
51
|
+
"react-native-web": "^0.20.0",
|
|
52
|
+
"react-native-webview": "13.13.5"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
55
|
"@babel/core": "^7.25.2",
|
|
@@ -59,10 +58,8 @@
|
|
|
59
58
|
"@react-native-community/datetimepicker": "8.2.0",
|
|
60
59
|
"@react-native-community/slider": "4.5.5",
|
|
61
60
|
"@types/jest": "^29.5.12",
|
|
62
|
-
"@types/jsbarcode": "^3.11.4",
|
|
63
61
|
"@types/react": "~18.3.12",
|
|
64
62
|
"@types/react-test-renderer": "^18.3.0",
|
|
65
|
-
"@types/xmldom": "^0.1.34",
|
|
66
63
|
"babel-loader": "^8.4.1",
|
|
67
64
|
"jest": "^29.2.1",
|
|
68
65
|
"jest-expo": "~52.0.4",
|