@kengic/vue 0.6.10-beta.6 → 0.6.10-beta.8

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.
@@ -1,4 +1,5 @@
1
1
  import { StoreDefinition } from 'pinia';
2
+ import { ComputedRef } from 'vue';
2
3
  import { IKgEventCb } from '../../consts';
3
4
  import { IKgTableRow } from '../KgTable';
4
5
  /**
@@ -27,6 +28,8 @@ export declare type IKgFormLookupBeforeOkCb = ((param: IKgFormLookupBeforeOkCbPa
27
28
  export declare type IKgFormLookupOkCbParam = {
28
29
  /** 变量. */
29
30
  var_nam: string;
31
+ /** 表单数据对象. */
32
+ model: ComputedRef<Record<string, any>>;
30
33
  /** 是否多选, 否则单选. */
31
34
  isMultiple: boolean;
32
35
  /** 单选时, 对应的一个值. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.6.10-beta.6",
3
+ "version": "0.6.10-beta.8",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "rimraf dist && vue-tsc && vite build --mode development",
@@ -19,6 +19,7 @@
19
19
  "bump-to:luotao.wms-vue3:focus": "tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
20
20
  "copy-to:luotao.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
21
21
  "--------------------": "",
22
+ "cnpm:sync": "cnpm sync @kengic/vue",
22
23
  "gen:apis:WMS": "kengic-pont generate-apis --config kg.config.ts --origin WMS",
23
24
  "bump-version:beta": "tsx scripts/bump.ts beta",
24
25
  "bump-version:major": "tsx scripts/bump.ts major",