@mx-cartographer/insights-ui 1.16.14 → 1.16.15
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/components/insights/UserFeedback/StyledToggleButton.d.ts +7 -0
- package/dist/components/insights/UserFeedback/Types.d.ts +27 -0
- package/dist/components/insights/UserFeedback/UserFeedback.d.ts +3 -0
- package/dist/components/insights/UserFeedback/index.d.ts +1 -0
- package/dist/components/insights/index.d.ts +3 -0
- package/dist/components/shared/InsightsCard/BeatCard.d.ts +1 -1
- package/dist/index.es.js +994 -857
- package/dist/index.es.js.map +1 -1
- package/dist/types/CommonBeat.d.ts +1 -1
- package/package.json +6 -5
|
@@ -128,7 +128,7 @@ interface ButtonProps extends Omit<InsightButtonProps, 'beat' | 'onClick'> {
|
|
|
128
128
|
onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>, type?: ButtonActionType) => void;
|
|
129
129
|
}
|
|
130
130
|
export interface CommonBeatProps {
|
|
131
|
-
altLoadingText
|
|
131
|
+
altLoadingText?: string;
|
|
132
132
|
asteriskText?: string;
|
|
133
133
|
beat: Beat | BeatLikeOffer;
|
|
134
134
|
buttonProps?: ButtonProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-cartographer/insights-ui",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.15",
|
|
4
4
|
"description": "Package containing MX theme and common controls for MUI",
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@emotion/react": "^11.13.3",
|
|
27
27
|
"@emotion/styled": "^11.13.0",
|
|
28
28
|
"@mui/base": "5.0.0-beta.61",
|
|
29
|
-
"@mui/material": "^5",
|
|
29
|
+
"@mui/material": "^5.16.14",
|
|
30
30
|
"@mui/system": "^5.16.7",
|
|
31
31
|
"@mui/x-charts": "^7.22.3",
|
|
32
32
|
"@mui/x-data-grid-pro": "^7.21.0",
|
|
@@ -59,16 +59,17 @@
|
|
|
59
59
|
"@storybook/react": "^8.3.5",
|
|
60
60
|
"@storybook/react-vite": "^8.3.5",
|
|
61
61
|
"@storybook/test": "^8.3.5",
|
|
62
|
+
"@testing-library/dom": "^10.4.0",
|
|
62
63
|
"@testing-library/jest-dom": "^6.6.3",
|
|
63
64
|
"@types/react": "^18.3.11",
|
|
64
65
|
"@types/react-dom": "^18.3.1",
|
|
65
66
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
66
67
|
"@typescript-eslint/parser": "^7.16.0",
|
|
67
68
|
"@vitejs/plugin-react": "^4.3.2",
|
|
68
|
-
"@vitest/coverage-v8": "2.1.
|
|
69
|
-
"@vitest/ui": "2.1.
|
|
69
|
+
"@vitest/coverage-v8": "2.1.9",
|
|
70
|
+
"@vitest/ui": "2.1.9",
|
|
70
71
|
"@yarnpkg/sdks": "^3.2.0",
|
|
71
|
-
"eslint": "
|
|
72
|
+
"eslint": "8.56.0",
|
|
72
73
|
"eslint-config-mx": "^4.0.0",
|
|
73
74
|
"eslint-config-prettier": "^9.1.0",
|
|
74
75
|
"eslint-plugin-import": "^2.31.0",
|