@malloydata/malloy-explorer 0.0.282-dev250528154617 → 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/cjs/index.cjs +110 -109
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +110 -109
- package/dist/esm/index.js.map +1 -1
- package/dist/types/components/QueryPanel/AddMenu/ValueList.d.ts +2 -1
- package/package.json +6 -6
|
@@ -7,8 +7,9 @@ export interface FieldListProps {
|
|
|
7
7
|
fieldPath?: string;
|
|
8
8
|
ref?: React.RefObject<HTMLDivElement | null>;
|
|
9
9
|
customStyle?: StyleXStyles;
|
|
10
|
+
showPath?: boolean;
|
|
10
11
|
}
|
|
11
|
-
export declare function ValueList({ onClick, search, fieldPath, ref, customStyle, }: FieldListProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function ValueList({ onClick, search, fieldPath, ref, customStyle, showPath, }: FieldListProps): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export interface ValueProps {
|
|
13
14
|
value: SearchIndexResult;
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy-explorer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.285-dev250529214052",
|
|
4
4
|
"description": "Malloy visual query builder",
|
|
5
5
|
"main": "dist/cjs/index.cjs",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
"vite-plugin-svgr": "^4.3.0"
|
|
114
114
|
},
|
|
115
115
|
"peerDependencies": {
|
|
116
|
-
"@malloydata/malloy-filter": ">= 0.0.
|
|
117
|
-
"@malloydata/malloy-interfaces": ">= 0.0.
|
|
118
|
-
"@malloydata/malloy-query-builder": ">= 0.0.
|
|
119
|
-
"@malloydata/malloy-tag": ">= 0.0.
|
|
120
|
-
"@malloydata/render": ">= 0.0.
|
|
116
|
+
"@malloydata/malloy-filter": ">= 0.0.285",
|
|
117
|
+
"@malloydata/malloy-interfaces": ">= 0.0.285",
|
|
118
|
+
"@malloydata/malloy-query-builder": ">= 0.0.285",
|
|
119
|
+
"@malloydata/malloy-tag": ">= 0.0.285",
|
|
120
|
+
"@malloydata/render": ">= 0.0.285",
|
|
121
121
|
"react": ">= 19.0.0",
|
|
122
122
|
"react-dom": ">= 19.0.0"
|
|
123
123
|
}
|