@byteluck-fe/runtime-desktop-controls 1.2.11-beta → 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/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "@byteluck-fe/runtime-desktop-controls",
3
- "version": "1.2.11-beta",
3
+ "version": "2.0.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/runtime-desktop-controls.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "scripts": {
9
9
  "test": "echo \"Error: no test specified\" && exit 1",
10
- "serve": "vue-cli-service serve",
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,10 +21,10 @@
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.3.4",
27
- "@vue/reactivity": "3.3.4",
28
- "@vue/runtime-core": "3.3.4",
29
- "@vue/shared": "^3.3.4"
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"
30
28
  },
31
29
  "dependencies": {},
32
30
  "devDependencies": {
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import RokControl from './registerControl';
2
- export * from './locales';
3
- export default RokControl;
@@ -1,17 +0,0 @@
1
- import { App } from 'vue';
2
- import { default as __DTS_1__ } from 'ok-i18n';
3
- import { useI18n } from './vue-i18n';
4
- declare const LOCALE_KEY = "local";
5
- declare enum LocaleEnum {
6
- zh = "zh-CN",
7
- en = "en-US",
8
- ja = "ja-JP"
9
- }
10
- declare const locale: string;
11
- declare const i18n: {
12
- global: __DTS_1__;
13
- locale: string;
14
- $t: (path: string, fallback: string, variables?: Record<string, string | number> | undefined) => string;
15
- install(app: App<any>): void;
16
- };
17
- export { i18n, LocaleEnum, LOCALE_KEY, useI18n, locale };
@@ -1,11 +0,0 @@
1
- import { App } from 'vue';
2
- import { OkI18n, OkI18nOptions } from 'ok-i18n';
3
- export declare function install(app: App, i18n: OkI18n): void;
4
- export declare function useI18n(): OkI18n;
5
- export declare function createI18n(options: OkI18nOptions): {
6
- global: OkI18n;
7
- locale: string;
8
- $t: (path: string, fallback: string, variables?: Record<string, string | number> | undefined) => string;
9
- install(app: App): void;
10
- };
11
- export default install;