climb-onyx-gui 0.12.14 → 0.12.15
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/climb-onyx-gui.js +9 -14
- package/dist/interfaces.d.ts +1 -0
- package/package.json +1 -1
package/dist/climb-onyx-gui.js
CHANGED
|
@@ -110007,10 +110007,10 @@ function _v(e) {
|
|
|
110007
110007
|
title: e.title,
|
|
110008
110008
|
titlefont: { size: 14, color: "grey" },
|
|
110009
110009
|
margin: {
|
|
110010
|
-
l:
|
|
110011
|
-
r:
|
|
110012
|
-
b:
|
|
110013
|
-
t:
|
|
110010
|
+
l: 60,
|
|
110011
|
+
r: 60,
|
|
110012
|
+
b: 60,
|
|
110013
|
+
t: 60,
|
|
110014
110014
|
pad: 4
|
|
110015
110015
|
},
|
|
110016
110016
|
template: e.darkMode ? ere : void 0,
|
|
@@ -110261,6 +110261,7 @@ function lre(e) {
|
|
|
110261
110261
|
{
|
|
110262
110262
|
isClearable: !0,
|
|
110263
110263
|
options: r,
|
|
110264
|
+
titles: e.fieldDescriptions,
|
|
110264
110265
|
value: e.graphConfig.field,
|
|
110265
110266
|
placeholder: "Select field...",
|
|
110266
110267
|
onChange: e.handleGraphConfigFieldChange
|
|
@@ -110274,6 +110275,7 @@ function lre(e) {
|
|
|
110274
110275
|
{
|
|
110275
110276
|
isClearable: !0,
|
|
110276
110277
|
options: n,
|
|
110278
|
+
titles: e.fieldDescriptions,
|
|
110277
110279
|
value: e.graphConfig.groupBy,
|
|
110278
110280
|
placeholder: "Select field...",
|
|
110279
110281
|
onChange: e.handleGraphConfigGroupByChange
|
|
@@ -110348,16 +110350,8 @@ function ure(e) {
|
|
|
110348
110350
|
] })
|
|
110349
110351
|
] }),
|
|
110350
110352
|
/* @__PURE__ */ et(Ol.Body, { className: "p-2", children: /* @__PURE__ */ Jr(Yh, { className: "g-2", children: [
|
|
110351
|
-
/* @__PURE__ */ et(Zs, { xl: 12, xxl: e.viewMode === "wide" ? 3 : 4, children: /* @__PURE__ */ et(
|
|
110352
|
-
|
|
110353
|
-
{
|
|
110354
|
-
body: !0,
|
|
110355
|
-
className: "overflow-y-scroll",
|
|
110356
|
-
style: { height: "315px" },
|
|
110357
|
-
children: /* @__PURE__ */ et(lre, { ...e })
|
|
110358
|
-
}
|
|
110359
|
-
) }),
|
|
110360
|
-
/* @__PURE__ */ et(Zs, { xl: 12, xxl: e.viewMode === "wide" ? 9 : 8, children: /* @__PURE__ */ et(sre, { ...e }) })
|
|
110353
|
+
/* @__PURE__ */ et(Zs, { xl: 12, xxl: e.viewMode === "wide" ? 3 : 4, children: /* @__PURE__ */ et(Ol, { body: !0, style: { height: "440px" }, children: /* @__PURE__ */ et(lre, { ...e }) }) }),
|
|
110354
|
+
/* @__PURE__ */ et(Zs, { xl: 12, xxl: e.viewMode === "wide" ? 9 : 8, children: /* @__PURE__ */ et("div", { style: { height: "440px" }, children: /* @__PURE__ */ et(sre, { ...e }) }) })
|
|
110361
110355
|
] }) })
|
|
110362
110356
|
] });
|
|
110363
110357
|
}
|
|
@@ -110606,6 +110600,7 @@ function hre(e) {
|
|
|
110606
110600
|
...e,
|
|
110607
110601
|
project: n,
|
|
110608
110602
|
projectFields: v,
|
|
110603
|
+
fieldDescriptions: y,
|
|
110609
110604
|
darkMode: t
|
|
110610
110605
|
}
|
|
110611
110606
|
) })
|
package/dist/interfaces.d.ts
CHANGED