@vertigis/react-ui 11.3.1 → 11.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/react-ui",
3
- "version": "11.3.1",
3
+ "version": "11.3.2",
4
4
  "description": "Utilities and React components used in VertiGIS applications.",
5
5
  "keywords": [
6
6
  "vertigis",
@@ -144,6 +144,19 @@ function getOverrides(theme) {
144
144
  const { palette, shape, spacing, transitions, typography } = theme;
145
145
  return {
146
146
  components: {
147
+ MuiAutocomplete: {
148
+ styleOverrides: {
149
+ root: {
150
+ [".MuiInput-root"]: {
151
+ [".MuiInput-input"]: {
152
+ // Let the height expand to fit content
153
+ height: "auto",
154
+ padding: "5px 8px",
155
+ },
156
+ },
157
+ },
158
+ },
159
+ },
147
160
  MuiBackdrop: {
148
161
  styleOverrides: {
149
162
  root: {
@@ -817,6 +830,9 @@ function getOverrides(theme) {
817
830
  },
818
831
  },
819
832
  },
833
+ MuiTextField: {
834
+ defaultProps: { variant: "standard" },
835
+ },
820
836
  MuiTimePicker: {
821
837
  defaultProps: {
822
838
  OpenPickerButtonProps: { size: "small" },