@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.cjs +14 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1506,6 +1506,18 @@ function shadows(colorScheme) {
|
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
1508
|
// src/theme/core/components/list.ts
|
|
1509
|
+
var MuiList = {
|
|
1510
|
+
/** **************************************
|
|
1511
|
+
* STYLE
|
|
1512
|
+
*************************************** */
|
|
1513
|
+
styleOverrides: {
|
|
1514
|
+
root: ({ theme }) => ({
|
|
1515
|
+
'&[role="listbox"]': {
|
|
1516
|
+
padding: theme.spacing(0, 1)
|
|
1517
|
+
}
|
|
1518
|
+
})
|
|
1519
|
+
}
|
|
1520
|
+
};
|
|
1509
1521
|
var MuiListSubheader = {
|
|
1510
1522
|
/** **************************************
|
|
1511
1523
|
* STYLE
|
|
@@ -1558,6 +1570,7 @@ var MuiListItemText = {
|
|
|
1558
1570
|
styleOverrides: { root: { margin: 0 }, multiline: { margin: 0 } }
|
|
1559
1571
|
};
|
|
1560
1572
|
var list = {
|
|
1573
|
+
MuiList,
|
|
1561
1574
|
MuiListSubheader,
|
|
1562
1575
|
MuiListItemIcon,
|
|
1563
1576
|
MuiListItemAvatar,
|
|
@@ -5409,7 +5422,7 @@ var MuiAutocomplete = {
|
|
|
5409
5422
|
...paper({ theme, dropdown: true })
|
|
5410
5423
|
}),
|
|
5411
5424
|
listbox: ({ theme }) => ({
|
|
5412
|
-
padding: 0,
|
|
5425
|
+
padding: theme.spacing(0, 1),
|
|
5413
5426
|
[`& .${import_Autocomplete3.autocompleteClasses.option}`]: {
|
|
5414
5427
|
...menuItem(theme)
|
|
5415
5428
|
}
|