@undefine-ui/design-system 3.8.4 → 3.8.6

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
@@ -6005,6 +6005,19 @@ var MuiInputBase = {
6005
6005
  },
6006
6006
  [`& .${import_InputAdornment.inputAdornmentClasses.positionStart}`]: {
6007
6007
  marginTop: "0 !important"
6008
+ },
6009
+ // Autocomplete inputRoot - allow flexible height for multiple mode
6010
+ [`&.${import_Autocomplete2.autocompleteClasses.inputRoot}`]: {
6011
+ height: "auto",
6012
+ minHeight: 44,
6013
+ [`&.${import_InputBase.inputBaseClasses.sizeSmall}`]: {
6014
+ height: "auto",
6015
+ minHeight: 36
6016
+ },
6017
+ [`&.MuiInputBase-sizeLarge`]: {
6018
+ height: "auto",
6019
+ minHeight: 48
6020
+ }
6008
6021
  }
6009
6022
  }),
6010
6023
  input: ({ theme }) => ({
@@ -11764,7 +11777,6 @@ var import_IconButton8 = __toESM(require("@mui/material/IconButton"), 1);
11764
11777
  var import_Typography16 = __toESM(require("@mui/material/Typography"), 1);
11765
11778
  var import_Button5 = require("@mui/material/Button");
11766
11779
  var import_styles36 = require("@mui/material/styles");
11767
- var import_DialogActions = require("@mui/material/DialogActions");
11768
11780
  var import_jsx_runtime109 = require("react/jsx-runtime");
11769
11781
  var CustomCalendarHeaderRoot = (0, import_styles36.styled)("div")(({ theme }) => ({
11770
11782
  display: "flex",
@@ -11853,26 +11865,23 @@ var MuiTimePicker2 = { defaultProps: timePickerDefaults };
11853
11865
  var MuiMobileTimePicker = { defaultProps: timePickerDefaults };
11854
11866
  var MuiStaticTimePicker = { defaultProps: timePickerDefaults };
11855
11867
  var MuiDesktopTimePicker = { defaultProps: timePickerDefaults };
11856
- var MuiPickerLayout = {
11868
+ var MuiPickersLayout = {
11857
11869
  /** **************************************
11858
11870
  * STYLE
11859
11871
  *************************************** */
11860
11872
  styleOverrides: {
11861
- root: ({ theme }) => ({
11862
- [`& .${import_DialogActions.dialogActionsClasses.root}`]: {
11863
- [`& .${import_Button5.buttonClasses.root}`]: {
11864
- [`&:first-of-type`]: {
11865
- color: theme.vars.palette.text.header,
11866
- backgroundColor: "transparent",
11867
- border: "1px solid",
11868
- borderColor: theme.vars.palette.border.default,
11869
- "&:hover": {
11870
- backgroundColor: theme.vars.palette.action.hover
11871
- }
11872
- },
11873
- [`&:last-of-type`]: {
11874
- color: theme.vars.palette.common.white,
11875
- backgroundColor: theme.vars.palette.primary.main
11873
+ actionBar: ({ theme }) => ({
11874
+ [`& .${import_Button5.buttonClasses.root}`]: {
11875
+ // First button (Cancel): variant="secondary" color="neutral"
11876
+ [`&:first-of-type`]: {
11877
+ color: theme.vars.palette.neutral[950],
11878
+ backgroundColor: "transparent",
11879
+ border: `1px solid ${theme.vars.palette.neutral[200]}`,
11880
+ boxShadow: "none",
11881
+ "&:hover": {
11882
+ backgroundColor: theme.vars.palette.neutral[200],
11883
+ borderWidth: "2px",
11884
+ boxShadow: "none"
11876
11885
  }
11877
11886
  }
11878
11887
  }
@@ -12015,7 +12024,7 @@ var MuiDayCalendar = {
12015
12024
  };
12016
12025
  var datePicker = {
12017
12026
  MuiPickerPopper,
12018
- MuiPickerLayout,
12027
+ MuiPickersLayout,
12019
12028
  // Calendar
12020
12029
  MuiDateCalendar,
12021
12030
  MuiPickersDay,