@omnia/fx-models 8.0.405-dev → 8.0.406-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.
@@ -79,7 +79,6 @@ export interface TypographyBlueprint extends ThemeBase {
|
|
79
79
|
};
|
80
80
|
}
|
81
81
|
export interface TextStyleDefinition {
|
82
|
-
scale?: number;
|
83
82
|
decoration?: string;
|
84
83
|
uppercase?: boolean;
|
85
84
|
italic?: boolean;
|
@@ -90,6 +89,8 @@ export interface TextStyleDefinition {
|
|
90
89
|
name?: string;
|
91
90
|
}
|
92
91
|
export interface TextStyleBreakPoint {
|
92
|
+
custom?: boolean;
|
93
|
+
scale?: number;
|
93
94
|
customSize?: boolean;
|
94
95
|
customLineHeight?: boolean;
|
95
96
|
size?: number;
|
@@ -8,10 +8,7 @@ var TextStyleTypes;
|
|
8
8
|
TextStyleTypes["title"] = "title";
|
9
9
|
TextStyleTypes["text"] = "text";
|
10
10
|
TextStyleTypes["label"] = "label";
|
11
|
-
//navigation = "navigation",
|
12
|
-
//button = "button",
|
13
11
|
TextStyleTypes["variants"] = "variants";
|
14
|
-
//fills = "fills",
|
15
12
|
})(TextStyleTypes || (exports.TextStyleTypes = TextStyleTypes = {}));
|
16
13
|
var TextStyleSizes;
|
17
14
|
(function (TextStyleSizes) {
|
package/package.json
CHANGED
@@ -32,5 +32,4 @@ export interface IPropertyConfigurationRenderer<TPropertyDef extends PropertyDef
|
|
32
32
|
defaultConfiguration?: PropertyConfiguration<TPropertyDef>;
|
33
33
|
multilingualContext?: MultilingualContext;
|
34
34
|
append?: (item?: PropertyConfiguration<TPropertyDef>) => VNodeChild;
|
35
|
-
prependSetting?: () => VNodeChild;
|
36
35
|
}
|