@vertigis/react-ui 16.3.1 → 16.4.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.
@@ -8,5 +8,10 @@ const TimePicker = ({ slots, viewRenderers, ...props }, ref) => (_jsx(MuiTimePic
8
8
  hours: viewRenderers?.hours ?? renderTimeViewClock,
9
9
  minutes: viewRenderers?.minutes ?? renderTimeViewClock,
10
10
  seconds: viewRenderers?.seconds ?? renderTimeViewClock,
11
+ }, sx: {
12
+ "& .MuiIconButton-sizeMedium": {
13
+ // Match the adornment alignment of other date pickers.
14
+ marginRight: -0.375,
15
+ },
11
16
  }, ...props }));
12
17
  export default forwardRef(TimePicker);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/react-ui",
3
- "version": "16.3.1",
3
+ "version": "16.4.1",
4
4
  "description": "Utilities and React components used in VertiGIS applications.",
5
5
  "keywords": [
6
6
  "vertigis",
@@ -533,6 +533,9 @@ function getComponentOverrides(theme) {
533
533
  sizeSmall: {
534
534
  padding: 3,
535
535
  },
536
+ sizeMedium: {
537
+ padding: 3,
538
+ },
536
539
  },
537
540
  },
538
541
  MuiInput: {