@kengic/vue 0.28.1-beta.9 → 0.28.2-beta.1

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.
Files changed (46) hide show
  1. package/dist/caret-right-outlined-Btgsw6a_.0434903b.mjs +8 -0
  2. package/dist/index.css +1 -1
  3. package/dist/kengic-vue.js +72225 -70213
  4. package/dist/project/build/vite/plugin/index.ts +2 -3
  5. package/dist/src/api/WMS/Controllers/SqlClientController/Execute.d.ts +16 -0
  6. package/dist/src/api/WMS/Controllers/SqlClientController/index.d.ts +1 -0
  7. package/dist/src/api/WMS/Controllers/index.d.ts +1 -0
  8. package/dist/src/api/WMS/models.d.ts +51 -1
  9. package/dist/src/component/KgModal/KgModal.d.ts +1 -1
  10. package/dist/src/component/KgResizable/KgResizable.d.ts +4 -4
  11. package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +1 -1
  12. package/dist/src/component/KgTable/KgTable.event.d.ts +6 -0
  13. package/dist/src/component/KgTable/KgTable.service.d.ts +1 -1
  14. package/dist/src/component/KgVar/KgVar.VarConfigDescription.store.d.ts +12 -0
  15. package/dist/src/component/KgVar/KgVar.VarGridConfig.store.d.ts +10 -0
  16. package/dist/src/component/KgVar/KgVar.VarGridMaster.store.d.ts +10 -0
  17. package/dist/src/component/KgVar/KgVar.hooks.d.ts +25 -5
  18. package/dist/src/component/KgVar/KgVar.store.d.ts +1 -7
  19. package/dist/src/component/KgVarConfig/KgVarConfig.vm.d.ts +0 -5
  20. package/dist/src/const/const.vm.d.ts +3 -5
  21. package/dist/src/const/form-id.const.d.ts +6 -0
  22. package/dist/src/i18n/cs_CZ.d.ts +288 -0
  23. package/dist/src/i18n/en.d.ts +14 -0
  24. package/dist/src/i18n/es_ES.d.ts +14 -0
  25. package/dist/src/i18n/fr_FR.d.ts +14 -0
  26. package/dist/src/i18n/i18n.setup.d.ts +4 -3
  27. package/dist/src/i18n/km_KH.d.ts +14 -0
  28. package/dist/src/i18n/ko_KR.d.ts +14 -0
  29. package/dist/src/i18n/vi_VN.d.ts +14 -0
  30. package/dist/src/i18n/zh_CN.d.ts +14 -0
  31. package/dist/src/page/KgPageSqlClient/KgPageSqlClient.d.ts +12 -0
  32. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Editor.d.ts +11 -0
  33. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.ResultTab.d.ts +36 -0
  34. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Toolbar.d.ts +7 -0
  35. package/dist/src/page/KgPageSqlClient/components/KgSqlClient.d.ts +5 -0
  36. package/dist/src/page/KgPageSqlClient/index.d.ts +1 -0
  37. package/dist/src/page/index.d.ts +0 -2
  38. package/dist/src/project/types/config.d.ts +2 -1
  39. package/dist/src/util/kg.util.d.ts +26 -6
  40. package/package.json +4 -4
  41. /package/dist/{close-outlined-DMcSQWxQ.084c8247.mjs → close-outlined-DMcSQWxQ.5c3bee6f.mjs} +0 -0
  42. /package/dist/{exclamation-circle-outlined-DZrXCnvM.731e46ba.mjs → exclamation-circle-outlined-DZrXCnvM.d94561db.mjs} +0 -0
  43. /package/dist/{fullscreen-exit-outlined-X1iYkFc4.01c6bbb7.mjs → fullscreen-exit-outlined-X1iYkFc4.a1640595.mjs} +0 -0
  44. /package/dist/{fullscreen-outlined-DDBrsRcy.3b4bc9b9.mjs → fullscreen-outlined-DDBrsRcy.b9f9d4a1.mjs} +0 -0
  45. /package/dist/{search-outlined-Od1M_oxf.efc43746.mjs → search-outlined-Od1M_oxf.71fb0c01.mjs} +0 -0
  46. /package/dist/{three-dots-loading-bIlrTJYR.d0516412.mjs → three-dots-loading-bIlrTJYR.f189f620.mjs} +0 -0
@@ -18,15 +18,14 @@ import { configThemePlugin } from './theme';
18
18
  import { configVisualizerConfig } from './visualizer';
19
19
 
20
20
  export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
21
- const { VITE_USE_IMAGEMIN, VITE_LEGACY, VITE_BUILD_COMPRESS, VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE } = viteEnv;
21
+ const { VITE_USE_IMAGEMIN, VITE_LEGACY, VITE_BUILD_COMPRESS, VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE } = viteEnv;
22
22
 
23
23
  const vitePlugins: (PluginOption | PluginOption[])[] = [
24
- // have to
25
24
  vue({
26
25
  template: {
27
26
  compilerOptions: {
28
27
  isCustomElement: (tag) => {
29
- if (['kg-var-config', 'kg-work-station'].includes(tag)) {
28
+ if (tag.startsWith('kg-')) {
30
29
  return true;
31
30
  }
32
31
 
@@ -0,0 +1,16 @@
1
+ import { IRequestConfig, IRequestOptions } from '../../../../service';
2
+ import * as DEF from '../../../def';
3
+ /** 请求参数. */
4
+ export declare class ExecuteQuery {
5
+ }
6
+ /**
7
+ * 执行语句.
8
+ *
9
+ * @param config 请求配置.
10
+ * @param option 请求选项.
11
+ */
12
+ export declare function Execute(config?: IRequestConfig<ExecuteQuery, DEF.WMS.ExecuteQuery>, option?: IRequestOptions): Promise<Array<DEF.WMS.ExecuteResultDTO>>;
13
+ export declare namespace Execute {
14
+ var method: "POST";
15
+ var url: string;
16
+ }
@@ -0,0 +1 @@
1
+ export { Execute, ExecuteQuery } from './Execute';
@@ -1,4 +1,5 @@
1
1
  export * as DescriptionController from './DescriptionController';
2
+ export * as SqlClientController from './SqlClientController';
2
3
  export * as SysPermissionController from './SysPermissionController';
3
4
  export * as VarController from './VarController';
4
5
  export * as VarConfigDescriptionController from './VarConfigDescriptionController';
@@ -138,6 +138,52 @@ export declare class DescriptionDTO {
138
138
  version?: number | null;
139
139
  constructor(obj?: DescriptionDTO);
140
140
  }
141
+ /** 执行语句的参数. */
142
+ export declare class ExecuteQuery {
143
+ /** 当前页码. */
144
+ pageIndex?: number | null;
145
+ /** 每页大小. */
146
+ pageSize?: number | null;
147
+ /** 执行的 SQL. */
148
+ sql?: string | null;
149
+ constructor(obj?: ExecuteQuery);
150
+ }
151
+ /** 查询结果的列的元数据. */
152
+ export declare class ExecuteResultColumn {
153
+ /** 列的描述. */
154
+ columnDesc?: string | null;
155
+ /** 列的别名. */
156
+ columnLabel?: string | null;
157
+ /** 列名. */
158
+ columnName?: string | null;
159
+ /** 列的类型. */
160
+ columnType?: string | null;
161
+ /** 表名. */
162
+ tableName?: string | null;
163
+ constructor(obj?: ExecuteResultColumn);
164
+ }
165
+ /** 执行语句的结果. */
166
+ export declare class ExecuteResultDTO {
167
+ /** 查询结果的列. */
168
+ columns?: Array<ExecuteResultColumn> | null;
169
+ /** 耗时(毫秒). */
170
+ elapse?: number | null;
171
+ /** 执行结果消息. */
172
+ message?: string | null;
173
+ /** 当前页码. */
174
+ pageIndex?: number | null;
175
+ /** 每页大小. */
176
+ pageSize?: number | null;
177
+ /** 查询结果的行. */
178
+ rows?: Array<object> | null;
179
+ /** 受影响的行数. */
180
+ rowsTotal?: number | null;
181
+ /** 该结果对应的语句. */
182
+ sql?: string | null;
183
+ /** 是否执行成功. */
184
+ success?: boolean | null;
185
+ constructor(obj?: ExecuteResultDTO);
186
+ }
141
187
  /** 获取 SQL 查询结果的元数据. */
142
188
  export declare class GetResultSetMetadataFromSqlQuery {
143
189
  /** SQL. */
@@ -775,6 +821,8 @@ export declare class VarGridMasterDTO {
775
821
  grp_nam?: string | null;
776
822
  /** 主键. */
777
823
  id?: string | null;
824
+ /** 配置属性. */
825
+ props?: string | null;
778
826
  /** 用户(UserID). */
779
827
  usr_id?: string | null;
780
828
  /** 用户姓名. */
@@ -865,6 +913,8 @@ export declare class VarProfileMasterDTO {
865
913
  id?: string | null;
866
914
  /** 视图名称变量. */
867
915
  prf_var_nam?: string | null;
916
+ /** 配置属性. */
917
+ props?: string | null;
868
918
  /** 用户(UserID). */
869
919
  usr_id?: string | null;
870
920
  /** 查询条件明细列表. */
@@ -1056,7 +1106,7 @@ export declare class WorkstationDTO {
1056
1106
  /** 仓库. */
1057
1107
  whId?: string | null;
1058
1108
  /** 工作站与工作区域关系. */
1059
- workstationAreas?: Array<WorkstationAreaDTO> | null;
1109
+ workstationAndAreaRelationshipDTOList?: Array<WorkstationAreaDTO> | null;
1060
1110
  constructor(obj?: WorkstationDTO);
1061
1111
  }
1062
1112
  /**
@@ -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;
@@ -9,7 +9,7 @@ import { IKgSubmitStore } from './KgSubmit.store';
9
9
  export interface IUseKgSubmit {
10
10
  /**
11
11
  * <p>添加一个「提交表单字段」.</p>
12
- * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加表单字段.</p>
12
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
13
13
  *
14
14
  * @param varSubmitDetail 要添加的「提交表单字段」.
15
15
  */
@@ -14,6 +14,10 @@ export declare type IKgTableOnRowDoubleClickEventListenerParameter = {
14
14
  };
15
15
  export declare type IKgTableOnRowDoubleClickEventListener = ((param: IKgTableOnRowDoubleClickEventListenerParameter) => Promise<boolean>) & IKgEventListener;
16
16
  export declare type IKgTableOnBeforeParseRequestParameterEventListenerParameter = {
17
+ /**
18
+ * 高级查询的操作符.
19
+ */
20
+ dynamicQueryOperatorModel: Ref<Record<string, string> | null>;
17
21
  /**
18
22
  * 查询接口请求参数, 尚未解析.
19
23
  */
@@ -32,6 +36,8 @@ export declare type IKgTableOnBeforeSetDatasEventListenerParameter = {
32
36
  * 列表数据.
33
37
  */
34
38
  datas: Ref<Array<IKgTableRow>>;
39
+ /** 查询接口请求参数. */
40
+ params: Record<string, any>;
35
41
  /**
36
42
  * 数据总数.
37
43
  */
@@ -1,8 +1,8 @@
1
1
  import { ColumnsType } from 'ant-design-vue/es/table';
2
2
  import { SorterResult } from 'ant-design-vue/es/table/interface';
3
3
  import { ComputedRef, Ref, UnwrapRef } from 'vue';
4
- import { IKgTableRow, KG_TABLE_CELL_CONTEXT } from './KgTable.vm';
5
4
  import { IKgTableProps } from './KgTable';
5
+ import { IKgTableRow, KG_TABLE_CELL_CONTEXT } from './KgTable.vm';
6
6
  export declare function _useRenderBodyCell(): {
7
7
  renderBodyCell: (args: any, context?: KG_TABLE_CELL_CONTEXT) => any;
8
8
  };
@@ -0,0 +1,12 @@
1
+ import { StoreDefinition } from 'pinia';
2
+ import { VarConfigDescription } from '../../api/WMS/models';
3
+ export declare type IUseVarConfigDescriptionStoreState = {};
4
+ export declare type IUseVarConfigDescriptionStoreGetters = {
5
+ t$$(): (formID: string | null | undefined, varName: string | null | undefined) => string;
6
+ };
7
+ export declare type IUseVarConfigDescriptionStoreActions = {
8
+ createVarConfigDescription(varConfigDescription: VarConfigDescription): void;
9
+ setVarConfigDescriptionList(formID: string | null | undefined, varConfigDescriptionList: Array<VarConfigDescription>): void;
10
+ };
11
+ export declare type IUseVarConfigDescriptionStore = StoreDefinition<'VarConfigDescription', IUseVarConfigDescriptionStoreState, IUseVarConfigDescriptionStoreGetters, IUseVarConfigDescriptionStoreActions>;
12
+ export declare const useVarConfigDescriptionStore: IUseVarConfigDescriptionStore;
@@ -0,0 +1,10 @@
1
+ import { StoreDefinition } from 'pinia';
2
+ import { VarGridConfig } from '../../api/WMS/models';
3
+ export declare type IUseVarGridConfigStoreState = {};
4
+ export declare type IUseVarGridConfigStoreGetters = {};
5
+ export declare type IUseVarGridConfigStoreActions = {
6
+ createVarGridConfig(varGridConfig: VarGridConfig): void;
7
+ setVarGridConfig(formID: string | null | undefined, varGridConfig: VarGridConfig | null): void;
8
+ };
9
+ export declare type IUseVarGridConfigStore = StoreDefinition<'VarGridConfig', IUseVarGridConfigStoreState, IUseVarGridConfigStoreGetters, IUseVarGridConfigStoreActions>;
10
+ export declare const useVarGridConfigStore: IUseVarGridConfigStore;
@@ -0,0 +1,10 @@
1
+ import { StoreDefinition } from 'pinia';
2
+ import { VarGridMaster } from '../../api/WMS/models';
3
+ export declare type IUseVarGridMasterStoreState = {};
4
+ export declare type IUseVarGridMasterStoreGetters = {};
5
+ export declare type IUseVarGridMasterStoreActions = {
6
+ createVarGridMaster(varGridMaster: VarGridMaster): void;
7
+ setVarGridMasterList(formID: string | null | undefined, varGridMasterList: Array<VarGridMaster>): void;
8
+ };
9
+ export declare type IUseVarGridMasterStore = StoreDefinition<'VarGridMaster', IUseVarGridMasterStoreState, IUseVarGridMasterStoreGetters, IUseVarGridMasterStoreActions>;
10
+ export declare const useVarGridMasterStore: IUseVarGridMasterStore;
@@ -1,6 +1,6 @@
1
1
  import { IRemoveEventListener } from '@kengic/core.core';
2
2
  import { ComputedRef } from 'vue';
3
- import { VarButton, VarChildDetail, VarConfigControl, VarConfigDescription, VarConfigPossibility, VarDda, VarGridConfig, VarGridDetail, VarGridMasterDTO, VarProfileConfig, VarProfileMasterDTO, VarVariable } from '../../api/WMS/models';
3
+ import { VarButton, VarChildDetail, VarConfigControl, VarConfigDescription, VarConfigPossibility, VarDda, VarGridConfig, VarGridDetail, VarGridMaster, VarGridMasterDTO, VarProfileConfig, VarProfileMasterDTO, VarVariable } from '../../api/WMS/models';
4
4
  import { IKgVarGridConfigProperties, KG__VAR_BUTTON__TYPE } from '../../const';
5
5
  import { IUseKgButton } from '../KgButton';
6
6
  import { IUseKgForm } from '../KgForm';
@@ -14,25 +14,39 @@ import { IKgProps, IKgSlots } from './KgVar.vm';
14
14
  export declare type IUseKgVar = {
15
15
  /**
16
16
  * <p>添加一个「变量配置:表单控件」.</p>
17
- * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加表单字段.</p>
17
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
18
18
  *
19
19
  * @param varConfigControl 要添加的「变量配置:表单控件」.
20
20
  */
21
21
  createVarConfigControl(varConfigControl: VarConfigControl): void;
22
22
  /**
23
23
  * <p>添加一个「变量配置:变量翻译」.</p>
24
- * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加表单字段.</p>
24
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
25
25
  *
26
26
  * @param varConfigDescription 要添加的「变量配置:变量翻译」.
27
27
  */
28
28
  createVarConfigDescription(varConfigDescription: VarConfigDescription): void;
29
29
  /**
30
30
  * <p>添加一个「变量配置:列表数据」.</p>
31
- * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加表单字段.</p>
31
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
32
32
  *
33
33
  * @param varConfigPossibility 要添加的「变量配置:列表数据」.
34
34
  */
35
35
  createVarConfigPossibility(varConfigPossibility: VarConfigPossibility): void;
36
+ /**
37
+ * <p>添加一个「表格配置」.</p>
38
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
39
+ *
40
+ * @param varGridConfig 要添加的「表格配置」.
41
+ */
42
+ createVarGridConfig(varGridConfig: VarGridConfig): void;
43
+ /**
44
+ * <p>添加一个「表格视图」.</p>
45
+ * <p>使用场景: 一般用于开发自定义页面时, 需要动态添加变量配置数据.</p>
46
+ *
47
+ * @param varGridMaster 要添加的「表格视图」.
48
+ */
49
+ createVarGridMaster(varGridMaster: VarGridMaster): void;
36
50
  /** 当前的 VarGridDetail 列表. */
37
51
  currentVarGridDetails: ComputedRef<Array<VarGridDetail> | null>;
38
52
  /** 当前的 VarGridMaster ID. */
@@ -169,7 +183,7 @@ export declare type IUseKgVar = {
169
183
  * 修改「按钮」的部分属性.
170
184
  *
171
185
  * @param param
172
- * @param param.varName 变量名称.
186
+ * @param param.varName 按钮的变量名称.
173
187
  * @param param.properties 要修改的部分属性.
174
188
  */
175
189
  patchVarButton(param: {
@@ -227,6 +241,12 @@ export declare type IUseKgVar = {
227
241
  * @param varName 变量名称.
228
242
  */
229
243
  t(varName: string | null | undefined): ComputedRef<string>;
244
+ /**
245
+ * <p>根据变量名称获取对应翻译.</p>
246
+ *
247
+ * @param varName 变量名称.
248
+ */
249
+ t2(varName: string | null | undefined): string;
230
250
  varButtonCopy: ComputedRef<VarButton | null>;
231
251
  varButtonCreate: ComputedRef<VarButton | null>;
232
252
  varButtonDelete: ComputedRef<VarButton | null>;
@@ -1,5 +1,5 @@
1
1
  import { StoreDefinition } from 'pinia';
2
- import { VarButton, VarButtonConfig, VarChildDetail, VarConfigControl, VarConfigDescription, VarConfigInput, VarConfigLookup, VarConfigPossibility, VarConfigTip, VarDda, VarGridConfig, VarGridDetail, VarGridMasterDTO, VarProfileConfig, VarProfileDetail, VarProfileMasterDTO, VarSubmitConfig, VarSubmitDetail, VarVariable } from '../../api/WMS/models';
2
+ import { VarButton, VarButtonConfig, VarChildDetail, VarConfigControl, VarConfigInput, VarConfigLookup, VarConfigPossibility, VarConfigTip, VarDda, VarGridConfig, VarGridDetail, VarGridMasterDTO, VarProfileConfig, VarProfileDetail, VarProfileMasterDTO, VarSubmitConfig, VarSubmitDetail, VarVariable } from '../../api/WMS/models';
3
3
  import { KG__VAR_BUTTON__TYPE } from '../../const';
4
4
  import { IUseKgVar } from './KgVar.hooks';
5
5
  import { IKgProps, IKgSlots } from './KgVar.vm';
@@ -34,7 +34,6 @@ export interface IUseKgVarStoreState {
34
34
  varButtonMap: Map<string, Array<VarButton>>;
35
35
  varChildDetailMap: Map<string, Array<VarChildDetail>>;
36
36
  varConfigControlMap: Map<string, Array<VarConfigControl>>;
37
- varConfigDescriptionMap: Map<string, Array<VarConfigDescription>>;
38
37
  varConfigInputMap: Map<string, Array<VarConfigInput>>;
39
38
  varConfigLookupMap: Map<string, Array<VarConfigLookup>>;
40
39
  varConfigPossibilityMap: Map<string, Array<VarConfigPossibility>>;
@@ -140,14 +139,9 @@ export interface IUseKgVarStoreGetters {
140
139
  getVarGridDetail(): (formID: string | null | undefined, param: {
141
140
  varName: string | null | undefined;
142
141
  }) => VarGridDetail | null;
143
- /**
144
- * 翻译变量.
145
- */
146
- t(): (formID: string | null | undefined, varName: string | null | undefined) => string;
147
142
  }
148
143
  export interface IUseKgVarStoreActions {
149
144
  createVarConfigControl(formID: string | null | undefined, varConfigControl: VarConfigControl): void;
150
- createVarConfigDescription(formID: string | null | undefined, varConfigDescription: VarConfigDescription): void;
151
145
  createVarConfigPossibility(formID: string | null | undefined, varConfigPossibility: VarConfigPossibility): void;
152
146
  /**
153
147
  * <p>离开一个界面, 即销毁一个界面.</p>
@@ -33,10 +33,6 @@ export declare const FORM_ID__VAR__VAR_CONFIG_LOOKUP__VAR_DDA = "KgVarConfig.Mod
33
33
  * 界面标识: 变量配置弹窗:变量配置:提示文本.
34
34
  */
35
35
  export declare const FORM_ID__VAR__VAR_CONFIG_TIP = "KgVarConfig.Modal.Var.VarConfigTip";
36
- /**
37
- * 界面标识: 变量配置弹窗:按钮:按钮管理.
38
- */
39
- export declare const FORM_ID__BUTTON__VAR_BUTTON = "KgVarConfig.Modal.Button.VarButton";
40
36
  /**
41
37
  * 界面标识: 变量配置弹窗:按钮:按钮配置.
42
38
  */
@@ -46,5 +42,4 @@ export declare const FORM_ID__SEARCH__VAR_PROFILE_CONFIG = "KgSearch.ConfigModal
46
42
  export declare const FORM_ID__SUBMIT__VAR_SUBMIT_DETAIL = "KgVarConfig.Modal.Submit.VarSubmitDetail";
47
43
  export declare const FORM_ID__SUBMIT__VAR_SUBMIT_CONFIG = "KgVarConfig.Modal.Submit.VarSubmitConfig";
48
44
  export declare const FORM_ID__TABLE__VAR_GRID_MASTER = "KgVarConfig.Modal.Table.VarGridMaster";
49
- export declare const FORM_ID__TABLE__VAR_GRID_CONFIG = "KgVarConfig.Modal.Table.VarGridConfig";
50
45
  export declare const FORM_ID__CHILD = "KgVarConfig.Modal.Child";
@@ -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
  /** 模块. */
@@ -541,7 +542,7 @@ export declare enum KG_HTTP_HEADERS {
541
542
  /** 当前页码. */
542
543
  KG_PAGE_INDEX = "Kg-Page-Index",
543
544
  /** 每页条数. */
544
- KG_PAGE_SISE = "Kg-Page-Size",
545
+ KG_PAGE_SIZE = "Kg-Page-Size",
545
546
  /** 界面标识. */
546
547
  KG_FORM_ID = "Kg-Form-Id",
547
548
  KG_BUTTON_VAR_NAME = "Kg-Button-Var-Name",
@@ -551,10 +552,6 @@ export declare enum KG_HTTP_HEADERS {
551
552
  KG_QUERY_WHERE_SQL = "Kg-Query-Where-Sql",
552
553
  /** 查询语句中的 ORDER BY 片段. */
553
554
  KG_QUERY_ORDER_BY_SQL = "Kg-Query-Order-By-Sql",
554
- /** 查询语句中的 OFFSET 片段. */
555
- KG_QUERY_OFFSET_SQL = "Kg-Query-Offset-Sql",
556
- /** 查询语句中的 WHERE + ORDER BY + OFFSET 片段. */
557
- KG_QUERY_SQL = "Kg-Query-Sql",
558
555
  /**
559
556
  * <p>高级查询时, 每个查询字段的操作符(=,>,<...).</p>
560
557
  * <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的操作符.</p>
@@ -614,6 +611,7 @@ export interface IKgVarSubmitConfigProperties {
614
611
  * <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
615
612
  */
616
613
  export interface IKgVarButtonProperties {
614
+ tooltip?: TooltipProps;
617
615
  }
618
616
  /**
619
617
  * <p>额外的配置属性. 对应 {@link VarButtonConfig#props} 字段.</p>
@@ -3,4 +3,10 @@
3
3
  */
4
4
  export declare const FORM_IDS: {
5
5
  KG_PAGE_DDA__CREATE__BUTTON: string;
6
+ KG_SQL_CLIENT__RESULT_TAB: string;
7
+ /**
8
+ * 变量配置弹窗:按钮:按钮管理.
9
+ */
10
+ KG_VAR_CONFIG__MODAL__BUTTON__VAR_BUTTON: string;
11
+ KG_VAR_CONFIG__MODAL__TABLE__VAR_GRID_CONFIG: string;
6
12
  };