@malloydata/render 0.0.237-dev250225015031 → 0.0.237-dev250225144145
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/component/apply-renderer.d.ts +2 -1
- package/dist/component/bar-chart/get-bar_chart-settings.d.ts +2 -1
- package/dist/component/chart-layout-settings.d.ts +2 -1
- package/dist/component/line-chart/get-line_chart-settings.d.ts +2 -1
- package/dist/component/tag-utils.d.ts +1 -1
- package/dist/component/types.d.ts +2 -1
- package/dist/html/container.d.ts +2 -1
- package/dist/html/html_view.d.ts +2 -1
- package/dist/html/main_renderer_factory.d.ts +2 -1
- package/dist/html/renderer.d.ts +2 -1
- package/dist/html/renderer_factory.d.ts +2 -1
- package/dist/html/utils.d.ts +2 -1
- package/dist/module/index.mjs +18119 -17784
- package/dist/module/index.umd.js +287 -287
- package/dist/register/register.mjs +18518 -18183
- package/dist/register/register.umd.js +270 -270
- package/dist/webcomponent/malloy-render.mjs +18518 -18183
- package/dist/webcomponent/malloy-render.umd.js +270 -270
- package/package.json +3 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { DataColumn, Explore, Field
|
|
1
|
+
import { DataColumn, Explore, Field } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { RenderResultMetadata } from './types';
|
|
3
4
|
export type RendererProps = {
|
|
4
5
|
field: Field;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference path="../../src/vega.d.ts" />
|
|
2
|
-
import { Explore, ExploreField, Field
|
|
2
|
+
import { Explore, ExploreField, Field } from '@malloydata/malloy';
|
|
3
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
3
4
|
import { AlignValue, TextBaselineValue } from 'vega';
|
|
4
5
|
import { RenderResultMetadata } from './types';
|
|
5
6
|
export type ChartLayoutSettings = {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Tag } from '@malloydata/malloy
|
|
1
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
2
|
export declare function hasAny(tag: Tag, ...paths: Array<string | string[]>): boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference path="../../src/vega.d.ts" />
|
|
2
|
-
import { DataColumn, DataRecord, Explore, Field, QueryData, QueryDataRow
|
|
2
|
+
import { DataColumn, DataRecord, Explore, Field, QueryData, QueryDataRow } from '@malloydata/malloy';
|
|
3
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
3
4
|
import { Item, Runtime, Spec, View } from 'vega';
|
|
4
5
|
import { JSX } from 'solid-js';
|
|
5
6
|
import { ResultStore } from './result-store/result-store';
|
package/dist/html/container.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Explore
|
|
1
|
+
import { Explore } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { StyleDefaults } from './data_styles';
|
|
3
4
|
import { ChildRenderers, RenderTree } from './renderer';
|
|
4
5
|
import { RendererOptions } from './renderer_types';
|
package/dist/html/html_view.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { DataArray, Explore, Field, Result
|
|
1
|
+
import { DataArray, Explore, Field, Result } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { StyleDefaults } from './data_styles';
|
|
3
4
|
import { Renderer } from './renderer';
|
|
4
5
|
import { RendererOptions } from './renderer_types';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Field, Explore
|
|
1
|
+
import { Field, Explore } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { DataRenderOptions, RenderDef, StyleDefaults } from './data_styles';
|
|
3
4
|
import { Renderer } from './renderer';
|
|
4
5
|
import { RendererFactory } from './renderer_factory';
|
package/dist/html/renderer.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { DataColumn
|
|
1
|
+
import { DataColumn } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { RendererOptions } from './renderer_types';
|
|
3
4
|
export type ChildRenderers = {
|
|
4
5
|
[fieldName: string]: Renderer;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Explore, Field
|
|
1
|
+
import { Explore, Field } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { Renderer } from './renderer';
|
|
3
4
|
import { DataRenderOptions, RenderDef, StyleDefaults } from './data_styles';
|
|
4
5
|
import { RendererOptions } from './renderer_types';
|
package/dist/html/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { DataColumn, DateTimeframe, Field,
|
|
1
|
+
import { DataColumn, DateTimeframe, Field, TimestampTimeframe } from '@malloydata/malloy';
|
|
2
|
+
import { Tag } from '@malloydata/malloy-tag';
|
|
2
3
|
import { RenderDef } from './data_styles';
|
|
3
4
|
import { RendererOptions } from './renderer_types';
|
|
4
5
|
export declare function getColorScale(type: 'temporal' | 'ordinal' | 'quantitative' | 'nominal' | undefined, isRectMark: boolean, hasOverlappingText?: boolean): {
|