@wavemaker/app-rn-runtime 11.14.1-22.647491 → 11.14.1-22.647501
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.
|
@@ -89,6 +89,20 @@ export default class WmContainer extends PartialHost {
|
|
|
89
89
|
left: 0,
|
|
90
90
|
right: 0
|
|
91
91
|
});
|
|
92
|
+
_defineProperty(this, "handleOnScrollEndDrag", event => {
|
|
93
|
+
var _event$nativeEvent;
|
|
94
|
+
const currentY = event === null || event === void 0 || (_event$nativeEvent = event.nativeEvent) === null || _event$nativeEvent === void 0 || (_event$nativeEvent = _event$nativeEvent.contentOffset) === null || _event$nativeEvent === void 0 ? void 0 : _event$nativeEvent.y;
|
|
95
|
+
if (currentY > 0) {
|
|
96
|
+
this.invokeEventCallback('onScroll', [null, this.proxy]);
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
_defineProperty(this, "handleOnMomentumScrollEnd", event => {
|
|
100
|
+
var _event$nativeEvent2;
|
|
101
|
+
const currentY = event === null || event === void 0 || (_event$nativeEvent2 = event.nativeEvent) === null || _event$nativeEvent2 === void 0 || (_event$nativeEvent2 = _event$nativeEvent2.contentOffset) === null || _event$nativeEvent2 === void 0 ? void 0 : _event$nativeEvent2.y;
|
|
102
|
+
if (currentY < 1) {
|
|
103
|
+
this.invokeEventCallback('onScrolltotop', [null, this.proxy]);
|
|
104
|
+
}
|
|
105
|
+
});
|
|
92
106
|
this.containerRef = /*#__PURE__*/React.createRef();
|
|
93
107
|
this.stickyContainerOpacity = new Animated.Value(1);
|
|
94
108
|
this.subscribe('updateStickyHeaders', _event => {
|
|
@@ -102,7 +116,6 @@ export default class WmContainer extends PartialHost {
|
|
|
102
116
|
getBackground() {
|
|
103
117
|
return this._showSkeleton ? null : this._background;
|
|
104
118
|
}
|
|
105
|
-
|
|
106
119
|
// Compute root style respecting 'fill'|'hug'|<size> for width/height.
|
|
107
120
|
getRootContainerStyle() {
|
|
108
121
|
var _this$props, _this$styles$skeleton;
|
|
@@ -337,7 +350,9 @@ export default class WmContainer extends PartialHost {
|
|
|
337
350
|
style: [dimensions, this.styles.content, autoLayoutStyle],
|
|
338
351
|
onScroll: event => this.notify('scroll', [event], props.emittoparent),
|
|
339
352
|
scrollEventThrottle: 48,
|
|
340
|
-
ref: this.scrollViewRef
|
|
353
|
+
ref: this.scrollViewRef,
|
|
354
|
+
onScrollEndDrag: this.handleOnScrollEndDrag,
|
|
355
|
+
onMomentumScrollEnd: this.handleOnMomentumScrollEnd
|
|
341
356
|
}, this.renderContent(props))));
|
|
342
357
|
});
|
|
343
358
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","Platform","Animated","WmContainerProps","DEFAULT_CLASS","Tappable","Animatedview","PartialHost","PartialHostState","createSkeleton","ScrollView","StickyWrapperContext","SafeAreaInsetsContext","StickyContainer","getParentStyles","injector","alignmentMatrixFixed","justifyContent","alignItems","alignmentMatrixAuto","start","center","end","WmContainerState","constructor","args","_defineProperty","WmContainer","props","createRef","get","top","bottom","left","right","containerRef","stickyContainerOpacity","Value","subscribe","_event","sticky","setTimeout","getStickyHeaderTranslateY","getBackground","_showSkeleton","_background","getRootContainerStyle","_this$props","_this$styles$skeleton","baseStyle","styles","root","width","height","dimensionStyle","isRow","direction","alignSelf","flexGrow","undefined","num","endsWith","parseFloat","isNaN","styleWithResize","skeleton","getContentContainerStyle","wrap","gap","alignment","columngap","useNewLayoutSystem","finalDirection","finalWrap","finalGap","finalAlignment","isAutoGap","isWrap","layoutStyle","flexDirection","flexWrap","alignConfig","columnGap","Number","rowGap","alignContent","renderSkeleton","showskeletonchildren","_this$props2","dimensions","skeletonStyles","text","theme","createElement","style","opacity","_extends","getTestPropsForAction","target","disableTouchEffect","state","disabletoucheffect","content","renderContent","_this$appConfig","_this$containerRef","isEdgeToEdgeApp","appConfig","edgeToEdgeConfig","current","measure","_x","_y","_width","_height","px","py","_this$insets","topInsetsInYposition","OS","insets","context","stickyContainerTranslateY","value","updateState","stickyContainerVisibility","componentDidUpdate","_prevProps","prevState","timing","toValue","delay","useNativeDriver","scrollViewRef","notify","renderStickyContent","autoLayoutStyle","positioningStyles","Fragment","component","backgroundColor","positionStyles","show","ref","renderWidget","rootStyle","isSticky","Consumer","entryanimation","animation","animationdelay","onLayout","event","handleLayout","scrollable","onScroll","emittoparent","scrollEventThrottle"],"sources":["container.component.tsx"],"sourcesContent":["import React from 'react';\nimport { DimensionValue, LayoutChangeEvent, StyleProp, View, ViewStyle, Platform, Animated } from 'react-native';\nimport WmContainerProps from './container.props';\nimport { DEFAULT_CLASS, WmContainerStyles } from './container.styles';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';\nimport { PartialHost, PartialHostState } from './partial-host.component';\nimport { createSkeleton } from '../basic/skeleton/skeleton.component';\nimport { WmSkeletonStyles } from '../basic/skeleton/skeleton.styles';\nimport { ScrollView } from 'react-native-gesture-handler';\nimport { StickyWrapperContextType, StickyWrapperContext } from '@wavemaker/app-rn-runtime/core/sticky-wrapper';\nimport { EdgeInsets, SafeAreaInsetsContext } from 'react-native-safe-area-context';\nimport { StickyContainer } from '@wavemaker/app-rn-runtime/core/components/sticky-container.component';\nimport { getParentStyles } from '@wavemaker/app-rn-runtime/core/components/sticky-container.styles';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\nimport AppConfig from '@wavemaker/app-rn-runtime/core/AppConfig';\n\n// Alignment matrix for flex properties\nconst alignmentMatrixFixed: Record<\n string,\n { justifyContent: string; alignItems: string }\n> = {\n 'top-left': { justifyContent: 'flex-start', alignItems: 'flex-start' },\n 'top-center': { justifyContent: 'center', alignItems: 'flex-start' },\n 'top-right': { justifyContent: 'flex-end', alignItems: 'flex-start' },\n 'middle-left': { justifyContent: 'flex-start', alignItems: 'center' },\n 'middle-center': { justifyContent: 'center', alignItems: 'center' },\n 'middle-right': { justifyContent: 'flex-end', alignItems: 'center' },\n 'bottom-left': { justifyContent: 'flex-start', alignItems: 'flex-end' },\n 'bottom-center': { justifyContent: 'center', alignItems: 'flex-end' },\n 'bottom-right': { justifyContent: 'flex-end', alignItems: 'flex-end' },\n};\n\nconst alignmentMatrixAuto: Record<\n string,\n { justifyContent: string; alignItems: string }\n> = {\n start: { justifyContent: 'space-between', alignItems: 'flex-start' },\n center: { justifyContent: 'space-between', alignItems: 'center' },\n end: { justifyContent: 'space-between', alignItems: 'flex-end' },\n};\n\nexport class WmContainerState extends PartialHostState<WmContainerProps> {\n isPartialLoaded = false;\n stickyContainerVisibility = false;\n}\n\nexport default class WmContainer extends PartialHost<WmContainerProps, WmContainerState, WmContainerStyles> {\n static contextType = StickyWrapperContext;\n private containerRef: React.RefObject<View | null>;\n private scrollViewRef = React.createRef<ScrollView>();\n private stickyContainerOpacity: Animated.Value;\n private appConfig = injector.get<AppConfig>('APP_CONFIG');\n insets: EdgeInsets | null = {\n top: 0, bottom: 0, left: 0, right: 0\n };\n\n constructor(props: WmContainerProps) {\n super(props, DEFAULT_CLASS, new WmContainerProps(), new WmContainerState());\n this.containerRef = React.createRef();\n this.stickyContainerOpacity = new Animated.Value(1);\n\n this.subscribe('updateStickyHeaders', (_event: any) => {\n if(this.props.sticky){\n setTimeout(()=>{\n this.getStickyHeaderTranslateY();\n }, 500);\n }\n })\n }\n\n getBackground(): React.JSX.Element | null {\n return this._showSkeleton ? null : this._background\n }\n\n // Compute root style respecting 'fill'|'hug'|<size> for width/height.\n private getRootContainerStyle(): ViewStyle {\n // const { width, height } = this.props;\n const baseStyle = this.styles.root || {};\n const { width, height }: any = baseStyle;\n const dimensionStyle: ViewStyle = {};\n const isRow = this.props?.direction === \"row\";\n\n if (height === 'fill') {\n if (isRow) {\n dimensionStyle.alignSelf = 'stretch';\n } else {\n dimensionStyle.flexGrow = 1;\n }\n dimensionStyle.height = undefined;\n }\n else if (height === 'hug') {\n if (isRow) {\n dimensionStyle.alignSelf = 'flex-start';\n } else {\n dimensionStyle.flexGrow = 0;\n }\n dimensionStyle.height = undefined;\n }\n else if (height) {\n const num = (typeof height === 'string' && height.endsWith('%')) ? height : parseFloat(height);\n dimensionStyle.height = (isNaN(num as number) ? height : num) as DimensionValue;\n }\n\n if (width === 'fill') {\n if (isRow) {\n dimensionStyle.width = '100%';\n } else {\n dimensionStyle.alignSelf = 'stretch';\n dimensionStyle.width = undefined;\n }\n }\n else if (width === 'hug') {\n if (isRow) {\n dimensionStyle.flexGrow = 0;\n } else {\n dimensionStyle.alignSelf = 'flex-start';\n }\n dimensionStyle.width = undefined;\n }\n else if (width) {\n const num = (typeof width === 'string' && width.endsWith('%')) ? width : parseFloat(width);\n dimensionStyle.width = (isNaN(num as number) ? width : num) as DimensionValue;\n }\n\n const styleWithResize = {\n ...baseStyle,\n ...dimensionStyle,\n };\n\n return this._showSkeleton\n ? { ...styleWithResize, ...this.styles.skeleton?.root }\n : styleWithResize;\n }\n\n // Compute content layout (flexDirection, wrap, gap, justifyContent, alignItems).\n private getContentContainerStyle(): ViewStyle {\n const { direction, wrap, gap, alignment, columngap } = this.props;\n\n /* Check if any of the new layout props are provided. If not, return an empty\n style object to maintain backward compatibility. */\n const useNewLayoutSystem =\n direction !== undefined ||\n wrap !== undefined ||\n gap !== undefined ||\n alignment !== undefined ||\n columngap !== undefined;\n\n if (!useNewLayoutSystem) {\n return {};\n }\n\n // Apply defaults only if the new layout system is active\n const finalDirection = direction ?? 'row';\n const finalWrap = wrap ?? false;\n const finalGap = gap ?? 4;\n const finalAlignment = alignment ?? 'top-left';\n\n const isRow = finalDirection === 'row';\n const isAutoGap = finalGap === 'auto';\n const isWrap = finalWrap === 'true' || finalWrap === true;\n\n const layoutStyle: ViewStyle = {\n flexDirection: finalDirection,\n flexWrap: isWrap && isRow ? 'wrap' : 'nowrap',\n };\n\n if (isAutoGap) {\n const alignConfig =\n alignmentMatrixAuto[finalAlignment] || alignmentMatrixAuto['start'];\n layoutStyle.justifyContent =\n alignConfig.justifyContent as ViewStyle['justifyContent'];\n layoutStyle.alignItems =\n alignConfig.alignItems as ViewStyle['alignItems'];\n } else {\n if (isRow) {\n // For a row, the main-axis gap (between items) is columnGap.\n layoutStyle.columnGap = Number(finalGap);\n } else {\n // For a column, the main-axis gap (between items) is rowGap.\n layoutStyle.rowGap = Number(finalGap);\n }\n const alignConfig =\n alignmentMatrixFixed[finalAlignment] || alignmentMatrixFixed['top-left'];\n\n layoutStyle.justifyContent = (\n isRow ? alignConfig.justifyContent : alignConfig.alignItems\n ) as ViewStyle['justifyContent'];\n layoutStyle.alignItems = (\n isRow ? alignConfig.alignItems : alignConfig.justifyContent\n ) as ViewStyle['alignItems'];\n }\n\n // Add columnGap logic for wrapped rows\n if (isWrap && isRow) {\n if (columngap === 'auto') {\n layoutStyle.alignContent = 'space-between';\n } else if (columngap !== undefined) {\n layoutStyle.rowGap = Number(columngap);\n }\n }\n\n return {\n ...layoutStyle,\n };\n }\n\n public renderSkeleton(props: WmContainerProps): React.ReactNode {\n if(!props.showskeletonchildren) {\n const dimensions = {\n width: this.styles.root.width ? '100%' : undefined,\n height: this.styles.root.height ? '100%' : undefined\n };\n const skeletonStyles: WmSkeletonStyles = this.props?.styles?.skeleton || { root: {}, text: {} } as WmSkeletonStyles\n return createSkeleton(this.theme, skeletonStyles, {\n ...this.styles.root\n }, (<View style={[this.styles.root, { opacity: 0 }]}>\n <Tappable {...this.getTestPropsForAction()} target={this} styles={dimensions} disableTouchEffect={this.state.props.disabletoucheffect}>\n <View style={[dimensions as ViewStyle, this.styles.content]}>{this.renderContent(props)}</View>\n </Tappable>\n\n </View>))\n }\n return null;\n }\n\n public getStickyHeaderTranslateY(){\n const isEdgeToEdgeApp = !!this.appConfig?.edgeToEdgeConfig?.isEdgeToEdgeApp;\n this.containerRef?.current?.measure((_x = 0, _y = 0, _width = 0, _height = 0, px = 0, py = 0)=>{\n const topInsetsInYposition = (Platform.OS == 'ios' && !isEdgeToEdgeApp) ? (this.insets?.top || 0): 0\n if((this.context) && (this.context as StickyWrapperContextType).stickyContainerTranslateY) {\n (this.context as StickyWrapperContextType).stickyContainerTranslateY.value = py - topInsetsInYposition ;\n this.updateState({ stickyContainerVisibility: true} as WmContainerState); \n }\n })\n }\n\n componentDidUpdate(_prevProps: any, prevState: any) {\n if (prevState.stickyContainerVisibility !== this.state.stickyContainerVisibility) {\n Animated.timing(this.stickyContainerOpacity, {\n toValue: this.state.stickyContainerVisibility ? 0 : 1,\n delay: 500,\n useNativeDriver: true\n }).start();\n }\n\n //emiting container wdiget scrollview ref value to bottom sheet widget(bottom sheet sticky header/footer feature)\n if (this.scrollViewRef.current) {\n this.notify('containerScrollViewReady', [this.scrollViewRef], true);\n }\n }\n\n private renderStickyContent(props: WmContainerProps, dimensions: ViewStyle, styles: ViewStyle, autoLayoutStyle: ViewStyle) {\n const { stickyContainerVisibility } = this.state;\n const { positioningStyles } = getParentStyles(this);\n\n return (\n <>\n {stickyContainerVisibility ? (\n <StickyContainer\n component={this}\n theme={this.theme}\n style={[\n this.styles.sticky,\n { backgroundColor: styles.backgroundColor }\n ]}\n positionStyles={positioningStyles}\n show={props.show as boolean}\n >\n <View style={[dimensions as ViewStyle, { backgroundColor: styles.backgroundColor }, this.styles.content, autoLayoutStyle]}>\n {this.renderContent(props)}\n </View>\n </StickyContainer>\n ) : <></>}\n <Animated.View\n style={[\n dimensions as ViewStyle,\n { opacity: this.stickyContainerOpacity },\n this.styles.content,\n autoLayoutStyle\n ]}\n ref={this.containerRef}\n >\n {this.renderContent(props)}\n </Animated.View>\n </>\n );\n }\n\n renderWidget(props: WmContainerProps) {\n const rootStyle = this.getRootContainerStyle();\n const autoLayoutStyle = this.getContentContainerStyle();\n\n const dimensions: ViewStyle = {\n width: rootStyle.width ? '100%' : undefined,\n height: rootStyle.height ? '100%' : undefined\n };\n\n const styles = this._showSkeleton ? {\n ...this.styles.root,\n ...this.styles.skeleton.root\n } : this.styles.root;\n\n if (props.sticky) {\n this.isSticky = true;\n }\n return (\n <SafeAreaInsetsContext.Consumer>\n {(insets = { top: 0, bottom: 0, left: 0, right: 0 }) => {\n this.insets = insets;\n return (\n <Animatedview\n entryanimation={props.animation}\n delay={props.animationdelay}\n style={rootStyle}\n onLayout={(event: LayoutChangeEvent, ref: React.RefObject<View>) => {\n this.handleLayout(event, ref);\n }}\n >\n {this.getBackground()}\n <Tappable\n {...this.getTestPropsForAction()}\n target={this}\n styles={dimensions}\n disableTouchEffect={this.state.props.disabletoucheffect}\n >\n {props.sticky ? (\n this.renderStickyContent(props, dimensions, styles, autoLayoutStyle)\n ) : !props.scrollable ? (\n <View style={[\n dimensions as ViewStyle,\n this.styles.content,\n autoLayoutStyle]}>\n {this.renderContent(props)}\n </View>\n ) : (\n <ScrollView\n style={[dimensions as ViewStyle, this.styles.content, autoLayoutStyle]}\n onScroll={(event) => this.notify('scroll', [event], props.emittoparent)}\n scrollEventThrottle={48}\n ref={this.scrollViewRef}\n >\n {this.renderContent(props)}\n </ScrollView>\n )}\n </Tappable>\n </Animatedview>\n );\n }}\n </SafeAreaInsetsContext.Consumer>\n );\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["React","View","Platform","Animated","WmContainerProps","DEFAULT_CLASS","Tappable","Animatedview","PartialHost","PartialHostState","createSkeleton","ScrollView","StickyWrapperContext","SafeAreaInsetsContext","StickyContainer","getParentStyles","injector","alignmentMatrixFixed","justifyContent","alignItems","alignmentMatrixAuto","start","center","end","WmContainerState","constructor","args","_defineProperty","WmContainer","props","createRef","get","top","bottom","left","right","event","_event$nativeEvent","currentY","nativeEvent","contentOffset","y","invokeEventCallback","proxy","_event$nativeEvent2","containerRef","stickyContainerOpacity","Value","subscribe","_event","sticky","setTimeout","getStickyHeaderTranslateY","getBackground","_showSkeleton","_background","getRootContainerStyle","_this$props","_this$styles$skeleton","baseStyle","styles","root","width","height","dimensionStyle","isRow","direction","alignSelf","flexGrow","undefined","num","endsWith","parseFloat","isNaN","styleWithResize","skeleton","getContentContainerStyle","wrap","gap","alignment","columngap","useNewLayoutSystem","finalDirection","finalWrap","finalGap","finalAlignment","isAutoGap","isWrap","layoutStyle","flexDirection","flexWrap","alignConfig","columnGap","Number","rowGap","alignContent","renderSkeleton","showskeletonchildren","_this$props2","dimensions","skeletonStyles","text","theme","createElement","style","opacity","_extends","getTestPropsForAction","target","disableTouchEffect","state","disabletoucheffect","content","renderContent","_this$appConfig","_this$containerRef","isEdgeToEdgeApp","appConfig","edgeToEdgeConfig","current","measure","_x","_y","_width","_height","px","py","_this$insets","topInsetsInYposition","OS","insets","context","stickyContainerTranslateY","value","updateState","stickyContainerVisibility","componentDidUpdate","_prevProps","prevState","timing","toValue","delay","useNativeDriver","scrollViewRef","notify","renderStickyContent","autoLayoutStyle","positioningStyles","Fragment","component","backgroundColor","positionStyles","show","ref","renderWidget","rootStyle","isSticky","Consumer","entryanimation","animation","animationdelay","onLayout","handleLayout","scrollable","onScroll","emittoparent","scrollEventThrottle","onScrollEndDrag","handleOnScrollEndDrag","onMomentumScrollEnd","handleOnMomentumScrollEnd"],"sources":["container.component.tsx"],"sourcesContent":["import React from 'react';\nimport { DimensionValue, LayoutChangeEvent, StyleProp, View, ViewStyle, Platform, Animated } from 'react-native';\nimport WmContainerProps from './container.props';\nimport { DEFAULT_CLASS, WmContainerStyles } from './container.styles';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';\nimport { PartialHost, PartialHostState } from './partial-host.component';\nimport { createSkeleton } from '../basic/skeleton/skeleton.component';\nimport { WmSkeletonStyles } from '../basic/skeleton/skeleton.styles';\nimport { ScrollView } from 'react-native-gesture-handler';\nimport { StickyWrapperContextType, StickyWrapperContext } from '@wavemaker/app-rn-runtime/core/sticky-wrapper';\nimport { EdgeInsets, SafeAreaInsetsContext } from 'react-native-safe-area-context';\nimport { StickyContainer } from '@wavemaker/app-rn-runtime/core/components/sticky-container.component';\nimport { getParentStyles } from '@wavemaker/app-rn-runtime/core/components/sticky-container.styles';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\nimport AppConfig from '@wavemaker/app-rn-runtime/core/AppConfig';\n\n// Alignment matrix for flex properties\nconst alignmentMatrixFixed: Record<\n string,\n { justifyContent: string; alignItems: string }\n> = {\n 'top-left': { justifyContent: 'flex-start', alignItems: 'flex-start' },\n 'top-center': { justifyContent: 'center', alignItems: 'flex-start' },\n 'top-right': { justifyContent: 'flex-end', alignItems: 'flex-start' },\n 'middle-left': { justifyContent: 'flex-start', alignItems: 'center' },\n 'middle-center': { justifyContent: 'center', alignItems: 'center' },\n 'middle-right': { justifyContent: 'flex-end', alignItems: 'center' },\n 'bottom-left': { justifyContent: 'flex-start', alignItems: 'flex-end' },\n 'bottom-center': { justifyContent: 'center', alignItems: 'flex-end' },\n 'bottom-right': { justifyContent: 'flex-end', alignItems: 'flex-end' },\n};\n\nconst alignmentMatrixAuto: Record<\n string,\n { justifyContent: string; alignItems: string }\n> = {\n start: { justifyContent: 'space-between', alignItems: 'flex-start' },\n center: { justifyContent: 'space-between', alignItems: 'center' },\n end: { justifyContent: 'space-between', alignItems: 'flex-end' },\n};\n\nexport class WmContainerState extends PartialHostState<WmContainerProps> {\n isPartialLoaded = false;\n stickyContainerVisibility = false;\n}\n\nexport default class WmContainer extends PartialHost<WmContainerProps, WmContainerState, WmContainerStyles> {\n static contextType = StickyWrapperContext;\n private containerRef: React.RefObject<View | null>;\n private scrollViewRef = React.createRef<ScrollView>();\n private stickyContainerOpacity: Animated.Value;\n private appConfig = injector.get<AppConfig>('APP_CONFIG');\n insets: EdgeInsets | null = {\n top: 0, bottom: 0, left: 0, right: 0\n };\n\n constructor(props: WmContainerProps) {\n super(props, DEFAULT_CLASS, new WmContainerProps(), new WmContainerState());\n this.containerRef = React.createRef();\n this.stickyContainerOpacity = new Animated.Value(1);\n\n this.subscribe('updateStickyHeaders', (_event: any) => {\n if(this.props.sticky){\n setTimeout(()=>{\n this.getStickyHeaderTranslateY();\n }, 500);\n }\n })\n }\n\n getBackground(): React.JSX.Element | null {\n return this._showSkeleton ? null : this._background\n }\n\n private handleOnScrollEndDrag = (event: any) => {\n const currentY = event?.nativeEvent?.contentOffset?.y;\n if (currentY > 0) {\n this.invokeEventCallback('onScroll', [null, this.proxy]);\n }\n }\n\n private handleOnMomentumScrollEnd = (event: any) => {\n const currentY = event?.nativeEvent?.contentOffset?.y;\n if (currentY < 1) {\n this.invokeEventCallback('onScrolltotop', [null, this.proxy]);\n }\n }\n\n // Compute root style respecting 'fill'|'hug'|<size> for width/height.\n private getRootContainerStyle(): ViewStyle {\n // const { width, height } = this.props;\n const baseStyle = this.styles.root || {};\n const { width, height }: any = baseStyle;\n const dimensionStyle: ViewStyle = {};\n const isRow = this.props?.direction === \"row\";\n\n if (height === 'fill') {\n if (isRow) {\n dimensionStyle.alignSelf = 'stretch';\n } else {\n dimensionStyle.flexGrow = 1;\n }\n dimensionStyle.height = undefined;\n }\n else if (height === 'hug') {\n if (isRow) {\n dimensionStyle.alignSelf = 'flex-start';\n } else {\n dimensionStyle.flexGrow = 0;\n }\n dimensionStyle.height = undefined;\n }\n else if (height) {\n const num = (typeof height === 'string' && height.endsWith('%')) ? height : parseFloat(height);\n dimensionStyle.height = (isNaN(num as number) ? height : num) as DimensionValue;\n }\n\n if (width === 'fill') {\n if (isRow) {\n dimensionStyle.width = '100%';\n } else {\n dimensionStyle.alignSelf = 'stretch';\n dimensionStyle.width = undefined;\n }\n }\n else if (width === 'hug') {\n if (isRow) {\n dimensionStyle.flexGrow = 0;\n } else {\n dimensionStyle.alignSelf = 'flex-start';\n }\n dimensionStyle.width = undefined;\n }\n else if (width) {\n const num = (typeof width === 'string' && width.endsWith('%')) ? width : parseFloat(width);\n dimensionStyle.width = (isNaN(num as number) ? width : num) as DimensionValue;\n }\n\n const styleWithResize = {\n ...baseStyle,\n ...dimensionStyle,\n };\n\n return this._showSkeleton\n ? { ...styleWithResize, ...this.styles.skeleton?.root }\n : styleWithResize;\n }\n\n // Compute content layout (flexDirection, wrap, gap, justifyContent, alignItems).\n private getContentContainerStyle(): ViewStyle {\n const { direction, wrap, gap, alignment, columngap } = this.props;\n\n /* Check if any of the new layout props are provided. If not, return an empty\n style object to maintain backward compatibility. */\n const useNewLayoutSystem =\n direction !== undefined ||\n wrap !== undefined ||\n gap !== undefined ||\n alignment !== undefined ||\n columngap !== undefined;\n\n if (!useNewLayoutSystem) {\n return {};\n }\n\n // Apply defaults only if the new layout system is active\n const finalDirection = direction ?? 'row';\n const finalWrap = wrap ?? false;\n const finalGap = gap ?? 4;\n const finalAlignment = alignment ?? 'top-left';\n\n const isRow = finalDirection === 'row';\n const isAutoGap = finalGap === 'auto';\n const isWrap = finalWrap === 'true' || finalWrap === true;\n\n const layoutStyle: ViewStyle = {\n flexDirection: finalDirection,\n flexWrap: isWrap && isRow ? 'wrap' : 'nowrap',\n };\n\n if (isAutoGap) {\n const alignConfig =\n alignmentMatrixAuto[finalAlignment] || alignmentMatrixAuto['start'];\n layoutStyle.justifyContent =\n alignConfig.justifyContent as ViewStyle['justifyContent'];\n layoutStyle.alignItems =\n alignConfig.alignItems as ViewStyle['alignItems'];\n } else {\n if (isRow) {\n // For a row, the main-axis gap (between items) is columnGap.\n layoutStyle.columnGap = Number(finalGap);\n } else {\n // For a column, the main-axis gap (between items) is rowGap.\n layoutStyle.rowGap = Number(finalGap);\n }\n const alignConfig =\n alignmentMatrixFixed[finalAlignment] || alignmentMatrixFixed['top-left'];\n\n layoutStyle.justifyContent = (\n isRow ? alignConfig.justifyContent : alignConfig.alignItems\n ) as ViewStyle['justifyContent'];\n layoutStyle.alignItems = (\n isRow ? alignConfig.alignItems : alignConfig.justifyContent\n ) as ViewStyle['alignItems'];\n }\n\n // Add columnGap logic for wrapped rows\n if (isWrap && isRow) {\n if (columngap === 'auto') {\n layoutStyle.alignContent = 'space-between';\n } else if (columngap !== undefined) {\n layoutStyle.rowGap = Number(columngap);\n }\n }\n\n return {\n ...layoutStyle,\n };\n }\n\n public renderSkeleton(props: WmContainerProps): React.ReactNode {\n if(!props.showskeletonchildren) {\n const dimensions = {\n width: this.styles.root.width ? '100%' : undefined,\n height: this.styles.root.height ? '100%' : undefined\n };\n const skeletonStyles: WmSkeletonStyles = this.props?.styles?.skeleton || { root: {}, text: {} } as WmSkeletonStyles\n return createSkeleton(this.theme, skeletonStyles, {\n ...this.styles.root\n }, (<View style={[this.styles.root, { opacity: 0 }]}>\n <Tappable {...this.getTestPropsForAction()} target={this} styles={dimensions} disableTouchEffect={this.state.props.disabletoucheffect}>\n <View style={[dimensions as ViewStyle, this.styles.content]}>{this.renderContent(props)}</View>\n </Tappable>\n\n </View>))\n }\n return null;\n }\n\n public getStickyHeaderTranslateY(){\n const isEdgeToEdgeApp = !!this.appConfig?.edgeToEdgeConfig?.isEdgeToEdgeApp;\n this.containerRef?.current?.measure((_x = 0, _y = 0, _width = 0, _height = 0, px = 0, py = 0)=>{\n const topInsetsInYposition = (Platform.OS == 'ios' && !isEdgeToEdgeApp) ? (this.insets?.top || 0): 0\n if((this.context) && (this.context as StickyWrapperContextType).stickyContainerTranslateY) {\n (this.context as StickyWrapperContextType).stickyContainerTranslateY.value = py - topInsetsInYposition ;\n this.updateState({ stickyContainerVisibility: true} as WmContainerState); \n }\n })\n }\n\n componentDidUpdate(_prevProps: any, prevState: any) {\n if (prevState.stickyContainerVisibility !== this.state.stickyContainerVisibility) {\n Animated.timing(this.stickyContainerOpacity, {\n toValue: this.state.stickyContainerVisibility ? 0 : 1,\n delay: 500,\n useNativeDriver: true\n }).start();\n }\n\n //emiting container wdiget scrollview ref value to bottom sheet widget(bottom sheet sticky header/footer feature)\n if (this.scrollViewRef.current) {\n this.notify('containerScrollViewReady', [this.scrollViewRef], true);\n }\n }\n\n private renderStickyContent(props: WmContainerProps, dimensions: ViewStyle, styles: ViewStyle, autoLayoutStyle: ViewStyle) {\n const { stickyContainerVisibility } = this.state;\n const { positioningStyles } = getParentStyles(this);\n\n return (\n <>\n {stickyContainerVisibility ? (\n <StickyContainer\n component={this}\n theme={this.theme}\n style={[\n this.styles.sticky,\n { backgroundColor: styles.backgroundColor }\n ]}\n positionStyles={positioningStyles}\n show={props.show as boolean}\n >\n <View style={[dimensions as ViewStyle, { backgroundColor: styles.backgroundColor }, this.styles.content, autoLayoutStyle]}>\n {this.renderContent(props)}\n </View>\n </StickyContainer>\n ) : <></>}\n <Animated.View\n style={[\n dimensions as ViewStyle,\n { opacity: this.stickyContainerOpacity },\n this.styles.content,\n autoLayoutStyle\n ]}\n ref={this.containerRef}\n >\n {this.renderContent(props)}\n </Animated.View>\n </>\n );\n }\n\n renderWidget(props: WmContainerProps) {\n const rootStyle = this.getRootContainerStyle();\n const autoLayoutStyle = this.getContentContainerStyle();\n\n const dimensions: ViewStyle = {\n width: rootStyle.width ? '100%' : undefined,\n height: rootStyle.height ? '100%' : undefined\n };\n\n const styles = this._showSkeleton ? {\n ...this.styles.root,\n ...this.styles.skeleton.root\n } : this.styles.root;\n\n if (props.sticky) {\n this.isSticky = true;\n }\n return (\n <SafeAreaInsetsContext.Consumer>\n {(insets = { top: 0, bottom: 0, left: 0, right: 0 }) => {\n this.insets = insets;\n return (\n <Animatedview\n entryanimation={props.animation}\n delay={props.animationdelay}\n style={rootStyle}\n onLayout={(event: LayoutChangeEvent, ref: React.RefObject<View>) => {\n this.handleLayout(event, ref);\n }}\n >\n {this.getBackground()}\n <Tappable\n {...this.getTestPropsForAction()}\n target={this}\n styles={dimensions}\n disableTouchEffect={this.state.props.disabletoucheffect}\n >\n {props.sticky ? (\n this.renderStickyContent(props, dimensions, styles, autoLayoutStyle)\n ) : !props.scrollable ? (\n <View style={[\n dimensions as ViewStyle,\n this.styles.content,\n autoLayoutStyle]}>\n {this.renderContent(props)}\n </View>\n ) : (\n <ScrollView\n style={[dimensions as ViewStyle, this.styles.content, autoLayoutStyle]}\n onScroll={(event) => this.notify('scroll', [event], props.emittoparent)}\n scrollEventThrottle={48}\n ref={this.scrollViewRef}\n onScrollEndDrag={this.handleOnScrollEndDrag}\n onMomentumScrollEnd={this.handleOnMomentumScrollEnd}\n >\n {this.renderContent(props)}\n </ScrollView>\n )}\n </Tappable>\n </Animatedview>\n );\n }}\n </SafeAreaInsetsContext.Consumer>\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.14.1-22.
|
|
3
|
+
"version": "11.14.1-22.647501",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
|
9
|
-
"version": "11.14.1-22.
|
|
9
|
+
"version": "11.14.1-22.647501",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/vector-icons": "15.0.2",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@react-navigation/drawer": "7.5.8",
|
|
21
21
|
"@react-navigation/native": "7.1.18",
|
|
22
22
|
"@react-navigation/stack": "7.4.8",
|
|
23
|
-
"@wavemaker/variables": "11.14.1-22.
|
|
23
|
+
"@wavemaker/variables": "11.14.1-22.647501",
|
|
24
24
|
"axios": "1.8.3",
|
|
25
25
|
"color": "4.2.3",
|
|
26
26
|
"cross-env": "7.0.3",
|
|
@@ -5424,13 +5424,13 @@
|
|
|
5424
5424
|
}
|
|
5425
5425
|
},
|
|
5426
5426
|
"node_modules/@react-native-community/eslint-config/node_modules/resolve": {
|
|
5427
|
-
"version": "2.0.0-next.
|
|
5428
|
-
"integrity": "sha512-
|
|
5427
|
+
"version": "2.0.0-next.7",
|
|
5428
|
+
"integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==",
|
|
5429
5429
|
"dev": true,
|
|
5430
5430
|
"license": "MIT",
|
|
5431
5431
|
"dependencies": {
|
|
5432
5432
|
"es-errors": "^1.3.0",
|
|
5433
|
-
"is-core-module": "^2.16.
|
|
5433
|
+
"is-core-module": "^2.16.2",
|
|
5434
5434
|
"node-exports-info": "^1.6.0",
|
|
5435
5435
|
"object-keys": "^1.1.1",
|
|
5436
5436
|
"path-parse": "^1.0.7",
|
|
@@ -5818,8 +5818,8 @@
|
|
|
5818
5818
|
}
|
|
5819
5819
|
},
|
|
5820
5820
|
"node_modules/@react-navigation/drawer/node_modules/@react-navigation/elements": {
|
|
5821
|
-
"version": "2.9.
|
|
5822
|
-
"integrity": "sha512-
|
|
5821
|
+
"version": "2.9.18",
|
|
5822
|
+
"integrity": "sha512-mKEvDr6CkCVYZSb8W9WubNseihL+1c8M7ktZJCTCbMk8rQgdQfkdRNwpSUQKspdGpUHCb9cyzvaiuzl1NtjVgw==",
|
|
5823
5823
|
"license": "MIT",
|
|
5824
5824
|
"dependencies": {
|
|
5825
5825
|
"color": "^4.2.3",
|
|
@@ -5881,8 +5881,8 @@
|
|
|
5881
5881
|
}
|
|
5882
5882
|
},
|
|
5883
5883
|
"node_modules/@react-navigation/stack/node_modules/@react-navigation/elements": {
|
|
5884
|
-
"version": "2.9.
|
|
5885
|
-
"integrity": "sha512-
|
|
5884
|
+
"version": "2.9.18",
|
|
5885
|
+
"integrity": "sha512-mKEvDr6CkCVYZSb8W9WubNseihL+1c8M7ktZJCTCbMk8rQgdQfkdRNwpSUQKspdGpUHCb9cyzvaiuzl1NtjVgw==",
|
|
5886
5886
|
"license": "MIT",
|
|
5887
5887
|
"dependencies": {
|
|
5888
5888
|
"color": "^4.2.3",
|
|
@@ -6369,11 +6369,11 @@
|
|
|
6369
6369
|
"license": "MIT"
|
|
6370
6370
|
},
|
|
6371
6371
|
"node_modules/@types/node": {
|
|
6372
|
-
"version": "25.
|
|
6373
|
-
"integrity": "sha512-
|
|
6372
|
+
"version": "25.8.0",
|
|
6373
|
+
"integrity": "sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==",
|
|
6374
6374
|
"license": "MIT",
|
|
6375
6375
|
"dependencies": {
|
|
6376
|
-
"undici-types": "
|
|
6376
|
+
"undici-types": ">=7.24.0 <7.24.7"
|
|
6377
6377
|
}
|
|
6378
6378
|
},
|
|
6379
6379
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -6637,8 +6637,8 @@
|
|
|
6637
6637
|
"peer": true
|
|
6638
6638
|
},
|
|
6639
6639
|
"node_modules/@wavemaker/variables": {
|
|
6640
|
-
"version": "11.14.1-22.
|
|
6641
|
-
"integrity": "sha512-
|
|
6640
|
+
"version": "11.14.1-22.647501",
|
|
6641
|
+
"integrity": "sha512-Rt9vsQhd0ApBygVA4LfFXxfjMiRroNoABEsrikwi9ueRHjfNQq7ZmmgoiON+FXsGNr0VpIcd8OKCiQKYnWwwmQ==",
|
|
6642
6642
|
"license": "ISC",
|
|
6643
6643
|
"dependencies": {
|
|
6644
6644
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -8742,8 +8742,8 @@
|
|
|
8742
8742
|
"license": "MIT"
|
|
8743
8743
|
},
|
|
8744
8744
|
"node_modules/baseline-browser-mapping": {
|
|
8745
|
-
"version": "2.10.
|
|
8746
|
-
"integrity": "sha512-
|
|
8745
|
+
"version": "2.10.30",
|
|
8746
|
+
"integrity": "sha512-xjOFN16Ha1+Rz4nFYKqHU/LSB+gx/Vi3yQLX7r7sAW+Wa+8hhF2h4pvqTrTMc8+WcDBEunnUurr46Jvv0jk3Vg==",
|
|
8747
8747
|
"license": "Apache-2.0",
|
|
8748
8748
|
"bin": {
|
|
8749
8749
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -9093,8 +9093,8 @@
|
|
|
9093
9093
|
}
|
|
9094
9094
|
},
|
|
9095
9095
|
"node_modules/caniuse-lite": {
|
|
9096
|
-
"version": "1.0.
|
|
9097
|
-
"integrity": "sha512-
|
|
9096
|
+
"version": "1.0.30001793",
|
|
9097
|
+
"integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
|
|
9098
9098
|
"funding": [
|
|
9099
9099
|
{
|
|
9100
9100
|
"type": "opencollective",
|
|
@@ -11007,8 +11007,8 @@
|
|
|
11007
11007
|
"license": "MIT"
|
|
11008
11008
|
},
|
|
11009
11009
|
"node_modules/electron-to-chromium": {
|
|
11010
|
-
"version": "1.5.
|
|
11011
|
-
"integrity": "sha512-
|
|
11010
|
+
"version": "1.5.357",
|
|
11011
|
+
"integrity": "sha512-NHlTIQDK8fmVwHwuIzmXYEJ1Ewq3D9wDNc0cWXxDGysP6Pb21giwGNkxiTifyKy/4SoPuN5l6GLP1W9Sv7zB2g==",
|
|
11012
11012
|
"license": "ISC"
|
|
11013
11013
|
},
|
|
11014
11014
|
"node_modules/emittery": {
|
|
@@ -20730,8 +20730,8 @@
|
|
|
20730
20730
|
}
|
|
20731
20731
|
},
|
|
20732
20732
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
20733
|
-
"version": "11.
|
|
20734
|
-
"integrity": "sha512-
|
|
20733
|
+
"version": "11.4.0",
|
|
20734
|
+
"integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
|
|
20735
20735
|
"license": "BlueOak-1.0.0",
|
|
20736
20736
|
"engines": {
|
|
20737
20737
|
"node": "20 || >=22"
|
|
@@ -21103,8 +21103,8 @@
|
|
|
21103
21103
|
}
|
|
21104
21104
|
},
|
|
21105
21105
|
"node_modules/qs": {
|
|
21106
|
-
"version": "6.15.
|
|
21107
|
-
"integrity": "sha512-
|
|
21106
|
+
"version": "6.15.2",
|
|
21107
|
+
"integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
|
|
21108
21108
|
"dev": true,
|
|
21109
21109
|
"license": "BSD-3-Clause",
|
|
21110
21110
|
"dependencies": {
|
|
@@ -24679,8 +24679,8 @@
|
|
|
24679
24679
|
}
|
|
24680
24680
|
},
|
|
24681
24681
|
"node_modules/undici-types": {
|
|
24682
|
-
"version": "7.
|
|
24683
|
-
"integrity": "sha512-
|
|
24682
|
+
"version": "7.24.6",
|
|
24683
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
24684
24684
|
"license": "MIT"
|
|
24685
24685
|
},
|
|
24686
24686
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
|
3
|
-
"version": "11.14.1-22.
|
|
3
|
+
"version": "11.14.1-22.647501",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
|
9
|
-
"version": "11.14.1-22.
|
|
9
|
+
"version": "11.14.1-22.647501",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/vector-icons": "15.0.2",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@react-navigation/drawer": "7.5.8",
|
|
21
21
|
"@react-navigation/native": "7.1.18",
|
|
22
22
|
"@react-navigation/stack": "7.4.8",
|
|
23
|
-
"@wavemaker/variables": "11.14.1-22.
|
|
23
|
+
"@wavemaker/variables": "11.14.1-22.647501",
|
|
24
24
|
"axios": "1.8.3",
|
|
25
25
|
"color": "4.2.3",
|
|
26
26
|
"cross-env": "7.0.3",
|
|
@@ -5424,13 +5424,13 @@
|
|
|
5424
5424
|
}
|
|
5425
5425
|
},
|
|
5426
5426
|
"node_modules/@react-native-community/eslint-config/node_modules/resolve": {
|
|
5427
|
-
"version": "2.0.0-next.
|
|
5428
|
-
"integrity": "sha512-
|
|
5427
|
+
"version": "2.0.0-next.7",
|
|
5428
|
+
"integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==",
|
|
5429
5429
|
"dev": true,
|
|
5430
5430
|
"license": "MIT",
|
|
5431
5431
|
"dependencies": {
|
|
5432
5432
|
"es-errors": "^1.3.0",
|
|
5433
|
-
"is-core-module": "^2.16.
|
|
5433
|
+
"is-core-module": "^2.16.2",
|
|
5434
5434
|
"node-exports-info": "^1.6.0",
|
|
5435
5435
|
"object-keys": "^1.1.1",
|
|
5436
5436
|
"path-parse": "^1.0.7",
|
|
@@ -5818,8 +5818,8 @@
|
|
|
5818
5818
|
}
|
|
5819
5819
|
},
|
|
5820
5820
|
"node_modules/@react-navigation/drawer/node_modules/@react-navigation/elements": {
|
|
5821
|
-
"version": "2.9.
|
|
5822
|
-
"integrity": "sha512-
|
|
5821
|
+
"version": "2.9.18",
|
|
5822
|
+
"integrity": "sha512-mKEvDr6CkCVYZSb8W9WubNseihL+1c8M7ktZJCTCbMk8rQgdQfkdRNwpSUQKspdGpUHCb9cyzvaiuzl1NtjVgw==",
|
|
5823
5823
|
"license": "MIT",
|
|
5824
5824
|
"dependencies": {
|
|
5825
5825
|
"color": "^4.2.3",
|
|
@@ -5881,8 +5881,8 @@
|
|
|
5881
5881
|
}
|
|
5882
5882
|
},
|
|
5883
5883
|
"node_modules/@react-navigation/stack/node_modules/@react-navigation/elements": {
|
|
5884
|
-
"version": "2.9.
|
|
5885
|
-
"integrity": "sha512-
|
|
5884
|
+
"version": "2.9.18",
|
|
5885
|
+
"integrity": "sha512-mKEvDr6CkCVYZSb8W9WubNseihL+1c8M7ktZJCTCbMk8rQgdQfkdRNwpSUQKspdGpUHCb9cyzvaiuzl1NtjVgw==",
|
|
5886
5886
|
"license": "MIT",
|
|
5887
5887
|
"dependencies": {
|
|
5888
5888
|
"color": "^4.2.3",
|
|
@@ -6369,11 +6369,11 @@
|
|
|
6369
6369
|
"license": "MIT"
|
|
6370
6370
|
},
|
|
6371
6371
|
"node_modules/@types/node": {
|
|
6372
|
-
"version": "25.
|
|
6373
|
-
"integrity": "sha512-
|
|
6372
|
+
"version": "25.8.0",
|
|
6373
|
+
"integrity": "sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==",
|
|
6374
6374
|
"license": "MIT",
|
|
6375
6375
|
"dependencies": {
|
|
6376
|
-
"undici-types": "
|
|
6376
|
+
"undici-types": ">=7.24.0 <7.24.7"
|
|
6377
6377
|
}
|
|
6378
6378
|
},
|
|
6379
6379
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -6637,8 +6637,8 @@
|
|
|
6637
6637
|
"peer": true
|
|
6638
6638
|
},
|
|
6639
6639
|
"node_modules/@wavemaker/variables": {
|
|
6640
|
-
"version": "11.14.1-22.
|
|
6641
|
-
"integrity": "sha512-
|
|
6640
|
+
"version": "11.14.1-22.647501",
|
|
6641
|
+
"integrity": "sha512-Rt9vsQhd0ApBygVA4LfFXxfjMiRroNoABEsrikwi9ueRHjfNQq7ZmmgoiON+FXsGNr0VpIcd8OKCiQKYnWwwmQ==",
|
|
6642
6642
|
"license": "ISC",
|
|
6643
6643
|
"dependencies": {
|
|
6644
6644
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -8742,8 +8742,8 @@
|
|
|
8742
8742
|
"license": "MIT"
|
|
8743
8743
|
},
|
|
8744
8744
|
"node_modules/baseline-browser-mapping": {
|
|
8745
|
-
"version": "2.10.
|
|
8746
|
-
"integrity": "sha512-
|
|
8745
|
+
"version": "2.10.30",
|
|
8746
|
+
"integrity": "sha512-xjOFN16Ha1+Rz4nFYKqHU/LSB+gx/Vi3yQLX7r7sAW+Wa+8hhF2h4pvqTrTMc8+WcDBEunnUurr46Jvv0jk3Vg==",
|
|
8747
8747
|
"license": "Apache-2.0",
|
|
8748
8748
|
"bin": {
|
|
8749
8749
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -9093,8 +9093,8 @@
|
|
|
9093
9093
|
}
|
|
9094
9094
|
},
|
|
9095
9095
|
"node_modules/caniuse-lite": {
|
|
9096
|
-
"version": "1.0.
|
|
9097
|
-
"integrity": "sha512-
|
|
9096
|
+
"version": "1.0.30001793",
|
|
9097
|
+
"integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
|
|
9098
9098
|
"funding": [
|
|
9099
9099
|
{
|
|
9100
9100
|
"type": "opencollective",
|
|
@@ -11007,8 +11007,8 @@
|
|
|
11007
11007
|
"license": "MIT"
|
|
11008
11008
|
},
|
|
11009
11009
|
"node_modules/electron-to-chromium": {
|
|
11010
|
-
"version": "1.5.
|
|
11011
|
-
"integrity": "sha512-
|
|
11010
|
+
"version": "1.5.357",
|
|
11011
|
+
"integrity": "sha512-NHlTIQDK8fmVwHwuIzmXYEJ1Ewq3D9wDNc0cWXxDGysP6Pb21giwGNkxiTifyKy/4SoPuN5l6GLP1W9Sv7zB2g==",
|
|
11012
11012
|
"license": "ISC"
|
|
11013
11013
|
},
|
|
11014
11014
|
"node_modules/emittery": {
|
|
@@ -20730,8 +20730,8 @@
|
|
|
20730
20730
|
}
|
|
20731
20731
|
},
|
|
20732
20732
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
20733
|
-
"version": "11.
|
|
20734
|
-
"integrity": "sha512-
|
|
20733
|
+
"version": "11.4.0",
|
|
20734
|
+
"integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
|
|
20735
20735
|
"license": "BlueOak-1.0.0",
|
|
20736
20736
|
"engines": {
|
|
20737
20737
|
"node": "20 || >=22"
|
|
@@ -21103,8 +21103,8 @@
|
|
|
21103
21103
|
}
|
|
21104
21104
|
},
|
|
21105
21105
|
"node_modules/qs": {
|
|
21106
|
-
"version": "6.15.
|
|
21107
|
-
"integrity": "sha512-
|
|
21106
|
+
"version": "6.15.2",
|
|
21107
|
+
"integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
|
|
21108
21108
|
"dev": true,
|
|
21109
21109
|
"license": "BSD-3-Clause",
|
|
21110
21110
|
"dependencies": {
|
|
@@ -24679,8 +24679,8 @@
|
|
|
24679
24679
|
}
|
|
24680
24680
|
},
|
|
24681
24681
|
"node_modules/undici-types": {
|
|
24682
|
-
"version": "7.
|
|
24683
|
-
"integrity": "sha512-
|
|
24682
|
+
"version": "7.24.6",
|
|
24683
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
24684
24684
|
"license": "MIT"
|
|
24685
24685
|
},
|
|
24686
24686
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
|
3
|
-
"version": "11.14.1-22.
|
|
3
|
+
"version": "11.14.1-22.647501",
|
|
4
4
|
"description": "''",
|
|
5
5
|
"main": "index",
|
|
6
6
|
"module": "index",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@react-navigation/drawer": "7.5.8",
|
|
60
60
|
"@react-navigation/native": "7.1.18",
|
|
61
61
|
"@react-navigation/stack": "7.4.8",
|
|
62
|
-
"@wavemaker/variables": "11.14.1-22.
|
|
62
|
+
"@wavemaker/variables": "11.14.1-22.647501",
|
|
63
63
|
"axios": "1.8.3",
|
|
64
64
|
"color": "4.2.3",
|
|
65
65
|
"cross-env": "7.0.3",
|