@byteluck-fe/runtime-mobile-controls 1.2.4 → 2.0.1
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/dist/packages/runtime-mobile-controls/src/index.d.ts +3 -0
- package/dist/packages/runtime-mobile-controls/src/locales.d.ts +0 -0
- package/dist/packages/runtime-mobile-controls/src/registerControl.d.ts +4 -0
- package/dist/runtime-mobile-controls.js +44059 -30765
- package/dist/style.css +1 -1
- package/package.json +8 -11
- package/dist/index.d.ts +0 -29
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"name": "@byteluck-fe/runtime-mobile-controls",
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/runtime-mobile-controls.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
10
|
-
"
|
|
11
|
-
"build": "rollup -c",
|
|
12
|
-
"build:vite": "vite build",
|
|
10
|
+
"build": "vite build",
|
|
13
11
|
"lint": "vue-cli-service lint",
|
|
14
12
|
"release:patch": "npm run build && standard-version --release-as patch",
|
|
15
13
|
"release:minor": "npm run build && standard-version --release-as minor",
|
|
@@ -23,13 +21,12 @@
|
|
|
23
21
|
"registry": "https://registry.npmjs.org/",
|
|
24
22
|
"access": "public",
|
|
25
23
|
"@vue/babel-preset-app": "~5.0.0",
|
|
26
|
-
"@vue/compiler-sfc": "3.
|
|
27
|
-
"@vue/reactivity": "3.
|
|
28
|
-
"@vue/runtime-core": "3.
|
|
29
|
-
"@vue/shared": "^3.
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
24
|
+
"@vue/compiler-sfc": "3.4.27",
|
|
25
|
+
"@vue/reactivity": "3.4.27",
|
|
26
|
+
"@vue/runtime-core": "3.4.27",
|
|
27
|
+
"@vue/shared": "^3.4.27"
|
|
32
28
|
},
|
|
29
|
+
"dependencies": {},
|
|
33
30
|
"devDependencies": {
|
|
34
31
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
35
32
|
"@vitejs/plugin-vue-jsx": "^3.0.2",
|
package/dist/index.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { App } from 'vue';
|
|
2
|
-
import { default as default_2 } from 'ok-i18n';
|
|
3
|
-
import { OkI18n } from 'ok-i18n';
|
|
4
|
-
|
|
5
|
-
declare const _default: {
|
|
6
|
-
install(Vue: any): void;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
|
|
10
|
-
export declare const i18n: {
|
|
11
|
-
global: default_2;
|
|
12
|
-
locale: string;
|
|
13
|
-
$t: (path: string, fallback: string, variables?: Record<string, string | number> | undefined) => string;
|
|
14
|
-
install(app: App<any>): void;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export declare const locale: string;
|
|
18
|
-
|
|
19
|
-
export declare const LOCALE_KEY = "local";
|
|
20
|
-
|
|
21
|
-
export declare enum LocaleEnum {
|
|
22
|
-
zh = "zh-CN",
|
|
23
|
-
en = "en-US",
|
|
24
|
-
ja = "ja-JP"
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export declare function useI18n(): OkI18n;
|
|
28
|
-
|
|
29
|
-
export { }
|