@malloy-publisher/sdk 0.0.162 → 0.0.164

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.
@@ -3,6 +3,7 @@ interface QueryResultProps {
3
3
  sourceName?: string;
4
4
  queryName?: string;
5
5
  resourceUri?: string;
6
+ height?: number;
6
7
  }
7
8
  export declare function createEmbeddedQueryResult(props: QueryResultProps): string;
8
9
  /**
@@ -11,5 +12,5 @@ export declare function createEmbeddedQueryResult(props: QueryResultProps): stri
11
12
  export declare function EmbeddedQueryResult({ embeddedQueryResult, }: {
12
13
  embeddedQueryResult: string;
13
14
  }): React.ReactElement;
14
- export default function QueryResult({ query, sourceName, queryName, resourceUri, }: QueryResultProps): import("react/jsx-runtime").JSX.Element;
15
+ export default function QueryResult({ query, sourceName, queryName, resourceUri, height, }: QueryResultProps): import("react/jsx-runtime").JSX.Element;
15
16
  export {};