@mx-cartographer/experiences 6.16.8-alpha.mega5 → 6.16.9-alpha.al0

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.
@@ -1,2 +1,2 @@
1
1
  import { Tag, Transaction } from '../../common';
2
- export declare const exportTransactionsToCSV: (transactions: Transaction[], tags: Tag[]) => Promise<void>;
2
+ export declare const exportTransactionsToCSV: (transactions: Transaction[], tags: Tag[]) => void;
@@ -1,2 +1,3 @@
1
1
  export { default as TrendsFullWidget } from './TrendsFullWidget';
2
2
  export { default as TrendsMiniWidget } from './TrendsMiniWidget';
3
+ export { TrendsWidget } from './newTrends/TrendsWidget';
@@ -0,0 +1,4 @@
1
+ import { WidgetProps } from '../../common';
2
+ export declare const TrendsWidget: (({ onBackClick, sx }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
3
+ displayName: string;
4
+ };
@@ -0,0 +1,4 @@
1
+ declare const CategoriesList: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
4
+ export default CategoriesList;
@@ -0,0 +1,9 @@
1
+ import { SxProps } from '@mui/material/styles';
2
+ interface CategoriesListItemProps {
3
+ onClick: () => void;
4
+ primaryText?: string;
5
+ secondaryText?: string;
6
+ sx?: SxProps;
7
+ }
8
+ declare const CategoriesListItem: React.FC<CategoriesListItemProps>;
9
+ export default CategoriesListItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.16.8-alpha.mega5",
3
+ "version": "6.16.9-alpha.al0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",