halo-fe 1.0.17 → 1.0.19
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/main.js +1965 -1888
- package/esm/drivers/cdns/Cdn.d.ts +2 -2
- package/esm/drivers/i18ns/I18n.d.ts +41 -0
- package/esm/drivers/i18ns/I18nFactory.d.ts +13 -0
- package/esm/drivers/i18ns/II18n.d.ts +66 -0
- package/esm/drivers/i18ns/implements/DefaultI18n.d.ts +13 -0
- package/esm/drivers/i18ns/index.d.ts +3 -0
- package/esm/drivers/index.d.ts +1 -0
- package/esm/factorying/Factories.d.ts +20 -11
- package/esm/factorying/Factory.d.ts +1 -0
- package/esm/factorying/index.d.ts +16 -4
- package/esm/helpers/ArrayHelper.d.ts +4 -0
- package/esm/helpers/JsonHelper.d.ts +5 -1
- package/esm/repos/IRepo.d.ts +4 -0
- package/esm/repos/RepoFactory.d.ts +5 -0
- package/esm/repos/implements/SettingRepo.d.ts +15 -0
- package/esm/repos/index.d.ts +1 -1
- package/esm/svcs/SvcFactory.d.ts +4 -3
- package/esm/svcs/entities/AppConfig.d.ts +30 -0
- package/esm/svcs/entities/SysConfig.d.ts +8 -0
- package/esm/svcs/entities/UserConfig.d.ts +7 -0
- package/esm/svcs/entities/index.d.ts +4 -0
- package/esm/svcs/implement/ConfigSvc.d.ts +17 -28
- package/esm/svcs/implement/DriverSvc.d.ts +3 -1
- package/esm/svcs/implement/index.d.ts +1 -2
- package/esm/svcs/index.d.ts +2 -7
- package/esm/svcs/types/Dictionary.d.ts +4 -0
- package/esm/svcs/types/index.d.ts +2 -0
- package/esm/types/CreateFeOptions.d.ts +7 -6
- package/esm/utilities/SaveUtility.d.ts +15 -0
- package/esm/utilities/index.d.ts +2 -1
- package/package.json +2 -3
- package/dist/assets/@intlify-BISCQg1h.js +0 -2189
- package/dist/assets/@vue-aVYGocXp.js +0 -93
- package/dist/assets/vue-i18n-CLr3brPz.js +0 -1670
@@ -18,7 +18,7 @@ declare abstract class Cdn implements ICdn {
|
|
18
18
|
getQuill(basePath?: string): Promise<any>;
|
19
19
|
abstract getWeiXin(): Promise<any>;
|
20
20
|
abstract getXlsx(): Promise<any>;
|
21
|
-
loadFilesAsync(path: string, files: string[]
|
21
|
+
loadFilesAsync(path: string, files: string[]): Promise<void>;
|
22
22
|
loadAsync(path: string | string[]): Promise<HTMLElement[]>;
|
23
23
|
/**
|
24
24
|
* 异步加载脚本/样式内容,把内容处理为行内html
|
@@ -28,6 +28,6 @@ declare abstract class Cdn implements ICdn {
|
|
28
28
|
/**
|
29
29
|
* 通过注入DOM标签异步加载脚本或样式表,已防重
|
30
30
|
*/
|
31
|
-
loadResourceAsync: (url: string | string[]
|
31
|
+
loadResourceAsync: (url: string | string[]) => Promise<HTMLElement[]>;
|
32
32
|
}
|
33
33
|
export default Cdn;
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import II18n from "./II18n";
|
2
|
+
declare abstract class I18n implements II18n {
|
3
|
+
type: string;
|
4
|
+
lang: string;
|
5
|
+
messages: {
|
6
|
+
[key: string]: any;
|
7
|
+
};
|
8
|
+
open(conn?: string): Promise<void>;
|
9
|
+
t: (key: string, params?: any) => string;
|
10
|
+
abstract translate(key: string, params: any): string;
|
11
|
+
abstract t_exists(key: string): boolean;
|
12
|
+
t_menu: (key: string) => string;
|
13
|
+
t_module: (type: string, key: string) => string;
|
14
|
+
t_table: (table: string) => string;
|
15
|
+
t_field: (table: string, field: string) => string;
|
16
|
+
t_enum: (name: string, value: string) => string;
|
17
|
+
t_field_placeholder: (table: string, field: string) => string;
|
18
|
+
t_field_choose_placeholder: (table: string, field: string) => string;
|
19
|
+
t_sys: (key: string) => string;
|
20
|
+
t_title: () => string;
|
21
|
+
/**
|
22
|
+
* 根据key设置多语言标题
|
23
|
+
*/
|
24
|
+
setI18nTitle: (key: string) => void;
|
25
|
+
/**
|
26
|
+
* 设置标题
|
27
|
+
*/
|
28
|
+
setTitle: (title?: string, env?: string) => void;
|
29
|
+
/**
|
30
|
+
* 添加自定义多语言包
|
31
|
+
*/
|
32
|
+
addMessages: (messages: {
|
33
|
+
[key: string]: string;
|
34
|
+
}) => void;
|
35
|
+
abstract loadI18n(lang: string): Promise<void>;
|
36
|
+
/**
|
37
|
+
* 切换语言,自动加载菜单
|
38
|
+
*/
|
39
|
+
switchI18n: (lang: string) => Promise<void>;
|
40
|
+
}
|
41
|
+
export default I18n;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import Factory from "../../factorying/Factory";
|
2
|
+
import II18n from "./II18n";
|
3
|
+
/**
|
4
|
+
* 多语言工厂
|
5
|
+
*/
|
6
|
+
declare class I18nFactory extends Factory<II18n> {
|
7
|
+
open(): void;
|
8
|
+
/**
|
9
|
+
* 获取默认多语言
|
10
|
+
*/
|
11
|
+
getDefault(): Promise<II18n>;
|
12
|
+
}
|
13
|
+
export default I18nFactory;
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import { IDriver, IOpen } from "../types";
|
2
|
+
/**
|
3
|
+
* 多语言翻译接口
|
4
|
+
*/
|
5
|
+
interface II18n extends IDriver, IOpen {
|
6
|
+
/**
|
7
|
+
* 当前语言
|
8
|
+
*/
|
9
|
+
lang: string;
|
10
|
+
/**
|
11
|
+
* 多语言翻译文案
|
12
|
+
*/
|
13
|
+
messages: {
|
14
|
+
[key: string]: any;
|
15
|
+
};
|
16
|
+
/**
|
17
|
+
* 翻译指定key,不存在使用默认值
|
18
|
+
*/
|
19
|
+
t(key: string, params?: any): string;
|
20
|
+
/**
|
21
|
+
* 判断指定key是否存在
|
22
|
+
*/
|
23
|
+
t_exists(key: any): boolean;
|
24
|
+
/**
|
25
|
+
* 业务翻译:菜单多语言、多个窗口的多语言同时切换,而不用重载接口
|
26
|
+
*/
|
27
|
+
t_menu(key: string): string;
|
28
|
+
/**
|
29
|
+
* 模块业务翻译
|
30
|
+
*/
|
31
|
+
t_module(type: string, key: string): string;
|
32
|
+
/**
|
33
|
+
* 业务翻译:菜单多余言、多个窗口的多语言同时切换,而不用重载接口
|
34
|
+
*/
|
35
|
+
t_table(table: string): string;
|
36
|
+
/**
|
37
|
+
* 业务翻译:菜单多余言、多个窗口的多语言同时切换,而不用重载接口
|
38
|
+
* 注意:如果结果返回未完毕},则vue编译异常
|
39
|
+
*/
|
40
|
+
t_field(table: string, field: string): string;
|
41
|
+
/**
|
42
|
+
* 枚举翻译:菜单多余言、多个窗口的多语言同时切换,而不用重载接口
|
43
|
+
*/
|
44
|
+
t_enum(name: string, value: string): string;
|
45
|
+
/**
|
46
|
+
* 字段占位符翻译
|
47
|
+
*/
|
48
|
+
t_field_placeholder(table: string, field: string): string;
|
49
|
+
/**
|
50
|
+
* 字段占位符翻译
|
51
|
+
*/
|
52
|
+
t_field_choose_placeholder(table: string, field: string): string;
|
53
|
+
/**
|
54
|
+
* 系统翻译
|
55
|
+
*/
|
56
|
+
t_sys(key: string): string;
|
57
|
+
/**
|
58
|
+
* 系统标题
|
59
|
+
*/
|
60
|
+
t_title(): string;
|
61
|
+
/**
|
62
|
+
* 加载指定语言包
|
63
|
+
*/
|
64
|
+
loadI18n(lang?: string): Promise<void>;
|
65
|
+
}
|
66
|
+
export default II18n;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import I18n from "../I18n";
|
2
|
+
/**
|
3
|
+
* 默认翻译
|
4
|
+
* 不用vue-i18n的原因:对json内容的翻译报错无法消除,如:驱动Conn的多语言提示
|
5
|
+
*/
|
6
|
+
declare class DefaultI18n extends I18n {
|
7
|
+
type: string;
|
8
|
+
open(conn?: string): Promise<void>;
|
9
|
+
translate: (key: string, params?: any) => string;
|
10
|
+
t_exists: (key: string) => boolean;
|
11
|
+
loadI18n: (lang: string) => Promise<void>;
|
12
|
+
}
|
13
|
+
export default DefaultI18n;
|
package/esm/drivers/index.d.ts
CHANGED
@@ -1,18 +1,9 @@
|
|
1
|
-
import { BuilderFactory, CdnFactory, EncoderFactory, ExcelFactory, ExplainerFactory, FeatureFactory, HasherFactory, HttpFactory, MessengerFactory, ProviderFactory, SignerFactory, SsoFactory, TaskFactory, TemplateFactory } from "../drivers";
|
1
|
+
import { BuilderFactory, CdnFactory, EncoderFactory, ExcelFactory, ExplainerFactory, FeatureFactory, HasherFactory, I18nFactory, HttpFactory, MessengerFactory, ProviderFactory, SignerFactory, SsoFactory, TaskFactory, TemplateFactory } from "../drivers";
|
2
|
+
import { SvcFactory } from "../svcs";
|
2
3
|
/**
|
3
4
|
* 驱动工厂类
|
4
5
|
*/
|
5
6
|
declare class Factories {
|
6
|
-
/**
|
7
|
-
* 工厂缓存
|
8
|
-
*/
|
9
|
-
static mappings: {
|
10
|
-
[key: string]: any;
|
11
|
-
};
|
12
|
-
/**
|
13
|
-
* 并缓存工厂实例
|
14
|
-
*/
|
15
|
-
static create<T>(type: any): T;
|
16
7
|
/**
|
17
8
|
* Builder工厂
|
18
9
|
*/
|
@@ -45,6 +36,10 @@ declare class Factories {
|
|
45
36
|
* Http请求工厂
|
46
37
|
*/
|
47
38
|
static get http(): HttpFactory;
|
39
|
+
/**
|
40
|
+
* 多语言工厂
|
41
|
+
*/
|
42
|
+
static get i18n(): I18nFactory;
|
48
43
|
/**
|
49
44
|
* 消息提示请求工厂
|
50
45
|
*/
|
@@ -69,5 +64,19 @@ declare class Factories {
|
|
69
64
|
* 模板工厂
|
70
65
|
*/
|
71
66
|
static get template(): TemplateFactory;
|
67
|
+
/**
|
68
|
+
* 服务工厂
|
69
|
+
*/
|
70
|
+
static get svc(): SvcFactory;
|
71
|
+
/**
|
72
|
+
* 工厂缓存
|
73
|
+
*/
|
74
|
+
static mappings: {
|
75
|
+
[key: string]: any;
|
76
|
+
};
|
77
|
+
/**
|
78
|
+
* 并缓存工厂实例
|
79
|
+
*/
|
80
|
+
static create<T>(type: any): T;
|
72
81
|
}
|
73
82
|
export default Factories;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import Factories from "./Factories";
|
2
|
-
import { ICdn, IEncoder, IHasher, IHttp, IMessenger,
|
2
|
+
import { ICdn, IEncoder, IHasher, II18n, IHttp, IMessenger, ITemplate } from "../drivers";
|
3
3
|
import { CreateFeOptions } from "../types";
|
4
4
|
/**
|
5
5
|
* 默认base64编码
|
@@ -13,14 +13,18 @@ declare let cdn: ICdn;
|
|
13
13
|
* 默认Http请求对象
|
14
14
|
*/
|
15
15
|
declare let http: IHttp;
|
16
|
+
/**
|
17
|
+
* 多语言翻译对象
|
18
|
+
*/
|
19
|
+
declare let i18n: II18n;
|
16
20
|
/**
|
17
21
|
* MD5 hash计算
|
18
22
|
*/
|
19
23
|
declare let md5: IHasher;
|
20
24
|
/**
|
21
|
-
*
|
25
|
+
* 默认模板引擎
|
22
26
|
*/
|
23
|
-
declare let
|
27
|
+
declare let template: ITemplate;
|
24
28
|
/**
|
25
29
|
* 初始化消息对象,保证后续更新能够被同步更新
|
26
30
|
*/
|
@@ -29,4 +33,12 @@ declare let messenger: IMessenger;
|
|
29
33
|
* 初始化默认驱动实例
|
30
34
|
*/
|
31
35
|
declare let initDriver: (options: CreateFeOptions) => Promise<void>;
|
32
|
-
|
36
|
+
/**
|
37
|
+
* 设置好请求器后,才可以设置多语言
|
38
|
+
*/
|
39
|
+
declare let initI18n: () => Promise<void>;
|
40
|
+
/**
|
41
|
+
* 提取可导出的翻译方法,当i18n实例变化后,导出的方案会跟着变化?
|
42
|
+
*/
|
43
|
+
declare let t: {}, t_exists: {}, t_sys: {}, t_enum: {}, t_field: {}, t_field_choose_placeholder: {}, t_field_placeholder: {}, t_table: {}, t_module: {}, t_menu: {};
|
44
|
+
export { base64, cdn, http, i18n, md5, template, messenger, initDriver, initI18n, Factories, t, t_exists, t_sys, t_enum, t_field, t_field_choose_placeholder, t_field_placeholder, t_table, t_module, t_menu };
|
@@ -18,7 +18,11 @@ declare class JsonHelper {
|
|
18
18
|
/**
|
19
19
|
* 根据props中的.自动分割得到属性值
|
20
20
|
*/
|
21
|
-
static
|
21
|
+
static hasKey(value: any, props: string[]): boolean;
|
22
|
+
/**
|
23
|
+
* 根据props中的.自动分割得到属性值
|
24
|
+
*/
|
25
|
+
static getValue(value: any, props: string[]): any;
|
22
26
|
/**
|
23
27
|
* 把json字符串合并到目标对象上
|
24
28
|
*/
|
package/esm/repos/index.d.ts
CHANGED
package/esm/svcs/SvcFactory.d.ts
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
import Factory from "../factorying/Factory";
|
2
2
|
import ISvc from "./ISvc";
|
3
|
+
import ConfigSvc from "./implement/ConfigSvc";
|
3
4
|
/**
|
4
5
|
* 服务工厂类
|
5
6
|
*/
|
6
7
|
declare class SvcFactory extends Factory<ISvc> {
|
7
|
-
|
8
|
+
open(): void;
|
8
9
|
static(): void;
|
9
10
|
/**
|
10
|
-
*
|
11
|
+
* 获取配置服务
|
11
12
|
*/
|
12
|
-
|
13
|
+
getConfig(): Promise<ConfigSvc>;
|
13
14
|
}
|
14
15
|
export default SvcFactory;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/**
|
2
|
+
* 用户配置
|
3
|
+
*/
|
4
|
+
declare class AppConfig {
|
5
|
+
/**
|
6
|
+
* 默认背景
|
7
|
+
*/
|
8
|
+
background: string;
|
9
|
+
/**
|
10
|
+
* 当前主题
|
11
|
+
*/
|
12
|
+
theme: string;
|
13
|
+
/**
|
14
|
+
* 当前布局方式
|
15
|
+
*/
|
16
|
+
layout: string;
|
17
|
+
/**
|
18
|
+
* 当前语言
|
19
|
+
*/
|
20
|
+
language: string;
|
21
|
+
/**
|
22
|
+
* 字体
|
23
|
+
*/
|
24
|
+
font: string;
|
25
|
+
/**
|
26
|
+
* 默认cdn
|
27
|
+
*/
|
28
|
+
cdn: string;
|
29
|
+
}
|
30
|
+
export default AppConfig;
|
@@ -1,31 +1,15 @@
|
|
1
|
+
import { IDictionary } from "../types";
|
2
|
+
import { SysConfig, UserConfig } from "../entities";
|
3
|
+
import Svc from "../Svc";
|
1
4
|
/**
|
2
5
|
* 不一定跟用户相关,此时如果使用配置仓储,使用的是配置文件的配置,非接口配置
|
3
6
|
*/
|
4
|
-
declare class ConfigSvc {
|
7
|
+
declare class ConfigSvc extends Svc implements IDictionary {
|
8
|
+
type: string;
|
5
9
|
/**
|
6
|
-
*
|
10
|
+
* 用户系统配置
|
7
11
|
*/
|
8
|
-
|
9
|
-
/**
|
10
|
-
* 当前主题
|
11
|
-
*/
|
12
|
-
theme: string;
|
13
|
-
/**
|
14
|
-
* 当前布局方式
|
15
|
-
*/
|
16
|
-
layout: string;
|
17
|
-
/**
|
18
|
-
* 当前语言
|
19
|
-
*/
|
20
|
-
language: string;
|
21
|
-
/**
|
22
|
-
* 字体
|
23
|
-
*/
|
24
|
-
font: string;
|
25
|
-
/**
|
26
|
-
* 默认cdn
|
27
|
-
*/
|
28
|
-
cdn: string;
|
12
|
+
sys: SysConfig;
|
29
13
|
/**
|
30
14
|
* 文件布局方式
|
31
15
|
*/
|
@@ -43,10 +27,11 @@ declare class ConfigSvc {
|
|
43
27
|
*/
|
44
28
|
completions: {};
|
45
29
|
};
|
30
|
+
open(): void;
|
46
31
|
/**
|
47
32
|
* 初始化配置值(不一定跟登录用户相关,这也是单独分离的好处)
|
48
33
|
*/
|
49
|
-
|
34
|
+
bind(configs: UserConfig[]): Promise<void>;
|
50
35
|
/**
|
51
36
|
* 尝试添加架构
|
52
37
|
*/
|
@@ -54,23 +39,27 @@ declare class ConfigSvc {
|
|
54
39
|
/**
|
55
40
|
* 获取本地配置
|
56
41
|
*/
|
57
|
-
|
42
|
+
get(kind: string, type: string): Promise<any>;
|
58
43
|
/**
|
59
44
|
* 设置背景
|
60
45
|
*/
|
61
46
|
setBackground(background: string): void;
|
47
|
+
/**
|
48
|
+
* 保存用户应用配置
|
49
|
+
*/
|
50
|
+
saveApp(form: any): Promise<void>;
|
62
51
|
/**
|
63
52
|
* 加载用户配置
|
64
53
|
*/
|
65
|
-
|
54
|
+
load(kind: string, type: string, cached?: boolean): Promise<any>;
|
66
55
|
/**
|
67
56
|
* 全量保存用户配置
|
68
57
|
*/
|
69
|
-
|
58
|
+
save(kind: string, type: string, data: any, cached?: boolean): Promise<boolean>;
|
70
59
|
/**
|
71
60
|
* 部分保存用户配置
|
72
61
|
*/
|
73
|
-
|
62
|
+
patch(kind: string, type: string, pairs: any): Promise<boolean>;
|
74
63
|
/**
|
75
64
|
* 获取当前语言
|
76
65
|
*/
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export { I18nSvc };
|
1
|
+
export {};
|
package/esm/svcs/index.d.ts
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
import { I18nSvc } from "./implement";
|
2
1
|
import ConfigSvc from "./implement/ConfigSvc";
|
3
2
|
import EnvSvc from "./implement/EnvSvc";
|
4
3
|
import LogSvc from "./implement/LogSvc";
|
@@ -14,6 +13,7 @@ declare let configSvc: ConfigSvc;
|
|
14
13
|
* 包装配置服务,保证驱动服务具有响应式,并且不需.value后缀
|
15
14
|
*/
|
16
15
|
declare let driverSvc: {
|
16
|
+
type: string;
|
17
17
|
loaded: {
|
18
18
|
apps: boolean;
|
19
19
|
envs: boolean;
|
@@ -28,7 +28,6 @@ declare let driverSvc: {
|
|
28
28
|
loadEnvs: (reload?: boolean) => Promise<void>;
|
29
29
|
};
|
30
30
|
declare let envSvc: EnvSvc;
|
31
|
-
declare let i18nSvc: I18nSvc;
|
32
31
|
declare let logSvc: LogSvc;
|
33
32
|
declare let settingSvc: {
|
34
33
|
loaded: boolean;
|
@@ -64,8 +63,4 @@ declare let userSvc: UserSvc;
|
|
64
63
|
*/
|
65
64
|
declare let initSvc: (options: CreateFeOptions) => Promise<void>;
|
66
65
|
export * from "./implement";
|
67
|
-
|
68
|
-
* 提取可导出的翻译方法,当i18nSvc实例变化后,导出的方案会跟着变化?
|
69
|
-
*/
|
70
|
-
declare let t: (key: string, params?: any, display?: string) => any, t_exists: (key: any) => any, t_sys: (key: string) => any, t_enum: (name: string, value: string) => any, t_field: (table: string, field: string) => any, t_field_choose_placeholder: (table: string, field: string) => any, t_field_placeholder: (table: string, field: string) => any, t_table: (table: string) => any, t_module: (type: string, key: string) => string, t_menu: (key: string) => any;
|
71
|
-
export { initSvc, configSvc, driverSvc, envSvc, i18nSvc, logSvc, settingSvc, socketSvc, userSvc, t, t_exists, t_sys, t_enum, t_field, t_field_choose_placeholder, t_field_placeholder, t_table, t_module, t_menu, SvcFactory };
|
66
|
+
export { initSvc, configSvc, driverSvc, envSvc, logSvc, settingSvc, socketSvc, userSvc, SvcFactory };
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { IMessenger } from "../drivers";
|
2
|
-
import I18nSvc from "../svcs/implement/I18nSvc";
|
3
2
|
/**
|
4
3
|
* 初始化选项
|
5
4
|
*/
|
@@ -8,17 +7,19 @@ declare class CreateFeOptions {
|
|
8
7
|
* 消息发送对象
|
9
8
|
*/
|
10
9
|
messenger: IMessenger;
|
11
|
-
/**
|
12
|
-
* 实际的多语言翻译服务实体
|
13
|
-
*/
|
14
|
-
i18nSvc: I18nSvc;
|
15
10
|
/**
|
16
11
|
* 基准请求地址
|
17
12
|
*/
|
18
13
|
baseUrl: string;
|
14
|
+
/**
|
15
|
+
* 自定义语言包
|
16
|
+
*/
|
17
|
+
lang: {
|
18
|
+
[key: string]: any;
|
19
|
+
};
|
19
20
|
/**
|
20
21
|
* CDN类型
|
21
22
|
*/
|
22
|
-
cdn: 'Local' | "Third";
|
23
|
+
cdn: 'Local' | "Third" | string;
|
23
24
|
}
|
24
25
|
export default CreateFeOptions;
|
package/esm/utilities/index.d.ts
CHANGED
@@ -2,5 +2,6 @@ import EventUtility from "./EventUtility";
|
|
2
2
|
import KeyboardUtility from "./KeyboardUtility";
|
3
3
|
import ListDelta from "./ListDelta";
|
4
4
|
import MouseUtility from "./MouseUtility";
|
5
|
+
import SaveUtility from "./SaveUtility";
|
5
6
|
export * from "./types";
|
6
|
-
export { EventUtility, KeyboardUtility, ListDelta, MouseUtility, };
|
7
|
+
export { EventUtility, KeyboardUtility, ListDelta, MouseUtility, SaveUtility };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "halo-fe",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.19",
|
4
4
|
"description": "Halo front end sdk",
|
5
5
|
"scripts": {
|
6
6
|
"halo-fe:tsc": "vue-tsc",
|
@@ -29,8 +29,7 @@
|
|
29
29
|
"registry": "https://registry.npmjs.org"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
|
-
"vue": "3.4.37"
|
33
|
-
"vue-i18n": "9.13.1"
|
32
|
+
"vue": "3.4.37"
|
34
33
|
},
|
35
34
|
"dependencies": {
|
36
35
|
"clone": "2.1.2",
|