@kengic/vue 0.28.1-beta.22 → 0.28.1-beta.24

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.
@@ -789,6 +789,7 @@ declare const _default: import("vue").DefineComponent<{
789
789
  originVNode: import("ant-design-vue/es/_util/type").VueNode;
790
790
  }) => import("ant-design-vue/es/_util/type").VueNode>;
791
791
  }>>, {
792
+ visible: boolean;
792
793
  kgFullHeight: boolean;
793
794
  kgIsDefaultFullscreen: boolean;
794
795
  kgIsDragToMove: boolean;
@@ -800,7 +801,6 @@ declare const _default: import("vue").DefineComponent<{
800
801
  kgMinWidth: number;
801
802
  kgShowCancelButton: boolean;
802
803
  kgShowOkButton: boolean;
803
- visible: boolean;
804
804
  confirmLoading: boolean;
805
805
  closable: boolean;
806
806
  centered: boolean;
@@ -22,7 +22,7 @@ export declare const getProps: () => {
22
22
  };
23
23
  /** 拖拽条的位置. */
24
24
  kgType: {
25
- type: PropType<"left" | "right" | "top" | "bottom">;
25
+ type: PropType<"top" | "left" | "right" | "bottom">;
26
26
  default: string;
27
27
  };
28
28
  'onUpdate:kgHeight': PropType<(value: number) => void>;
@@ -50,7 +50,7 @@ declare const _default: import("vue").DefineComponent<{
50
50
  };
51
51
  /** 拖拽条的位置. */
52
52
  kgType: {
53
- type: PropType<"left" | "right" | "top" | "bottom">;
53
+ type: PropType<"top" | "left" | "right" | "bottom">;
54
54
  default: string;
55
55
  };
56
56
  'onUpdate:kgHeight': PropType<(value: number) => void>;
@@ -76,7 +76,7 @@ declare const _default: import("vue").DefineComponent<{
76
76
  };
77
77
  /** 拖拽条的位置. */
78
78
  kgType: {
79
- type: PropType<"left" | "right" | "top" | "bottom">;
79
+ type: PropType<"top" | "left" | "right" | "bottom">;
80
80
  default: string;
81
81
  };
82
82
  'onUpdate:kgHeight': PropType<(value: number) => void>;
@@ -86,6 +86,6 @@ declare const _default: import("vue").DefineComponent<{
86
86
  kgMaxHeight: number;
87
87
  kgMinHeight: number;
88
88
  kgHeight: number;
89
- kgType: "left" | "right" | "top" | "bottom";
89
+ kgType: "top" | "left" | "right" | "bottom";
90
90
  }>;
91
91
  export default _default;
@@ -32,6 +32,8 @@ export declare type IKgTableOnBeforeSetDatasEventListenerParameter = {
32
32
  * 列表数据.
33
33
  */
34
34
  datas: Ref<Array<IKgTableRow>>;
35
+ /** 查询接口请求参数. */
36
+ params: Record<string, any>;
35
37
  /**
36
38
  * 数据总数.
37
39
  */
@@ -1,3 +1,4 @@
1
+ import { type TooltipProps } from 'ant-design-vue';
1
2
  import { ModalFuncProps } from 'ant-design-vue/lib/modal/Modal';
2
3
  import { KgModalProps } from '../component';
3
4
  /** 模块. */
@@ -614,6 +615,7 @@ export interface IKgVarSubmitConfigProperties {
614
615
  * <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
615
616
  */
616
617
  export interface IKgVarButtonProperties {
618
+ tooltip?: TooltipProps;
617
619
  }
618
620
  /**
619
621
  * <p>额外的配置属性. 对应 {@link VarButtonConfig#props} 字段.</p>
@@ -75,9 +75,10 @@ export declare class KgUtil {
75
75
  value: any;
76
76
  }): string;
77
77
  /**
78
- * 确认弹窗.
79
- * 设置了多个属性的默认值, 简化使用.
80
- * https://www.antdv.com/components/modal
78
+ * <p>确认弹窗.</p>
79
+ * <p>设置了多个属性的默认值, 简化使用.</p>
80
+ * <p>https://www.antdv.com/components/modal</p>
81
+ *
81
82
  * @param props
82
83
  */
83
84
  static confirm(props: IKgVarButtonModalProperties): ModalFunc;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.1-beta.22",
3
+ "version": "0.28.1-beta.24",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
@@ -39,7 +39,7 @@
39
39
  "@iconify-icons/ph": "1.2.5",
40
40
  "@iconify/vue": "4.1.2",
41
41
  "@kengic/core.core": "0.0.1-beta.22",
42
- "@kengic/core.react": "0.0.2-beta.27",
42
+ "@kengic/core.react": "0.0.2-beta.37",
43
43
  "@kengic/pont": "1.2.17-beta.5",
44
44
  "@rys-fe/vite-plugin-theme": "0.8.6",
45
45
  "@thymine/xunee": "0.4.9-beta.8",