@mx-cartographer/experiences 6.0.20-alpha.sms9 → 6.0.21
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 +10 -0
- package/dist/budgets/components/BubbleBudgets.d.ts +1 -0
- package/dist/budgets/components/BudgetsEmptyState.d.ts +1 -0
- package/dist/common/utils/Theme.d.ts +84 -0
- package/dist/common/utils/index.d.ts +2 -1
- package/dist/index.es.js +3685 -3464
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## [6.0.21] - 05-14-2025
|
2
|
+
|
3
|
+
- **UPDATED** - Hide create button in `BudwgetsMiniWidget`
|
4
|
+
|
5
|
+
## [6.0.20] - 05-14-2025
|
6
|
+
|
7
|
+
- **ADDED** - `getClientTheme` util from MD into for easier theme testing
|
8
|
+
- **ADDED** - ability to use a custom `ClientStyleProfile` theme in storybook `ThemeWrapper`
|
9
|
+
- **UPDATED** - color usage where a clients expected to see primary color used but weren't
|
10
|
+
|
1
11
|
## [6.0.19] - 05-13-2025
|
2
12
|
|
3
13
|
- **UPDATED** - Micro Insights Carousel dot color
|
@@ -0,0 +1,84 @@
|
|
1
|
+
import { Theme } from '@mui/material';
|
2
|
+
import { ClientStyleProfile } from '../types/Client';
|
3
|
+
export declare const getClientTheme: (theme: Theme, clientStyleProfile: ClientStyleProfile) => {
|
4
|
+
typography: {
|
5
|
+
fontFamily: string | undefined;
|
6
|
+
};
|
7
|
+
palette: {
|
8
|
+
primary: {
|
9
|
+
lighter: string | undefined;
|
10
|
+
light: string;
|
11
|
+
main: string;
|
12
|
+
dark: string;
|
13
|
+
darker: string | undefined;
|
14
|
+
};
|
15
|
+
secondary: {
|
16
|
+
lighter: string | undefined;
|
17
|
+
light: string;
|
18
|
+
main: string;
|
19
|
+
dark: string;
|
20
|
+
darker: string | undefined;
|
21
|
+
};
|
22
|
+
error: {
|
23
|
+
lighter: string | undefined;
|
24
|
+
light: string;
|
25
|
+
main: string;
|
26
|
+
dark: string;
|
27
|
+
darker: string | undefined;
|
28
|
+
};
|
29
|
+
warning: {
|
30
|
+
lighter: string | undefined;
|
31
|
+
light: string;
|
32
|
+
main: string;
|
33
|
+
dark: string;
|
34
|
+
darker: string | undefined;
|
35
|
+
};
|
36
|
+
info: {
|
37
|
+
lighter: string | undefined;
|
38
|
+
light: string;
|
39
|
+
main: string;
|
40
|
+
dark: string;
|
41
|
+
darker: string | undefined;
|
42
|
+
};
|
43
|
+
success: {
|
44
|
+
lighter: string | undefined;
|
45
|
+
light: string;
|
46
|
+
main: string;
|
47
|
+
dark: string;
|
48
|
+
darker: string | undefined;
|
49
|
+
};
|
50
|
+
};
|
51
|
+
components: {
|
52
|
+
MuiCard?: {
|
53
|
+
styleOverrides: {
|
54
|
+
root: {
|
55
|
+
borderRadius: number;
|
56
|
+
};
|
57
|
+
};
|
58
|
+
} | undefined;
|
59
|
+
MuiButton?: {
|
60
|
+
styleOverrides: {
|
61
|
+
root: {
|
62
|
+
borderRadius: number;
|
63
|
+
};
|
64
|
+
};
|
65
|
+
} | undefined;
|
66
|
+
MuiTabs: {
|
67
|
+
styleOverrides: {
|
68
|
+
indicator: {
|
69
|
+
backgroundColor: string;
|
70
|
+
};
|
71
|
+
};
|
72
|
+
};
|
73
|
+
MuiPickersCalendarHeader: {
|
74
|
+
styleOverrides: {
|
75
|
+
switchViewButton: {
|
76
|
+
color: string | undefined;
|
77
|
+
'&:hover': {
|
78
|
+
backgroundColor: string;
|
79
|
+
};
|
80
|
+
};
|
81
|
+
};
|
82
|
+
};
|
83
|
+
};
|
84
|
+
};
|
@@ -1,6 +1,7 @@
|
|
1
1
|
export { analyticsSession } from './Analytics';
|
2
2
|
export { getCategory, getDetailedCategory, getDetailedSubCategory, getCategoryTotalsByParent, isIncome, } from './Categories';
|
3
|
+
export { fromTimestampToMonthYear } from './DateUtil';
|
3
4
|
export { Fetch } from './Fetch';
|
4
5
|
export { buildDynamicCopy, buildPluralCopy, getLocale } from './Localization';
|
5
6
|
export { formatCurrency, formatOrdinal, formatPercentage, getCurrencyCodes, isValidNumber, } from './NumberFormatting';
|
6
|
-
export {
|
7
|
+
export { getClientTheme } from './Theme';
|