flame-types 1.1.10 → 1.1.12
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.
|
@@ -53,6 +53,7 @@ export interface FormChildItem {
|
|
|
53
53
|
paletteKey?: string;
|
|
54
54
|
disabledConfig?: string[];
|
|
55
55
|
field_code?: string;
|
|
56
|
+
fieldLibItemSnapshot?: Record<string, unknown>;
|
|
56
57
|
}
|
|
57
58
|
export interface LayoutItem {
|
|
58
59
|
i: string;
|
|
@@ -119,9 +120,12 @@ export interface FrameworkPaletteFieldLibItem {
|
|
|
119
120
|
type: Exclude<BasicControlType, 'flmCustom'>;
|
|
120
121
|
defaultConfig?: Record<string, unknown>;
|
|
121
122
|
defaultFormItem?: Partial<FormItemSettings>;
|
|
123
|
+
field_code?: string;
|
|
124
|
+
paletteKey?: string;
|
|
122
125
|
disabledConfig?: string[];
|
|
123
126
|
gridW?: number;
|
|
124
127
|
gridH?: number;
|
|
128
|
+
fieldLibItemSnapshot?: Record<string, unknown>;
|
|
125
129
|
}
|
|
126
130
|
export type FrameworkPaletteItem = FrameworkPaletteBasicItem | FrameworkPaletteCustomItem | FrameworkPaletteComponentBundleItem | FrameworkPaletteFieldLibItem;
|
|
127
131
|
export type FrameworkComponentGroupPanelRole = 'preset' | 'customComponent' | 'customFieldLib';
|