@ray-js/api 0.6.27 → 0.6.28
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 +1 -1
- package/lib/index.js +1 -1
- package/lib/panel/index.d.ts +3 -3
- package/lib/panel/index.js +12 -5
- package/lib/panel/index.thing.d.ts +4 -0
- package/lib/panel/index.thing.js +6 -0
- package/package.json +5 -5
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
package/lib/panel/index.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
declare const
|
1
|
+
declare const initPanelEnvironment: () => void;
|
2
|
+
declare const publishDps: () => void;
|
3
|
+
declare const I18N: () => void;
|
4
4
|
export { initPanelEnvironment, publishDps, I18N };
|
package/lib/panel/index.js
CHANGED
@@ -1,6 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
var initPanelEnvironment = function () {
|
2
|
+
console.log('暂未实现');
|
3
|
+
};
|
4
|
+
|
5
|
+
var publishDps = function () {
|
6
|
+
console.log('暂未实现');
|
7
|
+
};
|
8
|
+
|
9
|
+
var I18N = function () {
|
10
|
+
console.log('暂未实现');
|
11
|
+
};
|
12
|
+
|
6
13
|
export { initPanelEnvironment, publishDps, I18N };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ray-js/api",
|
3
|
-
"version": "0.6.
|
3
|
+
"version": "0.6.28",
|
4
4
|
"description": "Ray universal api",
|
5
5
|
"keywords": [
|
6
6
|
"ray"
|
@@ -26,12 +26,12 @@
|
|
26
26
|
"build:kit:api": "node scripts/api-creator.mjs"
|
27
27
|
},
|
28
28
|
"dependencies": {
|
29
|
-
"@ray-js/framework": "^0.6.
|
29
|
+
"@ray-js/framework": "^0.6.28",
|
30
30
|
"@ray-js/panel-sdk": "^1.2.2",
|
31
|
-
"@ray-js/router": "^0.6.
|
31
|
+
"@ray-js/router": "^0.6.28"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
|
-
"@ray-js/cli": "^0.6.
|
34
|
+
"@ray-js/cli": "^0.6.28",
|
35
35
|
"art-template": "^4.13.2",
|
36
36
|
"fs-extra": "^10.1.0",
|
37
37
|
"miniprogram-api-typings": "^3.4.3",
|
@@ -46,6 +46,6 @@
|
|
46
46
|
"email": "tuyafe@tuya.com"
|
47
47
|
}
|
48
48
|
],
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "85e0a013e99de043d2b185f213d7ddb3e57ebfc5",
|
50
50
|
"repository": {}
|
51
51
|
}
|