@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.115-dev",
4
+ "version": "8.0.116-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -11,13 +11,23 @@ export interface PropertyLabel {
11
11
  text: string | MultilingualString;
12
12
  icon?: IIcon;
13
13
  }
14
- export declare abstract class PropertyDisplaySettingsBase {
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 PropertyEditorSettingsBase {
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
  }