flame-types 1.1.13 → 1.1.14
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.
|
@@ -126,6 +126,8 @@ export interface FrameworkPaletteFieldLibItem {
|
|
|
126
126
|
gridW?: number;
|
|
127
127
|
gridH?: number;
|
|
128
128
|
fieldLibItemSnapshot?: Record<string, unknown>;
|
|
129
|
+
/** 模型字段来源:主表 / 子项目绑定子表(pageFramework 生成时写入) */
|
|
130
|
+
modelFieldScope?: 'main' | 'subForm';
|
|
129
131
|
}
|
|
130
132
|
export type FrameworkPaletteItem = FrameworkPaletteBasicItem | FrameworkPaletteCustomItem | FrameworkPaletteComponentBundleItem | FrameworkPaletteFieldLibItem;
|
|
131
133
|
export type FrameworkComponentGroupPanelRole = 'preset' | 'customComponent' | 'customFieldLib';
|
|
@@ -17,4 +17,11 @@ export interface FlameTableInfoItem {
|
|
|
17
17
|
is_search_display?: boolean;
|
|
18
18
|
is_table_display?: boolean;
|
|
19
19
|
is_ref_table_display?: boolean;
|
|
20
|
+
is_add_dialog_display?: boolean | number;
|
|
21
|
+
is_edit_dialog_display?: boolean | number;
|
|
22
|
+
is_detail_dialog_display?: boolean | number;
|
|
23
|
+
is_null_space?: boolean;
|
|
24
|
+
is_edit_dialog_read_only?: boolean;
|
|
25
|
+
com_box_value?: string;
|
|
26
|
+
com_box_display_name?: string;
|
|
20
27
|
}
|