@malloydata/render 0.0.253-dev250331150356 → 0.0.253
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/data_tree.d.ts +2 -2
- package/dist/module/index.mjs +16542 -16549
- package/dist/module/index.umd.js +291 -291
- package/dist/register/register.mjs +16894 -16901
- package/dist/register/register.umd.js +275 -275
- package/dist/webcomponent/malloy-render.mjs +16894 -16901
- package/dist/webcomponent/malloy-render.umd.js +275 -275
- package/package.json +5 -5
package/dist/data_tree.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare function getDataTree(result: Malloy.Result): RootCell;
|
|
|
10
10
|
export type Field = ArrayField | RepeatedRecordField | RecordField | NumberField | DateField | JSONField | StringField | TimestampField | BooleanField | SQLNativeField;
|
|
11
11
|
export type NestField = RepeatedRecordField | RecordField | ArrayField;
|
|
12
12
|
export type RecordOrRepeatedRecordField = RepeatedRecordField | RecordField;
|
|
13
|
-
export type
|
|
13
|
+
export type BasicAtomicField = NumberField | DateField | JSONField | StringField | TimestampField | BooleanField | SQLNativeField;
|
|
14
14
|
export type TimeField = DateField | TimestampField;
|
|
15
15
|
export type SortableField = {
|
|
16
16
|
field: Field;
|
|
@@ -97,7 +97,7 @@ export declare abstract class FieldBase {
|
|
|
97
97
|
isTime(): this is TimeField;
|
|
98
98
|
isSQLNative(): this is SQLNativeField;
|
|
99
99
|
isJSON(): this is JSONField;
|
|
100
|
-
|
|
100
|
+
isBasic(): this is BasicAtomicField;
|
|
101
101
|
isNest(): this is NestField;
|
|
102
102
|
getLocationInParent(): any;
|
|
103
103
|
isLastChild(): any;
|