aefis-core-ui 2.3.0-rc2 → 2.3.0-rc4

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.
@@ -6829,7 +6829,7 @@ DataTable.propTypes = {
6829
6829
  };
6830
6830
 
6831
6831
  const options = {
6832
- arrayFormat: "index"
6832
+ arrayFormat: "bracket"
6833
6833
  };
6834
6834
  const setQueryStringWithoutPageReload = qsValue => {
6835
6835
  const {
@@ -9958,13 +9958,13 @@ const Drawer = props => {
9958
9958
  };
9959
9959
  const theme = useTheme$1();
9960
9960
  const appBarStyle = {
9961
- primary: {
9961
+ primary: _extends({
9962
9962
  color: "#ffffff"
9963
- },
9964
- secondary: {
9963
+ }, props.appBarStyle),
9964
+ secondary: _extends({
9965
9965
  backgroundColor: "#ffffff",
9966
9966
  color: "#333333"
9967
- }
9967
+ }, props.appBarStyle)
9968
9968
  };
9969
9969
  const closeDrawerIconStyle = {
9970
9970
  color: props.headerColor === "secondary" ? "rgba(0, 0, 0, 0.54)" : "#ffffff",
@@ -10172,6 +10172,8 @@ Drawer.propTypes = {
10172
10172
  menuPositionOffset: PropTypes.oneOf(["none", "primaryMenu", "secondaryMenu"]),
10173
10173
  /** Additional styles to apply to the drawer paper. */
10174
10174
  paperStyle: PropTypes.any,
10175
+ /** Additional styles to apply to the appbar. */
10176
+ appBarStyle: PropTypes.any,
10175
10177
  /** Whether or not to show the header divider */
10176
10178
  headerDivider: PropTypes.bool,
10177
10179
  /** The component to use while rendering the drawer title */