@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.
- package/CHANGELOG.md +4 -0
- package/dist/index.es.js +4255 -4211
- package/dist/index.es.js.map +1 -1
- package/dist/transactions/utils/exportTransactionsToCSV.d.ts +1 -1
- package/dist/trends/index.d.ts +1 -0
- package/dist/trends/newTrends/TrendsWidget.d.ts +4 -0
- package/dist/trends/newTrends/components/CategoriesList.d.ts +4 -0
- package/dist/trends/newTrends/components/CategoriesListItem.d.ts +9 -0
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Tag, Transaction } from '../../common';
|
|
2
|
-
export declare const exportTransactionsToCSV: (transactions: Transaction[], tags: Tag[]) =>
|
|
2
|
+
export declare const exportTransactionsToCSV: (transactions: Transaction[], tags: Tag[]) => void;
|
package/dist/trends/index.d.ts
CHANGED
|
@@ -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;
|