@ray-js/runtime 1.6.24 → 1.6.26
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/lib/index.d.ts +5 -5
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -6,9 +6,9 @@ export { useAppEvent } from './useAppEvent';
|
|
|
6
6
|
export { usePageEvent } from './usePageEvent';
|
|
7
7
|
export { withPageLifecycle } from './withPageLifecycle';
|
|
8
8
|
export { getCurrent } from './current';
|
|
9
|
-
export declare const useNativeEffect: typeof runtime['useNativeEffect'];
|
|
10
|
-
export declare const useQuery: typeof runtime['useQuery'];
|
|
11
|
-
export declare const usePageInstance: typeof runtime['usePageInstance'];
|
|
12
|
-
export declare const useComponentInstance: typeof runtime['useComponentInstance'];
|
|
9
|
+
export declare const useNativeEffect: (typeof runtime)['useNativeEffect'];
|
|
10
|
+
export declare const useQuery: (typeof runtime)['useQuery'];
|
|
11
|
+
export declare const usePageInstance: (typeof runtime)['usePageInstance'];
|
|
12
|
+
export declare const useComponentInstance: (typeof runtime)['useComponentInstance'];
|
|
13
13
|
export declare const createPortal: typeof runtime.createPortal;
|
|
14
|
-
export declare const useModal: typeof runtime['useModal'];
|
|
14
|
+
export declare const useModal: (typeof runtime)['useModal'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ray-js/runtime",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.26",
|
|
4
4
|
"description": "Ray cross runtime",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ray"
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"@ray-core/runtime": "^0.4.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@ray-js/cli": "1.6.
|
|
31
|
-
"@ray-js/types": "1.6.
|
|
30
|
+
"@ray-js/cli": "1.6.26",
|
|
31
|
+
"@ray-js/types": "1.6.26"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public",
|
|
35
35
|
"registry": "https://registry.npmjs.com"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d842231dd15303495069483a809a71dbc640ebaf"
|
|
38
38
|
}
|