@mx-cartographer/experiences 6.16.9-alpha.al2 → 6.16.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 +4 -0
- package/dist/index.es.js +3174 -3274
- package/dist/index.es.js.map +1 -1
- package/dist/trends/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/trends/newTrends/TrendsWidget.d.ts +0 -4
- package/dist/trends/newTrends/components/CategoriesList.d.ts +0 -4
- package/dist/trends/newTrends/components/CategoriesListItem.d.ts +0 -13
package/dist/trends/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-cartographer/experiences",
|
|
3
|
-
"version": "6.16.9
|
|
3
|
+
"version": "6.16.9",
|
|
4
4
|
"description": "Library containing experience widgets",
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -125,4 +125,4 @@
|
|
|
125
125
|
"README.md"
|
|
126
126
|
],
|
|
127
127
|
"packageManager": "yarn@4.9.2"
|
|
128
|
-
}
|
|
128
|
+
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { SxProps } from '@mui/material/styles';
|
|
3
|
-
interface CategoriesListItemProps {
|
|
4
|
-
onClick: () => void;
|
|
5
|
-
primaryText?: string;
|
|
6
|
-
secondaryText?: string;
|
|
7
|
-
categoryGuid?: string;
|
|
8
|
-
isIncome?: boolean;
|
|
9
|
-
transactionCount?: number;
|
|
10
|
-
sx?: SxProps;
|
|
11
|
-
}
|
|
12
|
-
declare const CategoriesListItem: React.FC<CategoriesListItemProps>;
|
|
13
|
-
export default CategoriesListItem;
|