mgtypes 1.0.70 → 1.0.71
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
|
@@ -252,7 +252,7 @@ interface mgFontTextStyle {
|
|
|
252
252
|
*
|
|
253
253
|
* @property labelSmall: bottom navigation buttons, map label marker ("ZOOM IN"), other small-font instructions/labels
|
|
254
254
|
* @property labelMedium: map filter container switch, map label marker (title), RSVP time info and check text, Custom Chip
|
|
255
|
-
* @property labelLarge: standard button texts, loading modal, accordion titles
|
|
255
|
+
* @property labelLarge: standard & segmented button texts, loading modal, accordion titles,
|
|
256
256
|
* @property bodySmall: smallest normal text. Still needs to be legible.
|
|
257
257
|
* @property bodyMedium: avatar and modal text, card primary text,
|
|
258
258
|
* @property bodyLarge: TextInput, some accessory text (on splash)
|
|
@@ -425,6 +425,9 @@ export interface mgMapFiltersProfile {
|
|
|
425
425
|
|
|
426
426
|
/**
|
|
427
427
|
* Configs to display a map filter
|
|
428
|
+
*
|
|
429
|
+
* allows configuration of filters by contentFamily,
|
|
430
|
+
* category and subtype
|
|
428
431
|
*/
|
|
429
432
|
export interface mgMapFilter {
|
|
430
433
|
contentToFilter?: {
|
|
@@ -11,16 +11,18 @@ export interface mgAuthenticationComponentConfig {
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
export interface mgFeedComponentConfig {
|
|
14
|
-
STICKY: { height: number };
|
|
15
14
|
HEADER: { height: number; OVERLAY: ReactElement };
|
|
16
|
-
NOTIFICATION: {height: number
|
|
15
|
+
NOTIFICATION: { height: number };
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
export interface mgOtherComponentConfig {
|
|
20
|
-
|
|
19
|
+
STICKY: { height: number,
|
|
20
|
+
SEARCH_BAR: { placeholder: string; fontSize: number, height: number };
|
|
21
|
+
BOTTOM: {height: number}
|
|
22
|
+
};
|
|
21
23
|
CARD: {
|
|
22
|
-
actionButtonSize: number
|
|
23
|
-
avatarImageSize: number
|
|
24
|
-
avatarIconSize: number
|
|
25
|
-
}
|
|
24
|
+
actionButtonSize: number;
|
|
25
|
+
avatarImageSize: number;
|
|
26
|
+
avatarIconSize: number;
|
|
27
|
+
};
|
|
26
28
|
}
|