@okta/odyssey-react-mui 0.18.0 → 0.20.0
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 +129 -0
- package/dist/Banner.d.ts +3 -3
- package/dist/Banner.d.ts.map +1 -1
- package/dist/Banner.js +2 -2
- package/dist/Banner.js.map +1 -1
- package/dist/Infobox.d.ts +36 -0
- package/dist/Infobox.d.ts.map +1 -0
- package/dist/Infobox.js +36 -0
- package/dist/Infobox.js.map +1 -0
- package/dist/Link.d.ts +1 -1
- package/dist/MenuButton.d.ts +34 -0
- package/dist/MenuButton.d.ts.map +1 -0
- package/dist/MenuButton.js +62 -0
- package/dist/MenuButton.js.map +1 -0
- package/dist/MenuItem.d.ts +22 -0
- package/dist/MenuItem.d.ts.map +1 -0
- package/dist/MenuItem.js +31 -0
- package/dist/MenuItem.js.map +1 -0
- package/dist/PasswordInput.d.ts +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/theme/components.d.ts +1 -1
- package/dist/theme/components.d.ts.map +1 -1
- package/dist/theme/components.js +159 -99
- package/dist/theme/components.js.map +1 -1
- package/package.json +3 -3
- package/src/Banner.tsx +5 -5
- package/src/Infobox.tsx +47 -0
- package/src/MenuButton.tsx +99 -0
- package/src/MenuItem.tsx +50 -0
- package/src/index.ts +11 -2
- package/src/theme/components.tsx +79 -13
- package/tsconfig.json +2 -1
package/dist/theme/components.js
CHANGED
|
@@ -9,10 +9,15 @@
|
|
|
9
9
|
*
|
|
10
10
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
+
import { buttonClasses } from "@mui/material/Button";
|
|
12
13
|
import { chipClasses } from "@mui/material/Chip";
|
|
13
14
|
import { dialogActionsClasses } from "@mui/material/DialogActions";
|
|
15
|
+
import { dividerClasses } from "@mui/material/Divider";
|
|
14
16
|
import { inputAdornmentClasses } from "@mui/material/InputAdornment";
|
|
15
17
|
import { inputBaseClasses } from "@mui/material/InputBase";
|
|
18
|
+
import { listItemIconClasses } from "@mui/material/ListItemIcon";
|
|
19
|
+
import { listItemTextClasses } from "@mui/material/ListItemText";
|
|
20
|
+
import { menuItemClasses } from "@mui/material/MenuItem";
|
|
16
21
|
import { svgIconClasses } from "@mui/material/SvgIcon";
|
|
17
22
|
import { tableBodyClasses } from "@mui/material/TableBody";
|
|
18
23
|
import { tableCellClasses } from "@mui/material/TableCell";
|
|
@@ -339,7 +344,7 @@ export const components = {
|
|
|
339
344
|
},
|
|
340
345
|
style: {
|
|
341
346
|
minWidth: "auto",
|
|
342
|
-
|
|
347
|
+
[`.${buttonClasses.endIcon}, .${buttonClasses.startIcon}`]: {
|
|
343
348
|
margin: "0"
|
|
344
349
|
}
|
|
345
350
|
}
|
|
@@ -380,22 +385,31 @@ export const components = {
|
|
|
380
385
|
cursor: "not-allowed",
|
|
381
386
|
pointerEvents: "inherit"
|
|
382
387
|
},
|
|
383
|
-
|
|
384
|
-
|
|
388
|
+
[`.${buttonClasses.startIcon}, .${buttonClasses.endIcon}`]: {
|
|
389
|
+
"& > *:nth-of-type(1)": {
|
|
390
|
+
fontSize: `${theme.typography.ui.lineHeight}em`
|
|
391
|
+
}
|
|
385
392
|
}
|
|
386
393
|
};
|
|
387
394
|
},
|
|
388
|
-
|
|
395
|
+
endIcon: _ref15 => {
|
|
389
396
|
let {
|
|
390
397
|
theme
|
|
391
398
|
} = _ref15;
|
|
392
399
|
return {
|
|
393
400
|
display: "inline-flex",
|
|
394
401
|
margin: 0,
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
402
|
+
marginInlineStart: theme.spacing(2)
|
|
403
|
+
};
|
|
404
|
+
},
|
|
405
|
+
startIcon: _ref16 => {
|
|
406
|
+
let {
|
|
407
|
+
theme
|
|
408
|
+
} = _ref16;
|
|
409
|
+
return {
|
|
410
|
+
display: "inline-flex",
|
|
411
|
+
margin: 0,
|
|
412
|
+
marginInlineEnd: theme.spacing(2)
|
|
399
413
|
};
|
|
400
414
|
}
|
|
401
415
|
}
|
|
@@ -410,10 +424,10 @@ export const components = {
|
|
|
410
424
|
size: "small"
|
|
411
425
|
},
|
|
412
426
|
styleOverrides: {
|
|
413
|
-
root:
|
|
427
|
+
root: _ref17 => {
|
|
414
428
|
let {
|
|
415
429
|
theme
|
|
416
|
-
} =
|
|
430
|
+
} = _ref17;
|
|
417
431
|
return {
|
|
418
432
|
borderRadius: "4px",
|
|
419
433
|
"&:hover": {
|
|
@@ -446,11 +460,11 @@ export const components = {
|
|
|
446
460
|
deleteIcon: _jsx(CloseCircleFilledIcon, {})
|
|
447
461
|
},
|
|
448
462
|
styleOverrides: {
|
|
449
|
-
root:
|
|
463
|
+
root: _ref18 => {
|
|
450
464
|
let {
|
|
451
465
|
theme,
|
|
452
466
|
ownerState
|
|
453
|
-
} =
|
|
467
|
+
} = _ref18;
|
|
454
468
|
return {
|
|
455
469
|
height: "auto",
|
|
456
470
|
paddingBlock: theme.spacing(2),
|
|
@@ -541,20 +555,20 @@ export const components = {
|
|
|
541
555
|
variant: "indeterminate"
|
|
542
556
|
},
|
|
543
557
|
styleOverrides: {
|
|
544
|
-
root:
|
|
558
|
+
root: _ref19 => {
|
|
545
559
|
let {
|
|
546
560
|
theme,
|
|
547
561
|
ownerState
|
|
548
|
-
} =
|
|
562
|
+
} = _ref19;
|
|
549
563
|
return { ...(ownerState.color !== "inherit" && {
|
|
550
564
|
color: theme.palette.primary.dark
|
|
551
565
|
})
|
|
552
566
|
};
|
|
553
567
|
},
|
|
554
|
-
circle:
|
|
568
|
+
circle: _ref20 => {
|
|
555
569
|
let {
|
|
556
570
|
ownerState
|
|
557
|
-
} =
|
|
571
|
+
} = _ref20;
|
|
558
572
|
return { ...(ownerState.variant === "indeterminate" && {
|
|
559
573
|
strokeDasharray: "160%, 360%"
|
|
560
574
|
})
|
|
@@ -571,10 +585,10 @@ export const components = {
|
|
|
571
585
|
},
|
|
572
586
|
MuiScopedCssBaseline: {
|
|
573
587
|
styleOverrides: {
|
|
574
|
-
root:
|
|
588
|
+
root: _ref21 => {
|
|
575
589
|
let {
|
|
576
590
|
theme
|
|
577
|
-
} =
|
|
591
|
+
} = _ref21;
|
|
578
592
|
return {
|
|
579
593
|
abbr: {
|
|
580
594
|
borderBottomWidth: "1px",
|
|
@@ -759,7 +773,7 @@ export const components = {
|
|
|
759
773
|
marginBlockEnd: 0
|
|
760
774
|
}
|
|
761
775
|
},
|
|
762
|
-
"ul, ol": {
|
|
776
|
+
"ul:not([class]), ol:not([class])": {
|
|
763
777
|
maxWidth: theme.mixins.maxWidth,
|
|
764
778
|
marginBlockStart: 0,
|
|
765
779
|
marginBlockEnd: theme.spacing(4),
|
|
@@ -774,7 +788,7 @@ export const components = {
|
|
|
774
788
|
marginBlockEnd: 0
|
|
775
789
|
}
|
|
776
790
|
},
|
|
777
|
-
li: {
|
|
791
|
+
"li:not([class])": {
|
|
778
792
|
marginBlockEnd: theme.spacing(2),
|
|
779
793
|
paddingInlineStart: theme.spacing(1),
|
|
780
794
|
"ul, ol": {
|
|
@@ -840,10 +854,10 @@ export const components = {
|
|
|
840
854
|
scroll: "paper"
|
|
841
855
|
},
|
|
842
856
|
styleOverrides: {
|
|
843
|
-
paper:
|
|
857
|
+
paper: _ref22 => {
|
|
844
858
|
let {
|
|
845
859
|
theme
|
|
846
|
-
} =
|
|
860
|
+
} = _ref22;
|
|
847
861
|
return {
|
|
848
862
|
maxWidth: `calc(${theme.mixins.maxWidth} + (${theme.spacing(6)} * 2))`,
|
|
849
863
|
boxShadow: "none",
|
|
@@ -854,10 +868,10 @@ export const components = {
|
|
|
854
868
|
},
|
|
855
869
|
MuiDialogActions: {
|
|
856
870
|
styleOverrides: {
|
|
857
|
-
root:
|
|
871
|
+
root: _ref23 => {
|
|
858
872
|
let {
|
|
859
873
|
theme
|
|
860
|
-
} =
|
|
874
|
+
} = _ref23;
|
|
861
875
|
return {
|
|
862
876
|
paddingBlockStart: theme.spacing(4),
|
|
863
877
|
paddingBlockEnd: theme.spacing(6),
|
|
@@ -868,11 +882,11 @@ export const components = {
|
|
|
868
882
|
},
|
|
869
883
|
MuiDialogContent: {
|
|
870
884
|
styleOverrides: {
|
|
871
|
-
root:
|
|
885
|
+
root: _ref24 => {
|
|
872
886
|
let {
|
|
873
887
|
theme,
|
|
874
888
|
ownerState
|
|
875
|
-
} =
|
|
889
|
+
} = _ref24;
|
|
876
890
|
return {
|
|
877
891
|
padding: 0,
|
|
878
892
|
paddingBlock: theme.spacing(4),
|
|
@@ -891,10 +905,10 @@ export const components = {
|
|
|
891
905
|
color: "text.primary"
|
|
892
906
|
},
|
|
893
907
|
styleOverrides: {
|
|
894
|
-
root:
|
|
908
|
+
root: _ref25 => {
|
|
895
909
|
let {
|
|
896
910
|
theme
|
|
897
|
-
} =
|
|
911
|
+
} = _ref25;
|
|
898
912
|
return {
|
|
899
913
|
marginBlockEnd: theme.spacing(5),
|
|
900
914
|
"&:last-child": {
|
|
@@ -910,10 +924,10 @@ export const components = {
|
|
|
910
924
|
variant: "h5"
|
|
911
925
|
},
|
|
912
926
|
styleOverrides: {
|
|
913
|
-
root:
|
|
927
|
+
root: _ref26 => {
|
|
914
928
|
let {
|
|
915
929
|
theme
|
|
916
|
-
} =
|
|
930
|
+
} = _ref26;
|
|
917
931
|
return {
|
|
918
932
|
display: "flex",
|
|
919
933
|
justifyContent: "space-between",
|
|
@@ -932,11 +946,11 @@ export const components = {
|
|
|
932
946
|
margin: "normal"
|
|
933
947
|
},
|
|
934
948
|
styleOverrides: {
|
|
935
|
-
root:
|
|
949
|
+
root: _ref27 => {
|
|
936
950
|
let {
|
|
937
951
|
ownerState,
|
|
938
952
|
theme
|
|
939
|
-
} =
|
|
953
|
+
} = _ref27;
|
|
940
954
|
return {
|
|
941
955
|
width: "100%",
|
|
942
956
|
maxWidth: "32rem",
|
|
@@ -963,11 +977,11 @@ export const components = {
|
|
|
963
977
|
},
|
|
964
978
|
MuiFormControlLabel: {
|
|
965
979
|
styleOverrides: {
|
|
966
|
-
root:
|
|
980
|
+
root: _ref28 => {
|
|
967
981
|
let {
|
|
968
982
|
theme,
|
|
969
983
|
ownerState
|
|
970
|
-
} =
|
|
984
|
+
} = _ref28;
|
|
971
985
|
return {
|
|
972
986
|
gap: theme.spacing(2),
|
|
973
987
|
marginInlineStart: 0,
|
|
@@ -1009,10 +1023,10 @@ export const components = {
|
|
|
1009
1023
|
variant: "standard"
|
|
1010
1024
|
},
|
|
1011
1025
|
styleOverrides: {
|
|
1012
|
-
root:
|
|
1026
|
+
root: _ref29 => {
|
|
1013
1027
|
let {
|
|
1014
1028
|
theme
|
|
1015
|
-
} =
|
|
1029
|
+
} = _ref29;
|
|
1016
1030
|
return {
|
|
1017
1031
|
fontSize: theme.typography.subtitle1.fontSize,
|
|
1018
1032
|
lineHeight: "1.33333333",
|
|
@@ -1032,10 +1046,10 @@ export const components = {
|
|
|
1032
1046
|
},
|
|
1033
1047
|
MuiFormLabel: {
|
|
1034
1048
|
styleOverrides: {
|
|
1035
|
-
root:
|
|
1049
|
+
root: _ref30 => {
|
|
1036
1050
|
let {
|
|
1037
1051
|
theme
|
|
1038
|
-
} =
|
|
1052
|
+
} = _ref30;
|
|
1039
1053
|
return {
|
|
1040
1054
|
color: theme.palette.text.primary,
|
|
1041
1055
|
lineHeight: theme.typography.ui.lineHeight,
|
|
@@ -1051,18 +1065,18 @@ export const components = {
|
|
|
1051
1065
|
},
|
|
1052
1066
|
MuiIconButton: {
|
|
1053
1067
|
styleOverrides: {
|
|
1054
|
-
edgeEnd:
|
|
1068
|
+
edgeEnd: _ref31 => {
|
|
1055
1069
|
let {
|
|
1056
1070
|
theme
|
|
1057
|
-
} =
|
|
1071
|
+
} = _ref31;
|
|
1058
1072
|
return {
|
|
1059
1073
|
marginInlineEnd: theme.spacing(1)
|
|
1060
1074
|
};
|
|
1061
1075
|
},
|
|
1062
|
-
root:
|
|
1076
|
+
root: _ref32 => {
|
|
1063
1077
|
let {
|
|
1064
1078
|
theme
|
|
1065
|
-
} =
|
|
1079
|
+
} = _ref32;
|
|
1066
1080
|
return {
|
|
1067
1081
|
padding: theme.spacing(1),
|
|
1068
1082
|
fontSize: theme.typography.body1.fontSize,
|
|
@@ -1107,11 +1121,11 @@ export const components = {
|
|
|
1107
1121
|
variant: "outlined"
|
|
1108
1122
|
},
|
|
1109
1123
|
styleOverrides: {
|
|
1110
|
-
root:
|
|
1124
|
+
root: _ref33 => {
|
|
1111
1125
|
let {
|
|
1112
1126
|
theme,
|
|
1113
1127
|
ownerState
|
|
1114
|
-
} =
|
|
1128
|
+
} = _ref33;
|
|
1115
1129
|
return {
|
|
1116
1130
|
display: "flex",
|
|
1117
1131
|
minWidth: "1.25em",
|
|
@@ -1139,11 +1153,11 @@ export const components = {
|
|
|
1139
1153
|
required: true
|
|
1140
1154
|
},
|
|
1141
1155
|
styleOverrides: {
|
|
1142
|
-
root:
|
|
1156
|
+
root: _ref34 => {
|
|
1143
1157
|
let {
|
|
1144
1158
|
ownerState,
|
|
1145
1159
|
theme
|
|
1146
|
-
} =
|
|
1160
|
+
} = _ref34;
|
|
1147
1161
|
return { ...theme.typography.body1,
|
|
1148
1162
|
flex: "1",
|
|
1149
1163
|
width: "auto",
|
|
@@ -1188,10 +1202,10 @@ export const components = {
|
|
|
1188
1202
|
}
|
|
1189
1203
|
};
|
|
1190
1204
|
},
|
|
1191
|
-
input:
|
|
1205
|
+
input: _ref35 => {
|
|
1192
1206
|
let {
|
|
1193
1207
|
theme
|
|
1194
|
-
} =
|
|
1208
|
+
} = _ref35;
|
|
1195
1209
|
return {
|
|
1196
1210
|
boxSizing: "border-box",
|
|
1197
1211
|
height: "auto",
|
|
@@ -1221,10 +1235,10 @@ export const components = {
|
|
|
1221
1235
|
shrink: false
|
|
1222
1236
|
},
|
|
1223
1237
|
styleOverrides: {
|
|
1224
|
-
root:
|
|
1238
|
+
root: _ref36 => {
|
|
1225
1239
|
let {
|
|
1226
1240
|
ownerState
|
|
1227
|
-
} =
|
|
1241
|
+
} = _ref36;
|
|
1228
1242
|
return {
|
|
1229
1243
|
display: "flex",
|
|
1230
1244
|
justifyContent: "space-between",
|
|
@@ -1246,10 +1260,10 @@ export const components = {
|
|
|
1246
1260
|
},
|
|
1247
1261
|
MuiLink: {
|
|
1248
1262
|
styleOverrides: {
|
|
1249
|
-
root:
|
|
1263
|
+
root: _ref37 => {
|
|
1250
1264
|
let {
|
|
1251
1265
|
theme
|
|
1252
|
-
} =
|
|
1266
|
+
} = _ref37;
|
|
1253
1267
|
return {
|
|
1254
1268
|
color: theme.palette.primary.main,
|
|
1255
1269
|
textDecoration: "underline",
|
|
@@ -1292,10 +1306,10 @@ export const components = {
|
|
|
1292
1306
|
props: {
|
|
1293
1307
|
variant: "monochrome"
|
|
1294
1308
|
},
|
|
1295
|
-
style:
|
|
1309
|
+
style: _ref38 => {
|
|
1296
1310
|
let {
|
|
1297
1311
|
theme
|
|
1298
|
-
} =
|
|
1312
|
+
} = _ref38;
|
|
1299
1313
|
return {
|
|
1300
1314
|
color: theme.palette.text.primary,
|
|
1301
1315
|
textDecoration: "underline",
|
|
@@ -1324,14 +1338,15 @@ export const components = {
|
|
|
1324
1338
|
},
|
|
1325
1339
|
MuiListSubheader: {
|
|
1326
1340
|
styleOverrides: {
|
|
1327
|
-
root:
|
|
1341
|
+
root: _ref39 => {
|
|
1328
1342
|
let {
|
|
1329
1343
|
theme
|
|
1330
|
-
} =
|
|
1344
|
+
} = _ref39;
|
|
1331
1345
|
return {
|
|
1332
1346
|
paddingBlock: theme.spacing(2),
|
|
1333
1347
|
paddingInline: theme.spacing(4),
|
|
1334
1348
|
fontSize: theme.typography.caption.fontSize,
|
|
1349
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
1335
1350
|
lineHeight: theme.typography.caption.lineHeight,
|
|
1336
1351
|
color: theme.palette.text.secondary,
|
|
1337
1352
|
textTransform: "uppercase"
|
|
@@ -1341,24 +1356,66 @@ export const components = {
|
|
|
1341
1356
|
},
|
|
1342
1357
|
MuiMenuItem: {
|
|
1343
1358
|
styleOverrides: {
|
|
1344
|
-
root:
|
|
1359
|
+
root: _ref40 => {
|
|
1345
1360
|
let {
|
|
1346
|
-
theme
|
|
1347
|
-
|
|
1361
|
+
theme,
|
|
1362
|
+
ownerState
|
|
1363
|
+
} = _ref40;
|
|
1348
1364
|
return {
|
|
1349
|
-
justifyContent: "space-between",
|
|
1350
1365
|
gap: theme.spacing(2),
|
|
1351
|
-
"
|
|
1366
|
+
minHeight: "unset",
|
|
1367
|
+
paddingBlock: theme.spacing(3),
|
|
1368
|
+
"&:hover": {
|
|
1369
|
+
textDecoration: "none",
|
|
1370
|
+
backgroundColor: theme.palette.grey[100],
|
|
1371
|
+
"@media (hover: none)": {
|
|
1372
|
+
backgroundColor: "transparent"
|
|
1373
|
+
}
|
|
1374
|
+
},
|
|
1375
|
+
[`&.${menuItemClasses.root}-destructive`]: {
|
|
1376
|
+
color: theme.palette.error.main
|
|
1377
|
+
},
|
|
1378
|
+
[`&.${menuItemClasses.selected}`]: {
|
|
1352
1379
|
backgroundColor: "transparent",
|
|
1353
1380
|
color: theme.palette.primary.main,
|
|
1354
1381
|
"&:hover": {
|
|
1355
|
-
backgroundColor: theme.palette.primary.lighter
|
|
1382
|
+
backgroundColor: theme.palette.primary.lighter,
|
|
1383
|
+
"@media (hover: none)": {
|
|
1384
|
+
backgroundColor: `rgba(${theme.palette.primary.main} / ${theme.palette.action.selectedOpacity})`
|
|
1385
|
+
}
|
|
1356
1386
|
}
|
|
1387
|
+
},
|
|
1388
|
+
...(!ownerState.disableGutters && {
|
|
1389
|
+
paddingInline: theme.spacing(4)
|
|
1390
|
+
}),
|
|
1391
|
+
...(ownerState.divider && {
|
|
1392
|
+
borderBlockEnd: `1px solid ${theme.palette.divider}`
|
|
1393
|
+
}),
|
|
1394
|
+
[`&.${menuItemClasses.disabled}`]: {
|
|
1395
|
+
opacity: 1,
|
|
1396
|
+
color: theme.palette.text.disabled
|
|
1397
|
+
},
|
|
1398
|
+
[`& + .${dividerClasses.root}`]: {
|
|
1399
|
+
marginBlock: theme.spacing(1)
|
|
1400
|
+
},
|
|
1401
|
+
[`& .${listItemTextClasses.root}`]: {
|
|
1402
|
+
marginBlock: 0
|
|
1403
|
+
},
|
|
1404
|
+
[`& .${listItemIconClasses.root}`]: {
|
|
1405
|
+
minWidth: "unset"
|
|
1357
1406
|
}
|
|
1358
1407
|
};
|
|
1359
1408
|
}
|
|
1360
1409
|
}
|
|
1361
1410
|
},
|
|
1411
|
+
MuiListItemIcon: {
|
|
1412
|
+
styleOverrides: {
|
|
1413
|
+
root: {
|
|
1414
|
+
minWidth: "unset",
|
|
1415
|
+
color: "inherit"
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
},
|
|
1362
1419
|
MuiNativeSelect: {
|
|
1363
1420
|
defaultProps: {
|
|
1364
1421
|
variant: "standard"
|
|
@@ -1369,10 +1426,10 @@ export const components = {
|
|
|
1369
1426
|
backgroundColor: "transparent"
|
|
1370
1427
|
}
|
|
1371
1428
|
},
|
|
1372
|
-
icon:
|
|
1429
|
+
icon: _ref41 => {
|
|
1373
1430
|
let {
|
|
1374
1431
|
theme
|
|
1375
|
-
} =
|
|
1432
|
+
} = _ref41;
|
|
1376
1433
|
return {
|
|
1377
1434
|
insetInlineEnd: theme.spacing(3),
|
|
1378
1435
|
color: theme.palette.text.primary
|
|
@@ -1382,12 +1439,15 @@ export const components = {
|
|
|
1382
1439
|
},
|
|
1383
1440
|
MuiPopover: {
|
|
1384
1441
|
styleOverrides: {
|
|
1385
|
-
paper:
|
|
1442
|
+
paper: _ref42 => {
|
|
1386
1443
|
let {
|
|
1387
1444
|
theme
|
|
1388
|
-
} =
|
|
1445
|
+
} = _ref42;
|
|
1389
1446
|
return {
|
|
1390
|
-
marginBlockStart: theme.spacing(1)
|
|
1447
|
+
marginBlockStart: theme.spacing(1),
|
|
1448
|
+
borderWidth: theme.mixins.borderWidth,
|
|
1449
|
+
borderStyle: theme.mixins.borderStyle,
|
|
1450
|
+
borderColor: theme.palette.grey[200]
|
|
1391
1451
|
};
|
|
1392
1452
|
}
|
|
1393
1453
|
}
|
|
@@ -1397,10 +1457,10 @@ export const components = {
|
|
|
1397
1457
|
size: "small"
|
|
1398
1458
|
},
|
|
1399
1459
|
styleOverrides: {
|
|
1400
|
-
root:
|
|
1460
|
+
root: _ref43 => {
|
|
1401
1461
|
let {
|
|
1402
1462
|
theme
|
|
1403
|
-
} =
|
|
1463
|
+
} = _ref43;
|
|
1404
1464
|
return {
|
|
1405
1465
|
"&:hover": {
|
|
1406
1466
|
backgroundColor: "transparent"
|
|
@@ -1436,10 +1496,10 @@ export const components = {
|
|
|
1436
1496
|
IconComponent: ChevronDownIcon
|
|
1437
1497
|
},
|
|
1438
1498
|
styleOverrides: {
|
|
1439
|
-
select:
|
|
1499
|
+
select: _ref44 => {
|
|
1440
1500
|
let {
|
|
1441
1501
|
theme
|
|
1442
|
-
} =
|
|
1502
|
+
} = _ref44;
|
|
1443
1503
|
return {
|
|
1444
1504
|
paddingBlock: `calc(${theme.spacing(3)} - ${theme.mixins.borderWidth})`,
|
|
1445
1505
|
paddingInline: theme.spacing(3),
|
|
@@ -1455,10 +1515,10 @@ export const components = {
|
|
|
1455
1515
|
}
|
|
1456
1516
|
};
|
|
1457
1517
|
},
|
|
1458
|
-
icon:
|
|
1518
|
+
icon: _ref45 => {
|
|
1459
1519
|
let {
|
|
1460
1520
|
theme
|
|
1461
|
-
} =
|
|
1521
|
+
} = _ref45;
|
|
1462
1522
|
return {
|
|
1463
1523
|
insetInlineEnd: theme.spacing(3),
|
|
1464
1524
|
color: theme.palette.text.primary
|
|
@@ -1472,10 +1532,10 @@ export const components = {
|
|
|
1472
1532
|
color: "inherit"
|
|
1473
1533
|
},
|
|
1474
1534
|
styleOverrides: {
|
|
1475
|
-
root:
|
|
1535
|
+
root: _ref46 => {
|
|
1476
1536
|
let {
|
|
1477
1537
|
theme
|
|
1478
|
-
} =
|
|
1538
|
+
} = _ref46;
|
|
1479
1539
|
return {
|
|
1480
1540
|
fontSize: `${theme.typography.ui.lineHeight}rem`
|
|
1481
1541
|
};
|
|
@@ -1487,11 +1547,11 @@ export const components = {
|
|
|
1487
1547
|
iconPosition: "start"
|
|
1488
1548
|
},
|
|
1489
1549
|
styleOverrides: {
|
|
1490
|
-
root:
|
|
1550
|
+
root: _ref47 => {
|
|
1491
1551
|
let {
|
|
1492
1552
|
theme,
|
|
1493
1553
|
ownerState
|
|
1494
|
-
} =
|
|
1554
|
+
} = _ref47;
|
|
1495
1555
|
return {
|
|
1496
1556
|
maxWidth: `calc(${theme.mixins.maxWidth} / 2)`,
|
|
1497
1557
|
minWidth: "unset",
|
|
@@ -1552,11 +1612,11 @@ export const components = {
|
|
|
1552
1612
|
},
|
|
1553
1613
|
MuiTable: {
|
|
1554
1614
|
styleOverrides: {
|
|
1555
|
-
root:
|
|
1615
|
+
root: _ref48 => {
|
|
1556
1616
|
let {
|
|
1557
1617
|
theme,
|
|
1558
1618
|
ownerState
|
|
1559
|
-
} =
|
|
1619
|
+
} = _ref48;
|
|
1560
1620
|
return {
|
|
1561
1621
|
display: "table",
|
|
1562
1622
|
width: "auto",
|
|
@@ -1588,11 +1648,11 @@ export const components = {
|
|
|
1588
1648
|
},
|
|
1589
1649
|
MuiTableCell: {
|
|
1590
1650
|
styleOverrides: {
|
|
1591
|
-
root:
|
|
1651
|
+
root: _ref49 => {
|
|
1592
1652
|
let {
|
|
1593
1653
|
theme,
|
|
1594
1654
|
ownerState
|
|
1595
|
-
} =
|
|
1655
|
+
} = _ref49;
|
|
1596
1656
|
return { ...theme.typography.body1,
|
|
1597
1657
|
maxWidth: theme.mixins.maxWidth,
|
|
1598
1658
|
borderBottom: `${theme.mixins.borderWidth} ${theme.mixins.borderStyle} ${theme.palette.grey[100]}`,
|
|
@@ -1671,10 +1731,10 @@ export const components = {
|
|
|
1671
1731
|
component: "figure"
|
|
1672
1732
|
},
|
|
1673
1733
|
styleOverrides: {
|
|
1674
|
-
root:
|
|
1734
|
+
root: _ref50 => {
|
|
1675
1735
|
let {
|
|
1676
1736
|
theme
|
|
1677
|
-
} =
|
|
1737
|
+
} = _ref50;
|
|
1678
1738
|
return {
|
|
1679
1739
|
width: "unset",
|
|
1680
1740
|
maxWidth: "100%",
|
|
@@ -1691,10 +1751,10 @@ export const components = {
|
|
|
1691
1751
|
},
|
|
1692
1752
|
MuiTableRow: {
|
|
1693
1753
|
styleOverrides: {
|
|
1694
|
-
root:
|
|
1754
|
+
root: _ref51 => {
|
|
1695
1755
|
let {
|
|
1696
1756
|
theme
|
|
1697
|
-
} =
|
|
1757
|
+
} = _ref51;
|
|
1698
1758
|
return {
|
|
1699
1759
|
verticalAlign: "unset",
|
|
1700
1760
|
[`&.${tableRowClasses.root}:hover`]: {
|
|
@@ -1715,10 +1775,10 @@ export const components = {
|
|
|
1715
1775
|
IconComponent: ArrowDownIcon
|
|
1716
1776
|
},
|
|
1717
1777
|
styleOverrides: {
|
|
1718
|
-
root:
|
|
1778
|
+
root: _ref52 => {
|
|
1719
1779
|
let {
|
|
1720
1780
|
theme
|
|
1721
|
-
} =
|
|
1781
|
+
} = _ref52;
|
|
1722
1782
|
return {
|
|
1723
1783
|
cursor: "pointer",
|
|
1724
1784
|
display: "inline-flex",
|
|
@@ -1747,11 +1807,11 @@ export const components = {
|
|
|
1747
1807
|
}
|
|
1748
1808
|
};
|
|
1749
1809
|
},
|
|
1750
|
-
icon:
|
|
1810
|
+
icon: _ref53 => {
|
|
1751
1811
|
let {
|
|
1752
1812
|
theme,
|
|
1753
1813
|
ownerState
|
|
1754
|
-
} =
|
|
1814
|
+
} = _ref53;
|
|
1755
1815
|
return {
|
|
1756
1816
|
fontSize: "inherit",
|
|
1757
1817
|
marginInlineEnd: 0,
|
|
@@ -1780,19 +1840,19 @@ export const components = {
|
|
|
1780
1840
|
},
|
|
1781
1841
|
MuiTabs: {
|
|
1782
1842
|
styleOverrides: {
|
|
1783
|
-
root:
|
|
1843
|
+
root: _ref54 => {
|
|
1784
1844
|
let {
|
|
1785
1845
|
theme
|
|
1786
|
-
} =
|
|
1846
|
+
} = _ref54;
|
|
1787
1847
|
return {
|
|
1788
1848
|
minHeight: "unset",
|
|
1789
1849
|
marginBottom: theme.spacing(5)
|
|
1790
1850
|
};
|
|
1791
1851
|
},
|
|
1792
|
-
flexContainer:
|
|
1852
|
+
flexContainer: _ref55 => {
|
|
1793
1853
|
let {
|
|
1794
1854
|
theme
|
|
1795
|
-
} =
|
|
1855
|
+
} = _ref55;
|
|
1796
1856
|
return {
|
|
1797
1857
|
gap: theme.spacing(5),
|
|
1798
1858
|
borderBottom: `${theme.mixins.borderWidth} ${theme.mixins.borderStyle} ${theme.palette.divider}`
|
|
@@ -1808,11 +1868,11 @@ export const components = {
|
|
|
1808
1868
|
placement: "top"
|
|
1809
1869
|
},
|
|
1810
1870
|
styleOverrides: {
|
|
1811
|
-
tooltip:
|
|
1871
|
+
tooltip: _ref56 => {
|
|
1812
1872
|
let {
|
|
1813
1873
|
theme,
|
|
1814
1874
|
ownerState
|
|
1815
|
-
} =
|
|
1875
|
+
} = _ref56;
|
|
1816
1876
|
return {
|
|
1817
1877
|
maxWidth: `calc(${theme.mixins.maxWidth} / 2)`,
|
|
1818
1878
|
paddingBlock: theme.spacing(2),
|
|
@@ -1872,10 +1932,10 @@ export const components = {
|
|
|
1872
1932
|
}
|
|
1873
1933
|
};
|
|
1874
1934
|
},
|
|
1875
|
-
arrow:
|
|
1935
|
+
arrow: _ref57 => {
|
|
1876
1936
|
let {
|
|
1877
1937
|
theme
|
|
1878
|
-
} =
|
|
1938
|
+
} = _ref57;
|
|
1879
1939
|
return {
|
|
1880
1940
|
color: theme.palette.grey[900],
|
|
1881
1941
|
"&::before": {
|
|
@@ -1914,10 +1974,10 @@ export const components = {
|
|
|
1914
1974
|
}
|
|
1915
1975
|
},
|
|
1916
1976
|
styleOverrides: {
|
|
1917
|
-
paragraph:
|
|
1977
|
+
paragraph: _ref58 => {
|
|
1918
1978
|
let {
|
|
1919
1979
|
theme
|
|
1920
|
-
} =
|
|
1980
|
+
} = _ref58;
|
|
1921
1981
|
return {
|
|
1922
1982
|
marginBottom: theme.spacing(4)
|
|
1923
1983
|
};
|