sud-ui 0.1.13 → 0.1.15
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 +13 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6222,6 +6222,7 @@ const Z1 = ({
|
|
|
6222
6222
|
border: i ? `${C}px ${x} ${h}` : "none",
|
|
6223
6223
|
...R,
|
|
6224
6224
|
padding: 3,
|
|
6225
|
+
width: "100%",
|
|
6225
6226
|
boxShadow: H,
|
|
6226
6227
|
...M
|
|
6227
6228
|
},
|
|
@@ -6245,7 +6246,7 @@ const Z1 = ({
|
|
|
6245
6246
|
shape: F,
|
|
6246
6247
|
disabled: v,
|
|
6247
6248
|
style: {
|
|
6248
|
-
flex:
|
|
6249
|
+
flex: 1,
|
|
6249
6250
|
transition: "background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease"
|
|
6250
6251
|
},
|
|
6251
6252
|
children: V
|
|
@@ -13196,18 +13197,22 @@ const P9 = ({ isOpen: s, children: c }) => {
|
|
|
13196
13197
|
"div",
|
|
13197
13198
|
{
|
|
13198
13199
|
ref: x,
|
|
13199
|
-
className: l0(
|
|
13200
|
-
"sud-menu__item
|
|
13201
|
-
|
|
13202
|
-
"sud-menu__item--active": M
|
|
13203
|
-
}
|
|
13204
|
-
),
|
|
13200
|
+
className: l0("sud-menu__item", {
|
|
13201
|
+
"sud-menu__item--active": M
|
|
13202
|
+
}),
|
|
13205
13203
|
style: {
|
|
13206
13204
|
...M && {
|
|
13207
13205
|
backgroundColor: _,
|
|
13208
13206
|
color: N
|
|
13209
13207
|
},
|
|
13210
|
-
whiteSpace: "nowrap"
|
|
13208
|
+
whiteSpace: "nowrap",
|
|
13209
|
+
padding: 12,
|
|
13210
|
+
borderRadius: 10,
|
|
13211
|
+
cursor: "pointer",
|
|
13212
|
+
display: "flex",
|
|
13213
|
+
alignItems: "center",
|
|
13214
|
+
justifyContent: "space-between",
|
|
13215
|
+
gap: 8
|
|
13211
13216
|
},
|
|
13212
13217
|
role: "menuitem",
|
|
13213
13218
|
"aria-haspopup": F ? "true" : void 0,
|