mgtypes 1.0.17 → 1.0.19

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.19",
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,11 @@ export interface EventFonts {
97
98
  }
98
99
 
99
100
  export interface EventStyles {
100
- borderRadius: 'none' | 'small' | 'large';
101
- borderWidth: 'none' | 'thin' | 'normal' | 'thick';
102
- shadow: 'none' | 'small' | 'large';
101
+ containerBorderRadius: 'none' | 'small' | 'large' | 'full';
102
+ containerBorderWidth: 'none' | 'thin' | 'normal' | 'thick';
103
+ containerShadow: 'none' | 'small' | 'large';
104
+ buttonBorderRadius: 'none' | 'small' | 'large' | 'full';
105
+ buttonBorderWidth: 'none' | 'thin' | 'normal' | 'thick';
106
+ buttonShadow: 'none' | 'small' | 'large';
107
+ shadowRadius: 'small' | 'large' | 'none'
103
108
  }