@okta/odyssey-react-mui 0.19.0 → 0.21.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 +110 -4
- 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 +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -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 +167 -99
- package/dist/theme/components.js.map +1 -1
- package/package.json +5 -4
- package/src/MenuButton.tsx +99 -0
- package/src/MenuItem.tsx +50 -0
- package/src/index.ts +10 -2
- package/src/theme/components.tsx +87 -13
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,39 @@ 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
|
-
theme
|
|
397
|
+
theme,
|
|
398
|
+
ownerState
|
|
391
399
|
} = _ref15;
|
|
400
|
+
return {
|
|
401
|
+
display: "inline-flex",
|
|
402
|
+
margin: 0,
|
|
403
|
+
marginInlineStart: theme.spacing(2),
|
|
404
|
+
...(ownerState.children === undefined && {
|
|
405
|
+
marginInlineStart: 0
|
|
406
|
+
})
|
|
407
|
+
};
|
|
408
|
+
},
|
|
409
|
+
startIcon: _ref16 => {
|
|
410
|
+
let {
|
|
411
|
+
theme,
|
|
412
|
+
ownerState
|
|
413
|
+
} = _ref16;
|
|
392
414
|
return {
|
|
393
415
|
display: "inline-flex",
|
|
394
416
|
margin: 0,
|
|
395
417
|
marginInlineEnd: theme.spacing(2),
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
}
|
|
418
|
+
...(ownerState.children === undefined && {
|
|
419
|
+
marginInlineEnd: 0
|
|
420
|
+
})
|
|
399
421
|
};
|
|
400
422
|
}
|
|
401
423
|
}
|
|
@@ -410,10 +432,10 @@ export const components = {
|
|
|
410
432
|
size: "small"
|
|
411
433
|
},
|
|
412
434
|
styleOverrides: {
|
|
413
|
-
root:
|
|
435
|
+
root: _ref17 => {
|
|
414
436
|
let {
|
|
415
437
|
theme
|
|
416
|
-
} =
|
|
438
|
+
} = _ref17;
|
|
417
439
|
return {
|
|
418
440
|
borderRadius: "4px",
|
|
419
441
|
"&:hover": {
|
|
@@ -446,11 +468,11 @@ export const components = {
|
|
|
446
468
|
deleteIcon: _jsx(CloseCircleFilledIcon, {})
|
|
447
469
|
},
|
|
448
470
|
styleOverrides: {
|
|
449
|
-
root:
|
|
471
|
+
root: _ref18 => {
|
|
450
472
|
let {
|
|
451
473
|
theme,
|
|
452
474
|
ownerState
|
|
453
|
-
} =
|
|
475
|
+
} = _ref18;
|
|
454
476
|
return {
|
|
455
477
|
height: "auto",
|
|
456
478
|
paddingBlock: theme.spacing(2),
|
|
@@ -541,20 +563,20 @@ export const components = {
|
|
|
541
563
|
variant: "indeterminate"
|
|
542
564
|
},
|
|
543
565
|
styleOverrides: {
|
|
544
|
-
root:
|
|
566
|
+
root: _ref19 => {
|
|
545
567
|
let {
|
|
546
568
|
theme,
|
|
547
569
|
ownerState
|
|
548
|
-
} =
|
|
570
|
+
} = _ref19;
|
|
549
571
|
return { ...(ownerState.color !== "inherit" && {
|
|
550
572
|
color: theme.palette.primary.dark
|
|
551
573
|
})
|
|
552
574
|
};
|
|
553
575
|
},
|
|
554
|
-
circle:
|
|
576
|
+
circle: _ref20 => {
|
|
555
577
|
let {
|
|
556
578
|
ownerState
|
|
557
|
-
} =
|
|
579
|
+
} = _ref20;
|
|
558
580
|
return { ...(ownerState.variant === "indeterminate" && {
|
|
559
581
|
strokeDasharray: "160%, 360%"
|
|
560
582
|
})
|
|
@@ -571,10 +593,10 @@ export const components = {
|
|
|
571
593
|
},
|
|
572
594
|
MuiScopedCssBaseline: {
|
|
573
595
|
styleOverrides: {
|
|
574
|
-
root:
|
|
596
|
+
root: _ref21 => {
|
|
575
597
|
let {
|
|
576
598
|
theme
|
|
577
|
-
} =
|
|
599
|
+
} = _ref21;
|
|
578
600
|
return {
|
|
579
601
|
abbr: {
|
|
580
602
|
borderBottomWidth: "1px",
|
|
@@ -759,7 +781,7 @@ export const components = {
|
|
|
759
781
|
marginBlockEnd: 0
|
|
760
782
|
}
|
|
761
783
|
},
|
|
762
|
-
"ul, ol": {
|
|
784
|
+
"ul:not([class]), ol:not([class])": {
|
|
763
785
|
maxWidth: theme.mixins.maxWidth,
|
|
764
786
|
marginBlockStart: 0,
|
|
765
787
|
marginBlockEnd: theme.spacing(4),
|
|
@@ -774,7 +796,7 @@ export const components = {
|
|
|
774
796
|
marginBlockEnd: 0
|
|
775
797
|
}
|
|
776
798
|
},
|
|
777
|
-
li: {
|
|
799
|
+
"li:not([class])": {
|
|
778
800
|
marginBlockEnd: theme.spacing(2),
|
|
779
801
|
paddingInlineStart: theme.spacing(1),
|
|
780
802
|
"ul, ol": {
|
|
@@ -840,10 +862,10 @@ export const components = {
|
|
|
840
862
|
scroll: "paper"
|
|
841
863
|
},
|
|
842
864
|
styleOverrides: {
|
|
843
|
-
paper:
|
|
865
|
+
paper: _ref22 => {
|
|
844
866
|
let {
|
|
845
867
|
theme
|
|
846
|
-
} =
|
|
868
|
+
} = _ref22;
|
|
847
869
|
return {
|
|
848
870
|
maxWidth: `calc(${theme.mixins.maxWidth} + (${theme.spacing(6)} * 2))`,
|
|
849
871
|
boxShadow: "none",
|
|
@@ -854,10 +876,10 @@ export const components = {
|
|
|
854
876
|
},
|
|
855
877
|
MuiDialogActions: {
|
|
856
878
|
styleOverrides: {
|
|
857
|
-
root:
|
|
879
|
+
root: _ref23 => {
|
|
858
880
|
let {
|
|
859
881
|
theme
|
|
860
|
-
} =
|
|
882
|
+
} = _ref23;
|
|
861
883
|
return {
|
|
862
884
|
paddingBlockStart: theme.spacing(4),
|
|
863
885
|
paddingBlockEnd: theme.spacing(6),
|
|
@@ -868,11 +890,11 @@ export const components = {
|
|
|
868
890
|
},
|
|
869
891
|
MuiDialogContent: {
|
|
870
892
|
styleOverrides: {
|
|
871
|
-
root:
|
|
893
|
+
root: _ref24 => {
|
|
872
894
|
let {
|
|
873
895
|
theme,
|
|
874
896
|
ownerState
|
|
875
|
-
} =
|
|
897
|
+
} = _ref24;
|
|
876
898
|
return {
|
|
877
899
|
padding: 0,
|
|
878
900
|
paddingBlock: theme.spacing(4),
|
|
@@ -891,10 +913,10 @@ export const components = {
|
|
|
891
913
|
color: "text.primary"
|
|
892
914
|
},
|
|
893
915
|
styleOverrides: {
|
|
894
|
-
root:
|
|
916
|
+
root: _ref25 => {
|
|
895
917
|
let {
|
|
896
918
|
theme
|
|
897
|
-
} =
|
|
919
|
+
} = _ref25;
|
|
898
920
|
return {
|
|
899
921
|
marginBlockEnd: theme.spacing(5),
|
|
900
922
|
"&:last-child": {
|
|
@@ -910,10 +932,10 @@ export const components = {
|
|
|
910
932
|
variant: "h5"
|
|
911
933
|
},
|
|
912
934
|
styleOverrides: {
|
|
913
|
-
root:
|
|
935
|
+
root: _ref26 => {
|
|
914
936
|
let {
|
|
915
937
|
theme
|
|
916
|
-
} =
|
|
938
|
+
} = _ref26;
|
|
917
939
|
return {
|
|
918
940
|
display: "flex",
|
|
919
941
|
justifyContent: "space-between",
|
|
@@ -932,11 +954,11 @@ export const components = {
|
|
|
932
954
|
margin: "normal"
|
|
933
955
|
},
|
|
934
956
|
styleOverrides: {
|
|
935
|
-
root:
|
|
957
|
+
root: _ref27 => {
|
|
936
958
|
let {
|
|
937
959
|
ownerState,
|
|
938
960
|
theme
|
|
939
|
-
} =
|
|
961
|
+
} = _ref27;
|
|
940
962
|
return {
|
|
941
963
|
width: "100%",
|
|
942
964
|
maxWidth: "32rem",
|
|
@@ -963,11 +985,11 @@ export const components = {
|
|
|
963
985
|
},
|
|
964
986
|
MuiFormControlLabel: {
|
|
965
987
|
styleOverrides: {
|
|
966
|
-
root:
|
|
988
|
+
root: _ref28 => {
|
|
967
989
|
let {
|
|
968
990
|
theme,
|
|
969
991
|
ownerState
|
|
970
|
-
} =
|
|
992
|
+
} = _ref28;
|
|
971
993
|
return {
|
|
972
994
|
gap: theme.spacing(2),
|
|
973
995
|
marginInlineStart: 0,
|
|
@@ -1009,10 +1031,10 @@ export const components = {
|
|
|
1009
1031
|
variant: "standard"
|
|
1010
1032
|
},
|
|
1011
1033
|
styleOverrides: {
|
|
1012
|
-
root:
|
|
1034
|
+
root: _ref29 => {
|
|
1013
1035
|
let {
|
|
1014
1036
|
theme
|
|
1015
|
-
} =
|
|
1037
|
+
} = _ref29;
|
|
1016
1038
|
return {
|
|
1017
1039
|
fontSize: theme.typography.subtitle1.fontSize,
|
|
1018
1040
|
lineHeight: "1.33333333",
|
|
@@ -1032,10 +1054,10 @@ export const components = {
|
|
|
1032
1054
|
},
|
|
1033
1055
|
MuiFormLabel: {
|
|
1034
1056
|
styleOverrides: {
|
|
1035
|
-
root:
|
|
1057
|
+
root: _ref30 => {
|
|
1036
1058
|
let {
|
|
1037
1059
|
theme
|
|
1038
|
-
} =
|
|
1060
|
+
} = _ref30;
|
|
1039
1061
|
return {
|
|
1040
1062
|
color: theme.palette.text.primary,
|
|
1041
1063
|
lineHeight: theme.typography.ui.lineHeight,
|
|
@@ -1051,18 +1073,18 @@ export const components = {
|
|
|
1051
1073
|
},
|
|
1052
1074
|
MuiIconButton: {
|
|
1053
1075
|
styleOverrides: {
|
|
1054
|
-
edgeEnd:
|
|
1076
|
+
edgeEnd: _ref31 => {
|
|
1055
1077
|
let {
|
|
1056
1078
|
theme
|
|
1057
|
-
} =
|
|
1079
|
+
} = _ref31;
|
|
1058
1080
|
return {
|
|
1059
1081
|
marginInlineEnd: theme.spacing(1)
|
|
1060
1082
|
};
|
|
1061
1083
|
},
|
|
1062
|
-
root:
|
|
1084
|
+
root: _ref32 => {
|
|
1063
1085
|
let {
|
|
1064
1086
|
theme
|
|
1065
|
-
} =
|
|
1087
|
+
} = _ref32;
|
|
1066
1088
|
return {
|
|
1067
1089
|
padding: theme.spacing(1),
|
|
1068
1090
|
fontSize: theme.typography.body1.fontSize,
|
|
@@ -1107,11 +1129,11 @@ export const components = {
|
|
|
1107
1129
|
variant: "outlined"
|
|
1108
1130
|
},
|
|
1109
1131
|
styleOverrides: {
|
|
1110
|
-
root:
|
|
1132
|
+
root: _ref33 => {
|
|
1111
1133
|
let {
|
|
1112
1134
|
theme,
|
|
1113
1135
|
ownerState
|
|
1114
|
-
} =
|
|
1136
|
+
} = _ref33;
|
|
1115
1137
|
return {
|
|
1116
1138
|
display: "flex",
|
|
1117
1139
|
minWidth: "1.25em",
|
|
@@ -1139,11 +1161,11 @@ export const components = {
|
|
|
1139
1161
|
required: true
|
|
1140
1162
|
},
|
|
1141
1163
|
styleOverrides: {
|
|
1142
|
-
root:
|
|
1164
|
+
root: _ref34 => {
|
|
1143
1165
|
let {
|
|
1144
1166
|
ownerState,
|
|
1145
1167
|
theme
|
|
1146
|
-
} =
|
|
1168
|
+
} = _ref34;
|
|
1147
1169
|
return { ...theme.typography.body1,
|
|
1148
1170
|
flex: "1",
|
|
1149
1171
|
width: "auto",
|
|
@@ -1188,10 +1210,10 @@ export const components = {
|
|
|
1188
1210
|
}
|
|
1189
1211
|
};
|
|
1190
1212
|
},
|
|
1191
|
-
input:
|
|
1213
|
+
input: _ref35 => {
|
|
1192
1214
|
let {
|
|
1193
1215
|
theme
|
|
1194
|
-
} =
|
|
1216
|
+
} = _ref35;
|
|
1195
1217
|
return {
|
|
1196
1218
|
boxSizing: "border-box",
|
|
1197
1219
|
height: "auto",
|
|
@@ -1221,10 +1243,10 @@ export const components = {
|
|
|
1221
1243
|
shrink: false
|
|
1222
1244
|
},
|
|
1223
1245
|
styleOverrides: {
|
|
1224
|
-
root:
|
|
1246
|
+
root: _ref36 => {
|
|
1225
1247
|
let {
|
|
1226
1248
|
ownerState
|
|
1227
|
-
} =
|
|
1249
|
+
} = _ref36;
|
|
1228
1250
|
return {
|
|
1229
1251
|
display: "flex",
|
|
1230
1252
|
justifyContent: "space-between",
|
|
@@ -1246,10 +1268,10 @@ export const components = {
|
|
|
1246
1268
|
},
|
|
1247
1269
|
MuiLink: {
|
|
1248
1270
|
styleOverrides: {
|
|
1249
|
-
root:
|
|
1271
|
+
root: _ref37 => {
|
|
1250
1272
|
let {
|
|
1251
1273
|
theme
|
|
1252
|
-
} =
|
|
1274
|
+
} = _ref37;
|
|
1253
1275
|
return {
|
|
1254
1276
|
color: theme.palette.primary.main,
|
|
1255
1277
|
textDecoration: "underline",
|
|
@@ -1292,10 +1314,10 @@ export const components = {
|
|
|
1292
1314
|
props: {
|
|
1293
1315
|
variant: "monochrome"
|
|
1294
1316
|
},
|
|
1295
|
-
style:
|
|
1317
|
+
style: _ref38 => {
|
|
1296
1318
|
let {
|
|
1297
1319
|
theme
|
|
1298
|
-
} =
|
|
1320
|
+
} = _ref38;
|
|
1299
1321
|
return {
|
|
1300
1322
|
color: theme.palette.text.primary,
|
|
1301
1323
|
textDecoration: "underline",
|
|
@@ -1324,14 +1346,15 @@ export const components = {
|
|
|
1324
1346
|
},
|
|
1325
1347
|
MuiListSubheader: {
|
|
1326
1348
|
styleOverrides: {
|
|
1327
|
-
root:
|
|
1349
|
+
root: _ref39 => {
|
|
1328
1350
|
let {
|
|
1329
1351
|
theme
|
|
1330
|
-
} =
|
|
1352
|
+
} = _ref39;
|
|
1331
1353
|
return {
|
|
1332
1354
|
paddingBlock: theme.spacing(2),
|
|
1333
1355
|
paddingInline: theme.spacing(4),
|
|
1334
1356
|
fontSize: theme.typography.caption.fontSize,
|
|
1357
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
1335
1358
|
lineHeight: theme.typography.caption.lineHeight,
|
|
1336
1359
|
color: theme.palette.text.secondary,
|
|
1337
1360
|
textTransform: "uppercase"
|
|
@@ -1341,24 +1364,66 @@ export const components = {
|
|
|
1341
1364
|
},
|
|
1342
1365
|
MuiMenuItem: {
|
|
1343
1366
|
styleOverrides: {
|
|
1344
|
-
root:
|
|
1367
|
+
root: _ref40 => {
|
|
1345
1368
|
let {
|
|
1346
|
-
theme
|
|
1347
|
-
|
|
1369
|
+
theme,
|
|
1370
|
+
ownerState
|
|
1371
|
+
} = _ref40;
|
|
1348
1372
|
return {
|
|
1349
|
-
justifyContent: "space-between",
|
|
1350
1373
|
gap: theme.spacing(2),
|
|
1351
|
-
"
|
|
1374
|
+
minHeight: "unset",
|
|
1375
|
+
paddingBlock: theme.spacing(3),
|
|
1376
|
+
"&:hover": {
|
|
1377
|
+
textDecoration: "none",
|
|
1378
|
+
backgroundColor: theme.palette.grey[100],
|
|
1379
|
+
"@media (hover: none)": {
|
|
1380
|
+
backgroundColor: "transparent"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
[`&.${menuItemClasses.root}-destructive`]: {
|
|
1384
|
+
color: theme.palette.error.main
|
|
1385
|
+
},
|
|
1386
|
+
[`&.${menuItemClasses.selected}`]: {
|
|
1352
1387
|
backgroundColor: "transparent",
|
|
1353
1388
|
color: theme.palette.primary.main,
|
|
1354
1389
|
"&:hover": {
|
|
1355
|
-
backgroundColor: theme.palette.primary.lighter
|
|
1390
|
+
backgroundColor: theme.palette.primary.lighter,
|
|
1391
|
+
"@media (hover: none)": {
|
|
1392
|
+
backgroundColor: `rgba(${theme.palette.primary.main} / ${theme.palette.action.selectedOpacity})`
|
|
1393
|
+
}
|
|
1356
1394
|
}
|
|
1395
|
+
},
|
|
1396
|
+
...(!ownerState.disableGutters && {
|
|
1397
|
+
paddingInline: theme.spacing(4)
|
|
1398
|
+
}),
|
|
1399
|
+
...(ownerState.divider && {
|
|
1400
|
+
borderBlockEnd: `1px solid ${theme.palette.divider}`
|
|
1401
|
+
}),
|
|
1402
|
+
[`&.${menuItemClasses.disabled}`]: {
|
|
1403
|
+
opacity: 1,
|
|
1404
|
+
color: theme.palette.text.disabled
|
|
1405
|
+
},
|
|
1406
|
+
[`& + .${dividerClasses.root}`]: {
|
|
1407
|
+
marginBlock: theme.spacing(1)
|
|
1408
|
+
},
|
|
1409
|
+
[`& .${listItemTextClasses.root}`]: {
|
|
1410
|
+
marginBlock: 0
|
|
1411
|
+
},
|
|
1412
|
+
[`& .${listItemIconClasses.root}`]: {
|
|
1413
|
+
minWidth: "unset"
|
|
1357
1414
|
}
|
|
1358
1415
|
};
|
|
1359
1416
|
}
|
|
1360
1417
|
}
|
|
1361
1418
|
},
|
|
1419
|
+
MuiListItemIcon: {
|
|
1420
|
+
styleOverrides: {
|
|
1421
|
+
root: {
|
|
1422
|
+
minWidth: "unset",
|
|
1423
|
+
color: "inherit"
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1362
1427
|
MuiNativeSelect: {
|
|
1363
1428
|
defaultProps: {
|
|
1364
1429
|
variant: "standard"
|
|
@@ -1369,10 +1434,10 @@ export const components = {
|
|
|
1369
1434
|
backgroundColor: "transparent"
|
|
1370
1435
|
}
|
|
1371
1436
|
},
|
|
1372
|
-
icon:
|
|
1437
|
+
icon: _ref41 => {
|
|
1373
1438
|
let {
|
|
1374
1439
|
theme
|
|
1375
|
-
} =
|
|
1440
|
+
} = _ref41;
|
|
1376
1441
|
return {
|
|
1377
1442
|
insetInlineEnd: theme.spacing(3),
|
|
1378
1443
|
color: theme.palette.text.primary
|
|
@@ -1382,12 +1447,15 @@ export const components = {
|
|
|
1382
1447
|
},
|
|
1383
1448
|
MuiPopover: {
|
|
1384
1449
|
styleOverrides: {
|
|
1385
|
-
paper:
|
|
1450
|
+
paper: _ref42 => {
|
|
1386
1451
|
let {
|
|
1387
1452
|
theme
|
|
1388
|
-
} =
|
|
1453
|
+
} = _ref42;
|
|
1389
1454
|
return {
|
|
1390
|
-
marginBlockStart: theme.spacing(1)
|
|
1455
|
+
marginBlockStart: theme.spacing(1),
|
|
1456
|
+
borderWidth: theme.mixins.borderWidth,
|
|
1457
|
+
borderStyle: theme.mixins.borderStyle,
|
|
1458
|
+
borderColor: theme.palette.grey[200]
|
|
1391
1459
|
};
|
|
1392
1460
|
}
|
|
1393
1461
|
}
|
|
@@ -1397,10 +1465,10 @@ export const components = {
|
|
|
1397
1465
|
size: "small"
|
|
1398
1466
|
},
|
|
1399
1467
|
styleOverrides: {
|
|
1400
|
-
root:
|
|
1468
|
+
root: _ref43 => {
|
|
1401
1469
|
let {
|
|
1402
1470
|
theme
|
|
1403
|
-
} =
|
|
1471
|
+
} = _ref43;
|
|
1404
1472
|
return {
|
|
1405
1473
|
"&:hover": {
|
|
1406
1474
|
backgroundColor: "transparent"
|
|
@@ -1436,10 +1504,10 @@ export const components = {
|
|
|
1436
1504
|
IconComponent: ChevronDownIcon
|
|
1437
1505
|
},
|
|
1438
1506
|
styleOverrides: {
|
|
1439
|
-
select:
|
|
1507
|
+
select: _ref44 => {
|
|
1440
1508
|
let {
|
|
1441
1509
|
theme
|
|
1442
|
-
} =
|
|
1510
|
+
} = _ref44;
|
|
1443
1511
|
return {
|
|
1444
1512
|
paddingBlock: `calc(${theme.spacing(3)} - ${theme.mixins.borderWidth})`,
|
|
1445
1513
|
paddingInline: theme.spacing(3),
|
|
@@ -1455,10 +1523,10 @@ export const components = {
|
|
|
1455
1523
|
}
|
|
1456
1524
|
};
|
|
1457
1525
|
},
|
|
1458
|
-
icon:
|
|
1526
|
+
icon: _ref45 => {
|
|
1459
1527
|
let {
|
|
1460
1528
|
theme
|
|
1461
|
-
} =
|
|
1529
|
+
} = _ref45;
|
|
1462
1530
|
return {
|
|
1463
1531
|
insetInlineEnd: theme.spacing(3),
|
|
1464
1532
|
color: theme.palette.text.primary
|
|
@@ -1472,10 +1540,10 @@ export const components = {
|
|
|
1472
1540
|
color: "inherit"
|
|
1473
1541
|
},
|
|
1474
1542
|
styleOverrides: {
|
|
1475
|
-
root:
|
|
1543
|
+
root: _ref46 => {
|
|
1476
1544
|
let {
|
|
1477
1545
|
theme
|
|
1478
|
-
} =
|
|
1546
|
+
} = _ref46;
|
|
1479
1547
|
return {
|
|
1480
1548
|
fontSize: `${theme.typography.ui.lineHeight}rem`
|
|
1481
1549
|
};
|
|
@@ -1487,11 +1555,11 @@ export const components = {
|
|
|
1487
1555
|
iconPosition: "start"
|
|
1488
1556
|
},
|
|
1489
1557
|
styleOverrides: {
|
|
1490
|
-
root:
|
|
1558
|
+
root: _ref47 => {
|
|
1491
1559
|
let {
|
|
1492
1560
|
theme,
|
|
1493
1561
|
ownerState
|
|
1494
|
-
} =
|
|
1562
|
+
} = _ref47;
|
|
1495
1563
|
return {
|
|
1496
1564
|
maxWidth: `calc(${theme.mixins.maxWidth} / 2)`,
|
|
1497
1565
|
minWidth: "unset",
|
|
@@ -1552,11 +1620,11 @@ export const components = {
|
|
|
1552
1620
|
},
|
|
1553
1621
|
MuiTable: {
|
|
1554
1622
|
styleOverrides: {
|
|
1555
|
-
root:
|
|
1623
|
+
root: _ref48 => {
|
|
1556
1624
|
let {
|
|
1557
1625
|
theme,
|
|
1558
1626
|
ownerState
|
|
1559
|
-
} =
|
|
1627
|
+
} = _ref48;
|
|
1560
1628
|
return {
|
|
1561
1629
|
display: "table",
|
|
1562
1630
|
width: "auto",
|
|
@@ -1588,11 +1656,11 @@ export const components = {
|
|
|
1588
1656
|
},
|
|
1589
1657
|
MuiTableCell: {
|
|
1590
1658
|
styleOverrides: {
|
|
1591
|
-
root:
|
|
1659
|
+
root: _ref49 => {
|
|
1592
1660
|
let {
|
|
1593
1661
|
theme,
|
|
1594
1662
|
ownerState
|
|
1595
|
-
} =
|
|
1663
|
+
} = _ref49;
|
|
1596
1664
|
return { ...theme.typography.body1,
|
|
1597
1665
|
maxWidth: theme.mixins.maxWidth,
|
|
1598
1666
|
borderBottom: `${theme.mixins.borderWidth} ${theme.mixins.borderStyle} ${theme.palette.grey[100]}`,
|
|
@@ -1671,10 +1739,10 @@ export const components = {
|
|
|
1671
1739
|
component: "figure"
|
|
1672
1740
|
},
|
|
1673
1741
|
styleOverrides: {
|
|
1674
|
-
root:
|
|
1742
|
+
root: _ref50 => {
|
|
1675
1743
|
let {
|
|
1676
1744
|
theme
|
|
1677
|
-
} =
|
|
1745
|
+
} = _ref50;
|
|
1678
1746
|
return {
|
|
1679
1747
|
width: "unset",
|
|
1680
1748
|
maxWidth: "100%",
|
|
@@ -1691,10 +1759,10 @@ export const components = {
|
|
|
1691
1759
|
},
|
|
1692
1760
|
MuiTableRow: {
|
|
1693
1761
|
styleOverrides: {
|
|
1694
|
-
root:
|
|
1762
|
+
root: _ref51 => {
|
|
1695
1763
|
let {
|
|
1696
1764
|
theme
|
|
1697
|
-
} =
|
|
1765
|
+
} = _ref51;
|
|
1698
1766
|
return {
|
|
1699
1767
|
verticalAlign: "unset",
|
|
1700
1768
|
[`&.${tableRowClasses.root}:hover`]: {
|
|
@@ -1715,10 +1783,10 @@ export const components = {
|
|
|
1715
1783
|
IconComponent: ArrowDownIcon
|
|
1716
1784
|
},
|
|
1717
1785
|
styleOverrides: {
|
|
1718
|
-
root:
|
|
1786
|
+
root: _ref52 => {
|
|
1719
1787
|
let {
|
|
1720
1788
|
theme
|
|
1721
|
-
} =
|
|
1789
|
+
} = _ref52;
|
|
1722
1790
|
return {
|
|
1723
1791
|
cursor: "pointer",
|
|
1724
1792
|
display: "inline-flex",
|
|
@@ -1747,11 +1815,11 @@ export const components = {
|
|
|
1747
1815
|
}
|
|
1748
1816
|
};
|
|
1749
1817
|
},
|
|
1750
|
-
icon:
|
|
1818
|
+
icon: _ref53 => {
|
|
1751
1819
|
let {
|
|
1752
1820
|
theme,
|
|
1753
1821
|
ownerState
|
|
1754
|
-
} =
|
|
1822
|
+
} = _ref53;
|
|
1755
1823
|
return {
|
|
1756
1824
|
fontSize: "inherit",
|
|
1757
1825
|
marginInlineEnd: 0,
|
|
@@ -1780,19 +1848,19 @@ export const components = {
|
|
|
1780
1848
|
},
|
|
1781
1849
|
MuiTabs: {
|
|
1782
1850
|
styleOverrides: {
|
|
1783
|
-
root:
|
|
1851
|
+
root: _ref54 => {
|
|
1784
1852
|
let {
|
|
1785
1853
|
theme
|
|
1786
|
-
} =
|
|
1854
|
+
} = _ref54;
|
|
1787
1855
|
return {
|
|
1788
1856
|
minHeight: "unset",
|
|
1789
1857
|
marginBottom: theme.spacing(5)
|
|
1790
1858
|
};
|
|
1791
1859
|
},
|
|
1792
|
-
flexContainer:
|
|
1860
|
+
flexContainer: _ref55 => {
|
|
1793
1861
|
let {
|
|
1794
1862
|
theme
|
|
1795
|
-
} =
|
|
1863
|
+
} = _ref55;
|
|
1796
1864
|
return {
|
|
1797
1865
|
gap: theme.spacing(5),
|
|
1798
1866
|
borderBottom: `${theme.mixins.borderWidth} ${theme.mixins.borderStyle} ${theme.palette.divider}`
|
|
@@ -1808,11 +1876,11 @@ export const components = {
|
|
|
1808
1876
|
placement: "top"
|
|
1809
1877
|
},
|
|
1810
1878
|
styleOverrides: {
|
|
1811
|
-
tooltip:
|
|
1879
|
+
tooltip: _ref56 => {
|
|
1812
1880
|
let {
|
|
1813
1881
|
theme,
|
|
1814
1882
|
ownerState
|
|
1815
|
-
} =
|
|
1883
|
+
} = _ref56;
|
|
1816
1884
|
return {
|
|
1817
1885
|
maxWidth: `calc(${theme.mixins.maxWidth} / 2)`,
|
|
1818
1886
|
paddingBlock: theme.spacing(2),
|
|
@@ -1872,10 +1940,10 @@ export const components = {
|
|
|
1872
1940
|
}
|
|
1873
1941
|
};
|
|
1874
1942
|
},
|
|
1875
|
-
arrow:
|
|
1943
|
+
arrow: _ref57 => {
|
|
1876
1944
|
let {
|
|
1877
1945
|
theme
|
|
1878
|
-
} =
|
|
1946
|
+
} = _ref57;
|
|
1879
1947
|
return {
|
|
1880
1948
|
color: theme.palette.grey[900],
|
|
1881
1949
|
"&::before": {
|
|
@@ -1914,10 +1982,10 @@ export const components = {
|
|
|
1914
1982
|
}
|
|
1915
1983
|
},
|
|
1916
1984
|
styleOverrides: {
|
|
1917
|
-
paragraph:
|
|
1985
|
+
paragraph: _ref58 => {
|
|
1918
1986
|
let {
|
|
1919
1987
|
theme
|
|
1920
|
-
} =
|
|
1988
|
+
} = _ref58;
|
|
1921
1989
|
return {
|
|
1922
1990
|
marginBottom: theme.spacing(4)
|
|
1923
1991
|
};
|