biblio-react 3.0.0-alpha201 → 3.0.0-alpha203
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 +16 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31938,6 +31938,7 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
31938
31938
|
{
|
|
31939
31939
|
sx: n ? { marginLeft: 1, ...r } : {
|
|
31940
31940
|
display: { xs: "inherit", md: "inline-flex" },
|
|
31941
|
+
// ✅ inline en md+
|
|
31941
31942
|
verticalAlign: "top",
|
|
31942
31943
|
...r
|
|
31943
31944
|
},
|
|
@@ -31986,10 +31987,17 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
31986
31987
|
Ze,
|
|
31987
31988
|
{
|
|
31988
31989
|
sx: {
|
|
31989
|
-
|
|
31990
|
-
|
|
31990
|
+
// En xs: fila propia (100% de ancho) pero mantiene input + botón en la MISMA línea
|
|
31991
|
+
display: {
|
|
31992
|
+
xs: "flex",
|
|
31993
|
+
md: e.isTC ? "flex" : "inline-flex"
|
|
31994
|
+
},
|
|
31995
|
+
flexWrap: "nowrap",
|
|
31996
|
+
alignItems: "center",
|
|
31991
31997
|
gap: 1,
|
|
31992
|
-
width: e.isTC ? "80%" : "100%"
|
|
31998
|
+
width: e.isTC ? "80%" : { xs: "100%", md: "auto" },
|
|
31999
|
+
mr: 1,
|
|
32000
|
+
verticalAlign: "top"
|
|
31993
32001
|
},
|
|
31994
32002
|
children: [
|
|
31995
32003
|
/* @__PURE__ */ v(Ze, { sx: { flex: 1, minWidth: 0 }, children: /* @__PURE__ */ v(
|
|
@@ -32006,7 +32014,7 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
32006
32014
|
...d,
|
|
32007
32015
|
callback: b,
|
|
32008
32016
|
optionText: "etiqueta",
|
|
32009
|
-
sx: { width: "100% !important" }
|
|
32017
|
+
sx: { width: "100% !important", minWidth: 220 }
|
|
32010
32018
|
}
|
|
32011
32019
|
)
|
|
32012
32020
|
}
|
|
@@ -32018,7 +32026,10 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
32018
32026
|
resource: l,
|
|
32019
32027
|
tipo: "ventana",
|
|
32020
32028
|
inline: !0,
|
|
32021
|
-
ButtonProps: {
|
|
32029
|
+
ButtonProps: {
|
|
32030
|
+
size: "small",
|
|
32031
|
+
sx: { mt: { xs: 0, md: 1 } }
|
|
32032
|
+
}
|
|
32022
32033
|
}
|
|
32023
32034
|
}
|
|
32024
32035
|
) : null
|