aefis-core-ui 2.1.21 → 2.1.22
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/dist/index.modern.js +6 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -9953,13 +9953,13 @@ const Drawer = props => {
|
|
|
9953
9953
|
};
|
|
9954
9954
|
const theme = useTheme$1();
|
|
9955
9955
|
const appBarStyle = {
|
|
9956
|
-
primary: {
|
|
9956
|
+
primary: _extends({
|
|
9957
9957
|
color: "#ffffff"
|
|
9958
|
-
},
|
|
9959
|
-
secondary: {
|
|
9958
|
+
}, props.appBarStyle),
|
|
9959
|
+
secondary: _extends({
|
|
9960
9960
|
backgroundColor: "#ffffff",
|
|
9961
9961
|
color: "#333333"
|
|
9962
|
-
}
|
|
9962
|
+
}, props.appBarStyle)
|
|
9963
9963
|
};
|
|
9964
9964
|
const closeDrawerIconStyle = {
|
|
9965
9965
|
color: props.headerColor === "secondary" ? "rgba(0, 0, 0, 0.54)" : "#ffffff",
|
|
@@ -10167,6 +10167,8 @@ Drawer.propTypes = {
|
|
|
10167
10167
|
menuPositionOffset: PropTypes.oneOf(["none", "primaryMenu", "secondaryMenu"]),
|
|
10168
10168
|
/** Additional styles to apply to the drawer paper. */
|
|
10169
10169
|
paperStyle: PropTypes.any,
|
|
10170
|
+
/** Additional styles to apply to the appbar. */
|
|
10171
|
+
appBarStyle: PropTypes.any,
|
|
10170
10172
|
/** Whether or not to show the header divider */
|
|
10171
10173
|
headerDivider: PropTypes.bool,
|
|
10172
10174
|
/** The component to use while rendering the drawer title */
|