@kengic/vue 0.30.1-beta.48 → 0.30.1-beta.49
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/kengic-vue.js +30426 -30934
- package/dist/src/config/config.store.d.ts +2 -2
- package/dist/src/const/const.model.d.ts +18 -34
- package/dist/src/i18n/cs_CZ.d.ts +235 -298
- package/dist/src/i18n/en.d.ts +234 -297
- package/dist/src/i18n/es_ES.d.ts +235 -297
- package/dist/src/i18n/fr_FR.d.ts +235 -297
- package/dist/src/i18n/km_KH.d.ts +235 -297
- package/dist/src/i18n/ko_KR.d.ts +235 -297
- package/dist/src/i18n/vi_VN.d.ts +235 -297
- package/dist/src/i18n/zh_CN.d.ts +235 -298
- package/dist/src/project/src/hooks/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/src/project/src/hooks/web/useI18n.d.ts +0 -13
|
@@ -271,10 +271,10 @@ export interface IUseKgStoreActions {
|
|
|
271
271
|
/**
|
|
272
272
|
* 请求某组变量描述数据.
|
|
273
273
|
*
|
|
274
|
-
* @param param.
|
|
274
|
+
* @param param.fid 界面标识.
|
|
275
275
|
*/
|
|
276
276
|
requestVarConfigDescriptionList(param: {
|
|
277
|
-
|
|
277
|
+
fid: string | null | undefined;
|
|
278
278
|
}): Promise<void>;
|
|
279
279
|
/**
|
|
280
280
|
* 设置某组描述的数据.
|
|
@@ -33,20 +33,12 @@ export declare const KG: {
|
|
|
33
33
|
* 描述表中的键.
|
|
34
34
|
*/
|
|
35
35
|
DESCRIPTION_KEY: {
|
|
36
|
-
/**
|
|
37
|
-
* 所有翻译.
|
|
38
|
-
*/
|
|
39
|
-
ALL: string;
|
|
40
36
|
/**
|
|
41
37
|
* 该组件库的所有翻译.
|
|
42
38
|
*/
|
|
43
39
|
KG: string;
|
|
44
40
|
/**
|
|
45
|
-
*
|
|
46
|
-
*/
|
|
47
|
-
PDA: string;
|
|
48
|
-
/**
|
|
49
|
-
* 网页前端项目的所有翻译.
|
|
41
|
+
* 前端项目的所有翻译, 包含 PDA 的.
|
|
50
42
|
*/
|
|
51
43
|
WEB: string;
|
|
52
44
|
};
|
|
@@ -71,9 +63,8 @@ export declare const KG: {
|
|
|
71
63
|
*/
|
|
72
64
|
PROPS: InjectionKey<Partial<import("vue").ExtractPropTypes<{
|
|
73
65
|
id: {
|
|
74
|
-
type: import("vue").PropType<string>;
|
|
75
|
-
|
|
76
|
-
* 组件参数.
|
|
66
|
+
type: import("vue").PropType<string>; /**
|
|
67
|
+
* 表单.
|
|
77
68
|
*/
|
|
78
69
|
required: boolean;
|
|
79
70
|
};
|
|
@@ -92,11 +83,10 @@ export declare const KG: {
|
|
|
92
83
|
default: boolean;
|
|
93
84
|
};
|
|
94
85
|
}>>>;
|
|
95
|
-
};
|
|
86
|
+
}; /**
|
|
87
|
+
* 变量名称.
|
|
88
|
+
*/
|
|
96
89
|
kgIsEditable: {
|
|
97
|
-
/**
|
|
98
|
-
* 表单控件.
|
|
99
|
-
*/
|
|
100
90
|
type: import("vue").PropType<boolean>;
|
|
101
91
|
default: boolean;
|
|
102
92
|
};
|
|
@@ -109,7 +99,9 @@ export declare const KG: {
|
|
|
109
99
|
default: boolean;
|
|
110
100
|
};
|
|
111
101
|
kgIsResizable: {
|
|
112
|
-
type: import("vue").PropType<boolean>;
|
|
102
|
+
type: import("vue").PropType<boolean>; /**
|
|
103
|
+
* 左上侧面板.
|
|
104
|
+
*/
|
|
113
105
|
default: boolean;
|
|
114
106
|
};
|
|
115
107
|
}>>>;
|
|
@@ -397,20 +389,12 @@ export declare const KG_CONST: {
|
|
|
397
389
|
* 描述表中的键.
|
|
398
390
|
*/
|
|
399
391
|
DESCRIPTION_KEY: {
|
|
400
|
-
/**
|
|
401
|
-
* 所有翻译.
|
|
402
|
-
*/
|
|
403
|
-
ALL: string;
|
|
404
392
|
/**
|
|
405
393
|
* 该组件库的所有翻译.
|
|
406
394
|
*/
|
|
407
395
|
KG: string;
|
|
408
396
|
/**
|
|
409
|
-
*
|
|
410
|
-
*/
|
|
411
|
-
PDA: string;
|
|
412
|
-
/**
|
|
413
|
-
* 网页前端项目的所有翻译.
|
|
397
|
+
* 前端项目的所有翻译, 包含 PDA 的.
|
|
414
398
|
*/
|
|
415
399
|
WEB: string;
|
|
416
400
|
};
|
|
@@ -435,9 +419,8 @@ export declare const KG_CONST: {
|
|
|
435
419
|
*/
|
|
436
420
|
PROPS: InjectionKey<Partial<import("vue").ExtractPropTypes<{
|
|
437
421
|
id: {
|
|
438
|
-
type: import("vue").PropType<string>;
|
|
439
|
-
|
|
440
|
-
* 组件参数.
|
|
422
|
+
type: import("vue").PropType<string>; /**
|
|
423
|
+
* 表单.
|
|
441
424
|
*/
|
|
442
425
|
required: boolean;
|
|
443
426
|
};
|
|
@@ -456,11 +439,10 @@ export declare const KG_CONST: {
|
|
|
456
439
|
default: boolean;
|
|
457
440
|
};
|
|
458
441
|
}>>>;
|
|
459
|
-
};
|
|
442
|
+
}; /**
|
|
443
|
+
* 变量名称.
|
|
444
|
+
*/
|
|
460
445
|
kgIsEditable: {
|
|
461
|
-
/**
|
|
462
|
-
* 表单控件.
|
|
463
|
-
*/
|
|
464
446
|
type: import("vue").PropType<boolean>;
|
|
465
447
|
default: boolean;
|
|
466
448
|
};
|
|
@@ -473,7 +455,9 @@ export declare const KG_CONST: {
|
|
|
473
455
|
default: boolean;
|
|
474
456
|
};
|
|
475
457
|
kgIsResizable: {
|
|
476
|
-
type: import("vue").PropType<boolean>;
|
|
458
|
+
type: import("vue").PropType<boolean>; /**
|
|
459
|
+
* 左上侧面板.
|
|
460
|
+
*/
|
|
477
461
|
default: boolean;
|
|
478
462
|
};
|
|
479
463
|
}>>>;
|