@kengic/vue 0.6.18-beta.0 → 0.7.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/dist/index.css +1 -1
- package/dist/kengic-vue.js +7871 -12341
- package/dist/src/components/KgVar/index.store.d.ts +8 -2
- package/dist/src/consts/index.d.ts +4 -2
- package/package.json +1 -2
@@ -193,9 +193,8 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
193
193
|
*
|
194
194
|
* @param frm_id
|
195
195
|
* @param value
|
196
|
-
* @param whenReady 是否等待变量配置数据加载完成.
|
197
196
|
*/
|
198
|
-
setIsUpdating(frm_id: string, value: boolean
|
197
|
+
setIsUpdating(frm_id: string, value: boolean): void;
|
199
198
|
setIsCopying(frm_id: string, value: boolean): void;
|
200
199
|
setIsDeleting(frm_id: string, deleting: boolean): void;
|
201
200
|
setIsCreatingRequesting(frm_id: string, value: boolean): void;
|
@@ -264,6 +263,13 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
264
263
|
* @param properties 要修改的部分属性.
|
265
264
|
*/
|
266
265
|
patchVarPossibilityCommandParameter(frm_id: string | null | undefined, var_nam: string | null | undefined, properties: Record<string, any>): void;
|
266
|
+
/**
|
267
|
+
* 拖拽排序 VarGridDetail 列表.
|
268
|
+
* @param frm_id 界面标识.
|
269
|
+
* @param from_var_nam 被拽起的变量名称
|
270
|
+
* @param to_var_nam 被放下的变量名称.
|
271
|
+
*/
|
272
|
+
dragSortCurrentVarGridDetails(frm_id: string | null | undefined, from_var_nam: string | null | undefined, to_var_nam: string | null | undefined): void;
|
267
273
|
}>;
|
268
274
|
export declare type IKgVarStore = ReturnType<IKgVarStoreDefinition>;
|
269
275
|
export declare const useKgVarStore: () => IKgVarStoreDefinition;
|
@@ -47,12 +47,14 @@ export declare const enum KG_FORM_ITEM_TYPE {
|
|
47
47
|
SELECT_MULTIPLE = "SELECT_MULTIPLE",
|
48
48
|
/** 年月日, 2020-05-01. */
|
49
49
|
DATE_DATE = "DATE_DATE",
|
50
|
+
/** 年月日的范围, [DATE_DATE, DATE_DATE] */
|
51
|
+
DATE_DATE_RANGE = "DATE_DATE_RANGE",
|
50
52
|
/** 时分秒, 11:59:59. */
|
51
53
|
DATE_TIME = "DATE_TIME",
|
54
|
+
/** 时分秒的范围, [DATE_TIME, DATE_TIME]. */
|
55
|
+
DATE_TIME_RANGE = "DATE_TIME_RANGE",
|
52
56
|
/** 年月日时分秒, 2020-05-01 11:59:59. */
|
53
57
|
DATE_DATETIME = "DATE_DATETIME",
|
54
|
-
/** 年月日的范围, [DATE_DATE, DATE_DATE] */
|
55
|
-
DATE_DATE_RANGE = "DATE_DATE_RANGE",
|
56
58
|
/** 年月日时分秒的范围, [DATE_DATETIME, DATE_DATETIME] */
|
57
59
|
DATE_DATETIME_RANGE = "DATE_DATETIME_RANGE",
|
58
60
|
DATE_WEEK = "DATE_WEEK",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.7.1",
|
4
4
|
"scripts": {
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
@@ -41,7 +41,6 @@
|
|
41
41
|
"axios": "0.26.1",
|
42
42
|
"dayjs": "1.11.6",
|
43
43
|
"filesize": "10.0.6",
|
44
|
-
"html2canvas": "1.4.1",
|
45
44
|
"lodash-es": "4.17.21",
|
46
45
|
"pinia": "2.0.12",
|
47
46
|
"store": "2.0.12",
|