@kengic/vue 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +3293 -2770
- package/dist/src/components/KgForm.Item/index.vm.d.ts +1 -0
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.VarProfileMaster.hooks.d.ts +1 -2
- package/dist/src/consts/i18n/en.d.ts +0 -1
- package/dist/src/consts/i18n/zh_CN.d.ts +0 -1
- package/package.json +2 -1
@@ -80,6 +80,7 @@ export declare const getProps: () => {
|
|
80
80
|
export declare type IKgFormItemProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
81
81
|
/** 插槽 control 的参数. */
|
82
82
|
export declare type IKgFormItemSlotControlParam = {
|
83
|
+
frm_id: string;
|
83
84
|
varName: string;
|
84
85
|
props: ComputedRef<IKgFormItemProps>;
|
85
86
|
model: ComputedRef<Record<string, any>>;
|
package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.VarProfileMaster.hooks.d.ts
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
import { ColumnsType } from 'ant-design-vue/es/table';
|
2
|
-
import { TransferItem } from 'ant-design-vue/es/transfer';
|
3
2
|
import { Ref, UnwrapRef } from 'vue';
|
4
3
|
import { VarProfileDetail } from '../../../apis/WMS/models';
|
5
4
|
export declare const leftVarProfileDetailColumns: (hostFormID: string) => ColumnsType<VarProfileDetail>;
|
6
5
|
export declare const rightVarProfileDetailColumns: (hostFormID: string) => ColumnsType<VarProfileDetail>;
|
7
6
|
export declare type IUseDragRow = {};
|
8
|
-
export declare function _useDragRow(
|
7
|
+
export declare function _useDragRow(hostFormID: string | undefined, varProfileDetails: Ref<UnwrapRef<Array<VarProfileDetail>>>, transferRightRows: Ref<UnwrapRef<Array<VarProfileDetail>>>): IUseDragRow;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.8.
|
3
|
+
"version": "0.8.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,6 +41,7 @@
|
|
41
41
|
"axios": "0.26.1",
|
42
42
|
"dayjs": "1.11.10",
|
43
43
|
"filesize": "10.1.0",
|
44
|
+
"html-to-image": "1.11.11",
|
44
45
|
"lodash-es": "4.17.21",
|
45
46
|
"pinia": "2.0.12",
|
46
47
|
"store": "2.0.12",
|