@malloydata/render 0.0.237-dev250224215546 → 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.
@@ -1,4 +1,5 @@
1
- import { DataColumn, Explore, Field, Tag } from '@malloydata/malloy';
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,4 +1,5 @@
1
- import { Explore, Tag } from '@malloydata/malloy';
1
+ import { Explore } from '@malloydata/malloy';
2
+ import { Tag } from '@malloydata/malloy-tag';
2
3
  import { Channel } from '../types';
3
4
  export type BarChartSettings = {
4
5
  xChannel: Channel;
@@ -1,5 +1,6 @@
1
1
  /// <reference path="../../src/vega.d.ts" />
2
- import { Explore, ExploreField, Field, Tag } from '@malloydata/malloy';
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,4 +1,5 @@
1
- import { Explore, Tag } from '@malloydata/malloy';
1
+ import { Explore } from '@malloydata/malloy';
2
+ import { Tag } from '@malloydata/malloy-tag';
2
3
  import { Channel } from '../types';
3
4
  export type LineChartSettings = {
4
5
  xChannel: Channel;
@@ -1,2 +1,2 @@
1
- import { Tag } from '@malloydata/malloy/src';
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, Tag } from '@malloydata/malloy';
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';
@@ -1,4 +1,5 @@
1
- import { Explore, Tag } from '@malloydata/malloy';
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';
@@ -1,4 +1,5 @@
1
- import { DataArray, Explore, Field, Result, Tag } from '@malloydata/malloy';
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, Tag } from '@malloydata/malloy';
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';
@@ -1,4 +1,5 @@
1
- import { DataColumn, Tag } from '@malloydata/malloy';
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, Tag } from '@malloydata/malloy';
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';
@@ -1,4 +1,5 @@
1
- import { DataColumn, DateTimeframe, Field, Tag, TimestampTimeframe } from '@malloydata/malloy';
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): {