@kengic/vue 0.28.1-beta.8 → 0.28.1-beta.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -910,3 +910,20 @@ export interface IKgVarGridDetailDisplayTypeProperties {
910
910
  yValue?: any;
911
911
  };
912
912
  }
913
+ /**
914
+ * 通用常量.
915
+ */
916
+ export declare const KG_COMMON_CONST: {
917
+ /**
918
+ * 用于添加的行.
919
+ * 在「查询条件」「提交字段」「表格视图」中, 用户可以自己添加额外的行, 作为「查询字段」「提交字段」「表格的列」,
920
+ * 为了操作方便, 会在表格中始终显示一个特殊的行, 称之为「用于添加的行」, 点击该行左侧的加号就可以添加新的行, 本常量用来作为该特殊的行的 ID.
921
+ */
922
+ __KG__CREATE_ROW_ID__: string;
923
+ /**
924
+ * 用户添加的行.
925
+ * 在「查询条件」「提交字段」「表格视图」中, 用户可以自己添加额外的行, 作为「查询字段」「提交字段」「表格的列」, 本常量用来作为该行的 ID.
926
+ */
927
+ __KG__CUSTOM_ROW_ID__: string;
928
+ __KG__NULL__: string;
929
+ };
@@ -0,0 +1,6 @@
1
+ /**
2
+ * DDA 界面标识常量.
3
+ */
4
+ export declare const FORM_IDS: {
5
+ KG_PAGE_DDA__CREATE__BUTTON: string;
6
+ };
@@ -1,2 +1,3 @@
1
- export * from './const.vm';
2
1
  export * from './const.injection-keys';
2
+ export * from './const.vm';
3
+ export * from './form-id.const';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.1-beta.8",
3
+ "version": "0.28.1-beta.9",
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",
@@ -1,12 +0,0 @@
1
- /**
2
- * 用户添加的行.
3
- * 在「查询条件」「提交字段」「表格视图」中, 用户可以自己添加额外的行, 作为「查询字段」「提交字段」「表格的列」, 本常量用来作为该行的 ID.
4
- */
5
- export declare const __KG__CUSTOM_ROW_ID__ = "__KG__CUSTOM_ROW_ID__";
6
- /**
7
- * 用于添加的行.
8
- * 在「查询条件」「提交字段」「表格视图」中, 用户可以自己添加额外的行, 作为「查询字段」「提交字段」「表格的列」,
9
- * 为了操作方便, 会在表格中始终显示一个特殊的行, 称之为「用于添加的行」, 点击该行左侧的加号就可以添加新的行, 本常量用来作为该特殊的行的 ID.
10
- */
11
- export declare const __KG__CREATE_ROW_ID__ = "__KG__CREATE_ROW_ID__";
12
- export declare const FORM_ID__CREATE__BUTTON = "KgPageDda.Create.Button";