@kengic/vue 0.5.37-beta.0 → 0.5.38
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 +752 -739
- package/dist/src/apis/WMS/models.d.ts +2 -0
- package/dist/src/components/KgResizable/KgResizable.d.ts +6 -0
- package/dist/src/components/KgVar/KgVar.d.ts +4 -3
- package/dist/src/components/KgVar/index.vm.d.ts +5 -2
- package/package.json +9 -7
@@ -213,6 +213,8 @@ export declare class VarGridConfig {
|
|
213
213
|
pg_size_opts?: string | null;
|
214
214
|
/** 查询条件的界面标识. */
|
215
215
|
prf_frm_id?: string | null;
|
216
|
+
/** 是否显示表格底部边框. */
|
217
|
+
show_bottom_border_flg?: number | null;
|
216
218
|
/** 是否显示表格底部左侧. */
|
217
219
|
show_bottom_left_flg?: number | null;
|
218
220
|
/** 是否显示表格底部右侧. */
|
@@ -40,6 +40,8 @@ export declare const getProps: () => {
|
|
40
40
|
type: PropType<number>;
|
41
41
|
default: number;
|
42
42
|
};
|
43
|
+
/** 样式. */
|
44
|
+
kgClass: PropType<string>;
|
43
45
|
};
|
44
46
|
export declare type IKgResizableProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
45
47
|
declare const _default: import("vue").DefineComponent<{
|
@@ -82,6 +84,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
82
84
|
type: PropType<number>;
|
83
85
|
default: number;
|
84
86
|
};
|
87
|
+
/** 样式. */
|
88
|
+
kgClass: PropType<string>;
|
85
89
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:kgWidth" | "update:kgHeight")[], "update:kgWidth" | "update:kgHeight", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
86
90
|
/** 拖拽条的位置. */
|
87
91
|
kgType: {
|
@@ -122,6 +126,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
122
126
|
type: PropType<number>;
|
123
127
|
default: number;
|
124
128
|
};
|
129
|
+
/** 样式. */
|
130
|
+
kgClass: PropType<string>;
|
125
131
|
}>> & {
|
126
132
|
"onUpdate:kgWidth"?: ((...args: any[]) => any) | undefined;
|
127
133
|
"onUpdate:kgHeight"?: ((...args: any[]) => any) | undefined;
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
import { IKgSlots } from './index.vm';
|
2
3
|
import './KgVar.less';
|
3
4
|
export declare const getProps: () => {
|
4
5
|
/** 插槽. */
|
5
|
-
kgSlots: PropType<
|
6
|
+
kgSlots: PropType<IKgSlots>;
|
6
7
|
/** 是否使用灰色背景. */
|
7
8
|
KgBackgroundGray: PropType<boolean>;
|
8
9
|
/** 给 KgSubmit 添加的额外样式. */
|
@@ -11,14 +12,14 @@ export declare const getProps: () => {
|
|
11
12
|
export declare type IKgVarProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
12
13
|
declare const _default: import("vue").DefineComponent<{
|
13
14
|
/** 插槽. */
|
14
|
-
kgSlots: PropType<
|
15
|
+
kgSlots: PropType<IKgSlots>;
|
15
16
|
/** 是否使用灰色背景. */
|
16
17
|
KgBackgroundGray: PropType<boolean>;
|
17
18
|
/** 给 KgSubmit 添加的额外样式. */
|
18
19
|
kgSubmitClass: PropType<string>;
|
19
20
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
20
21
|
/** 插槽. */
|
21
|
-
kgSlots: PropType<
|
22
|
+
kgSlots: PropType<IKgSlots>;
|
22
23
|
/** 是否使用灰色背景. */
|
23
24
|
KgBackgroundGray: PropType<boolean>;
|
24
25
|
/** 给 KgSubmit 添加的额外样式. */
|
@@ -2,16 +2,19 @@ import { InjectionKey } from 'vue';
|
|
2
2
|
import { IKgFormItemSlotControlParam } from '../KgForm.Item/index.vm';
|
3
3
|
import { IKgTableRow } from '../KgTable';
|
4
4
|
export declare type IKgSlots = {
|
5
|
+
/** KgTable 下面. */
|
6
|
+
afterKgTable?: () => any;
|
5
7
|
KgSearch?: {
|
8
|
+
/** 左侧. */
|
6
9
|
left?: () => any;
|
7
10
|
};
|
8
11
|
KgSubmit?: {
|
9
12
|
'KgForm.Item'?: {
|
10
|
-
[variable: string]: (
|
13
|
+
[variable: string]: (param: IKgFormItemSlotControlParam) => any;
|
11
14
|
};
|
12
15
|
};
|
13
16
|
KgTable?: {
|
14
|
-
expandedRowRender?: (
|
17
|
+
expandedRowRender?: (param: {
|
15
18
|
record: IKgTableRow;
|
16
19
|
index: number;
|
17
20
|
indent: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.38",
|
4
4
|
"scripts": {
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
@@ -8,14 +8,16 @@
|
|
8
8
|
"publish:all:patch": "npm run bump-version:patch && npm run publish:all",
|
9
9
|
"publish:all:minor": "npm run bump-version:minor && npm run publish:all",
|
10
10
|
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
11
|
-
"
|
11
|
+
"----------------------- C": "",
|
12
12
|
"bump-to:luotao.c.wms-vue3": "tsx scripts/bump-to.luotao.c.wms-vue3.ts",
|
13
|
-
"copy-to:luotao.c.wms-vue3": "tsx scripts/copy-to.luotao.c.wms-vue3.ts",
|
14
|
-
"
|
15
|
-
"
|
13
|
+
"copy-to:luotao.c.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.ts",
|
14
|
+
"bump-to:luotao.c.wms-vue3:focus": "tsx scripts/bump-to.luotao.c.wms-vue3.focus.ts",
|
15
|
+
"copy-to:luotao.c.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.focus.ts",
|
16
|
+
"--------------------- D": "",
|
16
17
|
"bump-to:luotao.wms-vue3": "tsx scripts/bump-to.luotao.wms-vue3.ts",
|
17
|
-
"copy-to:luotao.wms-vue3": "tsx scripts/copy-to.luotao.wms-vue3.ts",
|
18
|
-
"
|
18
|
+
"copy-to:luotao.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.ts",
|
19
|
+
"bump-to:luotao.wms-vue3:focus": "tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
20
|
+
"copy-to:luotao.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
|
19
21
|
"--------------------": "",
|
20
22
|
"gen:apis:WMS": "kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
21
23
|
"bump-version:beta": "tsx scripts/bump.ts beta",
|