@mx-cartographer/experiences 8.2.7 → 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,11 @@
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
+
5
+ ## [8.2.8] - 05-21-2026
6
+
7
+ - **UPDATED** - ADD the html_in_description_cta field to the ClientConfigurableCta
8
+
1
9
  ## [8.2.7] - 05-21-2026
2
10
 
3
11
  - **UPDATED** - Add aria-hidden="true" to the main image in the WeekendNoSpendDays insight
package/README.md CHANGED
@@ -228,7 +228,7 @@ To avoid overwriting the `latest` npm dist-tag (which should always point to v9.
228
228
  ```
229
229
  1. Tag the release and push the tag:
230
230
  ```bash
231
- git tag v8.2.6
231
+ git tag v8.2.8
232
232
  git push origin --tags
233
233
  ```
234
234
  1. Publish with the dist-tag:
@@ -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
  };