@omnia/fx-models 8.0.115-dev → 8.0.116-dev
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.
package/package.json
CHANGED
@@ -11,13 +11,23 @@ export interface PropertyLabel {
|
|
11
11
|
text: string | MultilingualString;
|
12
12
|
icon?: IIcon;
|
13
13
|
}
|
14
|
-
export
|
14
|
+
export interface IPropertyDisplaySettingsBase {
|
15
15
|
label?: PropertyLabel;
|
16
16
|
showLabelText?: boolean;
|
17
17
|
showLabelIcon?: boolean;
|
18
18
|
inline?: boolean;
|
19
19
|
}
|
20
|
-
export declare abstract class
|
20
|
+
export declare abstract class PropertyDisplaySettingsBase implements IPropertyDisplaySettingsBase {
|
21
|
+
label?: PropertyLabel;
|
22
|
+
showLabelText?: boolean;
|
23
|
+
showLabelIcon?: boolean;
|
24
|
+
inline?: boolean;
|
25
|
+
}
|
26
|
+
export interface IPropertyEditorSettingsBase {
|
27
|
+
required?: boolean;
|
28
|
+
description?: MultilingualString;
|
29
|
+
}
|
30
|
+
export declare abstract class PropertyEditorSettingsBase implements IPropertyEditorSettingsBase {
|
21
31
|
required?: boolean;
|
22
32
|
description?: MultilingualString;
|
23
33
|
}
|