@auth0/quantum-product 2.1.1 → 2.1.2
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.
|
@@ -6,13 +6,13 @@ var createMuiDialogOverrides = function (_a) {
|
|
|
6
6
|
return {
|
|
7
7
|
styleOverrides: {
|
|
8
8
|
paperWidthMd: {
|
|
9
|
-
|
|
9
|
+
maxWidth: typography.pxToRem(800),
|
|
10
10
|
},
|
|
11
11
|
paperWidthSm: {
|
|
12
|
-
|
|
12
|
+
maxWidth: typography.pxToRem(640),
|
|
13
13
|
},
|
|
14
14
|
paperWidthXs: {
|
|
15
|
-
|
|
15
|
+
maxWidth: typography.pxToRem(448),
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
};
|
|
@@ -58,5 +58,5 @@ var Root = (0, styled_1.styled)(divider_1.Divider, { name: dropdownMenuDividerCo
|
|
|
58
58
|
});
|
|
59
59
|
exports.DropdownMenuDivider = React.forwardRef(function (props, ref) {
|
|
60
60
|
var rootProps = __rest(props, []);
|
|
61
|
-
return React.createElement(Root, __assign({ ref: ref,
|
|
61
|
+
return React.createElement(Root, __assign({ ref: ref, as: "hr", role: "separator" }, rootProps));
|
|
62
62
|
});
|
|
@@ -3,13 +3,13 @@ export var createMuiDialogOverrides = function (_a) {
|
|
|
3
3
|
return {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
paperWidthMd: {
|
|
6
|
-
|
|
6
|
+
maxWidth: typography.pxToRem(800),
|
|
7
7
|
},
|
|
8
8
|
paperWidthSm: {
|
|
9
|
-
|
|
9
|
+
maxWidth: typography.pxToRem(640),
|
|
10
10
|
},
|
|
11
11
|
paperWidthXs: {
|
|
12
|
-
|
|
12
|
+
maxWidth: typography.pxToRem(448),
|
|
13
13
|
},
|
|
14
14
|
},
|
|
15
15
|
};
|
|
@@ -32,5 +32,5 @@ var Root = styled(Divider, { name: dropdownMenuDividerComponentName, slot: 'Root
|
|
|
32
32
|
});
|
|
33
33
|
export var DropdownMenuDivider = React.forwardRef(function (props, ref) {
|
|
34
34
|
var rootProps = __rest(props, []);
|
|
35
|
-
return React.createElement(Root, __assign({ ref: ref,
|
|
35
|
+
return React.createElement(Root, __assign({ ref: ref, as: "hr", role: "separator" }, rootProps));
|
|
36
36
|
});
|