@wavemaker/app-rn-runtime 11.10.1-rc.200 → 11.10.2-next.27738
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/picture/picture.component.js +83 -7
- package/components/basic/picture/picture.component.js.map +1 -1
- package/components/basic/picture/picture.props.js +1 -0
- package/components/basic/picture/picture.props.js.map +1 -1
- package/components/basic/video/video.component.js +34 -4
- package/components/basic/video/video.component.js.map +1 -1
- package/components/basic/video/video.props.js +1 -0
- package/components/basic/video/video.props.js.map +1 -1
- package/components/basic/video/video.styles.js +13 -0
- package/components/basic/video/video.styles.js.map +1 -1
- package/components/page/page-content/page-content.component.js +4 -3
- package/components/page/page-content/page-content.component.js.map +1 -1
- package/core/fixed-view.component.js +5 -3
- package/core/fixed-view.component.js.map +1 -1
- package/npm-shrinkwrap.json +88 -82
- package/package-lock.json +88 -82
- package/package.json +2 -2
- package/runtime/App.js +2 -3
- package/runtime/App.js.map +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["React","View","ThemeProvider","FixedViewContext","createContext","FixedView","Component","constructor","props","_defineProperty","counter","
|
1
|
+
{"version":3,"names":["React","View","ThemeProvider","FixedViewContext","createContext","FixedView","Component","constructor","props","_defineProperty","counter","render","cachedComponent","usememo","createElement","Consumer","container","show","add","value","theme","key","id","style","position","children","remove","Fragment","Date","now","FixedViewContainer","args","Map","c","n","set","setTimeout","setState","delete","Provider","Array","from","values"],"sources":["fixed-view.component.tsx"],"sourcesContent":["\nimport React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { Theme, ThemeProvider } from \"../styles/theme\";\n\nconst FixedViewContext = React.createContext<FixedViewContainer>(null as any);\n\nexport interface FixedViewProps {\n style?: ViewStyle,\n show?: boolean;\n theme: Theme;\n usememo?: boolean;\n children?: any;\n}\n\nexport class FixedView extends React.Component<FixedViewProps> {\n static defaultProps = {\n show: true\n };\n static counter = Date.now();\n container: FixedViewContainer = null as any;\n cachedComponent: React.ReactNode;\n id = FixedView.counter++;\n\n constructor(props: FixedViewProps) {\n super(props);\n }\n\n // componentWillUnmount() {\n // this.container.remove(this);\n // }\n\n render() {\n this.cachedComponent = (this.props.usememo === true && this.cachedComponent ) || (<FixedViewContext.Consumer>\n {(container) => {\n this.container = container;\n if (this.props.show) {\n container.add(this, (\n <ThemeProvider value={this.props.theme} key={this.id}>\n <View style={[\n {position: 'absolute'},\n this.props.style]}>\n {this.props.children}\n </View>\n </ThemeProvider>\n ));\n } else {\n container.remove(this);\n }\n return <></>;\n }}\n </FixedViewContext.Consumer>);\n return this.cachedComponent;\n }\n}\n\nexport class FixedViewContainer extends React.Component {\n children: Map<FixedView, React.ReactNode> = new Map();\n id = 0;\n\n add(c: FixedView, n : React.ReactNode) {\n this.children.set(c, n);\n setTimeout(() => this.setState({id: ++this.id}));\n }\n\n remove(c: FixedView) {\n this.children.delete(c);\n setTimeout(() => this.setState({id: ++this.id}));\n }\n\n render() {\n return (\n <FixedViewContext.Provider value={this}>\n {(this.props as any).children}\n {Array.from(this.children.values())}\n </FixedViewContext.Provider>\n ) ;\n }\n};"],"mappings":";;;AACA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,IAAI,QAAmB,cAAc;AAC9C,SAAgBC,aAAa,QAAQ,iBAAiB;AAEtD,MAAMC,gBAAgB,gBAAGH,KAAK,CAACI,aAAa,CAAqB,IAAW,CAAC;AAU7E,OAAO,MAAMC,SAAS,SAASL,KAAK,CAACM,SAAS,CAAiB;EAS3DC,WAAWA,CAACC,KAAqB,EAAE;IAC/B,KAAK,CAACA,KAAK,CAAC;IAACC,eAAA,oBALe,IAAI;IAAAA,eAAA;IAAAA,eAAA,aAE/BJ,SAAS,CAACK,OAAO,EAAE;EAIxB;;EAEA;EACA;EACA;;EAEAC,MAAMA,CAAA,EAAG;IACL,IAAI,CAACC,eAAe,GAAI,IAAI,CAACJ,KAAK,CAACK,OAAO,KAAK,IAAI,IAAI,IAAI,CAACD,eAAe,iBAAOZ,KAAA,CAAAc,aAAA,CAACX,gBAAgB,CAACY,QAAQ,QACtGC,SAAS,IAAK;MACZ,IAAI,CAACA,SAAS,GAAGA,SAAS;MAC1B,IAAI,IAAI,CAACR,KAAK,CAACS,IAAI,EAAE;QACjBD,SAAS,CAACE,GAAG,CAAC,IAAI,eACdlB,KAAA,CAAAc,aAAA,CAACZ,aAAa;UAACiB,KAAK,EAAE,IAAI,CAACX,KAAK,CAACY,KAAM;UAACC,GAAG,EAAE,IAAI,CAACC;QAAG,gBACjDtB,KAAA,CAAAc,aAAA,CAACb,IAAI;UAACsB,KAAK,EAAE,CACT;YAACC,QAAQ,EAAE;UAAU,CAAC,EACtB,IAAI,CAAChB,KAAK,CAACe,KAAK;QAAE,GACjB,IAAI,CAACf,KAAK,CAACiB,QACV,CACK,CAClB,CAAC;MACN,CAAC,MAAM;QACHT,SAAS,CAACU,MAAM,CAAC,IAAI,CAAC;MAC1B;MACA,oBAAO1B,KAAA,CAAAc,aAAA,CAAAd,KAAA,CAAA2B,QAAA,MAAI,CAAC;IAChB,CACuB,CAAE;IAC7B,OAAO,IAAI,CAACf,eAAe;EAC/B;AACJ;AAACH,eAAA,CAvCYJ,SAAS,kBACI;EAClBY,IAAI,EAAE;AACV,CAAC;AAAAR,eAAA,CAHQJ,SAAS,aAIDuB,IAAI,CAACC,GAAG,CAAC,CAAC;AAqC/B,OAAO,MAAMC,kBAAkB,SAAS9B,KAAK,CAACM,SAAS,CAAC;EAAAC,YAAA,GAAAwB,IAAA;IAAA,SAAAA,IAAA;IAAAtB,eAAA,mBACR,IAAIuB,GAAG,CAAC,CAAC;IAAAvB,eAAA,aAChD,CAAC;EAAA;EAENS,GAAGA,CAACe,CAAY,EAAEC,CAAmB,EAAE;IACnC,IAAI,CAACT,QAAQ,CAACU,GAAG,CAACF,CAAC,EAAEC,CAAC,CAAC;IACvBE,UAAU,CAAC,MAAM,IAAI,CAACC,QAAQ,CAAC;MAACf,EAAE,EAAE,EAAE,IAAI,CAACA;IAAE,CAAC,CAAC,CAAC;EACpD;EAEAI,MAAMA,CAACO,CAAY,EAAE;IACjB,IAAI,CAACR,QAAQ,CAACa,MAAM,CAACL,CAAC,CAAC;IACvBG,UAAU,CAAC,MAAM,IAAI,CAACC,QAAQ,CAAC;MAACf,EAAE,EAAE,EAAE,IAAI,CAACA;IAAE,CAAC,CAAC,CAAC;EACpD;EAEAX,MAAMA,CAAA,EAAG;IACL,oBACIX,KAAA,CAAAc,aAAA,CAACX,gBAAgB,CAACoC,QAAQ;MAACpB,KAAK,EAAE;IAAK,GACjC,IAAI,CAACX,KAAK,CAASiB,QAAQ,EAC5Be,KAAK,CAACC,IAAI,CAAC,IAAI,CAAChB,QAAQ,CAACiB,MAAM,CAAC,CAAC,CACX,CAAC;EAEpC;AACJ;AAAC","ignoreList":[]}
|
package/npm-shrinkwrap.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
3
|
-
"version": "11.10.
|
3
|
+
"version": "11.10.2-next.27738",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
9
|
-
"version": "11.10.
|
9
|
+
"version": "11.10.2-next.27738",
|
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.
|
23
|
+
"@wavemaker/variables": "11.10.2-next.27738",
|
24
24
|
"axios": "1.6.8",
|
25
25
|
"color": "4.2.3",
|
26
26
|
"cross-env": "7.0.3",
|
@@ -2267,13 +2267,13 @@
|
|
2267
2267
|
}
|
2268
2268
|
},
|
2269
2269
|
"node_modules/@commitlint/cli": {
|
2270
|
-
"version": "19.
|
2271
|
-
"integrity": "sha512-
|
2270
|
+
"version": "19.7.1",
|
2271
|
+
"integrity": "sha512-iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ==",
|
2272
2272
|
"dev": true,
|
2273
2273
|
"license": "MIT",
|
2274
2274
|
"dependencies": {
|
2275
2275
|
"@commitlint/format": "^19.5.0",
|
2276
|
-
"@commitlint/lint": "^19.
|
2276
|
+
"@commitlint/lint": "^19.7.1",
|
2277
2277
|
"@commitlint/load": "^19.6.1",
|
2278
2278
|
"@commitlint/read": "^19.5.0",
|
2279
2279
|
"@commitlint/types": "^19.5.0",
|
@@ -2414,8 +2414,8 @@
|
|
2414
2414
|
}
|
2415
2415
|
},
|
2416
2416
|
"node_modules/@commitlint/is-ignored": {
|
2417
|
-
"version": "19.
|
2418
|
-
"integrity": "sha512-
|
2417
|
+
"version": "19.7.1",
|
2418
|
+
"integrity": "sha512-3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g==",
|
2419
2419
|
"dev": true,
|
2420
2420
|
"license": "MIT",
|
2421
2421
|
"dependencies": {
|
@@ -2427,8 +2427,8 @@
|
|
2427
2427
|
}
|
2428
2428
|
},
|
2429
2429
|
"node_modules/@commitlint/is-ignored/node_modules/semver": {
|
2430
|
-
"version": "7.7.
|
2431
|
-
"integrity": "sha512-
|
2430
|
+
"version": "7.7.1",
|
2431
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
2432
2432
|
"dev": true,
|
2433
2433
|
"license": "ISC",
|
2434
2434
|
"bin": {
|
@@ -2439,12 +2439,12 @@
|
|
2439
2439
|
}
|
2440
2440
|
},
|
2441
2441
|
"node_modules/@commitlint/lint": {
|
2442
|
-
"version": "19.
|
2443
|
-
"integrity": "sha512-
|
2442
|
+
"version": "19.7.1",
|
2443
|
+
"integrity": "sha512-LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg==",
|
2444
2444
|
"dev": true,
|
2445
2445
|
"license": "MIT",
|
2446
2446
|
"dependencies": {
|
2447
|
-
"@commitlint/is-ignored": "^19.
|
2447
|
+
"@commitlint/is-ignored": "^19.7.1",
|
2448
2448
|
"@commitlint/parse": "^19.5.0",
|
2449
2449
|
"@commitlint/rules": "^19.6.0",
|
2450
2450
|
"@commitlint/types": "^19.5.0"
|
@@ -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.12",
|
2813
|
+
"integrity": "sha512-i7mYb2s4RzlcLIsMewYtKol5rOIECOgLymAUfTwgvsAjg1r+11gmovsi3xdM0k1QiHmeJf0Wqz3sl7FJNsSKnw==",
|
2814
2814
|
"license": "MIT",
|
2815
2815
|
"peer": true,
|
2816
2816
|
"dependencies": {
|
@@ -2830,6 +2830,7 @@
|
|
2830
2830
|
"@expo/prebuild-config": "^8.0.25",
|
2831
2831
|
"@expo/rudder-sdk-node": "^1.1.1",
|
2832
2832
|
"@expo/spawn-async": "^1.7.2",
|
2833
|
+
"@expo/ws-tunnel": "^1.0.1",
|
2833
2834
|
"@expo/xcpretty": "^4.3.0",
|
2834
2835
|
"@react-native/dev-middleware": "0.76.6",
|
2835
2836
|
"@urql/core": "^5.0.6",
|
@@ -2981,8 +2982,8 @@
|
|
2981
2982
|
}
|
2982
2983
|
},
|
2983
2984
|
"node_modules/@expo/cli/node_modules/semver": {
|
2984
|
-
"version": "7.7.
|
2985
|
-
"integrity": "sha512-
|
2985
|
+
"version": "7.7.1",
|
2986
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
2986
2987
|
"license": "ISC",
|
2987
2988
|
"peer": true,
|
2988
2989
|
"bin": {
|
@@ -3096,8 +3097,8 @@
|
|
3096
3097
|
}
|
3097
3098
|
},
|
3098
3099
|
"node_modules/@expo/config-plugins/node_modules/semver": {
|
3099
|
-
"version": "7.7.
|
3100
|
-
"integrity": "sha512-
|
3100
|
+
"version": "7.7.1",
|
3101
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
3101
3102
|
"license": "ISC",
|
3102
3103
|
"bin": {
|
3103
3104
|
"semver": "bin/semver.js"
|
@@ -3120,8 +3121,8 @@
|
|
3120
3121
|
}
|
3121
3122
|
},
|
3122
3123
|
"node_modules/@expo/config/node_modules/semver": {
|
3123
|
-
"version": "7.7.
|
3124
|
-
"integrity": "sha512-
|
3124
|
+
"version": "7.7.1",
|
3125
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
3125
3126
|
"license": "ISC",
|
3126
3127
|
"bin": {
|
3127
3128
|
"semver": "bin/semver.js"
|
@@ -3204,8 +3205,8 @@
|
|
3204
3205
|
}
|
3205
3206
|
},
|
3206
3207
|
"node_modules/@expo/fingerprint": {
|
3207
|
-
"version": "0.11.
|
3208
|
-
"integrity": "sha512-
|
3208
|
+
"version": "0.11.8",
|
3209
|
+
"integrity": "sha512-XzDOHr+fTpYPGFe+bIlWtwnLahzuQi7htPgpjLsfL+hKE/2S7wWYlRgB0omScyEBz2yXxzCk3GHJTcG+dffLAg==",
|
3209
3210
|
"license": "MIT",
|
3210
3211
|
"peer": true,
|
3211
3212
|
"dependencies": {
|
@@ -3302,8 +3303,8 @@
|
|
3302
3303
|
}
|
3303
3304
|
},
|
3304
3305
|
"node_modules/@expo/fingerprint/node_modules/semver": {
|
3305
|
-
"version": "7.7.
|
3306
|
-
"integrity": "sha512-
|
3306
|
+
"version": "7.7.1",
|
3307
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
3307
3308
|
"license": "ISC",
|
3308
3309
|
"peer": true,
|
3309
3310
|
"bin": {
|
@@ -3393,8 +3394,8 @@
|
|
3393
3394
|
}
|
3394
3395
|
},
|
3395
3396
|
"node_modules/@expo/image-utils/node_modules/semver": {
|
3396
|
-
"version": "7.7.
|
3397
|
-
"integrity": "sha512-
|
3397
|
+
"version": "7.7.1",
|
3398
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
3398
3399
|
"license": "ISC",
|
3399
3400
|
"bin": {
|
3400
3401
|
"semver": "bin/semver.js"
|
@@ -3703,8 +3704,8 @@
|
|
3703
3704
|
}
|
3704
3705
|
},
|
3705
3706
|
"node_modules/@expo/prebuild-config/node_modules/semver": {
|
3706
|
-
"version": "7.7.
|
3707
|
-
"integrity": "sha512-
|
3707
|
+
"version": "7.7.1",
|
3708
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
3708
3709
|
"license": "ISC",
|
3709
3710
|
"bin": {
|
3710
3711
|
"semver": "bin/semver.js"
|
@@ -3763,6 +3764,11 @@
|
|
3763
3764
|
"prop-types": "^15.8.1"
|
3764
3765
|
}
|
3765
3766
|
},
|
3767
|
+
"node_modules/@expo/ws-tunnel": {
|
3768
|
+
"version": "1.0.1",
|
3769
|
+
"integrity": "sha512-b1VoJfK7u6RVlOoDONyKQQ7JWnHZqa8+bFdWxDmvFUCoiI1ri4MAapSNd308QgADYohSecqIZkITt9hDS722Iw==",
|
3770
|
+
"peer": true
|
3771
|
+
},
|
3766
3772
|
"node_modules/@expo/xcpretty": {
|
3767
3773
|
"version": "4.3.2",
|
3768
3774
|
"integrity": "sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==",
|
@@ -4363,8 +4369,8 @@
|
|
4363
4369
|
}
|
4364
4370
|
},
|
4365
4371
|
"node_modules/@jest/reporters/node_modules/semver": {
|
4366
|
-
"version": "7.7.
|
4367
|
-
"integrity": "sha512-
|
4372
|
+
"version": "7.7.1",
|
4373
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
4368
4374
|
"dev": true,
|
4369
4375
|
"license": "ISC",
|
4370
4376
|
"bin": {
|
@@ -4660,8 +4666,8 @@
|
|
4660
4666
|
}
|
4661
4667
|
},
|
4662
4668
|
"node_modules/@npmcli/fs/node_modules/semver": {
|
4663
|
-
"version": "7.7.
|
4664
|
-
"integrity": "sha512-
|
4669
|
+
"version": "7.7.1",
|
4670
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
4665
4671
|
"license": "ISC",
|
4666
4672
|
"peer": true,
|
4667
4673
|
"bin": {
|
@@ -4967,8 +4973,8 @@
|
|
4967
4973
|
}
|
4968
4974
|
},
|
4969
4975
|
"node_modules/@react-native-community/eslint-config/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
|
4970
|
-
"version": "7.7.
|
4971
|
-
"integrity": "sha512-
|
4976
|
+
"version": "7.7.1",
|
4977
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
4972
4978
|
"dev": true,
|
4973
4979
|
"license": "ISC",
|
4974
4980
|
"bin": {
|
@@ -5085,8 +5091,8 @@
|
|
5085
5091
|
}
|
5086
5092
|
},
|
5087
5093
|
"node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-jest/node_modules/semver": {
|
5088
|
-
"version": "7.7.
|
5089
|
-
"integrity": "sha512-
|
5094
|
+
"version": "7.7.1",
|
5095
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
5090
5096
|
"dev": true,
|
5091
5097
|
"license": "ISC",
|
5092
5098
|
"bin": {
|
@@ -5533,8 +5539,8 @@
|
|
5533
5539
|
"license": "MIT"
|
5534
5540
|
},
|
5535
5541
|
"node_modules/@react-native/community-cli-plugin/node_modules/semver": {
|
5536
|
-
"version": "7.7.
|
5537
|
-
"integrity": "sha512-
|
5542
|
+
"version": "7.7.1",
|
5543
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
5538
5544
|
"license": "ISC",
|
5539
5545
|
"bin": {
|
5540
5546
|
"semver": "bin/semver.js"
|
@@ -6197,14 +6203,14 @@
|
|
6197
6203
|
}
|
6198
6204
|
},
|
6199
6205
|
"node_modules/@types/d3-path": {
|
6200
|
-
"version": "3.1.
|
6201
|
-
"integrity": "sha512-
|
6206
|
+
"version": "3.1.1",
|
6207
|
+
"integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
|
6202
6208
|
"dev": true,
|
6203
6209
|
"license": "MIT"
|
6204
6210
|
},
|
6205
6211
|
"node_modules/@types/d3-scale": {
|
6206
|
-
"version": "4.0.
|
6207
|
-
"integrity": "sha512-
|
6212
|
+
"version": "4.0.9",
|
6213
|
+
"integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
|
6208
6214
|
"dev": true,
|
6209
6215
|
"license": "MIT",
|
6210
6216
|
"dependencies": {
|
@@ -6380,8 +6386,8 @@
|
|
6380
6386
|
"license": "MIT"
|
6381
6387
|
},
|
6382
6388
|
"node_modules/@types/node": {
|
6383
|
-
"version": "22.13.
|
6384
|
-
"integrity": "sha512-
|
6389
|
+
"version": "22.13.1",
|
6390
|
+
"integrity": "sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==",
|
6385
6391
|
"license": "MIT",
|
6386
6392
|
"dependencies": {
|
6387
6393
|
"undici-types": "~6.20.0"
|
@@ -6558,8 +6564,8 @@
|
|
6558
6564
|
}
|
6559
6565
|
},
|
6560
6566
|
"node_modules/@typescript-eslint/type-utils/node_modules/semver": {
|
6561
|
-
"version": "7.7.
|
6562
|
-
"integrity": "sha512-
|
6567
|
+
"version": "7.7.1",
|
6568
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
6563
6569
|
"dev": true,
|
6564
6570
|
"license": "ISC",
|
6565
6571
|
"bin": {
|
@@ -6610,8 +6616,8 @@
|
|
6610
6616
|
}
|
6611
6617
|
},
|
6612
6618
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
6613
|
-
"version": "7.7.
|
6614
|
-
"integrity": "sha512-
|
6619
|
+
"version": "7.7.1",
|
6620
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
6615
6621
|
"dev": true,
|
6616
6622
|
"license": "ISC",
|
6617
6623
|
"bin": {
|
@@ -6674,8 +6680,8 @@
|
|
6674
6680
|
}
|
6675
6681
|
},
|
6676
6682
|
"node_modules/@wavemaker/variables": {
|
6677
|
-
"version": "11.10.
|
6678
|
-
"integrity": "sha512-
|
6683
|
+
"version": "11.10.2-next.27738",
|
6684
|
+
"integrity": "sha512-4xqyUs6l4ohU+TmmQ/Z1qrmzSiObFh1sQNUunrZ908+6oqeEkPQp8+UQkIquhTFbzrx5E4+K+sMaeCJJcFaRrw==",
|
6679
6685
|
"license": "ISC",
|
6680
6686
|
"dependencies": {
|
6681
6687
|
"@metrichor/jmespath": "^0.3.1",
|
@@ -9068,8 +9074,8 @@
|
|
9068
9074
|
}
|
9069
9075
|
},
|
9070
9076
|
"node_modules/caniuse-lite": {
|
9071
|
-
"version": "1.0.
|
9072
|
-
"integrity": "sha512-
|
9077
|
+
"version": "1.0.30001697",
|
9078
|
+
"integrity": "sha512-GwNPlWJin8E+d7Gxq96jxM6w0w+VFeyyXRsjU58emtkYqnbwHqXm5uT2uCmO0RQE9htWknOP4xtBlLmM/gWxvQ==",
|
9073
9079
|
"funding": [
|
9074
9080
|
{
|
9075
9081
|
"type": "opencollective",
|
@@ -11176,8 +11182,8 @@
|
|
11176
11182
|
"license": "MIT"
|
11177
11183
|
},
|
11178
11184
|
"node_modules/electron-to-chromium": {
|
11179
|
-
"version": "1.5.
|
11180
|
-
"integrity": "sha512-
|
11185
|
+
"version": "1.5.92",
|
11186
|
+
"integrity": "sha512-BeHgmNobs05N1HMmMZ7YIuHfYBGlq/UmvlsTgg+fsbFs9xVMj+xJHFg19GN04+9Q+r8Xnh9LXqaYIyEWElnNgQ==",
|
11181
11187
|
"license": "ISC"
|
11182
11188
|
},
|
11183
11189
|
"node_modules/emittery": {
|
@@ -11227,8 +11233,8 @@
|
|
11227
11233
|
}
|
11228
11234
|
},
|
11229
11235
|
"node_modules/enhanced-resolve": {
|
11230
|
-
"version": "5.18.
|
11231
|
-
"integrity": "sha512-
|
11236
|
+
"version": "5.18.1",
|
11237
|
+
"integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
|
11232
11238
|
"dev": true,
|
11233
11239
|
"license": "MIT",
|
11234
11240
|
"peer": true,
|
@@ -12065,22 +12071,22 @@
|
|
12065
12071
|
}
|
12066
12072
|
},
|
12067
12073
|
"node_modules/expo": {
|
12068
|
-
"version": "52.0.
|
12069
|
-
"integrity": "sha512-
|
12074
|
+
"version": "52.0.30",
|
12075
|
+
"integrity": "sha512-CQP75djQOMWpNqniV7IBhsUiY/hpVnGWCPfEuYQIsZBEGa/ZQOuOQEVF7MaFeWEOYR1/qaDyv7ON3ON9QPJydg==",
|
12070
12076
|
"license": "MIT",
|
12071
12077
|
"peer": true,
|
12072
12078
|
"dependencies": {
|
12073
12079
|
"@babel/runtime": "^7.20.0",
|
12074
|
-
"@expo/cli": "0.22.
|
12080
|
+
"@expo/cli": "0.22.12",
|
12075
12081
|
"@expo/config": "~10.0.8",
|
12076
12082
|
"@expo/config-plugins": "~9.0.14",
|
12077
|
-
"@expo/fingerprint": "0.11.
|
12083
|
+
"@expo/fingerprint": "0.11.8",
|
12078
12084
|
"@expo/metro-config": "0.19.9",
|
12079
12085
|
"@expo/vector-icons": "^14.0.0",
|
12080
12086
|
"babel-preset-expo": "~12.0.6",
|
12081
|
-
"expo-asset": "~11.0.
|
12087
|
+
"expo-asset": "~11.0.3",
|
12082
12088
|
"expo-constants": "~17.0.5",
|
12083
|
-
"expo-file-system": "~18.0.
|
12089
|
+
"expo-file-system": "~18.0.9",
|
12084
12090
|
"expo-font": "~13.0.3",
|
12085
12091
|
"expo-keep-awake": "~14.0.2",
|
12086
12092
|
"expo-modules-autolinking": "2.0.7",
|
@@ -12463,8 +12469,8 @@
|
|
12463
12469
|
}
|
12464
12470
|
},
|
12465
12471
|
"node_modules/expo/node_modules/expo-file-system": {
|
12466
|
-
"version": "18.0.
|
12467
|
-
"integrity": "sha512-
|
12472
|
+
"version": "18.0.9",
|
12473
|
+
"integrity": "sha512-DPuAyLP1012SFC92LKNJpLJw3QBbyxfYXNj9nTOdq299MYTf8kyOjLuVNMQqg1jX+yGiRDp0lHFoCgln0xsZYA==",
|
12468
12474
|
"license": "MIT",
|
12469
12475
|
"peer": true,
|
12470
12476
|
"dependencies": {
|
@@ -14023,8 +14029,8 @@
|
|
14023
14029
|
}
|
14024
14030
|
},
|
14025
14031
|
"node_modules/import-fresh": {
|
14026
|
-
"version": "3.3.
|
14027
|
-
"integrity": "sha512-
|
14032
|
+
"version": "3.3.1",
|
14033
|
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
|
14028
14034
|
"dev": true,
|
14029
14035
|
"license": "MIT",
|
14030
14036
|
"dependencies": {
|
@@ -14998,12 +15004,12 @@
|
|
14998
15004
|
}
|
14999
15005
|
},
|
15000
15006
|
"node_modules/is-weakref": {
|
15001
|
-
"version": "1.1.
|
15002
|
-
"integrity": "sha512-
|
15007
|
+
"version": "1.1.1",
|
15008
|
+
"integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
|
15003
15009
|
"dev": true,
|
15004
15010
|
"license": "MIT",
|
15005
15011
|
"dependencies": {
|
15006
|
-
"call-bound": "^1.0.
|
15012
|
+
"call-bound": "^1.0.3"
|
15007
15013
|
},
|
15008
15014
|
"engines": {
|
15009
15015
|
"node": ">= 0.4"
|
@@ -16299,8 +16305,8 @@
|
|
16299
16305
|
}
|
16300
16306
|
},
|
16301
16307
|
"node_modules/jest-snapshot/node_modules/semver": {
|
16302
|
-
"version": "7.7.
|
16303
|
-
"integrity": "sha512-
|
16308
|
+
"version": "7.7.1",
|
16309
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
16304
16310
|
"dev": true,
|
16305
16311
|
"license": "ISC",
|
16306
16312
|
"bin": {
|
@@ -17611,8 +17617,8 @@
|
|
17611
17617
|
}
|
17612
17618
|
},
|
17613
17619
|
"node_modules/make-dir/node_modules/semver": {
|
17614
|
-
"version": "7.7.
|
17615
|
-
"integrity": "sha512-
|
17620
|
+
"version": "7.7.1",
|
17621
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
17616
17622
|
"dev": true,
|
17617
17623
|
"license": "ISC",
|
17618
17624
|
"bin": {
|
@@ -18859,8 +18865,8 @@
|
|
18859
18865
|
}
|
18860
18866
|
},
|
18861
18867
|
"node_modules/normalize-package-data/node_modules/semver": {
|
18862
|
-
"version": "7.7.
|
18863
|
-
"integrity": "sha512-
|
18868
|
+
"version": "7.7.1",
|
18869
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
18864
18870
|
"dev": true,
|
18865
18871
|
"license": "ISC",
|
18866
18872
|
"bin": {
|
@@ -18924,8 +18930,8 @@
|
|
18924
18930
|
"peer": true
|
18925
18931
|
},
|
18926
18932
|
"node_modules/npm-package-arg/node_modules/semver": {
|
18927
|
-
"version": "7.7.
|
18928
|
-
"integrity": "sha512-
|
18933
|
+
"version": "7.7.1",
|
18934
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
18929
18935
|
"license": "ISC",
|
18930
18936
|
"peer": true,
|
18931
18937
|
"bin": {
|
@@ -20989,8 +20995,8 @@
|
|
20989
20995
|
}
|
20990
20996
|
},
|
20991
20997
|
"node_modules/react-native/node_modules/semver": {
|
20992
|
-
"version": "7.7.
|
20993
|
-
"integrity": "sha512-
|
20998
|
+
"version": "7.7.1",
|
20999
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
20994
21000
|
"license": "ISC",
|
20995
21001
|
"bin": {
|
20996
21002
|
"semver": "bin/semver.js"
|
@@ -24295,8 +24301,8 @@
|
|
24295
24301
|
}
|
24296
24302
|
},
|
24297
24303
|
"node_modules/update-notifier/node_modules/semver": {
|
24298
|
-
"version": "7.7.
|
24299
|
-
"integrity": "sha512-
|
24304
|
+
"version": "7.7.1",
|
24305
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
24300
24306
|
"dev": true,
|
24301
24307
|
"license": "ISC",
|
24302
24308
|
"bin": {
|