@vertigis/react-ui 11.32.0 → 11.32.1

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.
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useFormControl } from "@mui/material/FormControl";
2
3
  import clsx from "clsx";
3
4
  import { forwardRef, useState } from "react";
4
5
  import Box from "../Box/index.js";
5
- import { useFormControl } from "../FormControl/index.js";
6
6
  import IconButton from "../IconButton/index.js";
7
7
  import Link from "../Link/index.js";
8
8
  import Popover from "../Popover/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/react-ui",
3
- "version": "11.32.0",
3
+ "version": "11.32.1",
4
4
  "description": "Utilities and React components used in VertiGIS applications.",
5
5
  "keywords": [
6
6
  "vertigis",
@@ -655,6 +655,15 @@ function getOverrides(theme) {
655
655
  },
656
656
  },
657
657
  },
658
+ MuiSlider: {
659
+ styleOverrides: {
660
+ valueLabel: {
661
+ // Set the minimum height to avoid it jumping around
662
+ // when the label does not have a value.
663
+ minHeight: typography.pxToRem(28),
664
+ },
665
+ },
666
+ },
658
667
  MuiSwitch: {
659
668
  defaultProps: {
660
669
  color: "secondary",