@mx-cartographer/experiences 5.2.14 → 5.2.17-alpha.mega1
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/CHANGELOG.md +13 -0
- package/dist/common/api/BannerApi.d.ts +6 -0
- package/dist/common/api/index.d.ts +1 -0
- package/dist/common/components/Banner.d.ts +3 -0
- package/dist/common/stores/AppDataStore.d.ts +5 -1
- package/dist/common/types/AppData.d.ts +4 -0
- package/dist/common/types/index.d.ts +1 -1
- package/dist/index.es.js +2275 -2185
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [5.2.17] - 04-16-2025
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Notifications mobile responsiveness, padding, and background color adjustments.
|
|
4
|
+
|
|
5
|
+
## [5.2.16] - 04-12-2025
|
|
6
|
+
|
|
7
|
+
- **ADDED** - `BannerApi` and `Banner`
|
|
8
|
+
- **ADDED** - Display `Banner` in `Dashboard` main column
|
|
9
|
+
|
|
10
|
+
## [5.2.15] - 04-12-2025
|
|
11
|
+
|
|
12
|
+
- **FIXED** - NetWorth | List title label fixed.
|
|
13
|
+
|
|
1
14
|
## [5.2.14] - 04-12-2025
|
|
2
15
|
|
|
3
16
|
- **FIXED** - NetWorth | List Sizing Issue fixed.
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { AppDataApi } from '../api/AppDataApi';
|
|
2
|
-
import { AppConfig, AppData, ClientCommunicationProfile, User, UserCommunicationProfile, UserProfile } from '../types';
|
|
2
|
+
import { AppConfig, AppData, Banner, ClientCommunicationProfile, User, UserCommunicationProfile, UserProfile } from '../types';
|
|
3
|
+
import { BannerApi } from '../api';
|
|
3
4
|
export declare class AppDataStore {
|
|
4
5
|
appConfig: AppConfig;
|
|
5
6
|
appData: AppData;
|
|
6
7
|
api: AppDataApi;
|
|
8
|
+
banner: Banner;
|
|
9
|
+
bannerApi: BannerApi;
|
|
7
10
|
constructor(appConfig: AppConfig);
|
|
8
11
|
initialize: (endpoint: string, token: string) => Promise<void>;
|
|
9
12
|
get clientCommunicationProfile(): ClientCommunicationProfile;
|
|
@@ -11,6 +14,7 @@ export declare class AppDataStore {
|
|
|
11
14
|
get userCommunicationProfile(): UserCommunicationProfile;
|
|
12
15
|
get userProfile(): UserProfile;
|
|
13
16
|
loadAppData: () => Promise<void>;
|
|
17
|
+
loadBanner: () => Promise<void>;
|
|
14
18
|
setClientCommunicationProfile: (profile: ClientCommunicationProfile) => void;
|
|
15
19
|
setUser: (user: User) => User;
|
|
16
20
|
setUserCommunicationProfile: (profile: UserCommunicationProfile) => UserCommunicationProfile;
|
|
@@ -2,7 +2,7 @@ export type { Account, DetailedAccount, Member, MonthlyAccountBalance } from './
|
|
|
2
2
|
export { AccountIcon, AccountIconVariants, AccountSubType, AccountType, AccountTypeName, ConnectionStatus, ConnectionStatusEnums, ErrorStatuses, MfaStatuses, NonConnectedStatuses, ProcessingStatuses, PropertyType, PropertyTypeName, StatusName, } from './Account';
|
|
3
3
|
export { type Activity, ActivityStatus, ActivityType } from './Activity';
|
|
4
4
|
export type { AnalyticsEvent, AnalyticsPageview, BasicAnalyticsEvent, BasicAnalyticsPageview, AnalyticsSession, AnalyticEventFunction, AnalyticPageviewFunction, } from './Analytics';
|
|
5
|
-
export type { AppConfig, AppData, Config, Options } from './AppData';
|
|
5
|
+
export type { AppConfig, AppData, Banner, Config, Options } from './AppData';
|
|
6
6
|
export type { Beat, DataSeries } from './Beat';
|
|
7
7
|
export { UserVerification } from './Beat';
|
|
8
8
|
export type { Budget, BudgetColors, DetailedBudget } from './Budget';
|