@applicaster/quick-brick-core 15.0.0-rc.101 → 15.0.0-rc.102
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.
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
getTargetRoute,
|
|
8
8
|
usesVideoModal,
|
|
9
9
|
} from "@applicaster/zapp-react-native-utils/navigationUtils";
|
|
10
|
-
import { last } from "@applicaster/zapp-react-native-utils/utils";
|
|
10
|
+
import { clone, last } from "@applicaster/zapp-react-native-utils/utils";
|
|
11
11
|
import {
|
|
12
12
|
allowedOrientationsForScreen,
|
|
13
13
|
useGetScreenOrientation,
|
|
@@ -246,7 +246,7 @@ export function NavigationProvider({ children }: Props) {
|
|
|
246
246
|
const screen = rivers[screenId];
|
|
247
247
|
const parent = findParent(context, navigator.currentRoute);
|
|
248
248
|
|
|
249
|
-
const entryClone =
|
|
249
|
+
const entryClone = clone(entry);
|
|
250
250
|
|
|
251
251
|
if (!screen) {
|
|
252
252
|
logger.warn({
|
|
@@ -60,7 +60,7 @@ export const previousStackEntriesSelector = createSelector(
|
|
|
60
60
|
export const lastEntrySelector = createSelector(
|
|
61
61
|
navigationStackSelector,
|
|
62
62
|
R.compose(R.last, R.when(R.has("mainStack"), R.prop("mainStack")))
|
|
63
|
-
) as (state: any) =>
|
|
63
|
+
) as (state: any) => NavigationScreenState | undefined;
|
|
64
64
|
|
|
65
65
|
// Selector extracting identifiers of plugins requiring startup execution
|
|
66
66
|
export const startUpHookPluginIdentifiersSelector = createSelector(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/quick-brick-core",
|
|
3
|
-
"version": "15.0.0-rc.
|
|
3
|
+
"version": "15.0.0-rc.102",
|
|
4
4
|
"description": "Core package for Applicaster's Quick Brick App",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@applicaster/applicaster-types": "15.0.0-rc.
|
|
32
|
-
"@applicaster/quick-brick-core-plugins": "15.0.0-rc.
|
|
33
|
-
"@applicaster/zapp-pipes-v2-client": "15.0.0-rc.
|
|
34
|
-
"@applicaster/zapp-react-native-bridge": "15.0.0-rc.
|
|
35
|
-
"@applicaster/zapp-react-native-redux": "15.0.0-rc.
|
|
36
|
-
"@applicaster/zapp-react-native-ui-components": "15.0.0-rc.
|
|
37
|
-
"@applicaster/zapp-react-native-utils": "15.0.0-rc.
|
|
31
|
+
"@applicaster/applicaster-types": "15.0.0-rc.102",
|
|
32
|
+
"@applicaster/quick-brick-core-plugins": "15.0.0-rc.102",
|
|
33
|
+
"@applicaster/zapp-pipes-v2-client": "15.0.0-rc.102",
|
|
34
|
+
"@applicaster/zapp-react-native-bridge": "15.0.0-rc.102",
|
|
35
|
+
"@applicaster/zapp-react-native-redux": "15.0.0-rc.102",
|
|
36
|
+
"@applicaster/zapp-react-native-ui-components": "15.0.0-rc.102",
|
|
37
|
+
"@applicaster/zapp-react-native-utils": "15.0.0-rc.102",
|
|
38
38
|
"atob": "^2.1.2",
|
|
39
39
|
"axios": "^0.28.0",
|
|
40
40
|
"btoa": "^1.2.1",
|