mayak-common-library 0.0.72 → 0.0.74
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
|
@@ -335,7 +335,7 @@ var SelectPro = ({
|
|
|
335
335
|
ref: btn,
|
|
336
336
|
onClick: handleClick,
|
|
337
337
|
onClose: handleClose,
|
|
338
|
-
collapse: open
|
|
338
|
+
collapse: open ? "true" : void 0
|
|
339
339
|
}) : /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
340
340
|
import_material4.Button,
|
|
341
341
|
{
|
|
@@ -347,6 +347,7 @@ var SelectPro = ({
|
|
|
347
347
|
disableRipple: true,
|
|
348
348
|
fullWidth: true,
|
|
349
349
|
sx: {
|
|
350
|
+
width: "100%",
|
|
350
351
|
height: small ? "34px" : "38px",
|
|
351
352
|
padding: small ? "0 10px 0 6px" : "0 20px 0 19px"
|
|
352
353
|
},
|
|
@@ -355,7 +356,6 @@ var SelectPro = ({
|
|
|
355
356
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
356
357
|
import_material4.Typography,
|
|
357
358
|
{
|
|
358
|
-
width: "200px",
|
|
359
359
|
style: { top: "1px" },
|
|
360
360
|
className: "text-sm truncate text-left relative",
|
|
361
361
|
children: placeholder
|
package/dist/index.mjs
CHANGED
|
@@ -276,7 +276,7 @@ var SelectPro = ({
|
|
|
276
276
|
ref: btn,
|
|
277
277
|
onClick: handleClick,
|
|
278
278
|
onClose: handleClose,
|
|
279
|
-
collapse: open
|
|
279
|
+
collapse: open ? "true" : void 0
|
|
280
280
|
}) : /* @__PURE__ */ jsxs3(
|
|
281
281
|
Button2,
|
|
282
282
|
{
|
|
@@ -288,6 +288,7 @@ var SelectPro = ({
|
|
|
288
288
|
disableRipple: true,
|
|
289
289
|
fullWidth: true,
|
|
290
290
|
sx: {
|
|
291
|
+
width: "100%",
|
|
291
292
|
height: small ? "34px" : "38px",
|
|
292
293
|
padding: small ? "0 10px 0 6px" : "0 20px 0 19px"
|
|
293
294
|
},
|
|
@@ -296,7 +297,6 @@ var SelectPro = ({
|
|
|
296
297
|
/* @__PURE__ */ jsx7(
|
|
297
298
|
Typography2,
|
|
298
299
|
{
|
|
299
|
-
width: "200px",
|
|
300
300
|
style: { top: "1px" },
|
|
301
301
|
className: "text-sm truncate text-left relative",
|
|
302
302
|
children: placeholder
|