@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.
- package/identities/IdentityCreationRequest.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +6 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +9 -8
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +5 -0
- package/package.json +1 -1
@@ -66,7 +66,7 @@ export declare class IdentityCreationRequestSettings {
|
|
66
66
|
userRequestFormSettings: Array<UserRequestFormSetting>;
|
67
67
|
}
|
68
68
|
export declare class PropertyBindingDisplay {
|
69
|
-
|
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
|
-
|
80
|
+
padding?: SpacingSettings;
|
81
81
|
rounded?: string;
|
82
82
|
alterCaps?: boolean;
|
83
83
|
background?: ColorValue;
|
@@ -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
|
83
|
-
|
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
|
86
|
+
export interface LinearGradientBackgroundDefinition extends BackgroundDefinition {
|
86
87
|
degrees: number;
|
87
88
|
}
|
88
|
-
export interface
|
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",
|