@mx-cartographer/experiences 6.26.0-alpha.sms5 → 6.26.0-alpha.sms6

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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.25.5] - 08-25-2025
2
+
3
+ - **ADDED** - `Mini Goals Widget` | Padding updated for empty state
4
+
1
5
  ## [6.25.4] - 08-22-2025
2
6
 
3
7
  - **ADDED** - Key Indicators section for `Finstrong`
@@ -9,7 +9,7 @@ export declare class AccountStore {
9
9
  members: Member[];
10
10
  uiStore: UiStore;
11
11
  constructor(globalStore: GlobalStore);
12
- loadAccountData: ({ accounts, institutions, }?: {
12
+ loadAccountData: ({ accounts, institutions, }: {
13
13
  accounts?: Account[];
14
14
  institutions?: Institution[];
15
15
  }) => Promise<void>;
package/dist/index.es.js CHANGED
@@ -6574,7 +6574,7 @@ class gg {
6574
6574
  };
6575
6575
  loadCategories = async (n) => {
6576
6576
  try {
6577
- const i = n ?? await this.api.getCategories(), { default_categories: a } = this.globalStore.copyStore.copy.categories;
6577
+ const i = n || await this.api.getCategories(), { default_categories: a } = this.globalStore.copyStore.copy.categories;
6578
6578
  Q(() => {
6579
6579
  this.categories = i.map((o) => ({
6580
6580
  ...o,
@@ -14924,6 +14924,7 @@ const I1 = x(({ goal: e }) => {
14924
14924
  alignSelf: "center",
14925
14925
  flexDirection: r ? "row" : "column",
14926
14926
  gap: r ? 16 : 0,
14927
+ px: r ? 0 : 24,
14927
14928
  ...i
14928
14929
  },
14929
14930
  children: [
@@ -24407,7 +24408,7 @@ class H0 {
24407
24408
  }
24408
24409
  loadAppData = async (n) => {
24409
24410
  try {
24410
- const i = n ?? await this.api.getAppData();
24411
+ const i = n || await this.api.getAppData();
24411
24412
  Q(() => {
24412
24413
  this.appData = i, this.bannerApi = new gr(i.address?.bullseye || "/");
24413
24414
  });
@@ -24505,7 +24506,7 @@ class W0 {
24505
24506
  }
24506
24507
  loadUserFeatures = async (n) => {
24507
24508
  try {
24508
- const i = n ?? await this.api.getUserFeatures();
24509
+ const i = n || await this.api.getUserFeatures();
24509
24510
  Q(() => {
24510
24511
  this.userFeatures = i;
24511
24512
  });
@@ -25963,7 +25964,7 @@ class hb {
25963
25964
  loadAccountData = async ({
25964
25965
  accounts: n,
25965
25966
  institutions: i
25966
- } = {}) => {
25967
+ }) => {
25967
25968
  await Promise.all([this.loadAccounts(n), this.loadInstitutions(i)]);
25968
25969
  };
25969
25970
  get cashAccounts() {
@@ -26059,7 +26060,7 @@ class hb {
26059
26060
  await this.loadMembers();
26060
26061
  try {
26061
26062
  const i = n || await this.api.getAccounts();
26062
- console.log("accountsOverride2", n), Q(() => {
26063
+ Q(() => {
26063
26064
  this.accounts = this.sortAccounts(this.augmentAccounts(i));
26064
26065
  });
26065
26066
  } catch (i) {