mayak-common-library 0.0.78 → 0.0.79
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -378,12 +378,12 @@ var SelectPro = ({
|
|
|
378
378
|
import_material4.Paper,
|
|
379
379
|
{
|
|
380
380
|
sx: (theme2) => ({
|
|
381
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
381
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "100%",
|
|
382
382
|
left: fullContainerWidth ? 0 : "initial",
|
|
383
383
|
right: fullContainerWidth ? 0 : "initial",
|
|
384
384
|
top: overButton ? 0 : "initial",
|
|
385
385
|
[theme2.breakpoints.up("sm")]: {
|
|
386
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
386
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "115%"
|
|
387
387
|
}
|
|
388
388
|
}),
|
|
389
389
|
className: `absolute select ${open ? "select--open" : "select--close"} z-50 rounded-none shadow-none ${intermediateChild ? "mt-[1px]" : "m-0"}`,
|
package/dist/index.mjs
CHANGED
|
@@ -319,12 +319,12 @@ var SelectPro = ({
|
|
|
319
319
|
Paper,
|
|
320
320
|
{
|
|
321
321
|
sx: (theme2) => ({
|
|
322
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
322
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "100%",
|
|
323
323
|
left: fullContainerWidth ? 0 : "initial",
|
|
324
324
|
right: fullContainerWidth ? 0 : "initial",
|
|
325
325
|
top: overButton ? 0 : "initial",
|
|
326
326
|
[theme2.breakpoints.up("sm")]: {
|
|
327
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
327
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "115%"
|
|
328
328
|
}
|
|
329
329
|
}),
|
|
330
330
|
className: `absolute select ${open ? "select--open" : "select--close"} z-50 rounded-none shadow-none ${intermediateChild ? "mt-[1px]" : "m-0"}`,
|