@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.
@@ -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,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.8",
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
+ }