aefis-core-ui 2.2.3-rc5 → 2.2.3-rc6
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
|
@@ -9962,13 +9962,13 @@ const Drawer = props => {
|
|
|
9962
9962
|
};
|
|
9963
9963
|
const theme = useTheme$1();
|
|
9964
9964
|
const appBarStyle = {
|
|
9965
|
-
primary: {
|
|
9965
|
+
primary: _extends({
|
|
9966
9966
|
color: "#ffffff"
|
|
9967
|
-
},
|
|
9968
|
-
secondary: {
|
|
9967
|
+
}, props.appBarStyle),
|
|
9968
|
+
secondary: _extends({
|
|
9969
9969
|
backgroundColor: "#ffffff",
|
|
9970
9970
|
color: "#333333"
|
|
9971
|
-
}
|
|
9971
|
+
}, props.appBarStyle)
|
|
9972
9972
|
};
|
|
9973
9973
|
const closeDrawerIconStyle = {
|
|
9974
9974
|
color: props.headerColor === "secondary" ? "rgba(0, 0, 0, 0.54)" : "#ffffff",
|
|
@@ -10176,6 +10176,8 @@ Drawer.propTypes = {
|
|
|
10176
10176
|
menuPositionOffset: PropTypes.oneOf(["none", "primaryMenu", "secondaryMenu"]),
|
|
10177
10177
|
/** Additional styles to apply to the drawer paper. */
|
|
10178
10178
|
paperStyle: PropTypes.any,
|
|
10179
|
+
/** Additional styles to apply to the appbar. */
|
|
10180
|
+
appBarStyle: PropTypes.any,
|
|
10179
10181
|
/** Whether or not to show the header divider */
|
|
10180
10182
|
headerDivider: PropTypes.bool,
|
|
10181
10183
|
/** The component to use while rendering the drawer title */
|