mgtypes 1.0.17 → 1.0.18

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,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -82,6 +82,7 @@ interface MGFontTextStyle {
82
82
  fontWeight?: '200' | '300' | '400' | '500' | '700';
83
83
  letterSpacing?: number;
84
84
  fontSize?: number;
85
+ lineHeight?: number;
85
86
  }
86
87
 
87
88
  export interface EventFonts {
@@ -97,7 +98,7 @@ export interface EventFonts {
97
98
  }
98
99
 
99
100
  export interface EventStyles {
100
- borderRadius: 'none' | 'small' | 'large';
101
+ borderRadius: 'none' | 'small' | 'large' | 'full';
101
102
  borderWidth: 'none' | 'thin' | 'normal' | 'thick';
102
103
  shadow: 'none' | 'small' | 'large';
103
104
  }