@reltio/dashboard 1.4.2056 → 1.4.2057

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.2056",
3
+ "version": "1.4.2057",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "bundle.js",
6
6
  "types": "./types/index.d.ts",
7
7
  "dependencies": {
8
- "@reltio/components": "^1.4.2029",
9
- "@reltio/mdm-module": "^1.4.1928",
10
- "@reltio/mdm-sdk": "^1.4.1898",
8
+ "@reltio/components": "^1.4.2030",
9
+ "@reltio/mdm-module": "^1.4.1929",
10
+ "@reltio/mdm-sdk": "^1.4.1899",
11
11
  "object-hash": "^2.1.1"
12
12
  },
13
13
  "peerDependencies": {
@@ -6,3 +6,4 @@ export { COMMON_TEXT_FIELD_PROPS } from './textField';
6
6
  export { POPUP_Z_INDEX } from './common';
7
7
  export { ReactSelectOptionFilters } from './reactSelect';
8
8
  export { editingModeOption, suggestingModeOption, viewingModeOption } from './modeOptions';
9
+ export { theme } from './theme';
@@ -0,0 +1,178 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ import '@mui/styles';
3
+ type ReltioTheme = Theme & {
4
+ inactiveBackground: string;
5
+ inactiveSelectedBackground: string;
6
+ inactiveSelectedHoverBackground: string;
7
+ inactiveHoverBackground: string;
8
+ tooltip: Record<string, unknown>;
9
+ inactive: Record<string, unknown>;
10
+ basicView: Record<string, unknown>;
11
+ suggested: string;
12
+ };
13
+ declare module '@mui/styles' {
14
+ interface DefaultTheme extends ReltioTheme {
15
+ }
16
+ }
17
+ export declare const theme: {
18
+ palette: {
19
+ primary: {
20
+ main: string;
21
+ light: string;
22
+ dark: string;
23
+ };
24
+ secondary: {
25
+ main: string;
26
+ };
27
+ error: {
28
+ main: string;
29
+ };
30
+ success: {
31
+ main: string;
32
+ };
33
+ background: {
34
+ paper: string;
35
+ default: string;
36
+ };
37
+ action: {
38
+ hover: string;
39
+ hoverOpacity: number;
40
+ };
41
+ text: {
42
+ primary: string;
43
+ secondary: string;
44
+ disabled: string;
45
+ hint: string;
46
+ };
47
+ divider: string;
48
+ };
49
+ components: {
50
+ MuiButton: {
51
+ defaultProps: {
52
+ color: "inherit";
53
+ };
54
+ };
55
+ MuiTooltip: {
56
+ defaultProps: {
57
+ disableInteractive: boolean;
58
+ };
59
+ };
60
+ MuiTab: {
61
+ styleOverrides: {
62
+ root: {
63
+ maxWidth: string;
64
+ };
65
+ };
66
+ };
67
+ MuiDialogTitle: {
68
+ styleOverrides: {
69
+ root: {
70
+ '&&+.MuiDialogContent-root': {
71
+ paddingTop: string;
72
+ };
73
+ };
74
+ };
75
+ };
76
+ MuiFilledInput: {
77
+ styleOverrides: {
78
+ root: {
79
+ lineHeight: string;
80
+ backgroundColor: string;
81
+ '&:hover': {
82
+ backgroundColor: string;
83
+ };
84
+ '&.focused': {
85
+ backgroundColor: string;
86
+ };
87
+ };
88
+ input: {
89
+ '&.MuiSelect-select': {
90
+ minHeight: string;
91
+ };
92
+ };
93
+ };
94
+ };
95
+ MuiTablePagination: {
96
+ styleOverrides: {
97
+ select: {
98
+ '&.MuiInputBase-input': {
99
+ minHeight: string;
100
+ };
101
+ };
102
+ };
103
+ };
104
+ MuiInputBase: {
105
+ styleOverrides: {
106
+ root: {
107
+ '& .MuiInputAdornment-root': {
108
+ color: string;
109
+ };
110
+ };
111
+ input: {
112
+ '&::placeholder': {
113
+ color: string;
114
+ };
115
+ '&::-ms-clear': {
116
+ display: string;
117
+ };
118
+ '&.Mui-disabled': {
119
+ WebkitTextFillColor: string;
120
+ };
121
+ };
122
+ };
123
+ };
124
+ MuiMenuItem: {
125
+ styleOverrides: {
126
+ root: {
127
+ '&.Mui-selected': {
128
+ backgroundColor: string;
129
+ '&.Mui-focusVisible': {
130
+ backgroundColor: string;
131
+ };
132
+ '&:hover': {
133
+ backgroundColor: string;
134
+ };
135
+ };
136
+ };
137
+ };
138
+ };
139
+ };
140
+ breakpoints: {
141
+ values: {
142
+ xs: number;
143
+ sm: number;
144
+ md: number;
145
+ lg: number;
146
+ xl: number;
147
+ };
148
+ };
149
+ transitions: {
150
+ duration: {
151
+ shortest: number;
152
+ shorter: number;
153
+ short: number;
154
+ standard: number;
155
+ complex: number;
156
+ enteringScreen: number;
157
+ leavingScreen: number;
158
+ };
159
+ };
160
+ tooltip: {
161
+ borderRadius: string;
162
+ backgroundColor: string;
163
+ };
164
+ inactiveBackground: string;
165
+ inactiveSelectedBackground: string;
166
+ inactiveSelectedHoverBackground: string;
167
+ inactiveHoverBackground: string;
168
+ inactive: {
169
+ opacity: number;
170
+ };
171
+ basicView: {
172
+ boxShadow: string;
173
+ borderRadius: string;
174
+ backgroundColor: string;
175
+ };
176
+ suggested: string;
177
+ };
178
+ export {};