@malloydata/render 0.0.291 → 0.0.293
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/html/html_view.d.ts +3 -0
- package/dist/module/index.mjs +6248 -6228
- package/dist/module/index.umd.js +237 -237
- package/package.json +5 -5
package/dist/html/html_view.d.ts
CHANGED
|
@@ -6,8 +6,11 @@ import type * as Malloy from '@malloydata/malloy-interfaces';
|
|
|
6
6
|
import type { Cell, Field } from '../data_tree';
|
|
7
7
|
export declare class HTMLView {
|
|
8
8
|
private document;
|
|
9
|
+
private lastRenderedElement;
|
|
10
|
+
private lastViz;
|
|
9
11
|
constructor(document: Document);
|
|
10
12
|
render(malloyResult: Malloy.Result, options: RendererOptions): Promise<HTMLElement>;
|
|
13
|
+
getHTML(): Promise<string>;
|
|
11
14
|
}
|
|
12
15
|
export declare class JSONView {
|
|
13
16
|
private document;
|