@malloydata/malloy-explorer 0.0.285-dev250529214052 → 0.0.285-dev250530151704

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.
@@ -9,5 +9,9 @@ export interface MalloyExplorerProviderProps {
9
9
  onFocusedNestViewPathChange: (path: string[]) => void;
10
10
  children: ReactNode | ReactNode[];
11
11
  topValues?: SearchValueMapResult[];
12
+ onDrill?: ({ stableQuery, stableDrillClauses, }: {
13
+ stableQuery: Malloy.Query | undefined;
14
+ stableDrillClauses: Malloy.DrillOperation[] | undefined;
15
+ }) => void;
12
16
  }
13
- export declare function MalloyExplorerProvider({ source, query, onQueryChange, focusedNestViewPath, onFocusedNestViewPathChange, children, topValues, }: MalloyExplorerProviderProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function MalloyExplorerProvider({ source, query, onQueryChange, focusedNestViewPath, onFocusedNestViewPathChange, children, topValues, onDrill, }: MalloyExplorerProviderProps): import("react/jsx-runtime").JSX.Element;
@@ -17,6 +17,10 @@ export interface QueryEditorContextProps {
17
17
  /** Provide to allow editing of the query */
18
18
  setQuery?: (query: Malloy.Query | undefined) => void;
19
19
  topValues?: SearchValueMapResult[];
20
+ onDrill?: ({ stableQuery, stableDrillClauses, }: {
21
+ stableQuery: Malloy.Query | undefined;
22
+ stableDrillClauses: Malloy.DrillOperation[] | undefined;
23
+ }) => void;
20
24
  }
21
25
  /**
22
26
  * QueryEditorContext enables query editing by providing the setQuery
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-explorer",
3
- "version": "0.0.285-dev250529214052",
3
+ "version": "0.0.285-dev250530151704",
4
4
  "description": "Malloy visual query builder",
5
5
  "main": "dist/cjs/index.cjs",
6
6
  "types": "dist/types/index.d.ts",