@mx-cartographer/experiences 8.0.1 → 8.0.2

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.0.2] - 04-07-2026
2
+
3
+ - **ADDED** - MUI Refresh | Tab Container for DrillDown
4
+
1
5
  ## [8.0.1] - 04-06-2026
2
6
 
3
7
  - **UPDATED** - Documentation to reflect the move of shared types and constants to `src/core`
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ interface TabContainerProps {
3
+ tabs?: string[];
4
+ onTabChange?: (tabIndex: number) => void;
5
+ children?: React.ReactNode;
6
+ }
7
+ export declare const TabContainer: ({ tabs, onTabChange, children }: TabContainerProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "8.0.1",
3
+ "version": "8.0.2",
4
4
  "description": "Library containing experience widgets",
5
5
  "author": "MX",
6
6
  "license": "MIT",