mgtypes 1.0.69 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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,}
17
- CARD: {
18
- actionButtonSize: number,
19
- avatarImageSize: number,
20
- avatarIconSize: number,
21
- }
15
+ NOTIFICATION: { height: number };
22
16
  }
23
17
 
24
18
  export interface mgOtherComponentConfig {
25
- SEARCH_BAR: { placeholder: string; fontSize: number };
19
+ STICKY: { height: number,
20
+ SEARCH_BAR: { placeholder: string; fontSize: number, height: number };
21
+ BOTTOM: {height: number}
22
+ };
23
+ CARD: {
24
+ actionButtonSize: number;
25
+ avatarImageSize: number;
26
+ avatarIconSize: number;
27
+ };
26
28
  }