@zesty-io/material 0.13.1 → 0.13.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.
Files changed (2) hide show
  1. package/es/theme/index.js +14 -2
  2. package/package.json +1 -1
package/es/theme/index.js CHANGED
@@ -1,6 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { lightThemePalette, darkThemePalette } from "./palette";
2
3
  import typography from "./typography";
3
4
  import { alpha, createTheme } from "@mui/material/styles";
5
+ import KeyboardArrowDownRoundedIcon from "@mui/icons-material/KeyboardArrowDownRounded";
4
6
  const components = {
5
7
  MuiFormLabel: {
6
8
  styleOverrides: {
@@ -217,7 +219,7 @@ const components = {
217
219
  MuiDialog: {
218
220
  styleOverrides: {
219
221
  paper: {
220
- borderRadius: "8px",
222
+ borderRadius: "4px",
221
223
  },
222
224
  paperWidthXs: {
223
225
  width: "480px",
@@ -596,7 +598,17 @@ const components = {
596
598
  color: "text.disabled",
597
599
  },
598
600
  },
599
- }
601
+ },
602
+ MuiAutocomplete: {
603
+ defaultProps: {
604
+ popupIcon: _jsx(KeyboardArrowDownRoundedIcon, {}),
605
+ },
606
+ },
607
+ MuiSelect: {
608
+ defaultProps: {
609
+ IconComponent: KeyboardArrowDownRoundedIcon,
610
+ },
611
+ },
600
612
  };
601
613
  export let theme = createTheme({
602
614
  typography,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zesty-io/material",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "Contains custom components which are in addition to the @mui design-system",
5
5
  "author": "Zesty.io",
6
6
  "license": "MIT",