@conboai/app.db.query 0.9.49 → 0.9.51
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 +31 -27
- package/package.json +2 -2
package/dist/app.db.query.js
CHANGED
|
@@ -73857,6 +73857,11 @@ const RNe = ({
|
|
|
73857
73857
|
}
|
|
73858
73858
|
}
|
|
73859
73859
|
},
|
|
73860
|
+
tooltip: {
|
|
73861
|
+
outside: !0,
|
|
73862
|
+
useHTML: !0,
|
|
73863
|
+
zIndex: 100
|
|
73864
|
+
},
|
|
73860
73865
|
series: [
|
|
73861
73866
|
{
|
|
73862
73867
|
type: "xrange",
|
|
@@ -133422,6 +133427,7 @@ const mGe = ({ gridProps: e }) => {
|
|
|
133422
133427
|
disabled: !1
|
|
133423
133428
|
}
|
|
133424
133429
|
], Zb = {
|
|
133430
|
+
paddingRight: "2px",
|
|
133425
133431
|
"& .MuiCheckbox-root": {
|
|
133426
133432
|
width: "15px",
|
|
133427
133433
|
height: "15px"
|
|
@@ -133461,52 +133467,50 @@ const mGe = ({ gridProps: e }) => {
|
|
|
133461
133467
|
}
|
|
133462
133468
|
), tte = ({
|
|
133463
133469
|
checkboxes: e,
|
|
133464
|
-
|
|
133465
|
-
|
|
133466
|
-
|
|
133467
|
-
|
|
133468
|
-
|
|
133469
|
-
|
|
133470
|
-
|
|
133471
|
-
|
|
133472
|
-
infoTooltipText: c
|
|
133470
|
+
withSelect: t = !0,
|
|
133471
|
+
isSelectDisabled: n = !1,
|
|
133472
|
+
onChange: r,
|
|
133473
|
+
value: o,
|
|
133474
|
+
options: i,
|
|
133475
|
+
selectLabel: s,
|
|
133476
|
+
withInfo: a = !1,
|
|
133477
|
+
infoTooltipText: l
|
|
133473
133478
|
}) => {
|
|
133474
|
-
const
|
|
133475
|
-
|
|
133479
|
+
const c = (d) => {
|
|
133480
|
+
r && r(d);
|
|
133476
133481
|
};
|
|
133477
133482
|
return /* @__PURE__ */ te.jsxs(Ve, { display: "flex", justifyContent: "space-between", mb: "12px", children: [
|
|
133478
|
-
/* @__PURE__ */ te.jsxs(Ve, { display: "flex", gap: "
|
|
133479
|
-
/* @__PURE__ */ te.jsx(
|
|
133480
|
-
e.map((h) => /* @__PURE__ */ te.jsx(
|
|
133483
|
+
/* @__PURE__ */ te.jsxs(Ve, { display: "flex", gap: "24px", alignItems: "center", children: [
|
|
133484
|
+
e.map((d) => /* @__PURE__ */ te.jsx(
|
|
133481
133485
|
bT,
|
|
133482
133486
|
{
|
|
133483
133487
|
sx: qL,
|
|
133484
133488
|
control: /* @__PURE__ */ te.jsx(
|
|
133485
133489
|
Ip,
|
|
133486
133490
|
{
|
|
133487
|
-
checked:
|
|
133488
|
-
onChange:
|
|
133491
|
+
checked: d.value,
|
|
133492
|
+
onChange: d.onChange,
|
|
133489
133493
|
sx: Zb,
|
|
133490
|
-
disabled:
|
|
133494
|
+
disabled: d.disabled
|
|
133491
133495
|
}
|
|
133492
133496
|
),
|
|
133493
|
-
label:
|
|
133497
|
+
label: d.label
|
|
133494
133498
|
},
|
|
133495
|
-
|
|
133499
|
+
d.label
|
|
133496
133500
|
)),
|
|
133497
|
-
|
|
133501
|
+
a && /* @__PURE__ */ te.jsxs(Ve, { display: "flex", flexDirection: "row", gap: "4px", alignItems: "center", children: [
|
|
133498
133502
|
/* @__PURE__ */ te.jsx(At, { fontSize: "14px", fontWeight: "500", children: "Points:" }),
|
|
133499
|
-
/* @__PURE__ */ te.jsx(la, { title:
|
|
133503
|
+
/* @__PURE__ */ te.jsx(la, { title: l, arrow: !0, placement: Wi.TOP, children: /* @__PURE__ */ te.jsx(Ve, { display: "flex", alignItems: "center", children: /* @__PURE__ */ te.jsx(MGe, {}) }) })
|
|
133500
133504
|
] })
|
|
133501
133505
|
] }),
|
|
133502
|
-
|
|
133506
|
+
t && /* @__PURE__ */ te.jsx(Ve, { maxWidth: "281px", width: "100%", children: /* @__PURE__ */ te.jsx(
|
|
133503
133507
|
vp,
|
|
133504
133508
|
{
|
|
133505
|
-
disabled:
|
|
133506
|
-
label:
|
|
133507
|
-
value:
|
|
133508
|
-
options:
|
|
133509
|
-
onChange:
|
|
133509
|
+
disabled: n,
|
|
133510
|
+
label: s,
|
|
133511
|
+
value: o,
|
|
133512
|
+
options: i,
|
|
133513
|
+
onChange: c
|
|
133510
133514
|
}
|
|
133511
133515
|
) })
|
|
133512
133516
|
] });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.51",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@conboai/storybook.components": "
|
|
42
|
+
"@conboai/storybook.components": "0.5.77",
|
|
43
43
|
"@emotion/react": "^11.11.4",
|
|
44
44
|
"@emotion/styled": "^11.11.5",
|
|
45
45
|
"@hookform/resolvers": "^3.9.1",
|