@omnia/fx-models 8.0.111-dev → 8.0.112-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.
@@ -66,7 +66,7 @@ export declare class IdentityCreationRequestSettings {
66
66
  userRequestFormSettings: Array<UserRequestFormSetting>;
67
67
  }
68
68
  export declare class PropertyBindingDisplay {
69
- propertyDefintionSetting: IExtendedEnterprisepropertiesPropertyDefinitionSettings;
69
+ propertyDefinitionSetting: IExtendedEnterprisepropertiesPropertyDefinitionSettings;
70
70
  propertyBindingSetting: PropertyBindingSetting;
71
71
  }
72
72
  export declare class UserRequestFormSetting {
@@ -77,7 +77,7 @@ export interface ButtonBlueprint extends BlueprintItemDefinition {
77
77
  type: "button";
78
78
  density?: "compact" | "comfortable";
79
79
  size?: "x-small" | "small" | "large" | "x-large";
80
- customSize?: number;
80
+ padding?: SpacingSettings;
81
81
  rounded?: string;
82
82
  alterCaps?: boolean;
83
83
  background?: ColorValue;
@@ -1,4 +1,10 @@
1
1
  import { Guid } from "../Guid";
2
+ export interface Spacing {
3
+ top?: number;
4
+ right?: number;
5
+ bottom?: number;
6
+ left?: number;
7
+ }
2
8
  export interface SpacingSettings {
3
9
  top?: number | SpacingType;
4
10
  right?: number | SpacingType;
@@ -65,10 +65,6 @@ export declare enum ColorTypes {
65
65
  container = "container",
66
66
  onContainer = "onContainer"
67
67
  }
68
- export interface ColorGradient {
69
- color: string;
70
- stop?: number;
71
- }
72
68
  export interface ThemedColorValue {
73
69
  colorType: ColorType;
74
70
  toned?: boolean;
@@ -79,13 +75,18 @@ export declare enum RadialGradientShapes {
79
75
  circle = 0,
80
76
  ellipse = 1
81
77
  }
82
- export interface BackgroundColorValue {
83
- colors: Array<ColorValue>;
78
+ export interface ColorGradientValue {
79
+ color: ColorValue;
80
+ stop?: number;
81
+ }
82
+ export interface BackgroundDefinition {
83
+ colors: Array<ColorValue | ColorGradientValue>;
84
+ acrylic?: boolean;
84
85
  }
85
- export interface LinearGradientBackgroundColorValue extends BackgroundColorValue {
86
+ export interface LinearGradientBackgroundDefinition extends BackgroundDefinition {
86
87
  degrees: number;
87
88
  }
88
- export interface RadialGradientBackgroundColorValue extends BackgroundColorValue {
89
+ export interface RadialGradientBackgroundDefinition extends BackgroundDefinition {
89
90
  shape: RadialGradientShapes;
90
91
  position?: number;
91
92
  }
@@ -44,6 +44,11 @@ export declare enum TypographyTypes {
44
44
  text = "text",
45
45
  navigation = "navigation"
46
46
  }
47
+ export interface ThemedTypographyValue {
48
+ typographyType: TypographyType;
49
+ size: TypographySize;
50
+ }
51
+ export type TypographyValue = string | ThemedTypographyValue;
47
52
  export type TypographySize = keyof typeof TypographySizes;
48
53
  export declare enum TypographySizes {
49
54
  xl = "xl",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.111-dev",
4
+ "version": "8.0.112-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"