@omnia/fx-models 7.8.17-preview → 7.8.19-preview

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": "7.8.17-preview",
4
+ "version": "7.8.19-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -18,6 +18,7 @@ export interface IPropertyEditorRenderer<TPropertyDef extends PropertyDefinition
18
18
  setupSettings?: PropertySetupSettingsType<TPropertyDef>;
19
19
  onValueBindChanged(newValue: PropertyValueType<TPropertyDef>): void;
20
20
  disabled?: boolean;
21
+ propertyStyles?: PropertyStyles;
21
22
  }
22
23
  export interface IPropertyConfigurationRenderer<TPropertyDef extends PropertyDefinition<any, any, any>> {
23
24
  valueBind: PropertyConfiguration<TPropertyDef>;
@@ -32,3 +33,8 @@ export interface IPropertyConfigurationRenderer<TPropertyDef extends PropertyDef
32
33
  defaultConfiguration?: PropertyConfiguration<TPropertyDef>;
33
34
  multilingualContext?: MultilingualContext;
34
35
  }
36
+ export interface PropertyStyles {
37
+ outlined: boolean;
38
+ rounded: boolean;
39
+ filled: boolean;
40
+ }