@kengic/vue 0.25.2-beta.0 → 0.25.2-beta.2
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/index.css +1 -1
- package/dist/kengic-vue.js +890 -825
- package/dist/src/apis/WMS/models.d.ts +1 -1
- package/dist/src/consts/index.vm.d.ts +17 -0
- package/package.json +1 -1
@@ -615,7 +615,7 @@ export declare class VarGridConfig {
|
|
615
615
|
cmd_prm?: string | null;
|
616
616
|
/** 是否将排序字段转换为 under_score 命名方式. */
|
617
617
|
convert_sort_field_to_under_score_flg?: number | null;
|
618
|
-
/**
|
618
|
+
/** 是否一次只能展开一行. */
|
619
619
|
expand_accordion_flg?: number | null;
|
620
620
|
/** 界面标识(FormID). */
|
621
621
|
frm_id?: string | null;
|
@@ -174,6 +174,23 @@ export declare const enum KG__VAR_GRID_DETAIL__ALIGN {
|
|
174
174
|
CENTER = "center",
|
175
175
|
RIGHT = "right"
|
176
176
|
}
|
177
|
+
/**
|
178
|
+
* 单击某行时的操作.
|
179
|
+
*/
|
180
|
+
export declare const enum KG__VAR_GRID_CONFIG__OPERATION_ON_ROW_CLICK {
|
181
|
+
/**
|
182
|
+
* 不做操作.
|
183
|
+
*/
|
184
|
+
A = 0,
|
185
|
+
/**
|
186
|
+
* 勾选该行, 并取消其他勾选行.
|
187
|
+
*/
|
188
|
+
B = 1,
|
189
|
+
/**
|
190
|
+
* 勾选该行, 并保留其他勾选行.
|
191
|
+
*/
|
192
|
+
C = 2
|
193
|
+
}
|
177
194
|
/** @deprecated 已弃用, 请使用 {@link KG__VAR_BUTTON__TYPE}. */
|
178
195
|
export declare const enum KG_BUTTON_TYPE {
|
179
196
|
/** 查询. */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.25.2-beta.
|
3
|
+
"version": "0.25.2-beta.2",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run switch-node-version && rimraf dist && vue-tsc && vite build --mode development",
|