@wavemaker/app-rn-runtime 11.10.5-rc.6100 → 11.11.0-rc.6106
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/components/basic/animatedview.component.js +3 -2
- package/components/basic/animatedview.component.js.map +1 -1
- package/components/basic/audio/audio.component.js.map +1 -1
- package/components/basic/picture/picture.component.js +20 -13
- package/components/basic/picture/picture.component.js.map +1 -1
- package/components/basic/picture/picture.styles.js.map +1 -1
- package/components/basic/skeleton/skeleton.component.js.map +1 -1
- package/components/basic/skeleton/skeleton.styles.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.component.js +4 -2
- package/components/chart/bar-chart/bar-chart.component.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.props.js +1 -0
- package/components/chart/bar-chart/bar-chart.props.js.map +1 -1
- package/components/chart/basechart.component.js +6 -2
- package/components/chart/basechart.component.js.map +1 -1
- package/components/chart/basechart.props.js +2 -0
- package/components/chart/basechart.props.js.map +1 -1
- package/components/container/container.component.js +10 -2
- package/components/container/container.component.js.map +1 -1
- package/components/container/container.props.js +1 -0
- package/components/container/container.props.js.map +1 -1
- package/components/container/container.styles.js +3 -0
- package/components/container/container.styles.js.map +1 -1
- package/components/data/list/list.component.js +42 -13
- package/components/data/list/list.component.js.map +1 -1
- package/components/data/list/list.props.js +3 -0
- package/components/data/list/list.props.js.map +1 -1
- package/components/input/calendar/views/month-view.js.map +1 -1
- package/components/input/epoch/datetime/datetime.styles.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.component.js +67 -37
- package/components/navigation/appnavbar/appnavbar.component.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.props.js +1 -0
- package/components/navigation/appnavbar/appnavbar.props.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.styles.js.map +1 -1
- package/components/page/page-content/page-content.component.js +1 -1
- package/components/page/page-content/page-content.component.js.map +1 -1
- package/components/page/page.component.js +46 -4
- package/components/page/page.component.js.map +1 -1
- package/components/page/page.props.js +11 -1
- package/components/page/page.props.js.map +1 -1
- package/components/page/tabbar/tabbar.component.js +135 -40
- package/components/page/tabbar/tabbar.component.js.map +1 -1
- package/components/page/tabbar/tabbar.props.js +1 -0
- package/components/page/tabbar/tabbar.props.js.map +1 -1
- package/core/base.component.js +29 -5
- package/core/base.component.js.map +1 -1
- package/core/components/floatinglabel.component.js.map +1 -1
- package/core/components/textinput.component.js +18 -2
- package/core/components/textinput.component.js.map +1 -1
- package/core/fixed-view.component.js +5 -3
- package/core/fixed-view.component.js.map +1 -1
- package/core/sticky-container.component.js +168 -0
- package/core/sticky-container.component.js.map +1 -0
- package/npm-shrinkwrap.json +101 -50
- package/package-lock.json +101 -50
- package/package.json +6 -3
- package/runtime/App.js +14 -3
- package/runtime/App.js.map +1 -1
@@ -0,0 +1,168 @@
|
|
1
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
2
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
3
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
4
|
+
import React, { Component } from "react";
|
5
|
+
import { Animated, View, Platform } from "react-native";
|
6
|
+
import { SafeAreaInsetsContext } from "react-native-safe-area-context";
|
7
|
+
import { ThemeProvider } from "@wavemaker/app-rn-runtime/styles/theme";
|
8
|
+
const StickyViewContext = /*#__PURE__*/React.createContext(null);
|
9
|
+
export class StickyViewState {
|
10
|
+
constructor() {
|
11
|
+
_defineProperty(this, "isStickyVisible", false);
|
12
|
+
}
|
13
|
+
}
|
14
|
+
export class StickyView extends Component {
|
15
|
+
constructor(props) {
|
16
|
+
super(props);
|
17
|
+
_defineProperty(this, "container", null);
|
18
|
+
_defineProperty(this, "cachedComponent", void 0);
|
19
|
+
_defineProperty(this, "id", StickyView.counter++);
|
20
|
+
_defineProperty(this, "destroyScrollListner", null);
|
21
|
+
_defineProperty(this, "insets", null);
|
22
|
+
_defineProperty(this, "refScrollPosition", 0);
|
23
|
+
_defineProperty(this, "lastScrollDirection", 1);
|
24
|
+
this.state = new StickyViewState();
|
25
|
+
this.listenScrollEvent();
|
26
|
+
}
|
27
|
+
componentWillUnmount() {
|
28
|
+
var _this$container;
|
29
|
+
(_this$container = this.container) === null || _this$container === void 0 || _this$container.remove(this);
|
30
|
+
this.destroyScrollListner && this.destroyScrollListner();
|
31
|
+
}
|
32
|
+
listenScrollEvent() {
|
33
|
+
this.destroyScrollListner && this.destroyScrollListner();
|
34
|
+
const component = this.props.component;
|
35
|
+
let yPosition;
|
36
|
+
this.destroyScrollListner = component.subscribe('scroll', e => {
|
37
|
+
var _component$getLayout, _this$insets, _component$getLayout2, _this$container2;
|
38
|
+
const height = (_component$getLayout = component.getLayout()) === null || _component$getLayout === void 0 ? void 0 : _component$getLayout.height;
|
39
|
+
const topInsetsInYposition = Platform.OS == 'ios' ? ((_this$insets = this.insets) === null || _this$insets === void 0 ? void 0 : _this$insets.top) || 0 : 0;
|
40
|
+
yPosition = yPosition || yPosition == 0 ? yPosition : (component === null || component === void 0 || (_component$getLayout2 = component.getLayout()) === null || _component$getLayout2 === void 0 ? void 0 : _component$getLayout2.py) - topInsetsInYposition;
|
41
|
+
const scrollPosition = e.nativeEvent.contentOffset.y;
|
42
|
+
let isStickyVisible = false;
|
43
|
+
const containerHeight = Math.abs(((_this$container2 = this.container) === null || _this$container2 === void 0 ? void 0 : _this$container2.visibleHeight) || 0);
|
44
|
+
if (e.scrollDirection) {
|
45
|
+
if (this.lastScrollDirection !== e.scrollDirection) {
|
46
|
+
this.refScrollPosition = scrollPosition;
|
47
|
+
}
|
48
|
+
this.lastScrollDirection = e.scrollDirection;
|
49
|
+
}
|
50
|
+
if (e.scrollDirection <= 0) {
|
51
|
+
isStickyVisible = scrollPosition > 10 && scrollPosition + containerHeight >= yPosition + height;
|
52
|
+
} else {
|
53
|
+
isStickyVisible = scrollPosition >= yPosition + (this.props.slide ? height : 0);
|
54
|
+
}
|
55
|
+
if (this.state.isStickyVisible !== isStickyVisible) {
|
56
|
+
this.setState({
|
57
|
+
isStickyVisible: isStickyVisible
|
58
|
+
}, () => {
|
59
|
+
if (isStickyVisible && this.props.slide) {
|
60
|
+
var _this$container3;
|
61
|
+
(_this$container3 = this.container) === null || _this$container3 === void 0 || _this$container3.slideBy(-1 * height, 0);
|
62
|
+
} else {
|
63
|
+
var _this$container4;
|
64
|
+
(_this$container4 = this.container) === null || _this$container4 === void 0 || _this$container4.slideBy(this.refScrollPosition - scrollPosition);
|
65
|
+
}
|
66
|
+
});
|
67
|
+
} else {
|
68
|
+
var _this$container5;
|
69
|
+
(_this$container5 = this.container) === null || _this$container5 === void 0 || _this$container5.slideBy(this.refScrollPosition - scrollPosition);
|
70
|
+
}
|
71
|
+
});
|
72
|
+
}
|
73
|
+
render() {
|
74
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SafeAreaInsetsContext.Consumer, null, (insets = {
|
75
|
+
top: 0,
|
76
|
+
bottom: 0,
|
77
|
+
left: 0,
|
78
|
+
right: 0
|
79
|
+
}) => {
|
80
|
+
this.insets = insets;
|
81
|
+
return /*#__PURE__*/React.createElement(StickyViewContext.Consumer, null, container => {
|
82
|
+
this.container = container;
|
83
|
+
if (this.state.isStickyVisible && this.container) {
|
84
|
+
this.container.add(this, /*#__PURE__*/React.createElement(ThemeProvider, {
|
85
|
+
value: this.props.theme,
|
86
|
+
key: this.id
|
87
|
+
}, /*#__PURE__*/React.createElement(View, {
|
88
|
+
style: [this.props.style]
|
89
|
+
}, this.props.children)));
|
90
|
+
} else {
|
91
|
+
var _this$container6;
|
92
|
+
(_this$container6 = this.container) === null || _this$container6 === void 0 || _this$container6.remove(this);
|
93
|
+
}
|
94
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
95
|
+
});
|
96
|
+
}), /*#__PURE__*/React.createElement(View, {
|
97
|
+
style: {
|
98
|
+
opacity: this.state.isStickyVisible ? 0 : 1
|
99
|
+
}
|
100
|
+
}, this.props.children));
|
101
|
+
}
|
102
|
+
}
|
103
|
+
_defineProperty(StickyView, "defaultProps", {
|
104
|
+
slide: false
|
105
|
+
});
|
106
|
+
_defineProperty(StickyView, "counter", Date.now());
|
107
|
+
export class StickyViewContainer extends React.Component {
|
108
|
+
constructor(...args) {
|
109
|
+
super(...args);
|
110
|
+
_defineProperty(this, "children", new Map());
|
111
|
+
_defineProperty(this, "id", 0);
|
112
|
+
_defineProperty(this, "translateY", new Animated.Value(0));
|
113
|
+
_defineProperty(this, "topSlideHeight", 0);
|
114
|
+
_defineProperty(this, "hiddenHeight", 0);
|
115
|
+
_defineProperty(this, "containerHeight", 0);
|
116
|
+
}
|
117
|
+
add(c, n) {
|
118
|
+
var _c$props$component$ge;
|
119
|
+
const h = Math.max(((_c$props$component$ge = c.props.component.getLayout()) === null || _c$props$component$ge === void 0 ? void 0 : _c$props$component$ge.height) || 0, 0);
|
120
|
+
this.containerHeight += h;
|
121
|
+
this.topSlideHeight += c.props.slide ? h : 0;
|
122
|
+
this.children.set(c, n);
|
123
|
+
setTimeout(() => this.setState({
|
124
|
+
id: ++this.id
|
125
|
+
}));
|
126
|
+
}
|
127
|
+
get visibleHeight() {
|
128
|
+
return this.containerHeight + this.hiddenHeight;
|
129
|
+
}
|
130
|
+
remove(c) {
|
131
|
+
var _c$props$component$ge2;
|
132
|
+
const h = Math.max(((_c$props$component$ge2 = c.props.component.getLayout()) === null || _c$props$component$ge2 === void 0 ? void 0 : _c$props$component$ge2.height) || 0, 0);
|
133
|
+
this.containerHeight -= h;
|
134
|
+
this.topSlideHeight -= c.props.slide ? h : 0;
|
135
|
+
this.containerHeight = Math.max(this.containerHeight, 0);
|
136
|
+
this.topSlideHeight = Math.max(this.topSlideHeight, 0);
|
137
|
+
this.children.delete(c);
|
138
|
+
setTimeout(() => this.setState({
|
139
|
+
id: ++this.id
|
140
|
+
}));
|
141
|
+
}
|
142
|
+
slideBy(value, duration = 1) {
|
143
|
+
this.hiddenHeight = Math.max(Math.min(0, this.translateY._value + value), -1 * this.topSlideHeight);
|
144
|
+
this.translateY.setValue(this.hiddenHeight);
|
145
|
+
// Animated.timing(this.translateY, {
|
146
|
+
// toValue: this.hiddenHeight,
|
147
|
+
// easing: Easing.linear,
|
148
|
+
// duration: duration,
|
149
|
+
// useNativeDriver: true
|
150
|
+
// }).start();
|
151
|
+
}
|
152
|
+
render() {
|
153
|
+
return /*#__PURE__*/React.createElement(StickyViewContext.Provider, {
|
154
|
+
value: this
|
155
|
+
}, this.props.children, /*#__PURE__*/React.createElement(Animated.View, {
|
156
|
+
style: {
|
157
|
+
position: 'absolute',
|
158
|
+
top: 0,
|
159
|
+
width: '100%',
|
160
|
+
transform: [{
|
161
|
+
translateY: this.translateY
|
162
|
+
}]
|
163
|
+
}
|
164
|
+
}, Array.from(this.children.values())));
|
165
|
+
}
|
166
|
+
}
|
167
|
+
;
|
168
|
+
//# sourceMappingURL=sticky-container.component.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["React","Component","Animated","View","Platform","SafeAreaInsetsContext","ThemeProvider","StickyViewContext","createContext","StickyViewState","constructor","_defineProperty","StickyView","props","counter","state","listenScrollEvent","componentWillUnmount","_this$container","container","remove","destroyScrollListner","component","yPosition","subscribe","e","_component$getLayout","_this$insets","_component$getLayout2","_this$container2","height","getLayout","topInsetsInYposition","OS","insets","top","py","scrollPosition","nativeEvent","contentOffset","y","isStickyVisible","containerHeight","Math","abs","visibleHeight","scrollDirection","lastScrollDirection","refScrollPosition","slide","setState","_this$container3","slideBy","_this$container4","_this$container5","render","createElement","Fragment","Consumer","bottom","left","right","add","value","theme","key","id","style","children","_this$container6","opacity","Date","now","StickyViewContainer","args","Map","Value","c","n","_c$props$component$ge","h","max","topSlideHeight","set","setTimeout","hiddenHeight","_c$props$component$ge2","delete","duration","min","translateY","_value","setValue","Provider","position","width","transform","Array","from","values"],"sources":["sticky-container.component.tsx"],"sourcesContent":["\nimport React, { Component } from \"react\";\nimport { ViewStyle, Animated, Easing, View, Platform} from \"react-native\";\nimport { SafeAreaInsetsContext } from \"react-native-safe-area-context\";\nimport { Theme, ThemeProvider } from \"@wavemaker/app-rn-runtime/styles/theme\";\nimport { BaseComponent } from \"./base.component\";\n\nconst StickyViewContext = React.createContext<StickyViewContainer>(null as any);\n\nexport interface StickyViewProps {\n style?: ViewStyle,\n theme: Theme;\n children?: any;\n slide?: boolean;\n component: BaseComponent<any, any, any>;\n onVisibilityChange?: (visible: boolean) => void;\n}\n\nexport class StickyViewState {\n isStickyVisible = false;\n}\n\nexport class StickyView extends Component<StickyViewProps, StickyViewState, any> {\n static defaultProps = {\n slide: false\n };\n static counter = Date.now();\n container?: StickyViewContainer = null as any;\n cachedComponent: React.ReactNode;\n id = StickyView.counter++;\n destroyScrollListner: Function = null as any;\n insets: any = null;\n refScrollPosition = 0;\n lastScrollDirection = 1;\n\n constructor(props: StickyViewProps) {\n super(props);\n this.state = new StickyViewState();\n this.listenScrollEvent();\n }\n\n componentWillUnmount() {\n this.container?.remove(this);\n this.destroyScrollListner && this.destroyScrollListner();\n }\n\n listenScrollEvent(): void {\n this.destroyScrollListner && this.destroyScrollListner();\n const component = this.props.component;\n let yPosition: number;\n this.destroyScrollListner = component.subscribe('scroll', (e: any) => {\n const height = component.getLayout()?.height;\n const topInsetsInYposition = Platform.OS == 'ios' ? this.insets?.top || 0 : 0;\n yPosition = (yPosition || yPosition == 0) ? yPosition : component?.getLayout()?.py - topInsetsInYposition;\n const scrollPosition = e.nativeEvent.contentOffset.y;\n let isStickyVisible = false ;\n \n const containerHeight = Math.abs(this.container?.visibleHeight || 0);\n if (e.scrollDirection) {\n if (this.lastScrollDirection !== e.scrollDirection) {\n this.refScrollPosition = scrollPosition;\n }\n this.lastScrollDirection = e.scrollDirection;\n }\n if(e.scrollDirection <= 0){\n isStickyVisible = scrollPosition > 10 \n && ((scrollPosition + containerHeight) >= (yPosition + height));\n } else {\n isStickyVisible = (scrollPosition >= (yPosition + (this.props.slide ? height: 0)));\n }\n if (this.state.isStickyVisible !== isStickyVisible) {\n this.setState({ \n isStickyVisible : isStickyVisible\n }, () => {\n if (isStickyVisible && this.props.slide) {\n this.container?.slideBy(-1 * height, 0);\n } else {\n this.container?.slideBy(this.refScrollPosition - scrollPosition);\n }\n })\n } else {\n this.container?.slideBy(this.refScrollPosition - scrollPosition);\n }\n })\n }\n\n render() {\n return (\n <>\n <SafeAreaInsetsContext.Consumer>\n {(insets = { top: 0, bottom: 0, left: 0, right: 0 }) => {\n this.insets = insets;\n return <StickyViewContext.Consumer>\n {(container) => {\n this.container = container;\n if (this.state.isStickyVisible && this.container) {\n this.container.add(this, (\n <ThemeProvider value={this.props.theme} key={this.id}>\n <View style={[this.props.style]}>\n {this.props.children}\n </View>\n </ThemeProvider>\n ));\n } else {\n this.container?.remove(this);\n }\n return <></>;\n }}\n </StickyViewContext.Consumer>}}\n </SafeAreaInsetsContext.Consumer>\n <View style={{opacity: this.state.isStickyVisible ? 0 : 1}}>\n {this.props.children}\n </View>\n </>\n );\n }\n}\n\nexport class StickyViewContainer extends React.Component {\n private children: Map<StickyView, React.ReactNode> = new Map();\n private id = 0;\n public translateY: Animated.Value = new Animated.Value(0);\n public topSlideHeight = 0;\n public hiddenHeight = 0;\n public containerHeight: number = 0;\n\n add(c: StickyView, n : React.ReactNode) {\n const h = Math.max(c.props.component.getLayout()?.height || 0, 0);\n this.containerHeight += h;\n this.topSlideHeight += (c.props.slide ? h : 0);\n this.children.set(c, n);\n setTimeout(() => this.setState({id: ++this.id}));\n }\n\n get visibleHeight() {\n return this.containerHeight + this.hiddenHeight;\n }\n\n remove(c: StickyView) {\n const h = Math.max(c.props.component.getLayout()?.height || 0, 0);\n this.containerHeight -= h;\n this.topSlideHeight -= (c.props.slide ? h : 0);\n this.containerHeight = Math.max(this.containerHeight, 0);\n this.topSlideHeight = Math.max(this.topSlideHeight, 0);\n this.children.delete(c);\n setTimeout(() => this.setState({id: ++this.id}));\n }\n\n public slideBy(value: number, duration = 1) {\n this.hiddenHeight = Math.max(\n Math.min(0, (this.translateY as any)._value + value), \n -1 * this.topSlideHeight);\n this.translateY.setValue(this.hiddenHeight);\n // Animated.timing(this.translateY, {\n // toValue: this.hiddenHeight,\n // easing: Easing.linear, \n // duration: duration,\n // useNativeDriver: true\n // }).start();\n }\n\n render() {\n return (\n <StickyViewContext.Provider value={this}>\n {(this.props as any).children}\n <Animated.View style={{\n position: 'absolute', top: 0, width: '100%',\n transform: [{\n translateY: this.translateY\n }]\n }}>\n {Array.from(this.children.values())}\n </Animated.View>\n </StickyViewContext.Provider>\n );\n }\n};"],"mappings":"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","ignoreList":[]}
|
package/npm-shrinkwrap.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.11.0-rc.6106",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
9
|
-
"version": "11.
|
9
|
+
"version": "11.11.0-rc.6106",
|
10
10
|
"license": "MIT",
|
11
11
|
"dependencies": {
|
12
12
|
"@expo/vector-icons": "14.0.2",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"@react-navigation/drawer": "6.6.3",
|
21
21
|
"@react-navigation/native": "6.1.7",
|
22
22
|
"@react-navigation/stack": "6.3.29",
|
23
|
-
"@wavemaker/variables": "11.
|
23
|
+
"@wavemaker/variables": "11.11.0-rc.6106",
|
24
24
|
"axios": "1.6.8",
|
25
25
|
"color": "4.2.3",
|
26
26
|
"cross-env": "7.0.3",
|
@@ -28,6 +28,7 @@
|
|
28
28
|
"d3-shape": "3.2.0",
|
29
29
|
"expo-application": "6.0.1",
|
30
30
|
"expo-font": "13.0.1",
|
31
|
+
"expo-image": "2.0.3",
|
31
32
|
"expo-linear-gradient": "13.0.2",
|
32
33
|
"expo-modules-core": "2.1.1",
|
33
34
|
"expo-video": "2.0.2",
|
@@ -80,6 +81,7 @@
|
|
80
81
|
"eslint-plugin-prettier": "5.1.3",
|
81
82
|
"execa": "5.0.0",
|
82
83
|
"expo-av": "15.0.1",
|
84
|
+
"expo-blur": "14.0.3",
|
83
85
|
"expo-calendar": "14.0.4",
|
84
86
|
"expo-camera": "16.0.9",
|
85
87
|
"expo-contacts": "14.0.2",
|
@@ -87,6 +89,7 @@
|
|
87
89
|
"expo-document-picker": "13.0.1",
|
88
90
|
"expo-file-system": "18.0.4",
|
89
91
|
"expo-location": "18.0.3",
|
92
|
+
"expo-navigation-bar": "4.0.8",
|
90
93
|
"expo-network": "7.0.3",
|
91
94
|
"expo-splash-screen": "0.29.16",
|
92
95
|
"expo-web-browser": "14.0.1",
|
@@ -2821,8 +2824,8 @@
|
|
2821
2824
|
}
|
2822
2825
|
},
|
2823
2826
|
"node_modules/@expo/cli": {
|
2824
|
-
"version": "0.22.
|
2825
|
-
"integrity": "sha512-
|
2827
|
+
"version": "0.22.24",
|
2828
|
+
"integrity": "sha512-lhdenxBC8/x/vL39j79eXE09mOaqNNLmiSDdY/PblnI+UNzGgsQ48hBTYa/MQhd0ioXXVKurZL2941dLKwcxJw==",
|
2826
2829
|
"license": "MIT",
|
2827
2830
|
"peer": true,
|
2828
2831
|
"dependencies": {
|
@@ -2839,12 +2842,12 @@
|
|
2839
2842
|
"@expo/osascript": "^2.1.6",
|
2840
2843
|
"@expo/package-manager": "^1.7.2",
|
2841
2844
|
"@expo/plist": "^0.2.2",
|
2842
|
-
"@expo/prebuild-config": "^8.0.
|
2845
|
+
"@expo/prebuild-config": "^8.0.31",
|
2843
2846
|
"@expo/rudder-sdk-node": "^1.1.1",
|
2844
2847
|
"@expo/spawn-async": "^1.7.2",
|
2845
2848
|
"@expo/ws-tunnel": "^1.0.1",
|
2846
2849
|
"@expo/xcpretty": "^4.3.0",
|
2847
|
-
"@react-native/dev-middleware": "0.76.
|
2850
|
+
"@react-native/dev-middleware": "0.76.9",
|
2848
2851
|
"@urql/core": "^5.0.6",
|
2849
2852
|
"@urql/exchange-retry": "^1.3.0",
|
2850
2853
|
"accepts": "^1.3.8",
|
@@ -3674,8 +3677,8 @@
|
|
3674
3677
|
}
|
3675
3678
|
},
|
3676
3679
|
"node_modules/@expo/prebuild-config": {
|
3677
|
-
"version": "8.0.
|
3678
|
-
"integrity": "sha512-
|
3680
|
+
"version": "8.0.31",
|
3681
|
+
"integrity": "sha512-YTuS5ic9KolD/WA3GqgLcZytHQU1dpitlZ/cbDq8ZqkY+1ae5YWX+GkYEZf2VyECPaWnHYuDGddaTQVw5miTRg==",
|
3679
3682
|
"license": "MIT",
|
3680
3683
|
"dependencies": {
|
3681
3684
|
"@expo/config": "~10.0.11",
|
@@ -3683,7 +3686,7 @@
|
|
3683
3686
|
"@expo/config-types": "^52.0.5",
|
3684
3687
|
"@expo/image-utils": "^0.6.5",
|
3685
3688
|
"@expo/json-file": "^9.0.2",
|
3686
|
-
"@react-native/normalize-colors": "0.76.
|
3689
|
+
"@react-native/normalize-colors": "0.76.9",
|
3687
3690
|
"debug": "^4.3.1",
|
3688
3691
|
"fs-extra": "^9.0.0",
|
3689
3692
|
"resolve-from": "^5.0.0",
|
@@ -5138,8 +5141,8 @@
|
|
5138
5141
|
}
|
5139
5142
|
},
|
5140
5143
|
"node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-react": {
|
5141
|
-
"version": "7.37.
|
5142
|
-
"integrity": "sha512-
|
5144
|
+
"version": "7.37.5",
|
5145
|
+
"integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
|
5143
5146
|
"dev": true,
|
5144
5147
|
"license": "MIT",
|
5145
5148
|
"dependencies": {
|
@@ -5153,7 +5156,7 @@
|
|
5153
5156
|
"hasown": "^2.0.2",
|
5154
5157
|
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
|
5155
5158
|
"minimatch": "^3.1.2",
|
5156
|
-
"object.entries": "^1.1.
|
5159
|
+
"object.entries": "^1.1.9",
|
5157
5160
|
"object.fromentries": "^2.0.8",
|
5158
5161
|
"object.values": "^1.2.1",
|
5159
5162
|
"prop-types": "^15.8.1",
|
@@ -5256,20 +5259,20 @@
|
|
5256
5259
|
}
|
5257
5260
|
},
|
5258
5261
|
"node_modules/@react-native/babel-plugin-codegen": {
|
5259
|
-
"version": "0.76.
|
5260
|
-
"integrity": "sha512-
|
5262
|
+
"version": "0.76.9",
|
5263
|
+
"integrity": "sha512-vxL/vtDEIYHfWKm5oTaEmwcnNGsua/i9OjIxBDBFiJDu5i5RU3bpmDiXQm/bJxrJNPRp5lW0I0kpGihVhnMAIQ==",
|
5261
5264
|
"license": "MIT",
|
5262
5265
|
"peer": true,
|
5263
5266
|
"dependencies": {
|
5264
|
-
"@react-native/codegen": "0.76.
|
5267
|
+
"@react-native/codegen": "0.76.9"
|
5265
5268
|
},
|
5266
5269
|
"engines": {
|
5267
5270
|
"node": ">=18"
|
5268
5271
|
}
|
5269
5272
|
},
|
5270
5273
|
"node_modules/@react-native/babel-preset": {
|
5271
|
-
"version": "0.76.
|
5272
|
-
"integrity": "sha512-
|
5274
|
+
"version": "0.76.9",
|
5275
|
+
"integrity": "sha512-TbSeCplCM6WhL3hR2MjC/E1a9cRnMLz7i767T7mP90oWkklEjyPxWl+0GGoVGnJ8FC/jLUupg/HvREKjjif6lw==",
|
5273
5276
|
"license": "MIT",
|
5274
5277
|
"peer": true,
|
5275
5278
|
"dependencies": {
|
@@ -5314,7 +5317,7 @@
|
|
5314
5317
|
"@babel/plugin-transform-typescript": "^7.25.2",
|
5315
5318
|
"@babel/plugin-transform-unicode-regex": "^7.24.7",
|
5316
5319
|
"@babel/template": "^7.25.0",
|
5317
|
-
"@react-native/babel-plugin-codegen": "0.76.
|
5320
|
+
"@react-native/babel-plugin-codegen": "0.76.9",
|
5318
5321
|
"babel-plugin-syntax-hermes-parser": "^0.25.1",
|
5319
5322
|
"babel-plugin-transform-flow-enums": "^0.0.2",
|
5320
5323
|
"react-refresh": "^0.14.0"
|
@@ -5327,8 +5330,8 @@
|
|
5327
5330
|
}
|
5328
5331
|
},
|
5329
5332
|
"node_modules/@react-native/codegen": {
|
5330
|
-
"version": "0.76.
|
5331
|
-
"integrity": "sha512-
|
5333
|
+
"version": "0.76.9",
|
5334
|
+
"integrity": "sha512-AzlCHMTKrAVC2709V4ZGtBXmGVtWTpWm3Ruv5vXcd3/anH4mGucfJ4rjbWKdaYQJMpXa3ytGomQrsIsT/s8kgA==",
|
5332
5335
|
"license": "MIT",
|
5333
5336
|
"peer": true,
|
5334
5337
|
"dependencies": {
|
@@ -5572,8 +5575,8 @@
|
|
5572
5575
|
}
|
5573
5576
|
},
|
5574
5577
|
"node_modules/@react-native/debugger-frontend": {
|
5575
|
-
"version": "0.76.
|
5576
|
-
"integrity": "sha512-
|
5578
|
+
"version": "0.76.9",
|
5579
|
+
"integrity": "sha512-0Ru72Bm066xmxFuOXhhvrryxvb57uI79yDSFf+hxRpktkC98NMuRenlJhslMrbJ6WjCu1vOe/9UjWNYyxXTRTA==",
|
5577
5580
|
"license": "BSD-3-Clause",
|
5578
5581
|
"peer": true,
|
5579
5582
|
"engines": {
|
@@ -5581,13 +5584,13 @@
|
|
5581
5584
|
}
|
5582
5585
|
},
|
5583
5586
|
"node_modules/@react-native/dev-middleware": {
|
5584
|
-
"version": "0.76.
|
5585
|
-
"integrity": "sha512-
|
5587
|
+
"version": "0.76.9",
|
5588
|
+
"integrity": "sha512-xkd3C3dRcmZLjFTEAOvC14q3apMLouIvJViCZY/p1EfCMrNND31dgE1dYrLTiI045WAWMt5bD15i6f7dE2/QWA==",
|
5586
5589
|
"license": "MIT",
|
5587
5590
|
"peer": true,
|
5588
5591
|
"dependencies": {
|
5589
5592
|
"@isaacs/ttlcache": "^1.4.1",
|
5590
|
-
"@react-native/debugger-frontend": "0.76.
|
5593
|
+
"@react-native/debugger-frontend": "0.76.9",
|
5591
5594
|
"chrome-launcher": "^0.15.2",
|
5592
5595
|
"chromium-edge-launcher": "^0.2.0",
|
5593
5596
|
"connect": "^3.6.5",
|
@@ -5827,8 +5830,8 @@
|
|
5827
5830
|
}
|
5828
5831
|
},
|
5829
5832
|
"node_modules/@react-native/normalize-colors": {
|
5830
|
-
"version": "0.76.
|
5831
|
-
"integrity": "sha512-
|
5833
|
+
"version": "0.76.9",
|
5834
|
+
"integrity": "sha512-TUdMG2JGk72M9d8DYbubdOlrzTYjw+YMe/xOnLU4viDgWRHsCbtRS9x0IAxRjs3amj/7zmK3Atm8jUPvdAc8qw==",
|
5832
5835
|
"license": "MIT"
|
5833
5836
|
},
|
5834
5837
|
"node_modules/@react-navigation/core": {
|
@@ -6084,8 +6087,8 @@
|
|
6084
6087
|
}
|
6085
6088
|
},
|
6086
6089
|
"node_modules/@types/babel__generator": {
|
6087
|
-
"version": "7.
|
6088
|
-
"integrity": "sha512-
|
6090
|
+
"version": "7.27.0",
|
6091
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
6089
6092
|
"license": "MIT",
|
6090
6093
|
"dependencies": {
|
6091
6094
|
"@babel/types": "^7.0.0"
|
@@ -6379,11 +6382,11 @@
|
|
6379
6382
|
"license": "MIT"
|
6380
6383
|
},
|
6381
6384
|
"node_modules/@types/node": {
|
6382
|
-
"version": "22.
|
6383
|
-
"integrity": "sha512-
|
6385
|
+
"version": "22.14.0",
|
6386
|
+
"integrity": "sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==",
|
6384
6387
|
"license": "MIT",
|
6385
6388
|
"dependencies": {
|
6386
|
-
"undici-types": "~6.
|
6389
|
+
"undici-types": "~6.21.0"
|
6387
6390
|
}
|
6388
6391
|
},
|
6389
6392
|
"node_modules/@types/node-forge": {
|
@@ -6673,8 +6676,8 @@
|
|
6673
6676
|
}
|
6674
6677
|
},
|
6675
6678
|
"node_modules/@wavemaker/variables": {
|
6676
|
-
"version": "11.
|
6677
|
-
"integrity": "sha512-
|
6679
|
+
"version": "11.11.0-rc.6106",
|
6680
|
+
"integrity": "sha512-BT2teob8ijpE5trVlsXdfCjV5q1+5NN9wRv/Aoibz0F2THgMZokIJAhsR0IFRgHhcNLf87zLBx5xezKwqawBNw==",
|
6678
6681
|
"license": "ISC",
|
6679
6682
|
"dependencies": {
|
6680
6683
|
"@metrichor/jmespath": "^0.3.1",
|
@@ -8334,8 +8337,8 @@
|
|
8334
8337
|
}
|
8335
8338
|
},
|
8336
8339
|
"node_modules/babel-preset-expo": {
|
8337
|
-
"version": "12.0.
|
8338
|
-
"integrity": "sha512-
|
8340
|
+
"version": "12.0.11",
|
8341
|
+
"integrity": "sha512-4m6D92nKEieg+7DXa8uSvpr0GjfuRfM/G0t0I/Q5hF8HleEv5ms3z4dJ+p52qXSJsm760tMqLdO93Ywuoi7cCQ==",
|
8339
8342
|
"license": "MIT",
|
8340
8343
|
"peer": true,
|
8341
8344
|
"dependencies": {
|
@@ -8345,7 +8348,7 @@
|
|
8345
8348
|
"@babel/plugin-transform-parameters": "^7.22.15",
|
8346
8349
|
"@babel/preset-react": "^7.22.15",
|
8347
8350
|
"@babel/preset-typescript": "^7.23.0",
|
8348
|
-
"@react-native/babel-preset": "0.76.
|
8351
|
+
"@react-native/babel-preset": "0.76.9",
|
8349
8352
|
"babel-plugin-react-native-web": "~0.19.13",
|
8350
8353
|
"react-refresh": "^0.14.2"
|
8351
8354
|
},
|
@@ -9066,8 +9069,8 @@
|
|
9066
9069
|
}
|
9067
9070
|
},
|
9068
9071
|
"node_modules/caniuse-lite": {
|
9069
|
-
"version": "1.0.
|
9070
|
-
"integrity": "sha512-
|
9072
|
+
"version": "1.0.30001712",
|
9073
|
+
"integrity": "sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==",
|
9071
9074
|
"funding": [
|
9072
9075
|
{
|
9073
9076
|
"type": "opencollective",
|
@@ -11173,8 +11176,8 @@
|
|
11173
11176
|
"license": "MIT"
|
11174
11177
|
},
|
11175
11178
|
"node_modules/electron-to-chromium": {
|
11176
|
-
"version": "1.5.
|
11177
|
-
"integrity": "sha512-
|
11179
|
+
"version": "1.5.132",
|
11180
|
+
"integrity": "sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==",
|
11178
11181
|
"license": "ISC"
|
11179
11182
|
},
|
11180
11183
|
"node_modules/emittery": {
|
@@ -12061,19 +12064,19 @@
|
|
12061
12064
|
}
|
12062
12065
|
},
|
12063
12066
|
"node_modules/expo": {
|
12064
|
-
"version": "52.0.
|
12065
|
-
"integrity": "sha512-
|
12067
|
+
"version": "52.0.44",
|
12068
|
+
"integrity": "sha512-qj3+MWxmqLyBaYQ8jDOvVLEgSqNplH3cf+nDhxCo4C1cpTPD1u/HGh1foibtaeuCYLHsE5km1lrcOpRbFJ4luQ==",
|
12066
12069
|
"license": "MIT",
|
12067
12070
|
"peer": true,
|
12068
12071
|
"dependencies": {
|
12069
12072
|
"@babel/runtime": "^7.20.0",
|
12070
|
-
"@expo/cli": "0.22.
|
12073
|
+
"@expo/cli": "0.22.24",
|
12071
12074
|
"@expo/config": "~10.0.11",
|
12072
12075
|
"@expo/config-plugins": "~9.0.17",
|
12073
12076
|
"@expo/fingerprint": "0.11.11",
|
12074
12077
|
"@expo/metro-config": "0.19.12",
|
12075
12078
|
"@expo/vector-icons": "^14.0.0",
|
12076
|
-
"babel-preset-expo": "~12.0.
|
12079
|
+
"babel-preset-expo": "~12.0.11",
|
12077
12080
|
"expo-asset": "~11.0.5",
|
12078
12081
|
"expo-constants": "~17.0.8",
|
12079
12082
|
"expo-file-system": "~18.0.12",
|
@@ -12151,6 +12154,17 @@
|
|
12151
12154
|
}
|
12152
12155
|
}
|
12153
12156
|
},
|
12157
|
+
"node_modules/expo-blur": {
|
12158
|
+
"version": "14.0.3",
|
12159
|
+
"integrity": "sha512-BL3xnqBJbYm3Hg9t/HjNjdeY7N/q8eK5tsLYxswWG1yElISWZmMvrXYekl7XaVCPfyFyz8vQeaxd7q74ZY3Wrw==",
|
12160
|
+
"dev": true,
|
12161
|
+
"license": "MIT",
|
12162
|
+
"peerDependencies": {
|
12163
|
+
"expo": "*",
|
12164
|
+
"react": "*",
|
12165
|
+
"react-native": "*"
|
12166
|
+
}
|
12167
|
+
},
|
12154
12168
|
"node_modules/expo-calendar": {
|
12155
12169
|
"version": "14.0.4",
|
12156
12170
|
"integrity": "sha512-7RBBUcsuaafTazLUUozioOyLC3hUNphMJ9uh7TxBxS/dCaQrdyd1q5NoTQ84VqiyDE0Vc/OA7Nzr3EBh4Ww7CA==",
|
@@ -12251,6 +12265,22 @@
|
|
12251
12265
|
"react": "*"
|
12252
12266
|
}
|
12253
12267
|
},
|
12268
|
+
"node_modules/expo-image": {
|
12269
|
+
"version": "2.0.3",
|
12270
|
+
"integrity": "sha512-+YnHTQv8jbXaut3FY7TDhNiSiGZ927C329mHvTZWV4Fyj32/Hjhhmk7dqq9I6LrA0nqBBiJjFj3u6VdHvCBnZg==",
|
12271
|
+
"license": "MIT",
|
12272
|
+
"peerDependencies": {
|
12273
|
+
"expo": "*",
|
12274
|
+
"react": "*",
|
12275
|
+
"react-native": "*",
|
12276
|
+
"react-native-web": "*"
|
12277
|
+
},
|
12278
|
+
"peerDependenciesMeta": {
|
12279
|
+
"react-native-web": {
|
12280
|
+
"optional": true
|
12281
|
+
}
|
12282
|
+
}
|
12283
|
+
},
|
12254
12284
|
"node_modules/expo-keep-awake": {
|
12255
12285
|
"version": "14.0.3",
|
12256
12286
|
"integrity": "sha512-6Jh94G6NvTZfuLnm2vwIpKe3GdOiVBuISl7FI8GqN0/9UOg9E0WXXp5cDcfAG8bn80RfgLJS8P7EPUGTZyOvhg==",
|
@@ -12418,6 +12448,27 @@
|
|
12418
12448
|
"invariant": "^2.2.4"
|
12419
12449
|
}
|
12420
12450
|
},
|
12451
|
+
"node_modules/expo-navigation-bar": {
|
12452
|
+
"version": "4.0.8",
|
12453
|
+
"integrity": "sha512-rmQkCCwfYeR29GTPwoNuN7eWE8bYCW5UGJ/5CnZQxIaiBmOeepoDXu50AzEM5ZFPMK6J12nvyu1yj0ujbLUpsQ==",
|
12454
|
+
"dev": true,
|
12455
|
+
"license": "MIT",
|
12456
|
+
"dependencies": {
|
12457
|
+
"@react-native/normalize-colors": "0.76.7",
|
12458
|
+
"debug": "^4.3.2"
|
12459
|
+
},
|
12460
|
+
"peerDependencies": {
|
12461
|
+
"expo": "*",
|
12462
|
+
"react": "*",
|
12463
|
+
"react-native": "*"
|
12464
|
+
}
|
12465
|
+
},
|
12466
|
+
"node_modules/expo-navigation-bar/node_modules/@react-native/normalize-colors": {
|
12467
|
+
"version": "0.76.7",
|
12468
|
+
"integrity": "sha512-ST1xxBuYVIXPdD81dR6+tzIgso7m3pa9+6rOBXTh5Xm7KEEFik7tnQX+GydXYMp3wr1gagJjragdXkPnxK6WNg==",
|
12469
|
+
"dev": true,
|
12470
|
+
"license": "MIT"
|
12471
|
+
},
|
12421
12472
|
"node_modules/expo-network": {
|
12422
12473
|
"version": "7.0.3",
|
12423
12474
|
"integrity": "sha512-WPpiXJR5/k2LFmSDAENRLjVyOK4cVuFakQpTY0sVPXwD5mL9IWTgxK8yJZ6hAGXdPUUUM9+TJvOWr8TfjOWznw==",
|
@@ -13980,8 +14031,8 @@
|
|
13980
14031
|
}
|
13981
14032
|
},
|
13982
14033
|
"node_modules/image-size": {
|
13983
|
-
"version": "1.2.
|
13984
|
-
"integrity": "sha512-
|
14034
|
+
"version": "1.2.1",
|
14035
|
+
"integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==",
|
13985
14036
|
"license": "MIT",
|
13986
14037
|
"dependencies": {
|
13987
14038
|
"queue": "6.0.2"
|
@@ -24065,8 +24116,8 @@
|
|
24065
24116
|
}
|
24066
24117
|
},
|
24067
24118
|
"node_modules/undici-types": {
|
24068
|
-
"version": "6.
|
24069
|
-
"integrity": "sha512-
|
24119
|
+
"version": "6.21.0",
|
24120
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
24070
24121
|
"license": "MIT"
|
24071
24122
|
},
|
24072
24123
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|