@malloy-publisher/sdk 0.0.128 → 0.0.129
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/components/Model/Model.d.ts +2 -1
- package/dist/components/Model/ModelCell.d.ts +2 -1
- package/dist/components/Notebook/Notebook.d.ts +2 -1
- package/dist/components/Notebook/NotebookCell.d.ts +2 -1
- package/dist/components/RenderedResult/ResultContainer.d.ts +2 -1
- package/dist/index.cjs.js +65 -65
- package/dist/index.es.js +3441 -3398
- package/package.json +1 -1
- package/src/components/Model/Model.tsx +3 -0
- package/src/components/Model/ModelCell.tsx +3 -0
- package/src/components/Notebook/Notebook.tsx +8 -3
- package/src/components/Notebook/NotebookCell.tsx +3 -0
- package/src/components/RenderedResult/ResultContainer.tsx +44 -2
|
@@ -3,6 +3,7 @@ interface ModelProps {
|
|
|
3
3
|
onChange?: (query: QueryExplorerResult) => void;
|
|
4
4
|
resourceUri: string;
|
|
5
5
|
runOnDemand?: boolean;
|
|
6
|
+
maxResultSize?: number;
|
|
6
7
|
}
|
|
7
|
-
export default function Model({ onChange, resourceUri, runOnDemand, }: ModelProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function Model({ onChange, resourceUri, runOnDemand, maxResultSize, }: ModelProps): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -5,6 +5,7 @@ interface ModelCellProps {
|
|
|
5
5
|
annotations?: string[];
|
|
6
6
|
resourceUri: string;
|
|
7
7
|
runOnDemand?: boolean;
|
|
8
|
+
maxResultSize?: number;
|
|
8
9
|
}
|
|
9
|
-
export declare function ModelCell({ queryName, annotations, resourceUri, runOnDemand, }: ModelCellProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare function ModelCell({ queryName, annotations, resourceUri, runOnDemand, maxResultSize, }: ModelCellProps): import("react/jsx-runtime").JSX.Element;
|
|
10
11
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
interface NotebookProps {
|
|
2
2
|
resourceUri: string;
|
|
3
|
+
maxResultSize?: number;
|
|
3
4
|
}
|
|
4
|
-
export default function Notebook({ resourceUri }: NotebookProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export default function Notebook({ resourceUri, maxResultSize, }: NotebookProps): import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|
|
@@ -7,6 +7,7 @@ interface NotebookCellProps {
|
|
|
7
7
|
hideEmbeddingIcon?: boolean;
|
|
8
8
|
resourceUri: string;
|
|
9
9
|
index: number;
|
|
10
|
+
maxResultSize?: number;
|
|
10
11
|
}
|
|
11
|
-
export declare function NotebookCell({ cell, hideCodeCellIcon, hideEmbeddingIcon, resourceUri, index, }: NotebookCellProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function NotebookCell({ cell, hideCodeCellIcon, hideEmbeddingIcon, resourceUri, index, maxResultSize, }: NotebookCellProps): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export {};
|
|
@@ -3,6 +3,7 @@ interface ResultContainerProps {
|
|
|
3
3
|
minHeight: number;
|
|
4
4
|
maxHeight: number;
|
|
5
5
|
hideToggle?: boolean;
|
|
6
|
+
maxResultSize?: number;
|
|
6
7
|
}
|
|
7
|
-
export default function ResultContainer({ result, minHeight, maxHeight, hideToggle, }: ResultContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function ResultContainer({ result, minHeight, maxHeight, hideToggle, maxResultSize, }: ResultContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|