cloudmr-ux 1.7.7 → 1.7.8
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 +12 -1
- package/dist/index.mjs +12 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1156,7 +1156,18 @@ var CMRSelectUpload = (props) => {
|
|
|
1156
1156
|
},
|
|
1157
1157
|
styles: {
|
|
1158
1158
|
container: (base) => ({ ...base, width: "100%" }),
|
|
1159
|
-
menu: (base) => ({
|
|
1159
|
+
menu: (base) => ({
|
|
1160
|
+
...base,
|
|
1161
|
+
zIndex: 9999,
|
|
1162
|
+
width: "100%"
|
|
1163
|
+
// Ensure the dropdown matches container width
|
|
1164
|
+
}),
|
|
1165
|
+
menuList: (base) => ({
|
|
1166
|
+
...base,
|
|
1167
|
+
maxHeight: "300px",
|
|
1168
|
+
// Optional: prevent scroll from being too short
|
|
1169
|
+
overflowY: "auto"
|
|
1170
|
+
})
|
|
1160
1171
|
}
|
|
1161
1172
|
}
|
|
1162
1173
|
) }),
|
package/dist/index.mjs
CHANGED
|
@@ -1108,7 +1108,18 @@ var CMRSelectUpload = (props) => {
|
|
|
1108
1108
|
},
|
|
1109
1109
|
styles: {
|
|
1110
1110
|
container: (base) => ({ ...base, width: "100%" }),
|
|
1111
|
-
menu: (base) => ({
|
|
1111
|
+
menu: (base) => ({
|
|
1112
|
+
...base,
|
|
1113
|
+
zIndex: 9999,
|
|
1114
|
+
width: "100%"
|
|
1115
|
+
// Ensure the dropdown matches container width
|
|
1116
|
+
}),
|
|
1117
|
+
menuList: (base) => ({
|
|
1118
|
+
...base,
|
|
1119
|
+
maxHeight: "300px",
|
|
1120
|
+
// Optional: prevent scroll from being too short
|
|
1121
|
+
overflowY: "auto"
|
|
1122
|
+
})
|
|
1112
1123
|
}
|
|
1113
1124
|
}
|
|
1114
1125
|
) }),
|