mgtypes 1.0.78 → 1.0.79

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.78",
3
+ "version": "1.0.79",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -261,11 +261,12 @@ interface mgFontTextStyle {
261
261
  * @property titleMedium: page titles
262
262
  * @property titleSmall: modal titles
263
263
  *
264
- * @property labelLarge: standard & segmented button texts, loading
265
- * modal, accordion titles, help modal, confirm action snackbar title
266
- * @property labelMedium: Billboard marker title,
267
- * @property labelSmall: bottom navigation buttons, map label marker
268
- * ("ZOOM IN"), other small-font instructions/labels, custom chip
264
+ * @property labelLarge: BUTTONS, segmented buttons
265
+ * accordion titles, help modal, confirm action snackbar title
266
+ * @property labelMedium: Billboard title,
267
+ * @property labelSmall: bottom navigation buttons,
268
+ * Billboard "ZOOM IN", custom chip,
269
+ * other small-font instructions/labels,
269
270
  *
270
271
  * @property bodyLarge: TextInput, some accessory text (on splash)
271
272
  * @property bodyMedium: avatar and modal text, card primary text,
@@ -26,8 +26,16 @@ export interface mgOtherComponentConfig {
26
26
  };
27
27
  CARD: {
28
28
  mediaHeight: number;
29
- actionButtonIconSize: number;
29
+ voteButtonIconSize: number;
30
30
  avatarImageSize: number;
31
- avatarIconSize: number;
32
31
  };
32
+ CUSTOM_CHIP: {
33
+ iconSize:number;
34
+ height:number;
35
+ };
36
+ BOTTOM_NAV: {
37
+ buttonSize: number;
38
+ iconSize: number;
39
+ height: number;
40
+ }
33
41
  }