@kengic/vue 0.32.2 → 0.32.4-beta.0
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 +1628 -1626
- package/dist/kg.config.d.ts +3 -0
- package/dist/src/i18n/i18n.setup.d.ts +6 -4
- package/dist/src/model/index.d.ts +36 -44
- package/package.json +2 -2
|
@@ -2,19 +2,21 @@ import { IKgConfigParameter } from '../config';
|
|
|
2
2
|
import { DropMenu } from '../project/src/components/Dropdown/src/typing';
|
|
3
3
|
import { LocaleSetting } from '../project/types/config';
|
|
4
4
|
/** @deprecated 已弃用, 请使用 {@link KG.LOCALE} */
|
|
5
|
-
|
|
5
|
+
declare const LOCALE: {
|
|
6
6
|
CS_CZ: import("@kengic/core.core/src/model").IKgLocale;
|
|
7
7
|
EN: import("@kengic/core.core/src/model").IKgLocale;
|
|
8
8
|
ES_ES: import("@kengic/core.core/src/model").IKgLocale;
|
|
9
9
|
FR_FR: import("@kengic/core.core/src/model").IKgLocale;
|
|
10
10
|
KM_KH: import("@kengic/core.core/src/model").IKgLocale;
|
|
11
11
|
KO_KR: import("@kengic/core.core/src/model").IKgLocale;
|
|
12
|
+
TH_TH: import("@kengic/core.core/src/model").IKgLocale;
|
|
12
13
|
VI_VN: import("@kengic/core.core/src/model").IKgLocale;
|
|
13
14
|
ZH_CN: import("@kengic/core.core/src/model").IKgLocale;
|
|
14
15
|
};
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
declare let localeList: DropMenu[];
|
|
17
|
+
declare const localeSetting: LocaleSetting;
|
|
17
18
|
/**
|
|
18
19
|
* 配置语言.
|
|
19
20
|
*/
|
|
20
|
-
|
|
21
|
+
declare function kgConfigLocale(param?: IKgConfigParameter): void;
|
|
22
|
+
export { LOCALE, localeList, localeSetting, kgConfigLocale };
|
|
@@ -527,8 +527,7 @@ declare const KG: {
|
|
|
527
527
|
DESCRIPTION_KEY__WEB: string;
|
|
528
528
|
DYNAMIC_QUERY_OPERATOR__BETWEEN: string;
|
|
529
529
|
DYNAMIC_QUERY_OPERATOR__CONTAIN: string;
|
|
530
|
-
/** @deprecated 已废弃, 请使用 {@link KG.
|
|
531
|
-
DYNAMIC_QUERY_OPERATOR__EMPTY: string;
|
|
530
|
+
DYNAMIC_QUERY_OPERATOR__EMPTY: string; /** @deprecated 已废弃, 请使用 {@link KG.DB_TYPE__SQLSERVER} */
|
|
532
531
|
DYNAMIC_QUERY_OPERATOR__END_WITH: string;
|
|
533
532
|
DYNAMIC_QUERY_OPERATOR__EQ: string;
|
|
534
533
|
DYNAMIC_QUERY_OPERATOR__GT: string;
|
|
@@ -538,29 +537,28 @@ declare const KG: {
|
|
|
538
537
|
DYNAMIC_QUERY_OPERATOR__LTE: string;
|
|
539
538
|
DYNAMIC_QUERY_OPERATOR__NE: string;
|
|
540
539
|
DYNAMIC_QUERY_OPERATOR__NOT_EMPTY: string;
|
|
541
|
-
DYNAMIC_QUERY_OPERATOR__START_WITH: string;
|
|
540
|
+
DYNAMIC_QUERY_OPERATOR__START_WITH: string; /** @deprecated 已废弃, 请使用 KG.DESCRIPTION_KEY__KG */
|
|
542
541
|
HTTP_HEADER__KG_BUTTON_VAR_NAME: string;
|
|
543
542
|
HTTP_HEADER__KG_BUTTON_VNAME: string;
|
|
544
|
-
HTTP_HEADER__KG_DB_TYPE: string;
|
|
545
|
-
* 唯一标识.
|
|
546
|
-
*/
|
|
543
|
+
HTTP_HEADER__KG_DB_TYPE: string;
|
|
547
544
|
HTTP_HEADER__KG_FID: string;
|
|
548
545
|
HTTP_HEADER__KG_FORM_ID: string;
|
|
549
546
|
HTTP_HEADER__KG_IS_DYNAMIC_QUERY: string;
|
|
550
547
|
HTTP_HEADER__KG_PAGE_INDEX: string;
|
|
551
|
-
HTTP_HEADER__KG_PAGE_SIZE: string;
|
|
548
|
+
HTTP_HEADER__KG_PAGE_SIZE: string; /**
|
|
549
|
+
* <p>依赖注入表单数据对象.</p>
|
|
550
|
+
* <p>在表单组件(KgForm)的任何下级组件中, 都可以通过注入获取表单数据对象.</p>
|
|
551
|
+
*/
|
|
552
552
|
HTTP_HEADER__KG_QUERY_OFFSET_SQL: string;
|
|
553
553
|
HTTP_HEADER__KG_QUERY_OPERATOR_RECORD: string;
|
|
554
|
-
/**
|
|
555
|
-
* formRef.
|
|
556
|
-
*/
|
|
557
554
|
HTTP_HEADER__KG_QUERY_ORDER_BY_SQL: string;
|
|
558
|
-
HTTP_HEADER__KG_QUERY_SQL: string;
|
|
559
|
-
* 表单控件.
|
|
560
|
-
*/
|
|
555
|
+
HTTP_HEADER__KG_QUERY_SQL: string;
|
|
561
556
|
HTTP_HEADER__KG_QUERY_VALUE_RECORD: string;
|
|
562
557
|
HTTP_HEADER__KG_QUERY_WHERE_SQL: string;
|
|
563
558
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_01: string;
|
|
559
|
+
/**
|
|
560
|
+
* 模拟器.
|
|
561
|
+
*/
|
|
564
562
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_02: string;
|
|
565
563
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_03: string;
|
|
566
564
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_04: string;
|
|
@@ -572,30 +570,28 @@ declare const KG: {
|
|
|
572
570
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_10: string;
|
|
573
571
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_SEGMENT_RECORD: string;
|
|
574
572
|
HTTP_HEADER__KG_WAREHOUSE: string;
|
|
575
|
-
HTTP_HEADER__KG_WORK_AREA: string;
|
|
576
|
-
* 左上侧工具栏.
|
|
577
|
-
*/
|
|
573
|
+
HTTP_HEADER__KG_WORK_AREA: string;
|
|
578
574
|
HTTP_HEADER__KG_WORK_STATION: string;
|
|
579
575
|
LOCALE: {
|
|
580
|
-
CS_CZ: import("@kengic/core.core/src/model").IKgLocale;
|
|
581
|
-
EN: import("@kengic/core.core/src/model").IKgLocale; /**
|
|
576
|
+
CS_CZ: import("@kengic/core.core/src/model").IKgLocale; /**
|
|
582
577
|
* 右下侧工具栏.
|
|
583
578
|
*/
|
|
579
|
+
EN: import("@kengic/core.core/src/model").IKgLocale;
|
|
584
580
|
ES_ES: import("@kengic/core.core/src/model").IKgLocale;
|
|
585
581
|
FR_FR: import("@kengic/core.core/src/model").IKgLocale;
|
|
586
582
|
KM_KH: import("@kengic/core.core/src/model").IKgLocale;
|
|
587
|
-
|
|
583
|
+
/**
|
|
588
584
|
* 右上侧工具栏.
|
|
589
585
|
*/
|
|
586
|
+
KO_KR: import("@kengic/core.core/src/model").IKgLocale;
|
|
587
|
+
TH_TH: import("@kengic/core.core/src/model").IKgLocale;
|
|
590
588
|
VI_VN: import("@kengic/core.core/src/model").IKgLocale;
|
|
591
589
|
ZH_CN: import("@kengic/core.core/src/model").IKgLocale;
|
|
592
590
|
};
|
|
593
591
|
LOCALE_DATA_LIST: {
|
|
594
592
|
text: string;
|
|
595
593
|
code: string;
|
|
596
|
-
}[];
|
|
597
|
-
* 变量页面.
|
|
598
|
-
*/
|
|
594
|
+
}[];
|
|
599
595
|
};
|
|
600
596
|
/** @deprecated 已弃用, 请使用 {@link KG}. */
|
|
601
597
|
declare const KG_CONST: {
|
|
@@ -1118,8 +1114,7 @@ declare const KG_CONST: {
|
|
|
1118
1114
|
DESCRIPTION_KEY__WEB: string;
|
|
1119
1115
|
DYNAMIC_QUERY_OPERATOR__BETWEEN: string;
|
|
1120
1116
|
DYNAMIC_QUERY_OPERATOR__CONTAIN: string;
|
|
1121
|
-
/** @deprecated 已废弃, 请使用 {@link KG.
|
|
1122
|
-
DYNAMIC_QUERY_OPERATOR__EMPTY: string;
|
|
1117
|
+
DYNAMIC_QUERY_OPERATOR__EMPTY: string; /** @deprecated 已废弃, 请使用 {@link KG.DB_TYPE__SQLSERVER} */
|
|
1123
1118
|
DYNAMIC_QUERY_OPERATOR__END_WITH: string;
|
|
1124
1119
|
DYNAMIC_QUERY_OPERATOR__EQ: string;
|
|
1125
1120
|
DYNAMIC_QUERY_OPERATOR__GT: string;
|
|
@@ -1129,29 +1124,28 @@ declare const KG_CONST: {
|
|
|
1129
1124
|
DYNAMIC_QUERY_OPERATOR__LTE: string;
|
|
1130
1125
|
DYNAMIC_QUERY_OPERATOR__NE: string;
|
|
1131
1126
|
DYNAMIC_QUERY_OPERATOR__NOT_EMPTY: string;
|
|
1132
|
-
DYNAMIC_QUERY_OPERATOR__START_WITH: string;
|
|
1127
|
+
DYNAMIC_QUERY_OPERATOR__START_WITH: string; /** @deprecated 已废弃, 请使用 KG.DESCRIPTION_KEY__KG */
|
|
1133
1128
|
HTTP_HEADER__KG_BUTTON_VAR_NAME: string;
|
|
1134
1129
|
HTTP_HEADER__KG_BUTTON_VNAME: string;
|
|
1135
|
-
HTTP_HEADER__KG_DB_TYPE: string;
|
|
1136
|
-
* 唯一标识.
|
|
1137
|
-
*/
|
|
1130
|
+
HTTP_HEADER__KG_DB_TYPE: string;
|
|
1138
1131
|
HTTP_HEADER__KG_FID: string;
|
|
1139
1132
|
HTTP_HEADER__KG_FORM_ID: string;
|
|
1140
1133
|
HTTP_HEADER__KG_IS_DYNAMIC_QUERY: string;
|
|
1141
1134
|
HTTP_HEADER__KG_PAGE_INDEX: string;
|
|
1142
|
-
HTTP_HEADER__KG_PAGE_SIZE: string;
|
|
1135
|
+
HTTP_HEADER__KG_PAGE_SIZE: string; /**
|
|
1136
|
+
* <p>依赖注入表单数据对象.</p>
|
|
1137
|
+
* <p>在表单组件(KgForm)的任何下级组件中, 都可以通过注入获取表单数据对象.</p>
|
|
1138
|
+
*/
|
|
1143
1139
|
HTTP_HEADER__KG_QUERY_OFFSET_SQL: string;
|
|
1144
1140
|
HTTP_HEADER__KG_QUERY_OPERATOR_RECORD: string;
|
|
1145
|
-
/**
|
|
1146
|
-
* formRef.
|
|
1147
|
-
*/
|
|
1148
1141
|
HTTP_HEADER__KG_QUERY_ORDER_BY_SQL: string;
|
|
1149
|
-
HTTP_HEADER__KG_QUERY_SQL: string;
|
|
1150
|
-
* 表单控件.
|
|
1151
|
-
*/
|
|
1142
|
+
HTTP_HEADER__KG_QUERY_SQL: string;
|
|
1152
1143
|
HTTP_HEADER__KG_QUERY_VALUE_RECORD: string;
|
|
1153
1144
|
HTTP_HEADER__KG_QUERY_WHERE_SQL: string;
|
|
1154
1145
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_01: string;
|
|
1146
|
+
/**
|
|
1147
|
+
* 模拟器.
|
|
1148
|
+
*/
|
|
1155
1149
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_02: string;
|
|
1156
1150
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_03: string;
|
|
1157
1151
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_04: string;
|
|
@@ -1163,30 +1157,28 @@ declare const KG_CONST: {
|
|
|
1163
1157
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_10: string;
|
|
1164
1158
|
HTTP_HEADER__KG_QUERY_WHERE_SQL_SEGMENT_RECORD: string;
|
|
1165
1159
|
HTTP_HEADER__KG_WAREHOUSE: string;
|
|
1166
|
-
HTTP_HEADER__KG_WORK_AREA: string;
|
|
1167
|
-
* 左上侧工具栏.
|
|
1168
|
-
*/
|
|
1160
|
+
HTTP_HEADER__KG_WORK_AREA: string;
|
|
1169
1161
|
HTTP_HEADER__KG_WORK_STATION: string;
|
|
1170
1162
|
LOCALE: {
|
|
1171
|
-
CS_CZ: import("@kengic/core.core/src/model").IKgLocale;
|
|
1172
|
-
EN: import("@kengic/core.core/src/model").IKgLocale; /**
|
|
1163
|
+
CS_CZ: import("@kengic/core.core/src/model").IKgLocale; /**
|
|
1173
1164
|
* 右下侧工具栏.
|
|
1174
1165
|
*/
|
|
1166
|
+
EN: import("@kengic/core.core/src/model").IKgLocale;
|
|
1175
1167
|
ES_ES: import("@kengic/core.core/src/model").IKgLocale;
|
|
1176
1168
|
FR_FR: import("@kengic/core.core/src/model").IKgLocale;
|
|
1177
1169
|
KM_KH: import("@kengic/core.core/src/model").IKgLocale;
|
|
1178
|
-
|
|
1170
|
+
/**
|
|
1179
1171
|
* 右上侧工具栏.
|
|
1180
1172
|
*/
|
|
1173
|
+
KO_KR: import("@kengic/core.core/src/model").IKgLocale;
|
|
1174
|
+
TH_TH: import("@kengic/core.core/src/model").IKgLocale;
|
|
1181
1175
|
VI_VN: import("@kengic/core.core/src/model").IKgLocale;
|
|
1182
1176
|
ZH_CN: import("@kengic/core.core/src/model").IKgLocale;
|
|
1183
1177
|
};
|
|
1184
1178
|
LOCALE_DATA_LIST: {
|
|
1185
1179
|
text: string;
|
|
1186
1180
|
code: string;
|
|
1187
|
-
}[];
|
|
1188
|
-
* 变量页面.
|
|
1189
|
-
*/
|
|
1181
|
+
}[];
|
|
1190
1182
|
};
|
|
1191
1183
|
/**
|
|
1192
1184
|
* 模块.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.4-beta.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build--development": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@iconify-icons/mdi": "1.2.48",
|
|
51
51
|
"@iconify-icons/ph": "1.2.5",
|
|
52
52
|
"@iconify/vue": "4.1.2",
|
|
53
|
-
"@kengic/core.core": "0.0.
|
|
53
|
+
"@kengic/core.core": "0.0.7",
|
|
54
54
|
"@kengic/pont": "2.1.2",
|
|
55
55
|
"@rys-fe/vite-plugin-theme": "0.8.6",
|
|
56
56
|
"@thymine/xunee": "0.4.9-beta.47",
|