flame-types 1.1.12 → 1.1.13

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.
@@ -36,4 +36,7 @@ export * from './complex/flmTable';
36
36
  export * from './complex/flmToolbar';
37
37
  /** @页面组件 */
38
38
  export * from './page/flmReportPage';
39
+ export * from './page/flmDynamicPage';
39
40
  export * from './page/flmExportPage';
41
+ /** @元数据 */
42
+ export * from './metadata/flameTableInfoItem';
@@ -0,0 +1,20 @@
1
+ export interface FlameTableInfoItem {
2
+ flame_id?: string;
3
+ field_name: string;
4
+ field_description?: string;
5
+ field_color_der?: number;
6
+ web_ui_control_type?: string;
7
+ str_format?: string;
8
+ width?: number | string;
9
+ header_align?: string;
10
+ cell_align?: string;
11
+ service_name?: string;
12
+ fk_table_name?: string;
13
+ fk_table_name_field?: string;
14
+ fk_table_display_field_name?: string;
15
+ items?: FlameTableInfoItem[];
16
+ is_fk?: boolean;
17
+ is_search_display?: boolean;
18
+ is_table_display?: boolean;
19
+ is_ref_table_display?: boolean;
20
+ }
@@ -0,0 +1,10 @@
1
+ import type { FrameworkConfig } from '../complex/flmFramework';
2
+ import type { ReportPageSetting } from './flmReportPage';
3
+ export interface DynamicPageSetting extends Omit<ReportPageSetting, 'readForm' | 'addForm' | 'editForm'> {
4
+ readForm: FrameworkConfig;
5
+ addForm: FrameworkConfig;
6
+ editForm: FrameworkConfig;
7
+ }
8
+ export interface PageFrameworkConfig {
9
+ page: DynamicPageSetting;
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flame-types",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "main": "./dist/main.js",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "files": [