@wavemaker/app-rn-runtime 11.10.3-next.27785 → 11.10.3-next.27799
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/advanced/carousel/carousel.component.js +0 -1
- package/components/advanced/carousel/carousel.component.js.map +1 -1
- package/components/basic/picture/picture.component.js +7 -91
- package/components/basic/picture/picture.component.js.map +1 -1
- package/components/basic/picture/picture.props.js +0 -1
- package/components/basic/picture/picture.props.js.map +1 -1
- package/components/basic/video/video.component.js +4 -34
- package/components/basic/video/video.component.js.map +1 -1
- package/components/basic/video/video.props.js +0 -1
- package/components/basic/video/video.props.js.map +1 -1
- package/components/basic/video/video.styles.js +0 -13
- package/components/basic/video/video.styles.js.map +1 -1
- package/components/chart/area-chart/area-chart.component.js +23 -31
- package/components/chart/area-chart/area-chart.component.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.component.js +23 -31
- package/components/chart/bar-chart/bar-chart.component.js.map +1 -1
- package/components/chart/basechart.component.js +10 -3
- package/components/chart/basechart.component.js.map +1 -1
- package/components/chart/bubble-chart/bubble-chart.component.js +23 -31
- package/components/chart/bubble-chart/bubble-chart.component.js.map +1 -1
- package/components/chart/line-chart/line-chart.component.js +23 -31
- package/components/chart/line-chart/line-chart.component.js.map +1 -1
- package/components/chart/pie-chart/pie-chart.component.js +22 -29
- package/components/chart/pie-chart/pie-chart.component.js.map +1 -1
- package/components/chart/stack-chart/stack-chart.component.js +26 -36
- package/components/chart/stack-chart/stack-chart.component.js.map +1 -1
- package/components/page/page-content/page-content.component.js +3 -4
- package/components/page/page-content/page-content.component.js.map +1 -1
- package/core/AppConfig.js.map +1 -1
- package/core/base.component.js +3 -7
- package/core/base.component.js.map +1 -1
- package/core/fixed-view.component.js +3 -5
- package/core/fixed-view.component.js.map +1 -1
- package/core/utils.js +5 -5
- package/core/utils.js.map +1 -1
- package/gestures/swipe.animation.js +7 -10
- package/gestures/swipe.animation.js.map +1 -1
- package/npm-shrinkwrap.json +78 -77
- package/package-lock.json +78 -77
- package/package.json +2 -2
- package/runtime/App.js +9 -18
- package/runtime/App.js.map +1 -1
- package/styles/style-props.js +1 -9
- package/styles/style-props.js.map +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["isNil","React","Animated","Easing","View","RNView","Gesture","GestureDetector","isWebPreviewMode","injector","Handlers","constructor","_defineProperty","Props","undefined","State","Number","MAX_VALUE","Component","props","Pan","Value","I18nService","get","state","isHorizontal","direction","threshold","bounds","touchStart","x","y","active","swipeDirection","gesture","minPointers","minDistance","enabled","enableGestures","onTouchesDown","e","s","changedTouches","onTouchesMove","translationX","allTouches","translationY","Math","abs","d","od","activeOffsetX","failOffsetY","onChange","_this$props$handlers","_this$props$handlers2","handlers","phase","computePhase","center","lower","upper","animationPhase","setValue","position","isRTL","onEnd","_this$props$handlers3","_this$props$handlers4","onAnimation","goToLower","goToUpper","computeMaxScroll","_this$viewLayout2","max","childrenWidth","childrenLayout","reduce","v","width","childrenHeight","height","_this$viewLayout","viewLayout","setState","maxPosition","setChildrenLayout","event","index","nativeEvent","layout","setViewLayout","value","_this$props$handlers5","_this$props$handlers6","i18nService","isRTLLocale","_this$props$handlers7","_this$props$handlers8","setPosition","then","_this$props$handlers9","_this$props$handlers10","onLower","_this$props$handlers11","_this$props$handlers12","_this$props$handlers13","_this$props$handlers14","onUpper","Promise","reject","isNaN","resolve","parallel","timing","useNativeDriver","toValue","duration","easing","out","linear","start","render","createElement","style","flexDirection","flexWrap","alignItems","transform","translateX","translateY","onLayout","bind","children","map","c","i","_this$props$style","key","slideMinWidth","minWidth","slideWidth"],"sources":["swipe.animation.tsx"],"sourcesContent":["import { isNil } from 'lodash-es';\nimport React from 'react';\nimport { Animated, Easing, View as RNView, ViewStyle, LayoutChangeEvent, LayoutRectangle, DimensionValue } from 'react-native';\nimport { Gesture, GestureDetector, GestureUpdateEvent } from 'react-native-gesture-handler';\nimport { isWebPreviewMode } from '@wavemaker/app-rn-runtime/core/utils';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\n\nexport class Handlers {\n bounds?: (g: GestureUpdateEvent<any>) => Bounds = null as any;\n onAnimation?: (g: GestureUpdateEvent<any>) => any = () => {};\n onLower?: (g: GestureUpdateEvent<any>) => any = () => {};\n onUpper?: (g: GestureUpdateEvent<any>) => any = () => {};\n computePhase?: (value: number) => number = null as any;\n}\n\nexport interface Bounds {\n upper?: number;\n center?: number;\n lower?: number;\n}\n\nexport class Props {\n threshold?: number = 5;\n direction?: 'horizontal' | 'vertical' = 'horizontal';\n handlers?: Handlers = {} as any;\n style?: ViewStyle = {} as any;\n children: any;\n enableGestures: any;\n slideWidth?: DimensionValue = '100%';\n slideMinWidth?: DimensionValue = undefined;\n}\n\nexport class State {\n threshold = 5;\n isHorizontal = false;\n bounds: Bounds = {} as any;\n maxPosition = Number.MAX_VALUE;\n}\n\nexport class View extends React.Component<Props, State> {\n\n static defaultProps = new Props();\n\n private gesture = Gesture.Pan();\n private position = new Animated.Value(0);\n public animationPhase = new Animated.Value(0);\n private i18nService = injector.I18nService.get();\n private childrenLayout: LayoutRectangle[] = [];\n private viewLayout: LayoutRectangle = null as any;\n\n constructor(props: Props) {\n super(props);\n this.state = {\n isHorizontal: props.direction === 'horizontal',\n threshold: props.threshold || 5,\n bounds: {} as any\n } as State;\n var touchStart = {\n x: 0,\n y: 0,\n active: false\n };\n var swipeDirection :'horizontal' | 'vertical' = 'horizontal';\n this.gesture\n .minPointers(1)\n .minDistance(this.state.threshold)\n .enabled(this.props.enableGestures && !isWebPreviewMode())\n .onTouchesDown((e, s) => {\n touchStart = {\n x: e.changedTouches[0].x,\n y: e.changedTouches[0].y,\n active: false\n };\n })\n .onTouchesMove((e, s) => {\n if (touchStart.active) {\n return;\n }\n const translationX = e.allTouches[0].x - touchStart.x;\n const translationY = e.allTouches[0].y - touchStart.y;\n swipeDirection = (Math.abs(translationX) > Math.abs(translationY)) ? 'horizontal' : 'vertical';\n const d = (this.state.isHorizontal ? translationX : translationY);\n const od = (this.state.isHorizontal ? translationY : translationX);\n if(swipeDirection == this.props.direction && Math.abs(d) >= this.state.threshold){\n touchStart.active = true;\n }\n this.gesture\n .activeOffsetX([-this.state.threshold, this.state.threshold])\n .failOffsetY([-this.state.threshold, this.state.threshold]);\n })\n .onChange(e => {\n if (!touchStart.active || swipeDirection != this.props.direction) {\n return;\n }\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n const d = (this.state.isHorizontal ? e.translationX : e.translationY);\n let phase = this.computePhase(bounds?.center || 0);\n if (d && d < 0 && !isNil(bounds.center) && !isNil(bounds.lower)\n && bounds.center !== bounds.lower) {\n phase += (d / (bounds.center - bounds.lower)) || 0;\n } else if (d && d > 0 && !isNil(bounds.center) && !isNil(bounds.upper)\n && bounds.center !== bounds.upper) {\n phase += (d / (bounds.upper - bounds.center)) || 0;\n }\n this.animationPhase.setValue(phase);\n this.position.setValue(\n (this.isRTL()?-bounds?.center! :bounds?.center || 0) + d);\n })\n .onEnd(e => {\n if (!touchStart.active || swipeDirection != this.props.direction) {\n return;\n }\n touchStart = {\n x: 0,\n y: 0,\n active: false\n };\n this.props.handlers?.onAnimation &&\n this.props.handlers?.onAnimation(e);\n if (e.translationX < 0) {\n this.isRTL()?this.goToLower(e):this.goToUpper(e);\n } else if (e.translationX > 0) {\n this.isRTL()?this.goToUpper(e):this.goToLower(e);\n }\n })\n\n }\n\n computeMaxScroll() {\n let max = Number.MAX_VALUE;\n const childrenWidth = this.childrenLayout.reduce((s, v) => s + v.width, 0);\n const childrenHeight = this.childrenLayout.reduce((s, v) => s + v.height, 0);\n if (this.props.direction === 'horizontal') {\n if (childrenWidth && this.viewLayout?.width) {\n max = childrenWidth - this.viewLayout.width;\n }\n } else if (childrenHeight && this.viewLayout?.height) {\n max = childrenHeight - this.viewLayout.height;\n }\n this.setState({maxPosition: -1 * max});\n }\n\n setChildrenLayout(event: LayoutChangeEvent, index: number) {\n this.childrenLayout[index] = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n setViewLayout(event: LayoutChangeEvent) {\n this.viewLayout = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n computePhase(value: number) {\n return (this.props.handlers?.computePhase &&\n this.props.handlers?.computePhase(value)) || 0;\n }\n\n isRTL(){\n return this.i18nService.isRTLLocale();\n }\n\n goToLower(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n this.setPosition(bounds.lower)\n .then(() => {\n if (!isNil(bounds.lower) && bounds.center !== bounds.lower) {\n this.props.handlers?.onLower &&\n this.props.handlers?.onLower(e);\n }\n });\n }\n\n goToUpper(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n this.setPosition(bounds.upper)\n .then(() => {\n if (!isNil(bounds.upper) && bounds.center !== bounds.upper) {\n this.props.handlers?.onUpper &&\n this.props.handlers?.onUpper(e);\n }\n });\n }\n\n setPosition(value: number | undefined) {\n if (isNil(value)) {\n return Promise.reject();\n }\n let position = isNaN(this.state.maxPosition) ? value : Math.max(this.state.maxPosition, value);\n return new Promise((resolve) => {\n Animated.parallel([\n Animated.timing(this.animationPhase, {\n useNativeDriver: true,\n toValue: this.computePhase(value),\n duration: 200,\n easing: Easing.out(Easing.linear)\n }),\n Animated.timing(this.position, {\n useNativeDriver: true,\n toValue: (this.isRTL() ? -1: 1) * position,\n duration: 200,\n easing: Easing.out(Easing.linear)\n })\n ]).start(resolve);\n });\n }\n\n public render() {\n const isHorizontal = this.props.direction === 'horizontal';\n return (\n //@ts-ignore\n <GestureDetector gesture={this.gesture}>\n <Animated.View style={[\n isHorizontal ? {\n flexDirection: 'row',\n flexWrap: 'nowrap',\n alignItems: 'center',\n } : null,\n this.props.style,\n {\n transform: this.state.isHorizontal ? [{\n translateX: this.position\n }] : [{\n translateY: this.position\n }]\n }]} onLayout={this.setViewLayout.bind(this)}>\n {this.props.children.map((c: any, i: number) => {\n return (<RNView onLayout={(e) => this.setChildrenLayout(e, i)} key={c.key}\n style={[this.props.slideMinWidth ? {\n minWidth: this.props.slideMinWidth\n } : {\n width: this.props.slideWidth\n },\n this.props.style?.height === '100%' ? {\n height: '100%'\n } : null\n ]}>\n {c}\n </RNView>);\n })}\n </Animated.View>\n </GestureDetector>\n );\n }\n\n}\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"names":["isNil","React","Animated","Easing","View","RNView","Gesture","GestureDetector","isWebPreviewMode","injector","Handlers","constructor","_defineProperty","Props","undefined","State","Number","MAX_VALUE","Component","props","Pan","Value","I18nService","get","state","isHorizontal","direction","threshold","bounds","touchStart","x","y","active","gesture","maxPointers","minDistance","enabled","enableGestures","onTouchesDown","e","s","changedTouches","onTouchesMove","translationX","allTouches","translationY","d","od","Math","abs","tan","PI","onChange","_this$props$handlers","_this$props$handlers2","handlers","phase","computePhase","center","lower","upper","animationPhase","setValue","position","isRTL","onEnd","_this$props$handlers3","_this$props$handlers4","onAnimation","goToLower","goToUpper","computeMaxScroll","_this$viewLayout2","max","childrenWidth","childrenLayout","reduce","v","width","childrenHeight","height","_this$viewLayout","viewLayout","setState","maxPosition","setChildrenLayout","event","index","nativeEvent","layout","setViewLayout","value","_this$props$handlers5","_this$props$handlers6","i18nService","isRTLLocale","_this$props$handlers7","_this$props$handlers8","setPosition","then","_this$props$handlers9","_this$props$handlers10","onLower","_this$props$handlers11","_this$props$handlers12","_this$props$handlers13","_this$props$handlers14","onUpper","Promise","reject","isNaN","resolve","parallel","timing","useNativeDriver","toValue","duration","easing","out","linear","start","render","createElement","style","flexDirection","flexWrap","alignItems","transform","translateX","translateY","onLayout","bind","children","map","c","i","_this$props$style","key","slideMinWidth","minWidth","slideWidth"],"sources":["swipe.animation.tsx"],"sourcesContent":["import { isNil } from 'lodash-es';\nimport React from 'react';\nimport { Animated, Easing, View as RNView, ViewStyle, LayoutChangeEvent, LayoutRectangle, DimensionValue } from 'react-native';\nimport { Gesture, GestureDetector, GestureUpdateEvent } from 'react-native-gesture-handler';\nimport { isWebPreviewMode } from '@wavemaker/app-rn-runtime/core/utils';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\n\nexport class Handlers {\n bounds?: (g: GestureUpdateEvent<any>) => Bounds = null as any;\n onAnimation?: (g: GestureUpdateEvent<any>) => any = () => {};\n onLower?: (g: GestureUpdateEvent<any>) => any = () => {};\n onUpper?: (g: GestureUpdateEvent<any>) => any = () => {};\n computePhase?: (value: number) => number = null as any;\n}\n\nexport interface Bounds {\n upper?: number;\n center?: number;\n lower?: number;\n}\n\nexport class Props {\n threshold?: number = 30;\n direction?: 'horizontal' | 'vertical' = 'horizontal';\n handlers?: Handlers = {} as any;\n style?: ViewStyle = {} as any;\n children: any;\n enableGestures: any;\n slideWidth?: DimensionValue = '100%'; \n slideMinWidth?: DimensionValue = undefined; \n}\n\nexport class State {\n threshold = 30;\n isHorizontal = false;\n bounds: Bounds = {} as any;\n maxPosition = Number.MAX_VALUE;\n}\n\nexport class View extends React.Component<Props, State> {\n\n static defaultProps = new Props();\n\n private gesture = Gesture.Pan();\n private position = new Animated.Value(0);\n public animationPhase = new Animated.Value(0);\n private i18nService = injector.I18nService.get();\n private childrenLayout: LayoutRectangle[] = [];\n private viewLayout: LayoutRectangle = null as any;\n\n constructor(props: Props) {\n super(props);\n this.state = {\n isHorizontal: props.direction === 'horizontal',\n threshold: props.threshold || 30,\n bounds: {} as any\n } as State;\n var touchStart = {\n x: 0,\n y: 0,\n active: false\n };\n this.gesture\n .maxPointers(1)\n .minDistance(this.state.threshold)\n .enabled(this.props.enableGestures && !isWebPreviewMode())\n .onTouchesDown((e, s) => {\n touchStart = {\n x: e.changedTouches[0].x,\n y: e.changedTouches[0].y,\n active: false\n };\n })\n .onTouchesMove((e, s) => {\n if (touchStart.active) {\n return;\n }\n const translationX = e.allTouches[0].x - touchStart.x;\n const translationY = e.allTouches[0].y - touchStart.y;\n const d = (this.state.isHorizontal ? translationX : translationY);\n const od = (this.state.isHorizontal ? translationY : translationX);\n if (Math.abs(d) >= this.state.threshold\n && Math.abs(od) < Math.tan((15 * Math.PI) / 180) * this.state.threshold) {\n touchStart.active = true;\n }\n })\n .onChange(e => {\n if (!touchStart.active) {\n return;\n }\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n const d = (this.state.isHorizontal ? e.translationX : e.translationY);\n let phase = this.computePhase(bounds?.center || 0);\n if (d && d < 0 && !isNil(bounds.center) && !isNil(bounds.lower)\n && bounds.center !== bounds.lower) {\n phase += (d / (bounds.center - bounds.lower)) || 0;\n } else if (d && d > 0 && !isNil(bounds.center) && !isNil(bounds.upper)\n && bounds.center !== bounds.upper) {\n phase += (d / (bounds.upper - bounds.center)) || 0;\n }\n this.animationPhase.setValue(phase);\n this.position.setValue(\n (this.isRTL()?-bounds?.center! :bounds?.center || 0) + d);\n })\n .onEnd(e => {\n if (!touchStart.active) {\n return;\n }\n touchStart = {\n x: 0,\n y: 0,\n active: false\n };\n this.props.handlers?.onAnimation && \n this.props.handlers?.onAnimation(e);\n if (e.translationX < 0) {\n this.isRTL()?this.goToLower(e):this.goToUpper(e);\n } else if (e.translationX > 0) {\n this.isRTL()?this.goToUpper(e):this.goToLower(e);\n }\n })\n\n }\n\n computeMaxScroll() {\n let max = Number.MAX_VALUE;\n const childrenWidth = this.childrenLayout.reduce((s, v) => s + v.width, 0);\n const childrenHeight = this.childrenLayout.reduce((s, v) => s + v.height, 0);\n if (this.props.direction === 'horizontal') {\n if (childrenWidth && this.viewLayout?.width) {\n max = childrenWidth - this.viewLayout.width;\n }\n } else if (childrenHeight && this.viewLayout?.height) {\n max = childrenHeight - this.viewLayout.height;\n }\n this.setState({maxPosition: -1 * max});\n }\n\n setChildrenLayout(event: LayoutChangeEvent, index: number) {\n this.childrenLayout[index] = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n setViewLayout(event: LayoutChangeEvent) {\n this.viewLayout = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n computePhase(value: number) {\n return (this.props.handlers?.computePhase && \n this.props.handlers?.computePhase(value)) || 0;\n }\n\n isRTL(){\n return this.i18nService.isRTLLocale();\n }\n\n goToLower(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n this.setPosition(bounds.lower)\n .then(() => {\n if (!isNil(bounds.lower) && bounds.center !== bounds.lower) {\n this.props.handlers?.onLower && \n this.props.handlers?.onLower(e);\n }\n });\n }\n\n goToUpper(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n this.setPosition(bounds.upper)\n .then(() => {\n if (!isNil(bounds.upper) && bounds.center !== bounds.upper) {\n this.props.handlers?.onUpper && \n this.props.handlers?.onUpper(e);\n }\n });\n }\n \n setPosition(value: number | undefined) {\n if (isNil(value)) {\n return Promise.reject();\n }\n let position = isNaN(this.state.maxPosition) ? value : Math.max(this.state.maxPosition, value);\n return new Promise((resolve) => {\n Animated.parallel([\n Animated.timing(this.animationPhase, {\n useNativeDriver: true,\n toValue: this.computePhase(value),\n duration: 200,\n easing: Easing.out(Easing.linear)\n }),\n Animated.timing(this.position, {\n useNativeDriver: true,\n toValue: (this.isRTL() ? -1: 1) * position,\n duration: 200,\n easing: Easing.out(Easing.linear)\n })\n ]).start(resolve);\n });\n }\n\n public render() {\n const isHorizontal = this.props.direction === 'horizontal';\n return (\n //@ts-ignore\n <GestureDetector gesture={this.gesture}>\n <Animated.View style={[\n isHorizontal ? {\n flexDirection: 'row',\n flexWrap: 'nowrap',\n alignItems: 'center',\n } : null,\n this.props.style, \n {\n transform: this.state.isHorizontal ? [{\n translateX: this.position\n }] : [{\n translateY: this.position\n }]\n }]} onLayout={this.setViewLayout.bind(this)}>\n {this.props.children.map((c: any, i: number) => {\n return (<RNView onLayout={(e) => this.setChildrenLayout(e, i)} key={c.key} \n style={[this.props.slideMinWidth ? {\n minWidth: this.props.slideMinWidth\n } : {\n width: this.props.slideWidth\n },\n this.props.style?.height === '100%' ? {\n height: '100%'\n } : null\n ]}>\n {c}\n </RNView>);\n })}\n </Animated.View>\n </GestureDetector>\n );\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.10.3-next.
|
3
|
+
"version": "11.10.3-next.27799",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
9
|
-
"version": "11.10.3-next.
|
9
|
+
"version": "11.10.3-next.27799",
|
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.10.3-next.
|
23
|
+
"@wavemaker/variables": "11.10.3-next.27799",
|
24
24
|
"axios": "1.6.8",
|
25
25
|
"color": "4.2.3",
|
26
26
|
"cross-env": "7.0.3",
|
@@ -2809,8 +2809,8 @@
|
|
2809
2809
|
}
|
2810
2810
|
},
|
2811
2811
|
"node_modules/@expo/cli": {
|
2812
|
-
"version": "0.22.
|
2813
|
-
"integrity": "sha512-
|
2812
|
+
"version": "0.22.17",
|
2813
|
+
"integrity": "sha512-4VOGWoCINIlsQKL0Pl0kQpSs2xAaEPobJ/3Q3xHdtJrBj4S3IHrOyn6mUvubs4A4YySjiyZjlc4UG6GGwxzSsg==",
|
2814
2814
|
"license": "MIT",
|
2815
2815
|
"peer": true,
|
2816
2816
|
"dependencies": {
|
@@ -2823,11 +2823,11 @@
|
|
2823
2823
|
"@expo/env": "~0.4.2",
|
2824
2824
|
"@expo/image-utils": "^0.6.5",
|
2825
2825
|
"@expo/json-file": "^9.0.2",
|
2826
|
-
"@expo/metro-config": "~0.19.
|
2826
|
+
"@expo/metro-config": "~0.19.11",
|
2827
2827
|
"@expo/osascript": "^2.1.6",
|
2828
2828
|
"@expo/package-manager": "^1.7.2",
|
2829
2829
|
"@expo/plist": "^0.2.2",
|
2830
|
-
"@expo/prebuild-config": "^8.0.
|
2830
|
+
"@expo/prebuild-config": "^8.0.28",
|
2831
2831
|
"@expo/rudder-sdk-node": "^1.1.1",
|
2832
2832
|
"@expo/spawn-async": "^1.7.2",
|
2833
2833
|
"@expo/ws-tunnel": "^1.0.1",
|
@@ -3206,8 +3206,8 @@
|
|
3206
3206
|
}
|
3207
3207
|
},
|
3208
3208
|
"node_modules/@expo/fingerprint": {
|
3209
|
-
"version": "0.11.
|
3210
|
-
"integrity": "sha512-
|
3209
|
+
"version": "0.11.11",
|
3210
|
+
"integrity": "sha512-gNyn1KnAOpEa8gSNsYqXMTcq0fSwqU/vit6fP5863vLSKxHm/dNt/gm/uZJxrRZxKq71KUJWF6I7d3z8qIfq5g==",
|
3211
3211
|
"license": "MIT",
|
3212
3212
|
"peer": true,
|
3213
3213
|
"dependencies": {
|
@@ -3442,8 +3442,8 @@
|
|
3442
3442
|
}
|
3443
3443
|
},
|
3444
3444
|
"node_modules/@expo/metro-config": {
|
3445
|
-
"version": "0.19.
|
3446
|
-
"integrity": "sha512
|
3445
|
+
"version": "0.19.11",
|
3446
|
+
"integrity": "sha512-XaobHTcsoHQdKEH7PI/DIpr2QiugkQmPYolbfzkpSJMplNWfSh+cTRjrm4//mS2Sb78qohtu0u2CGJnFqFUGag==",
|
3447
3447
|
"license": "MIT",
|
3448
3448
|
"peer": true,
|
3449
3449
|
"dependencies": {
|
@@ -3451,9 +3451,9 @@
|
|
3451
3451
|
"@babel/generator": "^7.20.5",
|
3452
3452
|
"@babel/parser": "^7.20.0",
|
3453
3453
|
"@babel/types": "^7.20.0",
|
3454
|
-
"@expo/config": "~10.0.
|
3455
|
-
"@expo/env": "~0.4.
|
3456
|
-
"@expo/json-file": "~9.0.
|
3454
|
+
"@expo/config": "~10.0.10",
|
3455
|
+
"@expo/env": "~0.4.2",
|
3456
|
+
"@expo/json-file": "~9.0.2",
|
3457
3457
|
"@expo/spawn-async": "^1.7.2",
|
3458
3458
|
"chalk": "^4.1.0",
|
3459
3459
|
"debug": "^4.3.2",
|
@@ -3662,15 +3662,15 @@
|
|
3662
3662
|
}
|
3663
3663
|
},
|
3664
3664
|
"node_modules/@expo/prebuild-config": {
|
3665
|
-
"version": "8.0.
|
3666
|
-
"integrity": "sha512-
|
3665
|
+
"version": "8.0.28",
|
3666
|
+
"integrity": "sha512-SDDgCKKS1wFNNm3de2vBP8Q5bnxcabuPDE9Mnk9p7Gb4qBavhwMbAtrLcAyZB+WRb4QM+yan3z3K95vvCfI/+A==",
|
3667
3667
|
"license": "MIT",
|
3668
3668
|
"dependencies": {
|
3669
|
-
"@expo/config": "~10.0.
|
3669
|
+
"@expo/config": "~10.0.10",
|
3670
3670
|
"@expo/config-plugins": "~9.0.15",
|
3671
3671
|
"@expo/config-types": "^52.0.4",
|
3672
|
-
"@expo/image-utils": "^0.6.
|
3673
|
-
"@expo/json-file": "^9.0.
|
3672
|
+
"@expo/image-utils": "^0.6.5",
|
3673
|
+
"@expo/json-file": "^9.0.2",
|
3674
3674
|
"@react-native/normalize-colors": "0.76.7",
|
3675
3675
|
"debug": "^4.3.1",
|
3676
3676
|
"fs-extra": "^9.0.0",
|
@@ -3766,8 +3766,9 @@
|
|
3766
3766
|
}
|
3767
3767
|
},
|
3768
3768
|
"node_modules/@expo/ws-tunnel": {
|
3769
|
-
"version": "1.0.
|
3770
|
-
"integrity": "sha512-
|
3769
|
+
"version": "1.0.5",
|
3770
|
+
"integrity": "sha512-Ta9KzslHAIbw2ZoyZ7Ud7/QImucy+K4YvOqo9AhGfUfH76hQzaffQreOySzYusDfW8Y+EXh0ZNWE68dfCumFFw==",
|
3771
|
+
"license": "MIT",
|
3771
3772
|
"peer": true
|
3772
3773
|
},
|
3773
3774
|
"node_modules/@expo/xcpretty": {
|
@@ -5818,28 +5819,6 @@
|
|
5818
5819
|
"integrity": "sha512-ST1xxBuYVIXPdD81dR6+tzIgso7m3pa9+6rOBXTh5Xm7KEEFik7tnQX+GydXYMp3wr1gagJjragdXkPnxK6WNg==",
|
5819
5820
|
"license": "MIT"
|
5820
5821
|
},
|
5821
|
-
"node_modules/@react-native/virtualized-lists": {
|
5822
|
-
"version": "0.76.3",
|
5823
|
-
"integrity": "sha512-wTGv9pVh3vAOWb29xFm+J9VRe9dUcUcb9FyaMLT/Hxa88W4wqa5ZMe1V9UvrrBiA1G5DKjv8/1ZcDsJhyugVKA==",
|
5824
|
-
"license": "MIT",
|
5825
|
-
"dependencies": {
|
5826
|
-
"invariant": "^2.2.4",
|
5827
|
-
"nullthrows": "^1.1.1"
|
5828
|
-
},
|
5829
|
-
"engines": {
|
5830
|
-
"node": ">=18"
|
5831
|
-
},
|
5832
|
-
"peerDependencies": {
|
5833
|
-
"@types/react": "^18.2.6",
|
5834
|
-
"react": "*",
|
5835
|
-
"react-native": "*"
|
5836
|
-
},
|
5837
|
-
"peerDependenciesMeta": {
|
5838
|
-
"@types/react": {
|
5839
|
-
"optional": true
|
5840
|
-
}
|
5841
|
-
}
|
5842
|
-
},
|
5843
5822
|
"node_modules/@react-navigation/core": {
|
5844
5823
|
"version": "6.4.17",
|
5845
5824
|
"integrity": "sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg==",
|
@@ -6682,8 +6661,8 @@
|
|
6682
6661
|
}
|
6683
6662
|
},
|
6684
6663
|
"node_modules/@wavemaker/variables": {
|
6685
|
-
"version": "11.10.3-next.
|
6686
|
-
"integrity": "sha512-
|
6664
|
+
"version": "11.10.3-next.27799",
|
6665
|
+
"integrity": "sha512-4QeaKYXvas7HS/JkU9qMfNB6NYrM5SKjnUCug3tr32F9CjSP58zo5OZ0msDrHI32RGWVSTHqj0SNYFmgjmlArQ==",
|
6687
6666
|
"license": "ISC",
|
6688
6667
|
"dependencies": {
|
6689
6668
|
"@metrichor/jmespath": "^0.3.1",
|
@@ -12070,25 +12049,25 @@
|
|
12070
12049
|
}
|
12071
12050
|
},
|
12072
12051
|
"node_modules/expo": {
|
12073
|
-
"version": "52.0.
|
12074
|
-
"integrity": "sha512-
|
12052
|
+
"version": "52.0.36",
|
12053
|
+
"integrity": "sha512-3QYoxz1+dW3IhBDuPUcw66K6GMUfwlZgXP42ypBT5d54X5AGPSo4Mk5RZxt6Buu+5K6F3qenml9B5snH/OvKIg==",
|
12075
12054
|
"license": "MIT",
|
12076
12055
|
"peer": true,
|
12077
12056
|
"dependencies": {
|
12078
12057
|
"@babel/runtime": "^7.20.0",
|
12079
|
-
"@expo/cli": "0.22.
|
12058
|
+
"@expo/cli": "0.22.17",
|
12080
12059
|
"@expo/config": "~10.0.10",
|
12081
12060
|
"@expo/config-plugins": "~9.0.15",
|
12082
|
-
"@expo/fingerprint": "0.11.
|
12083
|
-
"@expo/metro-config": "0.19.
|
12061
|
+
"@expo/fingerprint": "0.11.11",
|
12062
|
+
"@expo/metro-config": "0.19.11",
|
12084
12063
|
"@expo/vector-icons": "^14.0.0",
|
12085
12064
|
"babel-preset-expo": "~12.0.8",
|
12086
|
-
"expo-asset": "~11.0.
|
12087
|
-
"expo-constants": "~17.0.
|
12088
|
-
"expo-file-system": "~18.0.
|
12089
|
-
"expo-font": "~13.0.
|
12090
|
-
"expo-keep-awake": "~14.0.
|
12091
|
-
"expo-modules-autolinking": "2.0.
|
12065
|
+
"expo-asset": "~11.0.4",
|
12066
|
+
"expo-constants": "~17.0.7",
|
12067
|
+
"expo-file-system": "~18.0.11",
|
12068
|
+
"expo-font": "~13.0.4",
|
12069
|
+
"expo-keep-awake": "~14.0.3",
|
12070
|
+
"expo-modules-autolinking": "2.0.8",
|
12092
12071
|
"expo-modules-core": "2.2.2",
|
12093
12072
|
"fbemitter": "^3.0.0",
|
12094
12073
|
"web-streams-polyfill": "^3.3.2",
|
@@ -12125,13 +12104,13 @@
|
|
12125
12104
|
}
|
12126
12105
|
},
|
12127
12106
|
"node_modules/expo-asset": {
|
12128
|
-
"version": "11.0.
|
12129
|
-
"integrity": "sha512-
|
12107
|
+
"version": "11.0.4",
|
12108
|
+
"integrity": "sha512-CdIywU0HrR3wsW5c3n0cT3jW9hccZdnqGsRqY+EY/RWzJbDXtDfAQVEiFHO3mDK7oveUwrP2jK/6ZRNek41/sg==",
|
12130
12109
|
"license": "MIT",
|
12131
12110
|
"peer": true,
|
12132
12111
|
"dependencies": {
|
12133
|
-
"@expo/image-utils": "^0.6.
|
12134
|
-
"expo-constants": "~17.0.
|
12112
|
+
"@expo/image-utils": "^0.6.5",
|
12113
|
+
"expo-constants": "~17.0.7",
|
12135
12114
|
"invariant": "^2.2.4",
|
12136
12115
|
"md5-file": "^3.2.3"
|
12137
12116
|
},
|
@@ -12189,13 +12168,13 @@
|
|
12189
12168
|
}
|
12190
12169
|
},
|
12191
12170
|
"node_modules/expo-constants": {
|
12192
|
-
"version": "17.0.
|
12193
|
-
"integrity": "sha512-
|
12171
|
+
"version": "17.0.7",
|
12172
|
+
"integrity": "sha512-sp5NUiV17I3JblVPIBDgoxgt7JIZS30vcyydCYHxsEoo+aKaeRYXxGYilCvb9lgI6BBwSL24sQ6ZjWsCWoF1VA==",
|
12194
12173
|
"license": "MIT",
|
12195
12174
|
"peer": true,
|
12196
12175
|
"dependencies": {
|
12197
|
-
"@expo/config": "~10.0.
|
12198
|
-
"@expo/env": "~0.4.
|
12176
|
+
"@expo/config": "~10.0.10",
|
12177
|
+
"@expo/env": "~0.4.2"
|
12199
12178
|
},
|
12200
12179
|
"peerDependencies": {
|
12201
12180
|
"expo": "*",
|
@@ -12259,8 +12238,8 @@
|
|
12259
12238
|
}
|
12260
12239
|
},
|
12261
12240
|
"node_modules/expo-keep-awake": {
|
12262
|
-
"version": "14.0.
|
12263
|
-
"integrity": "sha512-
|
12241
|
+
"version": "14.0.3",
|
12242
|
+
"integrity": "sha512-6Jh94G6NvTZfuLnm2vwIpKe3GdOiVBuISl7FI8GqN0/9UOg9E0WXXp5cDcfAG8bn80RfgLJS8P7EPUGTZyOvhg==",
|
12264
12243
|
"license": "MIT",
|
12265
12244
|
"peer": true,
|
12266
12245
|
"peerDependencies": {
|
@@ -12286,8 +12265,8 @@
|
|
12286
12265
|
}
|
12287
12266
|
},
|
12288
12267
|
"node_modules/expo-modules-autolinking": {
|
12289
|
-
"version": "2.0.
|
12290
|
-
"integrity": "sha512-
|
12268
|
+
"version": "2.0.8",
|
12269
|
+
"integrity": "sha512-DezgnEYFQYic8hKGhkbztBA3QUmSftjaNDIKNAtS2iGJmzCcNIkatjN2slFDSWjSTNo8gOvPQyMKfyHWFvLpOQ==",
|
12291
12270
|
"license": "MIT",
|
12292
12271
|
"peer": true,
|
12293
12272
|
"dependencies": {
|
@@ -12468,8 +12447,8 @@
|
|
12468
12447
|
}
|
12469
12448
|
},
|
12470
12449
|
"node_modules/expo/node_modules/expo-file-system": {
|
12471
|
-
"version": "18.0.
|
12472
|
-
"integrity": "sha512
|
12450
|
+
"version": "18.0.11",
|
12451
|
+
"integrity": "sha512-yDwYfEzWgPXsBZHJW2RJ8Q66ceiFN9Wa5D20pp3fjXVkzPBDwxnYwiPWk4pVmCa5g4X5KYMoMne1pUrsL4OEpg==",
|
12473
12452
|
"license": "MIT",
|
12474
12453
|
"peer": true,
|
12475
12454
|
"dependencies": {
|
@@ -12481,8 +12460,8 @@
|
|
12481
12460
|
}
|
12482
12461
|
},
|
12483
12462
|
"node_modules/expo/node_modules/expo-font": {
|
12484
|
-
"version": "13.0.
|
12485
|
-
"integrity": "sha512-
|
12463
|
+
"version": "13.0.4",
|
12464
|
+
"integrity": "sha512-eAP5hyBgC8gafFtprsz0HMaB795qZfgJWqTmU0NfbSin1wUuVySFMEPMOrTkTgmazU73v4Cb4x7p86jY1XXYUw==",
|
12486
12465
|
"license": "MIT",
|
12487
12466
|
"peer": true,
|
12488
12467
|
"dependencies": {
|
@@ -12936,8 +12915,8 @@
|
|
12936
12915
|
"license": "MIT"
|
12937
12916
|
},
|
12938
12917
|
"node_modules/flow-parser": {
|
12939
|
-
"version": "0.261.
|
12940
|
-
"integrity": "sha512-
|
12918
|
+
"version": "0.261.2",
|
12919
|
+
"integrity": "sha512-RtunoakA3YjtpAxPSOBVW6lmP5NYmETwkpAfNkdr8Ovf86ENkbD3mtPWnswFTIUtRvjwv0i8ZSkHK+AzsUg1JA==",
|
12941
12920
|
"license": "MIT",
|
12942
12921
|
"engines": {
|
12943
12922
|
"node": ">=0.4.0"
|
@@ -20884,6 +20863,28 @@
|
|
20884
20863
|
"integrity": "sha512-Yrpmrh4IDEupUUM/dqVxhAN8QW1VEUR3Qrk2lzJC1jB2s46hDe0hrMP2vs12YJqlzshteOthjwXQlY0TgIzgbg==",
|
20885
20864
|
"license": "MIT"
|
20886
20865
|
},
|
20866
|
+
"node_modules/react-native/node_modules/@react-native/virtualized-lists": {
|
20867
|
+
"version": "0.76.3",
|
20868
|
+
"integrity": "sha512-wTGv9pVh3vAOWb29xFm+J9VRe9dUcUcb9FyaMLT/Hxa88W4wqa5ZMe1V9UvrrBiA1G5DKjv8/1ZcDsJhyugVKA==",
|
20869
|
+
"license": "MIT",
|
20870
|
+
"dependencies": {
|
20871
|
+
"invariant": "^2.2.4",
|
20872
|
+
"nullthrows": "^1.1.1"
|
20873
|
+
},
|
20874
|
+
"engines": {
|
20875
|
+
"node": ">=18"
|
20876
|
+
},
|
20877
|
+
"peerDependencies": {
|
20878
|
+
"@types/react": "^18.2.6",
|
20879
|
+
"react": "*",
|
20880
|
+
"react-native": "*"
|
20881
|
+
},
|
20882
|
+
"peerDependenciesMeta": {
|
20883
|
+
"@types/react": {
|
20884
|
+
"optional": true
|
20885
|
+
}
|
20886
|
+
}
|
20887
|
+
},
|
20887
20888
|
"node_modules/react-native/node_modules/ansi-styles": {
|
20888
20889
|
"version": "4.3.0",
|
20889
20890
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
@@ -23186,8 +23187,8 @@
|
|
23186
23187
|
}
|
23187
23188
|
},
|
23188
23189
|
"node_modules/strnum": {
|
23189
|
-
"version": "1.0
|
23190
|
-
"integrity": "sha512-
|
23190
|
+
"version": "1.1.0",
|
23191
|
+
"integrity": "sha512-a4NGarQIHRhvr+k8VXaHg6TMU6f3YEmi5CAb6RYgX2gwbGDBNMbr6coC6g0wmif5dLjHtmHUVD/qOxPq7D0tnQ==",
|
23191
23192
|
"license": "MIT"
|
23192
23193
|
},
|
23193
23194
|
"node_modules/structured-headers": {
|
@@ -25564,7 +25565,7 @@
|
|
25564
25565
|
},
|
25565
25566
|
"node_modules/y18n": {
|
25566
25567
|
"version": "5.0.8",
|
25567
|
-
"integrity": "
|
25568
|
+
"integrity": "sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=",
|
25568
25569
|
"license": "ISC",
|
25569
25570
|
"engines": {
|
25570
25571
|
"node": ">=10"
|