@kengic/vue 0.6.10-beta.7 → 0.6.10-beta.9

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
  /** 单选时, 对应的一个值. */
@@ -107,6 +107,7 @@ declare const _default: {
107
107
  add: string;
108
108
  button: string;
109
109
  cancel: string;
110
+ close: string;
110
111
  confirm: string;
111
112
  confirmDelete: string;
112
113
  copy: string;
@@ -106,6 +106,7 @@ declare const _default: {
106
106
  add: string;
107
107
  button: string;
108
108
  cancel: string;
109
+ close: string;
109
110
  confirm: string;
110
111
  confirmDelete: string;
111
112
  copy: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.6.10-beta.7",
3
+ "version": "0.6.10-beta.9",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "rimraf dist && vue-tsc && vite build --mode development",