@mx-cartographer/experiences 9.0.9-alpha.al1 → 9.0.10

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
+ ## [9.0.10] - 05-27-2026
2
+
3
+ - **UPDATED** - Adds Tab indexes to the BubbleWeek component to make it accessable to screen readers.
4
+
1
5
  ## [9.0.9] - 05-27-2026
2
6
 
3
7
  - **FIXED** - Split transaction save creating duplicate children due to double-click race condition
@@ -3,7 +3,10 @@ interface BubbleWeekProps {
3
3
  noSpendDays: {
4
4
  [key in string]?: string;
5
5
  };
6
- daysOfTheWeek: string[];
6
+ daysOfTheWeek: Array<{
7
+ name: string;
8
+ altText: string;
9
+ }>;
7
10
  }
8
11
  export declare const BubbleWeek: React.FC<BubbleWeekProps>;
9
12
  export {};
@@ -5,7 +5,10 @@ export interface WeeklyNoSpendDaysProps extends CommonBeatProps {
5
5
  noSpendDays: {
6
6
  [key in string]?: string;
7
7
  };
8
- daysOfTheWeek: string[];
8
+ daysOfTheWeek: Array<{
9
+ name: string;
10
+ altText: string;
11
+ }>;
9
12
  };
10
13
  }
11
14
  export declare const WeeklyNoSpendDays: React.FC<WeeklyNoSpendDaysProps>;