@undefine-ui/design-system 3.8.2 → 3.8.4

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.cjs CHANGED
@@ -9838,6 +9838,7 @@ var RHFToggleButton = ({
9838
9838
  options,
9839
9839
  fullWidth,
9840
9840
  slotProps,
9841
+ onValueChange,
9841
9842
  sx,
9842
9843
  ...other
9843
9844
  }) => {
@@ -9864,6 +9865,7 @@ var RHFToggleButton = ({
9864
9865
  onChange: (_, newValue) => {
9865
9866
  if (newValue !== null) {
9866
9867
  field.onChange(newValue);
9868
+ onValueChange?.(newValue);
9867
9869
  }
9868
9870
  },
9869
9871
  exclusive: true,
@@ -11614,6 +11616,7 @@ var MuiAutocomplete = {
11614
11616
  // Space for clear/popup icons
11615
11617
  // Size small
11616
11618
  ...ownerState.size === "small" && {
11619
+ height: "auto",
11617
11620
  minHeight: 36,
11618
11621
  [`& .${import_Autocomplete5.autocompleteClasses.tag}.${import_Chip2.chipClasses.root}`]: {
11619
11622
  height: 22,
@@ -11622,6 +11625,7 @@ var MuiAutocomplete = {
11622
11625
  },
11623
11626
  // Size large
11624
11627
  ...ownerState.size === "large" && {
11628
+ height: "auto",
11625
11629
  minHeight: 48,
11626
11630
  paddingTop: theme.spacing(1),
11627
11631
  paddingBottom: theme.spacing(1),