@conboai/app.db.query 0.9.0 → 0.9.1
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/app.db.query.js
CHANGED
|
@@ -141193,14 +141193,14 @@ const rqe = (e = [], t) => {
|
|
|
141193
141193
|
}
|
|
141194
141194
|
)
|
|
141195
141195
|
] })
|
|
141196
|
-
] }), Nqe = {
|
|
141196
|
+
] }), Nqe = (e) => ({
|
|
141197
141197
|
display: "flex",
|
|
141198
141198
|
flexWrap: "wrap",
|
|
141199
141199
|
justifyContent: "flex-start",
|
|
141200
141200
|
gap: "32px",
|
|
141201
141201
|
width: "100%",
|
|
141202
|
-
height: "100%"
|
|
141203
|
-
}, Dqe = {
|
|
141202
|
+
height: e ? "auto" : "100%"
|
|
141203
|
+
}), Dqe = {
|
|
141204
141204
|
width: "calc((100% - (4 - 1) * 32px) / 4)",
|
|
141205
141205
|
flex: "0 0 auto",
|
|
141206
141206
|
"@media (max-width: 1424px)": {
|
|
@@ -141638,7 +141638,7 @@ const rqe = (e = [], t) => {
|
|
|
141638
141638
|
), l = () => o(!1), u = (p) => {
|
|
141639
141639
|
o(!0), s(p);
|
|
141640
141640
|
};
|
|
141641
|
-
return /* @__PURE__ */ se.jsxs(XX, { sx: Nqe, children: [
|
|
141641
|
+
return /* @__PURE__ */ se.jsxs(XX, { sx: Nqe(!!e.length), children: [
|
|
141642
141642
|
e.length ? e == null ? void 0 : e.map(({ fov: p, regions: h, ...f }) => {
|
|
141643
141643
|
const g = Yqe({
|
|
141644
141644
|
fov: p,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
2
|
|
|
3
|
-
export declare const imageGridSx: SxProps;
|
|
3
|
+
export declare const imageGridSx: (isAutoHeight: boolean) => SxProps;
|
|
4
4
|
export declare const imageItemSx: SxProps;
|
|
5
5
|
export declare const imageBoxSx: SxProps;
|
|
6
6
|
export declare const delayBoxSx: (delay: number) => SxProps;
|