@kengic/vue 0.28.2-beta.2 → 0.28.2-beta.21

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.
@@ -48,14 +48,39 @@ export declare type IKgOption = {
48
48
  on?: boolean;
49
49
  };
50
50
  };
51
+ /** 工作站选择. */
52
+ KgStation?: {
53
+ /**
54
+ * 是否启用功能.
55
+ * @default true
56
+ */
57
+ isOn?: boolean;
58
+ };
51
59
  KgTable?: {
52
- /** 列的过滤. */
53
- filter?: {
60
+ /**
61
+ * 表头.
62
+ */
63
+ HeaderCell?: {
54
64
  /**
55
- * 是否启用功能.
56
- * @default false
65
+ * 右键菜单.
57
66
  */
58
- on?: boolean;
67
+ contextMenu?: {
68
+ /**
69
+ * @default false
70
+ */
71
+ isOn?: boolean;
72
+ };
73
+ };
74
+ Info?: {
75
+ /**
76
+ * 定位勾选的行.
77
+ */
78
+ locateSelectedRows: {
79
+ /**
80
+ * @default false
81
+ */
82
+ isOn?: boolean;
83
+ };
59
84
  };
60
85
  /**
61
86
  * 表格设置菜单.
@@ -86,72 +111,54 @@ export declare type IKgOption = {
86
111
  };
87
112
  };
88
113
  };
89
- /**
90
- * 表头.
91
- */
92
- HeaderCell?: {
93
- /**
94
- * 右键菜单.
95
- */
96
- contextMenu?: {
97
- /**
98
- * @default false
99
- */
100
- isOn?: boolean;
101
- };
102
- };
103
- Info?: {
114
+ /** 列的过滤. */
115
+ filter?: {
104
116
  /**
105
- * 定位勾选的行.
117
+ * 是否启用功能.
118
+ * @default false
106
119
  */
107
- locateSelectedRows: {
108
- /**
109
- * @default false
110
- */
111
- isOn?: boolean;
112
- };
120
+ on?: boolean;
113
121
  };
114
122
  };
115
123
  /** 仓库选择. */
116
124
  KgWarehouse?: {
117
- /**
118
- * 是否启用功能.
119
- * @default true
120
- */
121
- on?: boolean;
122
125
  /** 默认的仓库编码, 只有在 {@link IKgOption.KgWarehouse.on} 为 false 时才生效. */
123
126
  defaultWarehouseID?: string;
124
- };
125
- /** 工作站选择. */
126
- KgStation?: {
127
127
  /**
128
128
  * 是否启用功能.
129
129
  * @default true
130
130
  */
131
- isOn?: boolean;
131
+ on?: boolean;
132
132
  };
133
133
  /** 模块首页地址. */
134
134
  appIndex?: {
135
- /** 默认为 '/wms/data-manager/index'. */
136
- [KG_APP.WMS_DATA_MANAGER]?: string;
137
- /** 默认为 '/wms/business-manager/index'. */
138
- [KG_APP.WMS_BUSINESS_MANAGER]?: string;
139
- /** 默认为 '/wcs/index'. */
140
- [KG_APP.WCS]?: string;
141
135
  /** 默认为 '/sys/index'. */
142
136
  [KG_APP.SYS]?: string;
137
+ /** 默认为 '/wcs/index'. */
138
+ [KG_APP.WCS]?: string;
139
+ /** 默认为 '/wms/business-manager/index'. */
140
+ [KG_APP.WMS_BUSINESS_MANAGER]?: string;
141
+ /** 默认为 '/wms/data-manager/index'. */
142
+ [KG_APP.WMS_DATA_MANAGER]?: string;
143
143
  };
144
144
  /** 模块标题. */
145
145
  appTitle?: {
146
- /** 默认为 '数据管理'. */
147
- [KG_APP.WMS_DATA_MANAGER]?: string;
148
- /** 默认为 '仓库管理'. */
149
- [KG_APP.WMS_BUSINESS_MANAGER]?: string;
150
- /** 默认为 'WCS'. */
151
- [KG_APP.WCS]?: string;
152
146
  /** 默认为 '系统配置'. */
153
147
  [KG_APP.SYS]?: string;
148
+ /** 默认为 'WCS'. */
149
+ [KG_APP.WCS]?: string;
150
+ /** 默认为 '仓库管理'. */
151
+ [KG_APP.WMS_BUSINESS_MANAGER]?: string;
152
+ /** 默认为 '数据管理'. */
153
+ [KG_APP.WMS_DATA_MANAGER]?: string;
154
154
  };
155
+ /**
156
+ * 数据库的类型.
157
+ *
158
+ * @see {@link KG_CONST.DB_TYPE}
159
+ * @default {@link KG_CONST.DB_TYPE.SQLSERVER}
160
+ */
161
+ dbType?: string;
155
162
  /**
156
163
  * <p>项目的版本号. 即 package.json 中的 version 值.</p>
157
164
  *
@@ -1,6 +1,147 @@
1
1
  import { type TooltipProps } from 'ant-design-vue';
2
2
  import { ModalFuncProps } from 'ant-design-vue/lib/modal/Modal';
3
3
  import { KgModalProps } from '../component';
4
+ /**
5
+ * 常量.
6
+ * TODO LT 将所有常量都统一放到这个常量中
7
+ */
8
+ export declare const KG_CONST: {
9
+ /**
10
+ * 数据库的列的类型.
11
+ */
12
+ DB_COLUMN_TYPE: {
13
+ NCHAR: string;
14
+ NVARCHAR: string;
15
+ };
16
+ /**
17
+ * 数据库的类型.
18
+ */
19
+ DB_TYPE: {
20
+ /**
21
+ * 达梦.
22
+ */
23
+ DM: string;
24
+ MYSQL: string;
25
+ ORACLE: string;
26
+ POSTGRESQL: string;
27
+ SQLITE: string;
28
+ SQLSERVER: string;
29
+ };
30
+ /**
31
+ * HTTP 请求头.
32
+ */
33
+ HTTP_HEADER: {
34
+ KG_BUTTON_VAR_NAME: string;
35
+ /**
36
+ * 数据库的类型.
37
+ */
38
+ KG_DB_TYPE: string;
39
+ /** 界面标识. */
40
+ KG_FORM_ID: string;
41
+ /** 是否启用高级查询. */
42
+ KG_IS_DYNAMIC_QUERY: string;
43
+ /** 当前页码. */
44
+ KG_PAGE_INDEX: string;
45
+ /** 每页条数. */
46
+ KG_PAGE_SIZE: string;
47
+ /**
48
+ * <p>高级查询时, 每个查询字段的参数值.</p>
49
+ * <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的值.</p>
50
+ */
51
+ KG_QUERY_OBJECT: string;
52
+ /**
53
+ * <p>高级查询时, 每个查询字段的操作符.</p>
54
+ * <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的操作符.</p>
55
+ */
56
+ KG_QUERY_OPERATOR_OBJECT: string;
57
+ /** 查询语句中的 ORDER BY 片段. */
58
+ KG_QUERY_ORDER_BY_SQL: string;
59
+ /**
60
+ * <p>高级查询时, 每个查询字段的 WHERE 片段.</p>
61
+ * <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的 WHERE 片段.</p>
62
+ */
63
+ KG_QUERY_WHERE_OBJECT: string;
64
+ /** 查询语句中的 WHERE 片段. */
65
+ KG_QUERY_WHERE_SQL: string;
66
+ /**
67
+ * 仓库编号.
68
+ */
69
+ KG_WAREHOUSE: string;
70
+ /**
71
+ * 工作区.
72
+ */
73
+ KG_WORK_AREA: string;
74
+ /**
75
+ * 工作站.
76
+ */
77
+ KG_WORK_STATION: string;
78
+ };
79
+ VAR_CONFIG_CONTROL: {
80
+ /**
81
+ * 表单控件类型.
82
+ * @see VarConfigControl.ctrl_prop
83
+ * @see IKgVarConfigControlControlProperties
84
+ */
85
+ CONTROL_TYPE: {
86
+ /** 文件上传按钮. */
87
+ BUTTON_UPLOAD: string;
88
+ /** 多选框. */
89
+ CHECKBOX: string;
90
+ /**
91
+ * <p>多选框列表.</p>
92
+ * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.CHECKBOX_GROUP}.</p>
93
+ */
94
+ CHECKBOX_GROUP: string;
95
+ /** 年月日, 2020-05-01. */
96
+ DATE_DATE: string;
97
+ /** 年月日时分秒, 2020-05-01 11:59:59. */
98
+ DATE_DATETIME: string;
99
+ /** 年月日时分秒的范围, [DATE_DATETIME, DATE_DATETIME] */
100
+ DATE_DATETIME_RANGE: string;
101
+ /** 年月日的范围, [DATE_DATE, DATE_DATE] */
102
+ DATE_DATE_RANGE: string;
103
+ DATE_MONTH: string;
104
+ /** 时分秒, 11:59:59. */
105
+ DATE_TIME: string;
106
+ /** 时分秒的范围, [DATE_TIME, DATE_TIME]. */
107
+ DATE_TIME_RANGE: string;
108
+ DATE_WEEK: string;
109
+ DATE_YEAR: string;
110
+ /**
111
+ * <p>图片.</p>
112
+ * <p>点击可以预览.</p>
113
+ */
114
+ IMAGE: string;
115
+ /** 单行文本. */
116
+ INPUT: string;
117
+ /** 数字. */
118
+ INPUT_NUMBER: string;
119
+ /** 密码. */
120
+ INPUT_PASSWORD: string;
121
+ /** 链接. */
122
+ LINK: string;
123
+ /**
124
+ * <p>单选框列表.</p>
125
+ * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.RADIO_GROUP}.</p>
126
+ */
127
+ RADIO_GROUP: string;
128
+ /**
129
+ * <p>单选下拉列表.<p>
130
+ * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.SELECT}.</p>
131
+ */
132
+ SELECT: string;
133
+ /** 多选下拉列表. */
134
+ SELECT_MULTIPLE: string;
135
+ /** 开关. */
136
+ SWITCH: string;
137
+ /**
138
+ * <p>多行文本.</p>
139
+ * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.TEXT_AREA}.</p>
140
+ */
141
+ TEXT_AREA: string;
142
+ };
143
+ };
144
+ };
4
145
  /** 模块. */
5
146
  export declare const enum KG_APP {
6
147
  /** 数据管理. */
@@ -27,67 +168,6 @@ export declare const enum KG_APP_PREFIX {
27
168
  export declare const KG_APPS: Array<KG_APP>;
28
169
  /** 所有模块路径前缀. */
29
170
  export declare const KG_APP_PREFIXS: Array<KG_APP_PREFIX>;
30
- /**
31
- * 表单控件类型.
32
- * @see VarConfigControl.ctrl_prop
33
- * @see IKgVarConfigControlControlProperties
34
- */
35
- export declare enum KG__VAR_CONFIG_CONTROL__CONTROL_TYPE {
36
- /** 单行文本. */
37
- INPUT = "INPUT",
38
- /** 密码. */
39
- INPUT_PASSWORD = "INPUT_PASSWORD",
40
- /** 数字. */
41
- INPUT_NUMBER = "INPUT_NUMBER",
42
- /**
43
- * <p>多行文本.</p>
44
- * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.TEXT_AREA}.</p>
45
- */
46
- TEXT_AREA = "TEXT_AREA",
47
- /** 多选框. */
48
- CHECKBOX = "CHECKBOX",
49
- /**
50
- * <p>多选框列表.</p>
51
- * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.CHECKBOX_GROUP}.</p>
52
- */
53
- CHECKBOX_GROUP = "CHECKBOX_GROUP",
54
- /**
55
- * <p>单选框列表.</p>
56
- * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.RADIO_GROUP}.</p>
57
- */
58
- RADIO_GROUP = "RADIO_GROUP",
59
- /** 开关. */
60
- SWITCH = "SWITCH",
61
- /**
62
- * <p>单选下拉列表.<p>
63
- * <p>配置属性参见 {@link IKgVarConfigControlControlProperties.SELECT}.</p>
64
- */
65
- SELECT = "SELECT",
66
- /** 多选下拉列表. */
67
- SELECT_MULTIPLE = "SELECT_MULTIPLE",
68
- /** 年月日, 2020-05-01. */
69
- DATE_DATE = "DATE_DATE",
70
- /** 年月日的范围, [DATE_DATE, DATE_DATE] */
71
- DATE_DATE_RANGE = "DATE_DATE_RANGE",
72
- /** 时分秒, 11:59:59. */
73
- DATE_TIME = "DATE_TIME",
74
- /** 时分秒的范围, [DATE_TIME, DATE_TIME]. */
75
- DATE_TIME_RANGE = "DATE_TIME_RANGE",
76
- /** 年月日时分秒, 2020-05-01 11:59:59. */
77
- DATE_DATETIME = "DATE_DATETIME",
78
- /** 年月日时分秒的范围, [DATE_DATETIME, DATE_DATETIME] */
79
- DATE_DATETIME_RANGE = "DATE_DATETIME_RANGE",
80
- DATE_WEEK = "DATE_WEEK",
81
- DATE_MONTH = "DATE_MONTH",
82
- DATE_YEAR = "DATE_YEAR",
83
- /**
84
- * <p>图片.</p>
85
- * <p>点击可以预览.</p>
86
- */
87
- IMAGE = "IMAGE",
88
- /** 文件上传按钮. */
89
- BUTTON_UPLOAD = "BUTTON_UPLOAD"
90
- }
91
171
  /**
92
172
  * 表单控件所处环境.
93
173
  */
@@ -537,39 +617,6 @@ export declare enum KG_DYNAMIC_QUERY_OPERATOR {
537
617
  /** 范围之内. */
538
618
  BETWEEN = "BETWEEN"
539
619
  }
540
- /** 请求头部. */
541
- export declare enum KG_HTTP_HEADERS {
542
- /** 当前页码. */
543
- KG_PAGE_INDEX = "Kg-Page-Index",
544
- /** 每页条数. */
545
- KG_PAGE_SIZE = "Kg-Page-Size",
546
- /** 界面标识. */
547
- KG_FORM_ID = "Kg-Form-Id",
548
- KG_BUTTON_VAR_NAME = "Kg-Button-Var-Name",
549
- /** 是否启用高级查询. */
550
- KG_IS_DYNAMIC_QUERY = "Kg-Is-Dynamic-Query",
551
- /** 查询语句中的 WHERE 片段. */
552
- KG_QUERY_WHERE_SQL = "Kg-Query-Where-Sql",
553
- /** 查询语句中的 ORDER BY 片段. */
554
- KG_QUERY_ORDER_BY_SQL = "Kg-Query-Order-By-Sql",
555
- /**
556
- * <p>高级查询时, 每个查询字段的操作符(=,>,<...).</p>
557
- * <p>是一个 JSON 字符串, 由后端进行解析. 其中的 key 表示查询字段的名称, 其中的 value 表示查询字段的操作符.</p>
558
- */
559
- KG_QUERY_OPERATOR = "Kg-Query-Operator",
560
- /**
561
- * 仓库编号.
562
- */
563
- KG_WAREHOUSE = "Kg-Warehouse",
564
- /**
565
- * 工作站.
566
- */
567
- KG_WORK_STATION = "Kg-Work-Station",
568
- /**
569
- * 工作区.
570
- */
571
- KG_WORK_STATION_AREA = "Kg-Work-Area"
572
- }
573
620
  /** 特殊属性:请求返回的原始响应数据. */
574
621
  export declare const __KG__RESPONSE__ = "__KG__RESPONSE__";
575
622
  /** 模块菜单的临时ID:数据管理. */
@@ -594,29 +641,100 @@ export declare type IKgVarButtonModalProperties = ModalFuncProps & {
594
641
  * <p>额外的配置属性. 对应 {@link VarSubmitConfig#props} 字段.</p>
595
642
  */
596
643
  export interface IKgVarSubmitConfigProperties {
597
- /** 确认按钮. */
598
- okButton?: {
599
- /** 确认按钮的文本, 实际是一个变量名, 根据变量进行翻译. */
600
- textVarName?: string;
644
+ /**
645
+ * 取消按钮.
646
+ */
647
+ cancelButton?: {
648
+ /**
649
+ * 是否显示, 默认为 true.
650
+ *
651
+ * @default true
652
+ */
653
+ isShow?: boolean;
601
654
  };
602
- /** 显示方式. */
655
+ /**
656
+ * 显示方式.
657
+ */
603
658
  displayType?: {
604
- [KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE]?: {
605
- /** 要嵌入的页面位置, 是一个 CSS 选择器, 如: #submit-target-xxx. */
659
+ INLINE?: {
660
+ /**
661
+ * 是否在页面的内容区域全屏, 默认为 false.
662
+ *
663
+ * @default false
664
+ */
665
+ isFullscreen?: boolean;
666
+ /**
667
+ * 是否显示标题, 默认为 false.
668
+ *
669
+ * @default false
670
+ */
671
+ isShowTitle?: boolean;
672
+ /**
673
+ * <p>要嵌入的页面位置, 是一个 CSS 选择器, 如: #submit-target-xxx.</p>
674
+ * <p>默认嵌入到表格的底部.</p>
675
+ */
606
676
  target?: string;
677
+ /**
678
+ * 层级, 默认为 3.
679
+ *
680
+ * @default 3
681
+ */
682
+ zIndex?: number;
607
683
  };
608
684
  };
685
+ /**
686
+ * 底部按钮.
687
+ */
688
+ footer?: {
689
+ /**
690
+ * 是否显示, 默认为 true.
691
+ *
692
+ * @default true
693
+ */
694
+ isShow?: boolean;
695
+ };
696
+ /**
697
+ * 确定之后是否关闭弹窗, 默认为 true.
698
+ *
699
+ * @default true
700
+ */
701
+ isCloseModalAfterOk?: boolean;
702
+ /**
703
+ * 确认按钮.
704
+ */
705
+ okButton?: {
706
+ /**
707
+ * 是否显示, 默认为 true.
708
+ *
709
+ * @default true
710
+ */
711
+ isShow?: boolean;
712
+ /**
713
+ * <p>确认按钮的文本, 实际是一个变量名, 根据变量进行翻译.</p>
714
+ * <p>确认按钮的文本默认为「确定」.</p>
715
+ */
716
+ textVarName?: string;
717
+ };
609
718
  }
610
719
  /**
611
720
  * <p>额外的配置属性. 对应 {@link VarButton#props} 字段.</p>
612
721
  */
613
722
  export interface IKgVarButtonProperties {
723
+ /**
724
+ * 文本提示.
725
+ */
614
726
  tooltip?: TooltipProps;
615
727
  }
616
728
  /**
617
729
  * <p>额外的配置属性. 对应 {@link VarButtonConfig#props} 字段.</p>
618
730
  */
619
731
  export interface IKgVarButtonConfigProperties {
732
+ /**
733
+ * 是否显示, 默认为 true.
734
+ *
735
+ * @default true
736
+ */
737
+ isVisible?: boolean;
620
738
  }
621
739
  /**
622
740
  * <p>额外的配置属性. 对应 {@link VarChildDetail#props} 字段.</p>
@@ -682,6 +800,12 @@ export interface IKgVarGridConfigProperties {
682
800
  * <p>该代码需要返回 true 或者 false, 即表示是否禁用勾选框.</p>
683
801
  */
684
802
  isCheckboxDisabled?: string;
803
+ /**
804
+ * 是否显示, 默认为 true.
805
+ *
806
+ * @default true
807
+ */
808
+ isVisible?: boolean;
685
809
  }
686
810
  /**
687
811
  * <p>额外的配置属性. 对应 {@link VarGridDetail#props} 字段.</p>
@@ -719,6 +843,18 @@ export interface IKgVarProfileMasterProperties {
719
843
  * <p>额外的配置属性. 对应 {@link VarSubmitDetail#props} 字段.</p>
720
844
  */
721
845
  export interface IKgVarSubmitDetailProperties {
846
+ /**
847
+ * 是否显示文本标签, 默认为 true. 如果为 false 则文本标签不会显示, 但是文本标签外部容器回显示, 即显示空白的占位.
848
+ *
849
+ * @default true
850
+ */
851
+ isShowLabel?: boolean;
852
+ /**
853
+ * 是否显示文本标签外部容器, 默认为 true. 如果为 false 则文本标签不会显示, 并且文本标签外部容器也不会显示.
854
+ *
855
+ * @default true
856
+ */
857
+ isShowLabelContainer?: boolean;
722
858
  }
723
859
  /**
724
860
  * <p>额外的配置属性. 对应 {@link VarVariable#props} 字段.</p>
@@ -729,27 +865,39 @@ export interface IKgVarVariableProperties {
729
865
  * <p>表单控件的参数.</p>
730
866
  * <p>对应于 {@link VarConfigControl.ctrl_prop} 字段, 根据表单控件的类型, 设置额外的参数.</p>
731
867
  * @see VarConfigControl.ctrl_prop
732
- * @see KG__VAR_CONFIG_CONTROL__CONTROL_TYPE
868
+ * @see KG_CONST.VAR_CONFIG_CONTROL.CONTROL_TYPE
733
869
  */
734
870
  export interface IKgVarConfigControlControlProperties {
871
+ CHECKBOX: {
872
+ /**
873
+ * <p>值的类型.</p>
874
+ * <ul>
875
+ * <li>NUMBER: 勾选为 1, 未勾选为 0,</li>
876
+ * <li>BOOLEAN: 勾选为 true, 未勾选为 false,</li>
877
+ * </ul>
878
+ *
879
+ * @default NUMBER
880
+ */
881
+ dataType?: 'NUMBER' | 'BOOLEAN';
882
+ };
735
883
  CHECKBOX_GROUP: {
736
884
  /**
737
885
  * <p>要排除的数据.</p>
738
886
  * <p>这些数据会从列表数据中移除.</p>
739
887
  */
740
888
  excludeValues?: Array<any>;
741
- /**
742
- * 数据项的宽度.
743
- *
744
- * @default 24
745
- */
746
- span?: number;
747
889
  /**
748
890
  * 是否显示「全选」.
749
891
  *
750
892
  * @default true
751
893
  */
752
894
  isShowSelectAll?: boolean;
895
+ /**
896
+ * 数据项的宽度.
897
+ *
898
+ * @default 24
899
+ */
900
+ span?: number;
753
901
  };
754
902
  DATE_RANGE: {
755
903
  /**
@@ -789,6 +937,18 @@ export interface IKgVarConfigControlControlProperties {
789
937
  */
790
938
  allowClear?: boolean;
791
939
  };
940
+ SWITCH: {
941
+ /**
942
+ * <p>值的类型.</p>
943
+ * <ul>
944
+ * <li>NUMBER: 勾选为 1, 未勾选为 0,</li>
945
+ * <li>BOOLEAN: 勾选为 true, 未勾选为 false,</li>
946
+ * </ul>
947
+ *
948
+ * @default NUMBER
949
+ */
950
+ dataType?: 'NUMBER' | 'BOOLEAN';
951
+ };
792
952
  TEXT_AREA: {
793
953
  /**
794
954
  * 文本框的高度.
@@ -1,5 +1,8 @@
1
1
  import { DropMenu } from '../project/src/components/Dropdown/src/typing';
2
2
  import { LocaleSetting, LocaleType } from '../project/types/config';
3
+ /**
4
+ * @see LocaleType
5
+ */
3
6
  export declare const LOCALE: {
4
7
  CS_CZ: LocaleType;
5
8
  EN: LocaleType;
@@ -78,6 +78,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
78
78
  frm_id?: string | null | undefined;
79
79
  frm_nam?: string | null | undefined;
80
80
  id?: string | null | undefined;
81
+ props?: string | null | undefined;
81
82
  } | null | undefined;
82
83
  varGridConfig?: {
83
84
  aut_load_flg?: number | null | undefined;
@@ -287,6 +288,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
287
288
  frm_id?: string | null | undefined;
288
289
  frm_nam?: string | null | undefined;
289
290
  id?: string | null | undefined;
291
+ props?: string | null | undefined;
290
292
  } | null | undefined;
291
293
  varGridConfig?: {
292
294
  aut_load_flg?: number | null | undefined;
@@ -538,6 +540,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
538
540
  frm_id?: string | null | undefined;
539
541
  frm_nam?: string | null | undefined;
540
542
  id?: string | null | undefined;
543
+ props?: string | null | undefined;
541
544
  } | null | undefined;
542
545
  varGridConfig?: {
543
546
  aut_load_flg?: number | null | undefined;
@@ -747,6 +750,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
747
750
  frm_id?: string | null | undefined;
748
751
  frm_nam?: string | null | undefined;
749
752
  id?: string | null | undefined;
753
+ props?: string | null | undefined;
750
754
  } | null | undefined;
751
755
  varGridConfig?: {
752
756
  aut_load_flg?: number | null | undefined;
@@ -998,6 +1002,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
998
1002
  frm_id?: string | null | undefined;
999
1003
  frm_nam?: string | null | undefined;
1000
1004
  id?: string | null | undefined;
1005
+ props?: string | null | undefined;
1001
1006
  } | null | undefined;
1002
1007
  varGridConfig?: {
1003
1008
  aut_load_flg?: number | null | undefined;
@@ -1207,6 +1212,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
1207
1212
  frm_id?: string | null | undefined;
1208
1213
  frm_nam?: string | null | undefined;
1209
1214
  id?: string | null | undefined;
1215
+ props?: string | null | undefined;
1210
1216
  } | null | undefined;
1211
1217
  varGridConfig?: {
1212
1218
  aut_load_flg?: number | null | undefined;