@mx-cartographer/experiences 6.16.8 → 6.16.9-alpha.al1
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/dist/index.es.js +3605 -3519
- package/dist/index.es.js.map +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 +11 -0
- package/package.json +2 -2
package/dist/trends/index.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
sx?: SxProps;
|
|
9
|
+
}
|
|
10
|
+
declare const CategoriesListItem: React.FC<CategoriesListItemProps>;
|
|
11
|
+
export default CategoriesListItem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-cartographer/experiences",
|
|
3
|
-
"version": "6.16.
|
|
3
|
+
"version": "6.16.9-alpha.al1",
|
|
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
|
+
}
|