@mx-cartographer/experiences 8.2.8 → 8.2.9

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
+ ## [8.2.9] - 05-28-2026
2
+
3
+ - **UPDATED** - Adds Tab indexes to the BubbleWeek component to make it accessable to screen readers.
4
+
1
5
  ## [8.2.8] - 05-21-2026
2
6
 
3
7
  - **UPDATED** - ADD the html_in_description_cta field to the ClientConfigurableCta
@@ -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
  dollarBillAltText: string;
10
13
  };
11
14
  }
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- export declare const useContainerDimensions: (containerRef: React.RefObject<HTMLDivElement>) => {
2
+ export declare const useContainerDimensions: (containerRef: React.RefObject<HTMLDivElement | null>) => {
3
3
  width: number;
4
4
  height: number;
5
5
  };