@omnia/velcron 8.0.404-dev → 8.0.405-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.
|
@@ -90,10 +90,12 @@ export interface TextStyleDefinition {
|
|
|
90
90
|
name?: string;
|
|
91
91
|
}
|
|
92
92
|
export interface TextStyleBreakPoint {
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
customSize?: boolean;
|
|
94
|
+
customLineHeight?: boolean;
|
|
95
95
|
size?: number;
|
|
96
96
|
lineHeight?: number;
|
|
97
|
+
weight?: number;
|
|
98
|
+
lineHeightMultiplier?: number;
|
|
97
99
|
letterSpacing?: number;
|
|
98
100
|
}
|
|
99
101
|
export interface TypographyFontRef {
|
|
@@ -113,7 +115,7 @@ export interface ThemedTextStyleValue {
|
|
|
113
115
|
size: TextStyleSize;
|
|
114
116
|
}
|
|
115
117
|
export type TextStyleValue = TextStyleDefinition | ThemedTextStyleValue;
|
|
116
|
-
export type
|
|
118
|
+
export type TextStyleBreakpointType = "lg" | "md" | "sm";
|
|
117
119
|
export type TextStyleSize = keyof typeof TextStyleSizes;
|
|
118
120
|
export declare enum TextStyleSizes {
|
|
119
121
|
xl = "xl",
|