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
|
@@ -261,11 +261,12 @@ interface mgFontTextStyle {
|
|
|
261
261
|
* @property titleMedium: page titles
|
|
262
262
|
* @property titleSmall: modal titles
|
|
263
263
|
*
|
|
264
|
-
* @property labelLarge:
|
|
265
|
-
*
|
|
266
|
-
* @property labelMedium: Billboard
|
|
267
|
-
* @property labelSmall: bottom navigation buttons,
|
|
268
|
-
*
|
|
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
|
-
|
|
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
|
}
|