mgtypes 1.0.35 → 1.0.37
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 +1 -1
- package/types/Configuration.ts +2 -1
package/package.json
CHANGED
package/types/Configuration.ts
CHANGED
|
@@ -15,6 +15,7 @@ export interface mgConfiguration {
|
|
|
15
15
|
profiles: mgProfilesConfig;
|
|
16
16
|
lists: mgListsConfig;
|
|
17
17
|
navigation: mgNavigationConfig;
|
|
18
|
+
calendar: mgCalendarConfig;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
/**
|
|
@@ -79,7 +80,7 @@ export interface mgSpecsConfig {
|
|
|
79
80
|
/**
|
|
80
81
|
* possible buttons in bottom nav and contained in 'MORE' menu
|
|
81
82
|
*/
|
|
82
|
-
enum mgNavButton {
|
|
83
|
+
export enum mgNavButton {
|
|
83
84
|
FEED = 'feed',
|
|
84
85
|
MAP = 'map',
|
|
85
86
|
CREATE = 'create',
|