@malloydata/render 0.0.225-dev250102225314 → 0.0.225-dev250106171109
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/types.d.ts +1 -1
- package/dist/component/util.d.ts +1 -0
- package/dist/module/index.mjs +13630 -13840
- package/dist/module/index.umd.js +244 -244
- package/dist/register/register.mjs +6203 -6162
- package/dist/register/register.umd.js +197 -197
- package/dist/webcomponent/malloy-render.mjs +6203 -6162
- package/dist/webcomponent/malloy-render.umd.js +197 -197
- package/package.json +2 -2
|
@@ -35,7 +35,7 @@ export interface FieldRenderMetadata {
|
|
|
35
35
|
max: number | null;
|
|
36
36
|
minString: string | null;
|
|
37
37
|
maxString: string | null;
|
|
38
|
-
values: Set<string | number>;
|
|
38
|
+
values: Set<string | number | boolean>;
|
|
39
39
|
maxRecordCt: number | null;
|
|
40
40
|
maxUniqueFieldValueCounts: Map<string, number>;
|
|
41
41
|
vegaChartProps?: VegaChartProps;
|
package/dist/component/util.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { Explore, Field } from '@malloydata/malloy';
|
|
|
2
2
|
export declare function isLastChild(f: Field | Explore): boolean;
|
|
3
3
|
export declare function isFirstChild(f: Field | Explore): boolean;
|
|
4
4
|
export declare function valueIsNumber(f: Field, v: unknown): v is number;
|
|
5
|
+
export declare function valueIsBoolean(f: Field, v: unknown): v is boolean;
|
|
5
6
|
export declare function valueIsString(f: Field, s: unknown): s is string;
|
|
6
7
|
export declare function valueIsDateTime(f: Field, v: unknown): v is Date;
|
|
7
8
|
export declare function getTextWidthCanvas(text: string, font: string, canvasToUse?: HTMLCanvasElement): number;
|