esoftplay 0.0.131-s → 0.0.131-u
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/bin/router.js +1 -1
- package/modules/lib/curl.ts +0 -2
- package/modules/lib/loading.tsx +1 -1
- package/package.json +1 -1
package/bin/router.js
CHANGED
|
@@ -677,7 +677,7 @@ function createRouter() {
|
|
|
677
677
|
staticImport.push("export function applyStyle(style){ return style };\n")
|
|
678
678
|
staticImport.push("export { default as useGlobalState } from '../../../node_modules/esoftplay/global';\n")
|
|
679
679
|
staticImport.push("export { default as usePersistState } from '../../../node_modules/esoftplay/persist';\n")
|
|
680
|
-
staticImport.push("export { default as
|
|
680
|
+
staticImport.push("export { default as useGlobalSubscriber } from '../../../node_modules/esoftplay/subscribe';\n")
|
|
681
681
|
staticImport.push("export { default as useSafeState } from '../../../node_modules/esoftplay/state';\n")
|
|
682
682
|
staticImport.push("export { default as useLazyState } from '../../../node_modules/esoftplay/lazy';\n")
|
|
683
683
|
staticImport.push("export { default as esp } from '../../../node_modules/esoftplay/esp';\n")
|
package/modules/lib/curl.ts
CHANGED
|
@@ -8,12 +8,10 @@ import { LibToastProperty } from 'esoftplay/cache/lib/toast/import';
|
|
|
8
8
|
import { LibUtils } from 'esoftplay/cache/lib/utils/import';
|
|
9
9
|
import { reportApiError } from "esoftplay/error";
|
|
10
10
|
import esp from 'esoftplay/esp';
|
|
11
|
-
import Constants from 'expo-constants';
|
|
12
11
|
|
|
13
12
|
//api_logger_import
|
|
14
13
|
|
|
15
14
|
|
|
16
|
-
const { manifest } = Constants;
|
|
17
15
|
|
|
18
16
|
export default class m {
|
|
19
17
|
controller = new AbortController()
|
package/modules/lib/loading.tsx
CHANGED