@applicaster/zapp-react-native-ui-components 14.0.0-alpha.1054425138 → 14.0.0-alpha.1661204539
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.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { playerManager } from "@applicaster/zapp-react-native-utils/appUtils";
|
|
2
|
-
import { StorageSingleValueProvider } from "@applicaster/zapp-react-native-
|
|
2
|
+
import { StorageSingleValueProvider } from "@applicaster/zapp-react-native-utils/storage/StorageSingleSelectProvider";
|
|
3
3
|
import { PushTopicManager } from "@applicaster/zapp-react-native-bridge/PushNotifications/PushTopicManager";
|
|
4
|
-
import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-
|
|
4
|
+
import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-utils/storage/StorageMultiSelectProvider";
|
|
5
5
|
import React, { useEffect } from "react";
|
|
6
6
|
import { usePlayer } from "@applicaster/zapp-react-native-utils/appUtils/playerManager/usePlayer";
|
|
7
7
|
import { BehaviorSubject } from "rxjs";
|
|
8
8
|
import { masterCellLogger } from "../logger";
|
|
9
9
|
import get from "lodash/get";
|
|
10
|
-
import { ScreenMultiSelectProvider } from "@applicaster/zapp-react-native-
|
|
11
|
-
import { ScreenSingleValueProvider } from "@applicaster/zapp-react-native-
|
|
10
|
+
import { ScreenMultiSelectProvider } from "@applicaster/zapp-react-native-utils/storage/ScreenStateMultiSelectProvider";
|
|
11
|
+
import { ScreenSingleValueProvider } from "@applicaster/zapp-react-native-utils/storage/ScreenSingleValueProvider";
|
|
12
12
|
import { useRoute } from "@applicaster/zapp-react-native-utils/reactHooks";
|
|
13
13
|
|
|
14
14
|
const parseContextKey = (
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
loadDatasources,
|
|
14
14
|
usePipesContexts,
|
|
15
15
|
} from "./utils";
|
|
16
|
-
import { useScreenResolvers } from "
|
|
16
|
+
import { useScreenResolvers } from "@applicaster/zapp-react-native-utils/actionsExecutor/screenResolver";
|
|
17
17
|
|
|
18
18
|
type RiverProps = {
|
|
19
19
|
dispatch: DispatchProp;
|
|
@@ -23,7 +23,6 @@ import {
|
|
|
23
23
|
subscribeForUrlContextKeyChanges,
|
|
24
24
|
subscribeForUrlScreenKeyChanges,
|
|
25
25
|
} from "@applicaster/zapp-pipes-v2-client";
|
|
26
|
-
import { ScreenStateResolver } from "@applicaster/zapp-react-native-utils/appUtils/contextKeysManager/contextResolver";
|
|
27
26
|
|
|
28
27
|
type Props = {
|
|
29
28
|
component: ZappUIComponent;
|
|
@@ -204,10 +203,6 @@ const useGetStaticFeed = (getter, component, index) => {
|
|
|
204
203
|
return { url, loading, data, error };
|
|
205
204
|
};
|
|
206
205
|
|
|
207
|
-
export const useScreenResolvers = (screenRoute: string) => {
|
|
208
|
-
return { screen: new ScreenStateResolver(screenRoute) };
|
|
209
|
-
};
|
|
210
|
-
|
|
211
206
|
export function zappPipesDataConnector(
|
|
212
207
|
Component: React.FC<any> | React.ComponentClass<any>
|
|
213
208
|
) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-ui-components",
|
|
3
|
-
"version": "14.0.0-alpha.
|
|
3
|
+
"version": "14.0.0-alpha.1661204539",
|
|
4
4
|
"description": "Applicaster Zapp React Native ui components for the Quick Brick App",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"redux-mock-store": "^1.5.3"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@applicaster/applicaster-types": "14.0.0-alpha.
|
|
35
|
-
"@applicaster/zapp-react-native-bridge": "14.0.0-alpha.
|
|
36
|
-
"@applicaster/zapp-react-native-redux": "14.0.0-alpha.
|
|
37
|
-
"@applicaster/zapp-react-native-utils": "14.0.0-alpha.
|
|
34
|
+
"@applicaster/applicaster-types": "14.0.0-alpha.1661204539",
|
|
35
|
+
"@applicaster/zapp-react-native-bridge": "14.0.0-alpha.1661204539",
|
|
36
|
+
"@applicaster/zapp-react-native-redux": "14.0.0-alpha.1661204539",
|
|
37
|
+
"@applicaster/zapp-react-native-utils": "14.0.0-alpha.1661204539",
|
|
38
38
|
"promise": "^8.3.0",
|
|
39
39
|
"url": "^0.11.0",
|
|
40
40
|
"uuid": "^3.3.2"
|