@malloydata/malloy-explorer 0.0.284-dev250528183401 → 0.0.285-dev250529214052
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/esm/index.js
CHANGED
|
@@ -31202,7 +31202,8 @@ function ValueList({
|
|
|
31202
31202
|
search,
|
|
31203
31203
|
fieldPath,
|
|
31204
31204
|
ref,
|
|
31205
|
-
customStyle
|
|
31205
|
+
customStyle,
|
|
31206
|
+
showPath = true
|
|
31206
31207
|
}) {
|
|
31207
31208
|
const {
|
|
31208
31209
|
searchResults
|
|
@@ -31218,12 +31219,12 @@ function ValueList({
|
|
|
31218
31219
|
onClick: () => onClick(value),
|
|
31219
31220
|
children: [/* @__PURE__ */ jsx(Value, {
|
|
31220
31221
|
value
|
|
31221
|
-
}), /* @__PURE__ */ jsx("div", {
|
|
31222
|
+
}), showPath ? /* @__PURE__ */ jsx("div", {
|
|
31222
31223
|
...{
|
|
31223
31224
|
className: "mly1jwwhvr"
|
|
31224
31225
|
},
|
|
31225
31226
|
children: value.fieldName
|
|
31226
|
-
})]
|
|
31227
|
+
}) : null]
|
|
31227
31228
|
}, value.fieldName + ":" + value.fieldValue)) : search ? /* @__PURE__ */ jsx("div", {
|
|
31228
31229
|
..._stylex.props(addMenuStyles.item),
|
|
31229
31230
|
"data-disabled": "true",
|
|
@@ -31417,7 +31418,8 @@ const StringFilterCore = ({
|
|
|
31417
31418
|
setSearchValue("");
|
|
31418
31419
|
}
|
|
31419
31420
|
},
|
|
31420
|
-
customStyle: styles$i.valueList
|
|
31421
|
+
customStyle: styles$i.valueList,
|
|
31422
|
+
showPath: false
|
|
31421
31423
|
})
|
|
31422
31424
|
})]
|
|
31423
31425
|
}) : currentFilter.operator === "~" ? /* @__PURE__ */ jsx(StringEditor, {
|