@malloydata/render 0.0.137-dev240328004426 → 0.0.137
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/.storybook/main.ts +1 -0
- package/dist/component/bar-chart/generate-bar_chart-spec.d.ts +3 -0
- package/dist/component/chart-settings.d.ts +7 -3
- package/dist/component/chart.d.ts +7 -0
- package/dist/component/plot/plot-spec.d.ts +21 -0
- package/dist/component/plot/plot-to-vega.d.ts +7 -0
- package/dist/component/plot/util.d.ts +5 -0
- package/dist/component/render-result-metadata.d.ts +2 -13
- package/dist/component/render.d.ts +0 -1
- package/dist/component/result-context.d.ts +1 -1
- package/dist/component/table/table-layout.d.ts +1 -3
- package/dist/component/tag-utils.d.ts +2 -0
- package/dist/component/types.d.ts +26 -0
- package/dist/component/util.d.ts +3 -3
- package/dist/component/vega/vega-chart.d.ts +9 -0
- package/dist/module/index.mjs +17389 -17619
- package/dist/module/index.umd.js +271 -308
- package/dist/stories/bars.stories.d.ts +18 -0
- package/dist/webcomponent/malloy-render.mjs +20080 -20553
- package/dist/webcomponent/malloy-render.umd.js +270 -307
- package/package.json +3 -4
- package/dist/component/bar-chart.d.ts +0 -9
- package/dist/component/vega-chart.d.ts +0 -15
- package/dist/component/vega-lite-base-spec.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.137
|
|
3
|
+
"version": "0.0.137",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/module/index.umd.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,11 +33,9 @@
|
|
|
33
33
|
"build-types": "tsc --build --declaration --emitDeclarationOnly"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@malloydata/malloy": "^0.0.137-dev240328004426",
|
|
36
|
+
"@malloydata/malloy": "^0.0.137",
|
|
38
37
|
"@types/luxon": "^2.4.0",
|
|
39
38
|
"component-register": "^0.8.3",
|
|
40
|
-
"lit": "^3.0.2",
|
|
41
39
|
"lodash": "^4.17.20",
|
|
42
40
|
"luxon": "^2.4.0",
|
|
43
41
|
"solid-element": "^1.8.0",
|
|
@@ -56,6 +54,7 @@
|
|
|
56
54
|
"@storybook/html-vite": "^7.5.0",
|
|
57
55
|
"@storybook/testing-library": "^0.2.2",
|
|
58
56
|
"@storybook/types": "^7.5.3",
|
|
57
|
+
"@types/luxon": "^2.4.0",
|
|
59
58
|
"esbuild": "0.19.11",
|
|
60
59
|
"storybook": "^7.5.0",
|
|
61
60
|
"vite": "^5.1.5",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
import './vega-chart';
|
|
3
|
-
import { DataArray } from '@malloydata/malloy';
|
|
4
|
-
import { RenderResultMetadata } from './render-result-metadata';
|
|
5
|
-
export declare class BarChart extends LitElement {
|
|
6
|
-
data: DataArray;
|
|
7
|
-
metadata: RenderResultMetadata;
|
|
8
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { LitElement, TemplateResult, PropertyValues } from 'lit';
|
|
2
|
-
import { VegaJSON } from './vega-types';
|
|
3
|
-
export declare class VegaChart extends LitElement {
|
|
4
|
-
static styles: import("lit").CSSResult;
|
|
5
|
-
spec: VegaJSON;
|
|
6
|
-
type: 'vega' | 'vega-lite';
|
|
7
|
-
width?: number;
|
|
8
|
-
height?: number;
|
|
9
|
-
private el;
|
|
10
|
-
private view;
|
|
11
|
-
setupView(): void;
|
|
12
|
-
firstUpdated(): void;
|
|
13
|
-
protected willUpdate(changedProperties: PropertyValues<this>): void;
|
|
14
|
-
render(): TemplateResult;
|
|
15
|
-
}
|