@undefine-ui/design-system 2.14.1 → 2.14.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/dist/index.js CHANGED
@@ -1338,6 +1338,18 @@ function shadows(colorScheme) {
1338
1338
  }
1339
1339
 
1340
1340
  // src/theme/core/components/list.ts
1341
+ var MuiList = {
1342
+ /** **************************************
1343
+ * STYLE
1344
+ *************************************** */
1345
+ styleOverrides: {
1346
+ root: ({ theme }) => ({
1347
+ '&[role="listbox"]': {
1348
+ padding: theme.spacing(0, 1)
1349
+ }
1350
+ })
1351
+ }
1352
+ };
1341
1353
  var MuiListSubheader = {
1342
1354
  /** **************************************
1343
1355
  * STYLE
@@ -1390,6 +1402,7 @@ var MuiListItemText = {
1390
1402
  styleOverrides: { root: { margin: 0 }, multiline: { margin: 0 } }
1391
1403
  };
1392
1404
  var list = {
1405
+ MuiList,
1393
1406
  MuiListSubheader,
1394
1407
  MuiListItemIcon,
1395
1408
  MuiListItemAvatar,
@@ -5241,7 +5254,7 @@ var MuiAutocomplete = {
5241
5254
  ...paper({ theme, dropdown: true })
5242
5255
  }),
5243
5256
  listbox: ({ theme }) => ({
5244
- padding: 0,
5257
+ padding: theme.spacing(0, 1),
5245
5258
  [`& .${autocompleteClasses3.option}`]: {
5246
5259
  ...menuItem(theme)
5247
5260
  }