biblio-react 3.0.0-alpha202 → 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 -6
- 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,11 +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%",
|
|
31993
|
-
mr:
|
|
31998
|
+
width: e.isTC ? "80%" : { xs: "100%", md: "auto" },
|
|
31999
|
+
mr: 1,
|
|
32000
|
+
verticalAlign: "top"
|
|
31994
32001
|
},
|
|
31995
32002
|
children: [
|
|
31996
32003
|
/* @__PURE__ */ v(Ze, { sx: { flex: 1, minWidth: 0 }, children: /* @__PURE__ */ v(
|
|
@@ -32007,7 +32014,7 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
32007
32014
|
...d,
|
|
32008
32015
|
callback: b,
|
|
32009
32016
|
optionText: "etiqueta",
|
|
32010
|
-
sx: { width: "100% !important" }
|
|
32017
|
+
sx: { width: "100% !important", minWidth: 220 }
|
|
32011
32018
|
}
|
|
32012
32019
|
)
|
|
32013
32020
|
}
|
|
@@ -32019,7 +32026,10 @@ const lx = /* @__PURE__ */ a((e) => {
|
|
|
32019
32026
|
resource: l,
|
|
32020
32027
|
tipo: "ventana",
|
|
32021
32028
|
inline: !0,
|
|
32022
|
-
ButtonProps: {
|
|
32029
|
+
ButtonProps: {
|
|
32030
|
+
size: "small",
|
|
32031
|
+
sx: { mt: { xs: 0, md: 1 } }
|
|
32032
|
+
}
|
|
32023
32033
|
}
|
|
32024
32034
|
}
|
|
32025
32035
|
) : null
|