@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 +8 -0
- package/README.md +1 -1
- package/dist/insights/components/insights/WeeklyNoSpendDays/BubbleWeek.d.ts +4 -1
- package/dist/insights/components/insights/WeeklyNoSpendDays/WeeklyNoSpendDays.d.ts +4 -1
- package/dist/insights/hooks/useContainerDimensions.d.ts +1 -1
- package/dist/insights/index.es.js +180 -146
- package/package.json +1 -1
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
|
@@ -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
|
};
|