@wavemaker/app-rn-runtime 11.10.5-rc.6100 → 11.11.0-rc.6106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/basic/animatedview.component.js +3 -2
- package/components/basic/animatedview.component.js.map +1 -1
- package/components/basic/audio/audio.component.js.map +1 -1
- package/components/basic/picture/picture.component.js +20 -13
- package/components/basic/picture/picture.component.js.map +1 -1
- package/components/basic/picture/picture.styles.js.map +1 -1
- package/components/basic/skeleton/skeleton.component.js.map +1 -1
- package/components/basic/skeleton/skeleton.styles.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.component.js +4 -2
- package/components/chart/bar-chart/bar-chart.component.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.props.js +1 -0
- package/components/chart/bar-chart/bar-chart.props.js.map +1 -1
- package/components/chart/basechart.component.js +6 -2
- package/components/chart/basechart.component.js.map +1 -1
- package/components/chart/basechart.props.js +2 -0
- package/components/chart/basechart.props.js.map +1 -1
- package/components/container/container.component.js +10 -2
- package/components/container/container.component.js.map +1 -1
- package/components/container/container.props.js +1 -0
- package/components/container/container.props.js.map +1 -1
- package/components/container/container.styles.js +3 -0
- package/components/container/container.styles.js.map +1 -1
- package/components/data/list/list.component.js +42 -13
- package/components/data/list/list.component.js.map +1 -1
- package/components/data/list/list.props.js +3 -0
- package/components/data/list/list.props.js.map +1 -1
- package/components/input/calendar/views/month-view.js.map +1 -1
- package/components/input/epoch/datetime/datetime.styles.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.component.js +67 -37
- package/components/navigation/appnavbar/appnavbar.component.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.props.js +1 -0
- package/components/navigation/appnavbar/appnavbar.props.js.map +1 -1
- package/components/navigation/appnavbar/appnavbar.styles.js.map +1 -1
- package/components/page/page-content/page-content.component.js +1 -1
- package/components/page/page-content/page-content.component.js.map +1 -1
- package/components/page/page.component.js +46 -4
- package/components/page/page.component.js.map +1 -1
- package/components/page/page.props.js +11 -1
- package/components/page/page.props.js.map +1 -1
- package/components/page/tabbar/tabbar.component.js +135 -40
- package/components/page/tabbar/tabbar.component.js.map +1 -1
- package/components/page/tabbar/tabbar.props.js +1 -0
- package/components/page/tabbar/tabbar.props.js.map +1 -1
- package/core/base.component.js +29 -5
- package/core/base.component.js.map +1 -1
- package/core/components/floatinglabel.component.js.map +1 -1
- package/core/components/textinput.component.js +18 -2
- package/core/components/textinput.component.js.map +1 -1
- package/core/fixed-view.component.js +5 -3
- package/core/fixed-view.component.js.map +1 -1
- package/core/sticky-container.component.js +168 -0
- package/core/sticky-container.component.js.map +1 -0
- package/npm-shrinkwrap.json +101 -50
- package/package-lock.json +101 -50
- package/package.json +6 -3
- package/runtime/App.js +14 -3
- package/runtime/App.js.map +1 -1
package/package-lock.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.11.0-rc.6106",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
9
|
-
"version": "11.
|
9
|
+
"version": "11.11.0-rc.6106",
|
10
10
|
"license": "MIT",
|
11
11
|
"dependencies": {
|
12
12
|
"@expo/vector-icons": "14.0.2",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"@react-navigation/drawer": "6.6.3",
|
21
21
|
"@react-navigation/native": "6.1.7",
|
22
22
|
"@react-navigation/stack": "6.3.29",
|
23
|
-
"@wavemaker/variables": "11.
|
23
|
+
"@wavemaker/variables": "11.11.0-rc.6106",
|
24
24
|
"axios": "1.6.8",
|
25
25
|
"color": "4.2.3",
|
26
26
|
"cross-env": "7.0.3",
|
@@ -28,6 +28,7 @@
|
|
28
28
|
"d3-shape": "3.2.0",
|
29
29
|
"expo-application": "6.0.1",
|
30
30
|
"expo-font": "13.0.1",
|
31
|
+
"expo-image": "2.0.3",
|
31
32
|
"expo-linear-gradient": "13.0.2",
|
32
33
|
"expo-modules-core": "2.1.1",
|
33
34
|
"expo-video": "2.0.2",
|
@@ -80,6 +81,7 @@
|
|
80
81
|
"eslint-plugin-prettier": "5.1.3",
|
81
82
|
"execa": "5.0.0",
|
82
83
|
"expo-av": "15.0.1",
|
84
|
+
"expo-blur": "14.0.3",
|
83
85
|
"expo-calendar": "14.0.4",
|
84
86
|
"expo-camera": "16.0.9",
|
85
87
|
"expo-contacts": "14.0.2",
|
@@ -87,6 +89,7 @@
|
|
87
89
|
"expo-document-picker": "13.0.1",
|
88
90
|
"expo-file-system": "18.0.4",
|
89
91
|
"expo-location": "18.0.3",
|
92
|
+
"expo-navigation-bar": "4.0.8",
|
90
93
|
"expo-network": "7.0.3",
|
91
94
|
"expo-splash-screen": "0.29.16",
|
92
95
|
"expo-web-browser": "14.0.1",
|
@@ -2821,8 +2824,8 @@
|
|
2821
2824
|
}
|
2822
2825
|
},
|
2823
2826
|
"node_modules/@expo/cli": {
|
2824
|
-
"version": "0.22.
|
2825
|
-
"integrity": "sha512-
|
2827
|
+
"version": "0.22.24",
|
2828
|
+
"integrity": "sha512-lhdenxBC8/x/vL39j79eXE09mOaqNNLmiSDdY/PblnI+UNzGgsQ48hBTYa/MQhd0ioXXVKurZL2941dLKwcxJw==",
|
2826
2829
|
"license": "MIT",
|
2827
2830
|
"peer": true,
|
2828
2831
|
"dependencies": {
|
@@ -2839,12 +2842,12 @@
|
|
2839
2842
|
"@expo/osascript": "^2.1.6",
|
2840
2843
|
"@expo/package-manager": "^1.7.2",
|
2841
2844
|
"@expo/plist": "^0.2.2",
|
2842
|
-
"@expo/prebuild-config": "^8.0.
|
2845
|
+
"@expo/prebuild-config": "^8.0.31",
|
2843
2846
|
"@expo/rudder-sdk-node": "^1.1.1",
|
2844
2847
|
"@expo/spawn-async": "^1.7.2",
|
2845
2848
|
"@expo/ws-tunnel": "^1.0.1",
|
2846
2849
|
"@expo/xcpretty": "^4.3.0",
|
2847
|
-
"@react-native/dev-middleware": "0.76.
|
2850
|
+
"@react-native/dev-middleware": "0.76.9",
|
2848
2851
|
"@urql/core": "^5.0.6",
|
2849
2852
|
"@urql/exchange-retry": "^1.3.0",
|
2850
2853
|
"accepts": "^1.3.8",
|
@@ -3674,8 +3677,8 @@
|
|
3674
3677
|
}
|
3675
3678
|
},
|
3676
3679
|
"node_modules/@expo/prebuild-config": {
|
3677
|
-
"version": "8.0.
|
3678
|
-
"integrity": "sha512-
|
3680
|
+
"version": "8.0.31",
|
3681
|
+
"integrity": "sha512-YTuS5ic9KolD/WA3GqgLcZytHQU1dpitlZ/cbDq8ZqkY+1ae5YWX+GkYEZf2VyECPaWnHYuDGddaTQVw5miTRg==",
|
3679
3682
|
"license": "MIT",
|
3680
3683
|
"dependencies": {
|
3681
3684
|
"@expo/config": "~10.0.11",
|
@@ -3683,7 +3686,7 @@
|
|
3683
3686
|
"@expo/config-types": "^52.0.5",
|
3684
3687
|
"@expo/image-utils": "^0.6.5",
|
3685
3688
|
"@expo/json-file": "^9.0.2",
|
3686
|
-
"@react-native/normalize-colors": "0.76.
|
3689
|
+
"@react-native/normalize-colors": "0.76.9",
|
3687
3690
|
"debug": "^4.3.1",
|
3688
3691
|
"fs-extra": "^9.0.0",
|
3689
3692
|
"resolve-from": "^5.0.0",
|
@@ -5138,8 +5141,8 @@
|
|
5138
5141
|
}
|
5139
5142
|
},
|
5140
5143
|
"node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-react": {
|
5141
|
-
"version": "7.37.
|
5142
|
-
"integrity": "sha512-
|
5144
|
+
"version": "7.37.5",
|
5145
|
+
"integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
|
5143
5146
|
"dev": true,
|
5144
5147
|
"license": "MIT",
|
5145
5148
|
"dependencies": {
|
@@ -5153,7 +5156,7 @@
|
|
5153
5156
|
"hasown": "^2.0.2",
|
5154
5157
|
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
|
5155
5158
|
"minimatch": "^3.1.2",
|
5156
|
-
"object.entries": "^1.1.
|
5159
|
+
"object.entries": "^1.1.9",
|
5157
5160
|
"object.fromentries": "^2.0.8",
|
5158
5161
|
"object.values": "^1.2.1",
|
5159
5162
|
"prop-types": "^15.8.1",
|
@@ -5256,20 +5259,20 @@
|
|
5256
5259
|
}
|
5257
5260
|
},
|
5258
5261
|
"node_modules/@react-native/babel-plugin-codegen": {
|
5259
|
-
"version": "0.76.
|
5260
|
-
"integrity": "sha512-
|
5262
|
+
"version": "0.76.9",
|
5263
|
+
"integrity": "sha512-vxL/vtDEIYHfWKm5oTaEmwcnNGsua/i9OjIxBDBFiJDu5i5RU3bpmDiXQm/bJxrJNPRp5lW0I0kpGihVhnMAIQ==",
|
5261
5264
|
"license": "MIT",
|
5262
5265
|
"peer": true,
|
5263
5266
|
"dependencies": {
|
5264
|
-
"@react-native/codegen": "0.76.
|
5267
|
+
"@react-native/codegen": "0.76.9"
|
5265
5268
|
},
|
5266
5269
|
"engines": {
|
5267
5270
|
"node": ">=18"
|
5268
5271
|
}
|
5269
5272
|
},
|
5270
5273
|
"node_modules/@react-native/babel-preset": {
|
5271
|
-
"version": "0.76.
|
5272
|
-
"integrity": "sha512-
|
5274
|
+
"version": "0.76.9",
|
5275
|
+
"integrity": "sha512-TbSeCplCM6WhL3hR2MjC/E1a9cRnMLz7i767T7mP90oWkklEjyPxWl+0GGoVGnJ8FC/jLUupg/HvREKjjif6lw==",
|
5273
5276
|
"license": "MIT",
|
5274
5277
|
"peer": true,
|
5275
5278
|
"dependencies": {
|
@@ -5314,7 +5317,7 @@
|
|
5314
5317
|
"@babel/plugin-transform-typescript": "^7.25.2",
|
5315
5318
|
"@babel/plugin-transform-unicode-regex": "^7.24.7",
|
5316
5319
|
"@babel/template": "^7.25.0",
|
5317
|
-
"@react-native/babel-plugin-codegen": "0.76.
|
5320
|
+
"@react-native/babel-plugin-codegen": "0.76.9",
|
5318
5321
|
"babel-plugin-syntax-hermes-parser": "^0.25.1",
|
5319
5322
|
"babel-plugin-transform-flow-enums": "^0.0.2",
|
5320
5323
|
"react-refresh": "^0.14.0"
|
@@ -5327,8 +5330,8 @@
|
|
5327
5330
|
}
|
5328
5331
|
},
|
5329
5332
|
"node_modules/@react-native/codegen": {
|
5330
|
-
"version": "0.76.
|
5331
|
-
"integrity": "sha512-
|
5333
|
+
"version": "0.76.9",
|
5334
|
+
"integrity": "sha512-AzlCHMTKrAVC2709V4ZGtBXmGVtWTpWm3Ruv5vXcd3/anH4mGucfJ4rjbWKdaYQJMpXa3ytGomQrsIsT/s8kgA==",
|
5332
5335
|
"license": "MIT",
|
5333
5336
|
"peer": true,
|
5334
5337
|
"dependencies": {
|
@@ -5572,8 +5575,8 @@
|
|
5572
5575
|
}
|
5573
5576
|
},
|
5574
5577
|
"node_modules/@react-native/debugger-frontend": {
|
5575
|
-
"version": "0.76.
|
5576
|
-
"integrity": "sha512-
|
5578
|
+
"version": "0.76.9",
|
5579
|
+
"integrity": "sha512-0Ru72Bm066xmxFuOXhhvrryxvb57uI79yDSFf+hxRpktkC98NMuRenlJhslMrbJ6WjCu1vOe/9UjWNYyxXTRTA==",
|
5577
5580
|
"license": "BSD-3-Clause",
|
5578
5581
|
"peer": true,
|
5579
5582
|
"engines": {
|
@@ -5581,13 +5584,13 @@
|
|
5581
5584
|
}
|
5582
5585
|
},
|
5583
5586
|
"node_modules/@react-native/dev-middleware": {
|
5584
|
-
"version": "0.76.
|
5585
|
-
"integrity": "sha512-
|
5587
|
+
"version": "0.76.9",
|
5588
|
+
"integrity": "sha512-xkd3C3dRcmZLjFTEAOvC14q3apMLouIvJViCZY/p1EfCMrNND31dgE1dYrLTiI045WAWMt5bD15i6f7dE2/QWA==",
|
5586
5589
|
"license": "MIT",
|
5587
5590
|
"peer": true,
|
5588
5591
|
"dependencies": {
|
5589
5592
|
"@isaacs/ttlcache": "^1.4.1",
|
5590
|
-
"@react-native/debugger-frontend": "0.76.
|
5593
|
+
"@react-native/debugger-frontend": "0.76.9",
|
5591
5594
|
"chrome-launcher": "^0.15.2",
|
5592
5595
|
"chromium-edge-launcher": "^0.2.0",
|
5593
5596
|
"connect": "^3.6.5",
|
@@ -5827,8 +5830,8 @@
|
|
5827
5830
|
}
|
5828
5831
|
},
|
5829
5832
|
"node_modules/@react-native/normalize-colors": {
|
5830
|
-
"version": "0.76.
|
5831
|
-
"integrity": "sha512-
|
5833
|
+
"version": "0.76.9",
|
5834
|
+
"integrity": "sha512-TUdMG2JGk72M9d8DYbubdOlrzTYjw+YMe/xOnLU4viDgWRHsCbtRS9x0IAxRjs3amj/7zmK3Atm8jUPvdAc8qw==",
|
5832
5835
|
"license": "MIT"
|
5833
5836
|
},
|
5834
5837
|
"node_modules/@react-navigation/core": {
|
@@ -6084,8 +6087,8 @@
|
|
6084
6087
|
}
|
6085
6088
|
},
|
6086
6089
|
"node_modules/@types/babel__generator": {
|
6087
|
-
"version": "7.
|
6088
|
-
"integrity": "sha512-
|
6090
|
+
"version": "7.27.0",
|
6091
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
6089
6092
|
"license": "MIT",
|
6090
6093
|
"dependencies": {
|
6091
6094
|
"@babel/types": "^7.0.0"
|
@@ -6379,11 +6382,11 @@
|
|
6379
6382
|
"license": "MIT"
|
6380
6383
|
},
|
6381
6384
|
"node_modules/@types/node": {
|
6382
|
-
"version": "22.
|
6383
|
-
"integrity": "sha512-
|
6385
|
+
"version": "22.14.0",
|
6386
|
+
"integrity": "sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==",
|
6384
6387
|
"license": "MIT",
|
6385
6388
|
"dependencies": {
|
6386
|
-
"undici-types": "~6.
|
6389
|
+
"undici-types": "~6.21.0"
|
6387
6390
|
}
|
6388
6391
|
},
|
6389
6392
|
"node_modules/@types/node-forge": {
|
@@ -6673,8 +6676,8 @@
|
|
6673
6676
|
}
|
6674
6677
|
},
|
6675
6678
|
"node_modules/@wavemaker/variables": {
|
6676
|
-
"version": "11.
|
6677
|
-
"integrity": "sha512-
|
6679
|
+
"version": "11.11.0-rc.6106",
|
6680
|
+
"integrity": "sha512-BT2teob8ijpE5trVlsXdfCjV5q1+5NN9wRv/Aoibz0F2THgMZokIJAhsR0IFRgHhcNLf87zLBx5xezKwqawBNw==",
|
6678
6681
|
"license": "ISC",
|
6679
6682
|
"dependencies": {
|
6680
6683
|
"@metrichor/jmespath": "^0.3.1",
|
@@ -8334,8 +8337,8 @@
|
|
8334
8337
|
}
|
8335
8338
|
},
|
8336
8339
|
"node_modules/babel-preset-expo": {
|
8337
|
-
"version": "12.0.
|
8338
|
-
"integrity": "sha512-
|
8340
|
+
"version": "12.0.11",
|
8341
|
+
"integrity": "sha512-4m6D92nKEieg+7DXa8uSvpr0GjfuRfM/G0t0I/Q5hF8HleEv5ms3z4dJ+p52qXSJsm760tMqLdO93Ywuoi7cCQ==",
|
8339
8342
|
"license": "MIT",
|
8340
8343
|
"peer": true,
|
8341
8344
|
"dependencies": {
|
@@ -8345,7 +8348,7 @@
|
|
8345
8348
|
"@babel/plugin-transform-parameters": "^7.22.15",
|
8346
8349
|
"@babel/preset-react": "^7.22.15",
|
8347
8350
|
"@babel/preset-typescript": "^7.23.0",
|
8348
|
-
"@react-native/babel-preset": "0.76.
|
8351
|
+
"@react-native/babel-preset": "0.76.9",
|
8349
8352
|
"babel-plugin-react-native-web": "~0.19.13",
|
8350
8353
|
"react-refresh": "^0.14.2"
|
8351
8354
|
},
|
@@ -9066,8 +9069,8 @@
|
|
9066
9069
|
}
|
9067
9070
|
},
|
9068
9071
|
"node_modules/caniuse-lite": {
|
9069
|
-
"version": "1.0.
|
9070
|
-
"integrity": "sha512-
|
9072
|
+
"version": "1.0.30001712",
|
9073
|
+
"integrity": "sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==",
|
9071
9074
|
"funding": [
|
9072
9075
|
{
|
9073
9076
|
"type": "opencollective",
|
@@ -11173,8 +11176,8 @@
|
|
11173
11176
|
"license": "MIT"
|
11174
11177
|
},
|
11175
11178
|
"node_modules/electron-to-chromium": {
|
11176
|
-
"version": "1.5.
|
11177
|
-
"integrity": "sha512-
|
11179
|
+
"version": "1.5.132",
|
11180
|
+
"integrity": "sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==",
|
11178
11181
|
"license": "ISC"
|
11179
11182
|
},
|
11180
11183
|
"node_modules/emittery": {
|
@@ -12061,19 +12064,19 @@
|
|
12061
12064
|
}
|
12062
12065
|
},
|
12063
12066
|
"node_modules/expo": {
|
12064
|
-
"version": "52.0.
|
12065
|
-
"integrity": "sha512-
|
12067
|
+
"version": "52.0.44",
|
12068
|
+
"integrity": "sha512-qj3+MWxmqLyBaYQ8jDOvVLEgSqNplH3cf+nDhxCo4C1cpTPD1u/HGh1foibtaeuCYLHsE5km1lrcOpRbFJ4luQ==",
|
12066
12069
|
"license": "MIT",
|
12067
12070
|
"peer": true,
|
12068
12071
|
"dependencies": {
|
12069
12072
|
"@babel/runtime": "^7.20.0",
|
12070
|
-
"@expo/cli": "0.22.
|
12073
|
+
"@expo/cli": "0.22.24",
|
12071
12074
|
"@expo/config": "~10.0.11",
|
12072
12075
|
"@expo/config-plugins": "~9.0.17",
|
12073
12076
|
"@expo/fingerprint": "0.11.11",
|
12074
12077
|
"@expo/metro-config": "0.19.12",
|
12075
12078
|
"@expo/vector-icons": "^14.0.0",
|
12076
|
-
"babel-preset-expo": "~12.0.
|
12079
|
+
"babel-preset-expo": "~12.0.11",
|
12077
12080
|
"expo-asset": "~11.0.5",
|
12078
12081
|
"expo-constants": "~17.0.8",
|
12079
12082
|
"expo-file-system": "~18.0.12",
|
@@ -12151,6 +12154,17 @@
|
|
12151
12154
|
}
|
12152
12155
|
}
|
12153
12156
|
},
|
12157
|
+
"node_modules/expo-blur": {
|
12158
|
+
"version": "14.0.3",
|
12159
|
+
"integrity": "sha512-BL3xnqBJbYm3Hg9t/HjNjdeY7N/q8eK5tsLYxswWG1yElISWZmMvrXYekl7XaVCPfyFyz8vQeaxd7q74ZY3Wrw==",
|
12160
|
+
"dev": true,
|
12161
|
+
"license": "MIT",
|
12162
|
+
"peerDependencies": {
|
12163
|
+
"expo": "*",
|
12164
|
+
"react": "*",
|
12165
|
+
"react-native": "*"
|
12166
|
+
}
|
12167
|
+
},
|
12154
12168
|
"node_modules/expo-calendar": {
|
12155
12169
|
"version": "14.0.4",
|
12156
12170
|
"integrity": "sha512-7RBBUcsuaafTazLUUozioOyLC3hUNphMJ9uh7TxBxS/dCaQrdyd1q5NoTQ84VqiyDE0Vc/OA7Nzr3EBh4Ww7CA==",
|
@@ -12251,6 +12265,22 @@
|
|
12251
12265
|
"react": "*"
|
12252
12266
|
}
|
12253
12267
|
},
|
12268
|
+
"node_modules/expo-image": {
|
12269
|
+
"version": "2.0.3",
|
12270
|
+
"integrity": "sha512-+YnHTQv8jbXaut3FY7TDhNiSiGZ927C329mHvTZWV4Fyj32/Hjhhmk7dqq9I6LrA0nqBBiJjFj3u6VdHvCBnZg==",
|
12271
|
+
"license": "MIT",
|
12272
|
+
"peerDependencies": {
|
12273
|
+
"expo": "*",
|
12274
|
+
"react": "*",
|
12275
|
+
"react-native": "*",
|
12276
|
+
"react-native-web": "*"
|
12277
|
+
},
|
12278
|
+
"peerDependenciesMeta": {
|
12279
|
+
"react-native-web": {
|
12280
|
+
"optional": true
|
12281
|
+
}
|
12282
|
+
}
|
12283
|
+
},
|
12254
12284
|
"node_modules/expo-keep-awake": {
|
12255
12285
|
"version": "14.0.3",
|
12256
12286
|
"integrity": "sha512-6Jh94G6NvTZfuLnm2vwIpKe3GdOiVBuISl7FI8GqN0/9UOg9E0WXXp5cDcfAG8bn80RfgLJS8P7EPUGTZyOvhg==",
|
@@ -12418,6 +12448,27 @@
|
|
12418
12448
|
"invariant": "^2.2.4"
|
12419
12449
|
}
|
12420
12450
|
},
|
12451
|
+
"node_modules/expo-navigation-bar": {
|
12452
|
+
"version": "4.0.8",
|
12453
|
+
"integrity": "sha512-rmQkCCwfYeR29GTPwoNuN7eWE8bYCW5UGJ/5CnZQxIaiBmOeepoDXu50AzEM5ZFPMK6J12nvyu1yj0ujbLUpsQ==",
|
12454
|
+
"dev": true,
|
12455
|
+
"license": "MIT",
|
12456
|
+
"dependencies": {
|
12457
|
+
"@react-native/normalize-colors": "0.76.7",
|
12458
|
+
"debug": "^4.3.2"
|
12459
|
+
},
|
12460
|
+
"peerDependencies": {
|
12461
|
+
"expo": "*",
|
12462
|
+
"react": "*",
|
12463
|
+
"react-native": "*"
|
12464
|
+
}
|
12465
|
+
},
|
12466
|
+
"node_modules/expo-navigation-bar/node_modules/@react-native/normalize-colors": {
|
12467
|
+
"version": "0.76.7",
|
12468
|
+
"integrity": "sha512-ST1xxBuYVIXPdD81dR6+tzIgso7m3pa9+6rOBXTh5Xm7KEEFik7tnQX+GydXYMp3wr1gagJjragdXkPnxK6WNg==",
|
12469
|
+
"dev": true,
|
12470
|
+
"license": "MIT"
|
12471
|
+
},
|
12421
12472
|
"node_modules/expo-network": {
|
12422
12473
|
"version": "7.0.3",
|
12423
12474
|
"integrity": "sha512-WPpiXJR5/k2LFmSDAENRLjVyOK4cVuFakQpTY0sVPXwD5mL9IWTgxK8yJZ6hAGXdPUUUM9+TJvOWr8TfjOWznw==",
|
@@ -13980,8 +14031,8 @@
|
|
13980
14031
|
}
|
13981
14032
|
},
|
13982
14033
|
"node_modules/image-size": {
|
13983
|
-
"version": "1.2.
|
13984
|
-
"integrity": "sha512-
|
14034
|
+
"version": "1.2.1",
|
14035
|
+
"integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==",
|
13985
14036
|
"license": "MIT",
|
13986
14037
|
"dependencies": {
|
13987
14038
|
"queue": "6.0.2"
|
@@ -24065,8 +24116,8 @@
|
|
24065
24116
|
}
|
24066
24117
|
},
|
24067
24118
|
"node_modules/undici-types": {
|
24068
|
-
"version": "6.
|
24069
|
-
"integrity": "sha512-
|
24119
|
+
"version": "6.21.0",
|
24120
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
24070
24121
|
"license": "MIT"
|
24071
24122
|
},
|
24072
24123
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.11.0-rc.6106",
|
4
4
|
"description": "''",
|
5
5
|
"main": "index",
|
6
6
|
"module": "index",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"@react-navigation/drawer": "6.6.3",
|
50
50
|
"@react-navigation/native": "6.1.7",
|
51
51
|
"@react-navigation/stack": "6.3.29",
|
52
|
-
"@wavemaker/variables": "11.
|
52
|
+
"@wavemaker/variables": "11.11.0-rc.6106",
|
53
53
|
"axios": "1.6.8",
|
54
54
|
"color": "4.2.3",
|
55
55
|
"cross-env": "7.0.3",
|
@@ -78,7 +78,8 @@
|
|
78
78
|
"react-native-svg": "15.8.0",
|
79
79
|
"react-native-web": "0.19.13",
|
80
80
|
"react-native-webview": "13.12.5",
|
81
|
-
"react-xml-parser": "1.1.8"
|
81
|
+
"react-xml-parser": "1.1.8",
|
82
|
+
"expo-image": "2.0.3"
|
82
83
|
},
|
83
84
|
"devDependencies": {
|
84
85
|
"@babel/core": "7.25.2",
|
@@ -109,6 +110,7 @@
|
|
109
110
|
"eslint-plugin-prettier": "5.1.3",
|
110
111
|
"execa": "5.0.0",
|
111
112
|
"expo-av": "15.0.1",
|
113
|
+
"expo-blur": "14.0.3",
|
112
114
|
"expo-calendar": "14.0.4",
|
113
115
|
"expo-camera": "16.0.9",
|
114
116
|
"expo-contacts": "14.0.2",
|
@@ -116,6 +118,7 @@
|
|
116
118
|
"expo-document-picker": "13.0.1",
|
117
119
|
"expo-file-system": "18.0.4",
|
118
120
|
"expo-location": "18.0.3",
|
121
|
+
"expo-navigation-bar": "4.0.8",
|
119
122
|
"expo-network": "7.0.3",
|
120
123
|
"expo-splash-screen": "0.29.16",
|
121
124
|
"expo-web-browser": "14.0.1",
|
package/runtime/App.js
CHANGED
@@ -431,6 +431,18 @@ export default class BaseApp extends React.Component {
|
|
431
431
|
}
|
432
432
|
});
|
433
433
|
}
|
434
|
+
renderIosStatusbarInsetsView(statusBarCustomisation, insets) {
|
435
|
+
return Platform.OS == 'ios' && !(statusBarCustomisation !== null && statusBarCustomisation !== void 0 && statusBarCustomisation.translucent) ? /*#__PURE__*/React.createElement(View, {
|
436
|
+
style: {
|
437
|
+
backgroundColor: 'white',
|
438
|
+
position: 'absolute',
|
439
|
+
top: 0,
|
440
|
+
height: (insets === null || insets === void 0 ? void 0 : insets.top) || 0,
|
441
|
+
width: '100%',
|
442
|
+
zIndex: 9
|
443
|
+
}
|
444
|
+
}) : /*#__PURE__*/React.createElement(React.Fragment, null);
|
445
|
+
}
|
434
446
|
renderIconsViewSupportForWeb() {
|
435
447
|
try {
|
436
448
|
return /*#__PURE__*/React.createElement("style", {
|
@@ -462,7 +474,7 @@ export default class BaseApp extends React.Component {
|
|
462
474
|
return (_this$Variables$value = this.Variables[value]) === null || _this$Variables$value === void 0 ? void 0 : _this$Variables$value.invokeOnParamChange();
|
463
475
|
});
|
464
476
|
const statusBarCustomisation = (_this$appConfig = this.appConfig) === null || _this$appConfig === void 0 || (_this$appConfig = _this$appConfig.preferences) === null || _this$appConfig === void 0 ? void 0 : _this$appConfig.statusbarStyles;
|
465
|
-
const isTranslucent =
|
477
|
+
const isTranslucent = statusBarCustomisation === null || statusBarCustomisation === void 0 ? void 0 : statusBarCustomisation.translucent;
|
466
478
|
const Wrapper = isTranslucent ? View : SafeAreaView;
|
467
479
|
return /*#__PURE__*/React.createElement(SafeAreaProvider, null, /*#__PURE__*/React.createElement(SafeAreaInsetsContext.Consumer, null, (insets = {
|
468
480
|
top: 0,
|
@@ -472,7 +484,6 @@ export default class BaseApp extends React.Component {
|
|
472
484
|
}) => {
|
473
485
|
var _this$props, _this$appConfig$drawe, _this$appConfig$drawe2;
|
474
486
|
this.statusbarInsets = insets;
|
475
|
-
Platform.OS === "android" ? this.statusbarInsets.top = StatusBar.currentHeight : null;
|
476
487
|
return /*#__PURE__*/React.createElement(PaperProvider, {
|
477
488
|
theme: this.paperTheme
|
478
489
|
}, /*#__PURE__*/React.createElement(React.Fragment, null, Platform.OS === 'web' ? this.renderIconsViewSupportForWeb() : null, this.getProviders(/*#__PURE__*/React.createElement(Wrapper, {
|
@@ -480,7 +491,7 @@ export default class BaseApp extends React.Component {
|
|
480
491
|
flex: 1
|
481
492
|
}
|
482
493
|
}, /*#__PURE__*/React.createElement(StatusBar, {
|
483
|
-
backgroundColor:
|
494
|
+
backgroundColor: statusBarCustomisation === null || statusBarCustomisation === void 0 ? void 0 : statusBarCustomisation.backgroundColor,
|
484
495
|
translucent: isTranslucent,
|
485
496
|
barStyle: (statusBarCustomisation === null || statusBarCustomisation === void 0 ? void 0 : statusBarCustomisation.barStyle) || 'default'
|
486
497
|
}), /*#__PURE__*/React.createElement(ThemeProvider, {
|