@milaboratories/miplots4 1.0.141 → 1.0.143
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/dendro/ChartRenderer.d.ts.map +1 -1
- package/dist/dendro/ChartRenderer.js +144 -140
- package/dist/dendro/ChartRenderer.js.map +1 -1
- package/dist/dendro/DendroSettingsImpl.d.ts +5 -0
- package/dist/dendro/DendroSettingsImpl.d.ts.map +1 -1
- package/dist/dendro/DendroSettingsImpl.js +53 -48
- package/dist/dendro/DendroSettingsImpl.js.map +1 -1
- package/dist/dendro/components/Chart.js +74 -74
- package/dist/dendro/components/Chart.js.map +1 -1
- package/dist/dendro/components/types.d.ts +4 -0
- package/dist/dendro/components/types.d.ts.map +1 -1
- package/dist/dendro/getHierarchyData.d.ts +3 -2
- package/dist/dendro/getHierarchyData.d.ts.map +1 -1
- package/dist/dendro/getHierarchyData.js +31 -25
- package/dist/dendro/getHierarchyData.js.map +1 -1
- package/dist/dendro/index.d.ts.map +1 -1
- package/dist/dendro/index.js +24 -23
- package/dist/dendro/index.js.map +1 -1
- package/dist/types/common.d.ts +6 -0
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +10 -9
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +23 -0
- package/dist/types/dendro.d.ts.map +1 -1
- package/dist/types/dendro.js +13 -8
- package/dist/types/dendro.js.map +1 -1
- package/dist/types/discrete.d.ts +5 -0
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.d.ts +10 -0
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot.d.ts +10 -0
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types/common.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sources":["../../src/types/common.ts"],"sourcesContent":["import { z } from 'zod';\nimport type { LassoControlsState, Polygon } from '../scatterplot-umap/types';\nimport type { CategoricalAesFromColumn, ContinuousAesFromColumn } from './scatterplot';\n\nexport type DataValue = string | number | null;\nexport type Category = string;\nexport const DataValueSchema = z.union([z.string(), z.number(), z.null()]);\n\nexport type Row = Record<string, DataValue>\n\nexport type Color = string;\n\n// numbered according ggplot2 symbols, 19 (third size of black circle) is missed\nexport const POINT_SHAPE = [\n '0',\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n '10',\n '11',\n '12',\n '13',\n '14',\n '15',\n '16',\n '17',\n '18',\n '20',\n '21',\n '22',\n '23',\n '24',\n '25',\n] as const;\nexport const PointShapeSchema = z.enum(POINT_SHAPE);\nexport type PointShape = z.infer<typeof PointShapeSchema>;\n\nconst LINE_SHAPE = ['solid', 'dashed', 'dotted', 'dotdash', 'longdash', 'twodash'] as const;\nexport const LineShapeSchema = z.enum(LINE_SHAPE);\nexport type LineShape = z.infer<typeof LineShapeSchema>;\n\nconst FRAME_TYPE = ['left', 'bottom', 'left-bottom', 'full', 'empty'] as const;\nexport const FrameTypeSchema = z.enum(FRAME_TYPE);\nexport type FrameType = z.infer<typeof FrameTypeSchema>;\n\nconst LEGEND_POSITION = ['inside', 'right', 'top', 'bottom'] as const;\nexport const LegendPositionSchema = z.enum(LEGEND_POSITION);\nexport type LegendPosition = z.infer<typeof LegendPositionSchema>;\n\nexport const TITLE_POSITION = ['left', 'center', 'right'] as const;\nexport const TitlePositionSchema = z.enum(TITLE_POSITION);\nexport type TitlePosition = z.infer<typeof TitlePositionSchema>;\n\nexport const ColumnNameSchema = z.object({\n type: z.literal('column'),\n value: z.string(),\n format: z.optional(z.string()), // d3 format\n label: z.optional(z.string()),\n valueLabels: z.optional(z.string())\n});\nexport type ColumnName = z.infer<typeof ColumnNameSchema>\n\nexport type AesItem = {\n fillColor?: Color;\n lineColor?: Color;\n lineWidth?: number;\n lineShape?: LineShape;\n dotShape?: PointShape;\n dotSize?: number;\n dotFill?: Color;\n};\nexport const AesItemSchema = z.object({\n fillColor: z.optional(z.string()),\n lineColor: z.optional(z.string()),\n lineWidth: z.optional(z.number()),\n lineShape: z.optional(LineShapeSchema),\n dotShape: z.optional(PointShapeSchema),\n dotSize: z.optional(z.number()),\n dotFill: z.optional(z.string()),\n});\n\nexport const AesRecordSchema = z.record(AesItemSchema);\nexport type AesRecord = z.infer<typeof AesRecordSchema>;\n\nexport function categoricalAesMappingFromValueSchema<ValueType extends z.ZodTypeAny>(\n valueSchema: ValueType,\n) {\n return z.object({\n columnName: ColumnNameSchema,\n valuesMap: z.record(valueSchema),\n });\n}\nexport function continuousAesMappingFromValueSchema<ValueType extends z.ZodTypeAny>(\n valueSchema: ValueType,\n) {\n return z.object({\n columnName: ColumnNameSchema,\n domain: z.array(z.number()),\n range: z.array(valueSchema),\n type: z.optional(z.union([z.literal('linear'), z.literal('log')]))\n });\n}\n\nexport function isCategoricalAes<InputType extends string | number | PointShape | LineShape>(\n item: InputType | CategoricalAesFromColumn<InputType> | ContinuousAesFromColumn<InputType> | unknown\n): item is CategoricalAesFromColumn<InputType> {\n if (typeof item !== 'object') {\n return false;\n }\n return item !== null && 'valuesMap' in item;\n}\n\nexport function isContinuousAes<InputType extends string | number | PointShape | LineShape>(\n item: InputType | CategoricalAesFromColumn<InputType> | ContinuousAesFromColumn<InputType> | unknown\n): item is ContinuousAesFromColumn<InputType> {\n if (typeof item !== 'object') {\n return false;\n }\n return item !== null && 'domain' in item && 'range' in item;\n}\n\nexport const DiscreteLabelsPositionSchema = z.union([z.literal('center'), z.literal('45deg'), z.literal('90deg')]);\n\nexport const AxisSettingsDiscreteSchema = z.object({\n title: z.optional(z.union([z.string(), ColumnNameSchema])),\n scale: z.optional(z.literal('discrete')),\n keys: z.optional(z.array(z.union([z.string(), z.number()]))),\n labels: z.optional(z.record(z.string())),\n showGrid: z.optional(z.boolean()),\n linesBetweenCategories: z.optional(z.boolean()),\n showTicks: z.optional(z.boolean()),\n labelsPosition: z.optional(DiscreteLabelsPositionSchema),\n hiddenLabels: z.optional(z.boolean())\n});\nexport const AxisSettingsContinuousSchema = z.object({\n title: z.optional(z.union([z.string(), ColumnNameSchema])),\n scale: z.optional(z.union([z.literal('linear'), z.literal('log')])),\n showGrid: z.optional(z.boolean()),\n showTicks: z.optional(z.boolean()),\n significantLines: z.optional(z.array(z.number())),\n significantLinesStyle: z.optional(LineShapeSchema),\n symmetricRange: z.optional(z.number()),\n upperValue: z.optional(z.number()),\n lowerValue: z.optional(z.number()),\n});\n\nexport const AxisSettingsSchema = z.union([AxisSettingsDiscreteSchema, AxisSettingsContinuousSchema]);\n\nexport type AxisSettings = z.infer<typeof AxisSettingsSchema>\nexport type AxisSettingsDiscrete = z.infer<typeof AxisSettingsDiscreteSchema>;\nexport type AxisSettingsContinuous = z.infer<typeof AxisSettingsContinuousSchema>;\n\nexport type DiscreteLabelsPosition = z.infer<typeof DiscreteLabelsPositionSchema>;\n\nexport interface SettingsInterface {\n type: string;\n}\n\nexport type ClickEventData = {\n x: number;\n y: number;\n info: unknown;\n}\n\nexport type PolygonData = [number, number][];\n\nexport type ChartEventHandlers<T> = T;\nexport type DendroEventHandlers = ChartEventHandlers<[(d:ClickEventData) => void]>\nexport type ScatterplotEventHandlers = ChartEventHandlers<{\n onPolygonUpdate: (d:number[], p: Polygon[]) => void;\n onTooltipHintSwitch: (d:boolean) => void;\n onLassoStateChange: () => void;\n onLassoControlsStateUpdate: (v:LassoControlsState) => void;\n}>\nexport type BubbleEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type DiscreteEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type HeatmapEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type HistogramEventHandlers = ChartEventHandlers<[(d:boolean) => void]>"],"names":["DataValueSchema","z","POINT_SHAPE","PointShapeSchema","LINE_SHAPE","LineShapeSchema","FRAME_TYPE","FrameTypeSchema","LEGEND_POSITION","LegendPositionSchema","TITLE_POSITION","TitlePositionSchema","ColumnNameSchema","AesItemSchema","AesRecordSchema","categoricalAesMappingFromValueSchema","valueSchema","continuousAesMappingFromValueSchema","isCategoricalAes","item","isContinuousAes","DiscreteLabelsPositionSchema","AxisSettingsDiscreteSchema","AxisSettingsContinuousSchema","AxisSettingsSchema"],"mappings":";AAMO,MAAMA,IAAkBC,EAAE,MAAM,CAACA,EAAE,UAAUA,EAAE,OAAA,GAAUA,EAAE,KAAA,CAAM,CAAC,GAO5DC,IAAc;AAAA,EACvB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACJ,GACaC,IAAmBF,EAAE,KAAKC,CAAW,GAG5CE,IAAa,CAAC,SAAS,UAAU,UAAU,WAAW,YAAY,SAAS,GACpEC,IAAkBJ,EAAE,KAAKG,CAAU,GAG1CE,IAAa,CAAC,QAAQ,UAAU,eAAe,QAAQ,OAAO,GACvDC,IAAkBN,EAAE,KAAKK,CAAU,GAG1CE,IAAkB,CAAC,UAAU,SAAS,OAAO,QAAQ,GAC9CC,IAAuBR,EAAE,KAAKO,CAAe,GAG7CE,IAAiB,CAAC,QAAQ,UAAU,OAAO,GAC3CC,IAAsBV,EAAE,KAAKS,CAAc,GAG3CE,IAAmBX,EAAE,OAAO;AAAA,EACrC,MAAMA,EAAE,QAAQ,QAAQ;AAAA,EACxB,OAAOA,EAAE,OAAA;AAAA,EACT,QAAQA,EAAE,SAASA,EAAE,QAAQ;AAAA;AAAA,EAC7B,OAAOA,EAAE,SAASA,EAAE,QAAQ;AAAA,EAC5B,aAAaA,EAAE,SAASA,EAAE,QAAQ;AACtC,CAAC,GAYYY,IAAgBZ,EAAE,OAAO;AAAA,EAClC,WAAWA,EAAE,SAASA,EAAE,QAAQ;AAAA,EAChC,WAAWA,EAAE,SAASA,EAAE,QAAQ;AAAA,EAChC,WAAWA,EAAE,SAASA,EAAE,QAAQ;AAAA,EAChC,WAAWA,EAAE,SAASI,CAAe;AAAA,EACrC,UAAUJ,EAAE,SAASE,CAAgB;AAAA,EACrC,SAASF,EAAE,SAASA,EAAE,QAAQ;AAAA,EAC9B,SAASA,EAAE,SAASA,EAAE,QAAQ;AAClC,CAAC,GAEYa,IAAkBb,EAAE,OAAOY,CAAa;AAG9C,SAASE,EACZC,GACF;AACE,SAAOf,EAAE,OAAO;AAAA,IACZ,YAAYW;AAAA,IACZ,WAAWX,EAAE,OAAOe,CAAW;AAAA,EAAA,CAClC;AACL;AACO,SAASC,EACZD,GACF;AACE,SAAOf,EAAE,OAAO;AAAA,IACZ,YAAYW;AAAA,IACZ,QAAQX,EAAE,MAAMA,EAAE,QAAQ;AAAA,IAC1B,OAAOA,EAAE,MAAMe,CAAW;AAAA,IAC1B,MAAMf,EAAE,SAASA,EAAE,MAAM,CAACA,EAAE,QAAQ,QAAQ,GAAGA,EAAE,QAAQ,KAAK,CAAC,CAAC,CAAC;AAAA,EAAA,CACpE;AACL;AAEO,SAASiB,EACZC,GAC2C;AAC3C,SAAI,OAAOA,KAAS,WACT,KAEJA,MAAS,QAAQ,eAAeA;AAC3C;AAEO,SAASC,EACZD,GAC0C;AAC1C,SAAI,OAAOA,KAAS,WACT,KAEJA,MAAS,QAAQ,YAAYA,KAAQ,WAAWA;AAC3D;AAEO,MAAME,IAA+BpB,EAAE,MAAM,CAACA,EAAE,QAAQ,QAAQ,GAAGA,EAAE,QAAQ,OAAO,GAAGA,EAAE,QAAQ,OAAO,CAAC,CAAC,GAEpGqB,IAA6BrB,EAAE,OAAO;AAAA,EAC/C,OAAOA,EAAE,SAASA,EAAE,MAAM,CAACA,EAAE,OAAA,GAAUW,CAAgB,CAAC,CAAC;AAAA,EACzD,OAAOX,EAAE,SAASA,EAAE,QAAQ,UAAU,CAAC;AAAA,EACvC,MAAMA,EAAE,SAASA,EAAE,MAAMA,EAAE,MAAM,CAACA,EAAE,OAAA,GAAUA,EAAE,OAAA,CAAQ,CAAC,CAAC,CAAC;AAAA,EAC3D,QAAQA,EAAE,SAASA,EAAE,OAAOA,EAAE,OAAA,CAAQ,CAAC;AAAA,EACvC,UAAUA,EAAE,SAASA,EAAE,SAAS;AAAA,EAChC,wBAAwBA,EAAE,SAASA,EAAE,SAAS;AAAA,EAC9C,WAAWA,EAAE,SAASA,EAAE,SAAS;AAAA,EACjC,gBAAgBA,EAAE,SAASoB,CAA4B;AAAA,EACvD,cAAcpB,EAAE,SAASA,EAAE,SAAS;AACxC,CAAC,GACYsB,IAA+BtB,EAAE,OAAO;AAAA,EACjD,OAAOA,EAAE,SAASA,EAAE,MAAM,CAACA,EAAE,OAAA,GAAUW,CAAgB,CAAC,CAAC;AAAA,EACzD,OAAOX,EAAE,SAASA,EAAE,MAAM,CAACA,EAAE,QAAQ,QAAQ,GAAGA,EAAE,QAAQ,KAAK,CAAC,CAAC,CAAC;AAAA,EAClE,UAAUA,EAAE,SAASA,EAAE,SAAS;AAAA,EAChC,WAAWA,EAAE,SAASA,EAAE,SAAS;AAAA,EACjC,kBAAkBA,EAAE,SAASA,EAAE,MAAMA,EAAE,OAAA,CAAQ,CAAC;AAAA,EAChD,uBAAuBA,EAAE,SAASI,CAAe;AAAA,EACjD,gBAAgBJ,EAAE,SAASA,EAAE,QAAQ;AAAA,EACrC,YAAYA,EAAE,SAASA,EAAE,QAAQ;AAAA,EACjC,YAAYA,EAAE,SAASA,EAAE,QAAQ;AACrC,CAAC,GAEYuB,IAAqBvB,EAAE,MAAM,CAACqB,GAA4BC,CAA4B,CAAC;"}
|
|
1
|
+
{"version":3,"file":"common.js","sources":["../../src/types/common.ts"],"sourcesContent":["import { z } from 'zod';\nimport type { LassoControlsState, Polygon } from '../scatterplot-umap/types';\nimport type { CategoricalAesFromColumn, ContinuousAesFromColumn } from './scatterplot';\n\nexport type DataValue = string | number | null;\nexport type Category = string;\nexport const DataValueSchema = z.union([z.string(), z.number(), z.null()]);\n\nexport type Row = Record<string, DataValue>\n\nexport type Color = string;\n\n// numbered according ggplot2 symbols, 19 (third size of black circle) is missed\nexport const POINT_SHAPE = [\n '0',\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n '10',\n '11',\n '12',\n '13',\n '14',\n '15',\n '16',\n '17',\n '18',\n '20',\n '21',\n '22',\n '23',\n '24',\n '25',\n] as const;\nexport const PointShapeSchema = z.enum(POINT_SHAPE);\nexport type PointShape = z.infer<typeof PointShapeSchema>;\n\nconst LINE_SHAPE = ['solid', 'dashed', 'dotted', 'dotdash', 'longdash', 'twodash'] as const;\nexport const LineShapeSchema = z.enum(LINE_SHAPE);\nexport type LineShape = z.infer<typeof LineShapeSchema>;\n\nconst FRAME_TYPE = ['left', 'bottom', 'left-bottom', 'full', 'empty'] as const;\nexport const FrameTypeSchema = z.enum(FRAME_TYPE);\nexport type FrameType = z.infer<typeof FrameTypeSchema>;\n\nconst LEGEND_POSITION = ['inside', 'right', 'top', 'bottom'] as const;\nexport const LegendPositionSchema = z.enum(LEGEND_POSITION);\nexport type LegendPosition = z.infer<typeof LegendPositionSchema>;\n\nexport const TITLE_POSITION = ['left', 'center', 'right'] as const;\nexport const TitlePositionSchema = z.enum(TITLE_POSITION);\nexport type TitlePosition = z.infer<typeof TitlePositionSchema>;\n\nexport const ColumnNameSchema = z.object({\n type: z.literal('column'),\n value: z.string(),\n format: z.optional(z.string()), // d3 format\n label: z.optional(z.string()),\n valueLabels: z.optional(z.string())\n});\nexport type ColumnName = z.infer<typeof ColumnNameSchema>\n\nexport type AesItem = {\n fillColor?: Color;\n lineColor?: Color;\n lineWidth?: number;\n lineShape?: LineShape;\n dotShape?: PointShape;\n dotSize?: number;\n dotFill?: Color;\n};\nexport const AesItemSchema = z.object({\n fillColor: z.optional(z.string()),\n lineColor: z.optional(z.string()),\n lineWidth: z.optional(z.number()),\n lineShape: z.optional(LineShapeSchema),\n dotShape: z.optional(PointShapeSchema),\n dotSize: z.optional(z.number()),\n dotFill: z.optional(z.string()),\n});\n\nexport const AesRecordSchema = z.record(AesItemSchema);\nexport type AesRecord = z.infer<typeof AesRecordSchema>;\n\nexport function categoricalAesMappingFromValueSchema<ValueType extends z.ZodTypeAny>(\n valueSchema: ValueType,\n) {\n return z.object({\n columnName: ColumnNameSchema,\n valuesMap: z.record(valueSchema),\n });\n}\nexport function continuousAesMappingFromValueSchema<ValueType extends z.ZodTypeAny>(\n valueSchema: ValueType,\n) {\n return z.object({\n columnName: ColumnNameSchema,\n domain: z.array(z.number()),\n range: z.array(valueSchema),\n type: z.optional(z.union([z.literal('linear'), z.literal('log')]))\n });\n}\n\nexport function isCategoricalAes<InputType extends string | number | PointShape | LineShape>(\n item: InputType | CategoricalAesFromColumn<InputType> | ContinuousAesFromColumn<InputType> | unknown\n): item is CategoricalAesFromColumn<InputType> {\n if (typeof item !== 'object') {\n return false;\n }\n return item !== null && 'valuesMap' in item;\n}\n\nexport function isContinuousAes<InputType extends string | number | PointShape | LineShape>(\n item: InputType | CategoricalAesFromColumn<InputType> | ContinuousAesFromColumn<InputType> | unknown\n): item is ContinuousAesFromColumn<InputType> {\n if (typeof item !== 'object') {\n return false;\n }\n return item !== null && 'domain' in item && 'range' in item;\n}\n\nexport const DiscreteLabelsPositionSchema = z.union([z.literal('center'), z.literal('45deg'), z.literal('90deg')]);\n\nexport const AxisSettingsDiscreteSchema = z.object({\n title: z.optional(z.union([z.string(), ColumnNameSchema])),\n scale: z.optional(z.literal('discrete')),\n keys: z.optional(z.array(z.union([z.string(), z.number()]))),\n labels: z.optional(z.record(z.string())),\n showGrid: z.optional(z.boolean()),\n linesBetweenCategories: z.optional(z.boolean()),\n showTicks: z.optional(z.boolean()),\n labelsPosition: z.optional(DiscreteLabelsPositionSchema),\n hiddenLabels: z.optional(z.boolean())\n});\nexport const AxisSettingsContinuousSchema = z.object({\n title: z.optional(z.union([z.string(), ColumnNameSchema])),\n scale: z.optional(z.union([z.literal('linear'), z.literal('log')])),\n showGrid: z.optional(z.boolean()),\n showTicks: z.optional(z.boolean()),\n significantLines: z.optional(z.array(z.number())),\n significantLinesStyle: z.optional(LineShapeSchema),\n symmetricRange: z.optional(z.number()),\n upperValue: z.optional(z.number()),\n lowerValue: z.optional(z.number()),\n hiddenLabels: z.optional(z.boolean())\n});\n\nexport const AxisSettingsSchema = z.union([AxisSettingsDiscreteSchema, AxisSettingsContinuousSchema]);\n\nexport type AxisSettings = z.infer<typeof AxisSettingsSchema>\nexport type AxisSettingsDiscrete = z.infer<typeof AxisSettingsDiscreteSchema>;\nexport type AxisSettingsContinuous = z.infer<typeof AxisSettingsContinuousSchema>;\n\nexport type DiscreteLabelsPosition = z.infer<typeof DiscreteLabelsPositionSchema>;\n\nexport interface SettingsInterface {\n type: string;\n}\n\nexport type ClickEventData = {\n x: number;\n y: number;\n info: unknown;\n}\n\nexport type PolygonData = [number, number][];\n\nexport type ChartEventHandlers<T> = T;\nexport type DendroEventHandlers = ChartEventHandlers<[(d:ClickEventData) => void]>\nexport type ScatterplotEventHandlers = ChartEventHandlers<{\n onPolygonUpdate: (d:number[], p: Polygon[]) => void;\n onTooltipHintSwitch: (d:boolean) => void;\n onLassoStateChange: () => void;\n onLassoControlsStateUpdate: (v:LassoControlsState) => void;\n}>\nexport type BubbleEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type DiscreteEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type HeatmapEventHandlers = ChartEventHandlers<[(d:boolean) => void]>\nexport type HistogramEventHandlers = ChartEventHandlers<[(d:boolean) => void]>"],"names":["DataValueSchema","z","POINT_SHAPE","PointShapeSchema","LINE_SHAPE","LineShapeSchema","FRAME_TYPE","FrameTypeSchema","LEGEND_POSITION","LegendPositionSchema","TITLE_POSITION","TitlePositionSchema","ColumnNameSchema","AesItemSchema","AesRecordSchema","categoricalAesMappingFromValueSchema","valueSchema","continuousAesMappingFromValueSchema","isCategoricalAes","item","isContinuousAes","DiscreteLabelsPositionSchema","AxisSettingsDiscreteSchema","AxisSettingsContinuousSchema","AxisSettingsSchema"],"mappings":"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"}
|
package/dist/types/dendro.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
23
23
|
minCellHeight: z.ZodOptional<z.ZodNumber>;
|
|
24
24
|
maxCellWidth: z.ZodOptional<z.ZodNumber>;
|
|
25
25
|
maxCellHeight: z.ZodOptional<z.ZodNumber>;
|
|
26
|
+
marginTop: z.ZodOptional<z.ZodNumber>;
|
|
27
|
+
marginBottom: z.ZodOptional<z.ZodNumber>;
|
|
28
|
+
marginLeft: z.ZodOptional<z.ZodNumber>;
|
|
29
|
+
marginRight: z.ZodOptional<z.ZodNumber>;
|
|
26
30
|
}, "strip", z.ZodTypeAny, {
|
|
27
31
|
scale?: number | undefined;
|
|
28
32
|
width?: number | undefined;
|
|
@@ -31,6 +35,10 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
31
35
|
minCellHeight?: number | undefined;
|
|
32
36
|
maxCellWidth?: number | undefined;
|
|
33
37
|
maxCellHeight?: number | undefined;
|
|
38
|
+
marginTop?: number | undefined;
|
|
39
|
+
marginBottom?: number | undefined;
|
|
40
|
+
marginLeft?: number | undefined;
|
|
41
|
+
marginRight?: number | undefined;
|
|
34
42
|
}, {
|
|
35
43
|
scale?: number | undefined;
|
|
36
44
|
width?: number | undefined;
|
|
@@ -39,9 +47,14 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
39
47
|
minCellHeight?: number | undefined;
|
|
40
48
|
maxCellWidth?: number | undefined;
|
|
41
49
|
maxCellHeight?: number | undefined;
|
|
50
|
+
marginTop?: number | undefined;
|
|
51
|
+
marginBottom?: number | undefined;
|
|
52
|
+
marginLeft?: number | undefined;
|
|
53
|
+
marginRight?: number | undefined;
|
|
42
54
|
}>>;
|
|
43
55
|
mode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"useAllNodesAsLeaves">]>>;
|
|
44
56
|
leavesMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"alignLeavesToLine">]>>;
|
|
57
|
+
leavesOrder: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"indexAsc">, z.ZodLiteral<"indexDesc">]>>;
|
|
45
58
|
legend: z.ZodOptional<z.ZodObject<{
|
|
46
59
|
show: z.ZodOptional<z.ZodBoolean>;
|
|
47
60
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
@@ -723,6 +736,10 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
723
736
|
minCellHeight?: number | undefined;
|
|
724
737
|
maxCellWidth?: number | undefined;
|
|
725
738
|
maxCellHeight?: number | undefined;
|
|
739
|
+
marginTop?: number | undefined;
|
|
740
|
+
marginBottom?: number | undefined;
|
|
741
|
+
marginLeft?: number | undefined;
|
|
742
|
+
marginRight?: number | undefined;
|
|
726
743
|
} | undefined;
|
|
727
744
|
aes?: {
|
|
728
745
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -833,6 +850,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
833
850
|
edgeInheritance?: "up" | "down" | undefined;
|
|
834
851
|
mode?: "normal" | "useAllNodesAsLeaves" | undefined;
|
|
835
852
|
leavesMode?: "normal" | "alignLeavesToLine" | undefined;
|
|
853
|
+
leavesOrder?: "indexAsc" | "indexDesc" | undefined;
|
|
836
854
|
heatmapAnnotation?: {
|
|
837
855
|
type: "column";
|
|
838
856
|
value: string;
|
|
@@ -895,6 +913,10 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
895
913
|
minCellHeight?: number | undefined;
|
|
896
914
|
maxCellWidth?: number | undefined;
|
|
897
915
|
maxCellHeight?: number | undefined;
|
|
916
|
+
marginTop?: number | undefined;
|
|
917
|
+
marginBottom?: number | undefined;
|
|
918
|
+
marginLeft?: number | undefined;
|
|
919
|
+
marginRight?: number | undefined;
|
|
898
920
|
} | undefined;
|
|
899
921
|
aes?: {
|
|
900
922
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -1005,6 +1027,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
1005
1027
|
edgeInheritance?: "up" | "down" | undefined;
|
|
1006
1028
|
mode?: "normal" | "useAllNodesAsLeaves" | undefined;
|
|
1007
1029
|
leavesMode?: "normal" | "alignLeavesToLine" | undefined;
|
|
1030
|
+
leavesOrder?: "indexAsc" | "indexDesc" | undefined;
|
|
1008
1031
|
heatmapAnnotation?: {
|
|
1009
1032
|
type: "column";
|
|
1010
1033
|
value: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dendro.d.ts","sourceRoot":"","sources":["../../src/types/dendro.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACH,KAAK,OAAO,EAAE,KAAK,SAAS,EAQ/B,MAAM,UAAU,CAAC;AAIlB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"dendro.d.ts","sourceRoot":"","sources":["../../src/types/dendro.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACH,KAAK,OAAO,EAAE,KAAK,SAAS,EAQ/B,MAAM,UAAU,CAAC;AAIlB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqF/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,MAAM,CACjC,MAAM,EACN;IACI,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,EAAE,CAAC,MAAM,OAAO,CAAC,EAAE,CAAC;IAC3B,MAAM,EAAE,SAAS,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC,CACJ,CAAC"}
|
package/dist/types/dendro.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import o from "../node_modules/zod/lib/index.js";
|
|
2
|
-
import { ColumnNameSchema as n, categoricalAesMappingFromValueSchema as e, continuousAesMappingFromValueSchema as i, LineShapeSchema as
|
|
3
|
-
const
|
|
2
|
+
import { ColumnNameSchema as n, categoricalAesMappingFromValueSchema as e, continuousAesMappingFromValueSchema as i, LineShapeSchema as t, PointShapeSchema as a, LegendPositionSchema as l, TitlePositionSchema as r } from "./common.js";
|
|
3
|
+
const p = o.enum(["discrete", "continuous", "stringSource"]), u = o.object({
|
|
4
4
|
type: o.literal("dendro"),
|
|
5
5
|
title: o.object({
|
|
6
6
|
name: o.string(),
|
|
7
7
|
show: o.optional(o.boolean()),
|
|
8
|
-
position: o.optional(
|
|
8
|
+
position: o.optional(r)
|
|
9
9
|
}),
|
|
10
10
|
size: o.optional(
|
|
11
11
|
o.object({
|
|
@@ -15,11 +15,16 @@ const r = o.enum(["discrete", "continuous", "stringSource"]), c = o.object({
|
|
|
15
15
|
minCellWidth: o.optional(o.number()),
|
|
16
16
|
minCellHeight: o.optional(o.number()),
|
|
17
17
|
maxCellWidth: o.optional(o.number()),
|
|
18
|
-
maxCellHeight: o.optional(o.number())
|
|
18
|
+
maxCellHeight: o.optional(o.number()),
|
|
19
|
+
marginTop: o.optional(o.number()),
|
|
20
|
+
marginBottom: o.optional(o.number()),
|
|
21
|
+
marginLeft: o.optional(o.number()),
|
|
22
|
+
marginRight: o.optional(o.number())
|
|
19
23
|
})
|
|
20
24
|
),
|
|
21
25
|
mode: o.optional(o.union([o.literal("normal"), o.literal("useAllNodesAsLeaves")])),
|
|
22
26
|
leavesMode: o.optional(o.union([o.literal("normal"), o.literal("alignLeavesToLine")])),
|
|
27
|
+
leavesOrder: o.optional(o.union([o.literal("indexAsc"), o.literal("indexDesc")])),
|
|
23
28
|
legend: o.optional(
|
|
24
29
|
o.object({
|
|
25
30
|
show: o.optional(o.boolean()),
|
|
@@ -42,7 +47,7 @@ const r = o.enum(["discrete", "continuous", "stringSource"]), c = o.object({
|
|
|
42
47
|
heatmapAxis: o.optional(n),
|
|
43
48
|
heatmapGroup: o.optional(o.array(n)),
|
|
44
49
|
heatmapSettings: o.optional(o.object({
|
|
45
|
-
valueType: o.optional(
|
|
50
|
+
valueType: o.optional(p),
|
|
46
51
|
aes: o.optional(o.object({
|
|
47
52
|
colorsList: o.optional(o.array(o.string())),
|
|
48
53
|
colorsMap: o.optional(o.record(o.string()))
|
|
@@ -57,7 +62,7 @@ const r = o.enum(["discrete", "continuous", "stringSource"]), c = o.object({
|
|
|
57
62
|
rootPosition: o.optional(o.union([o.literal("left"), o.literal("top")])),
|
|
58
63
|
aes: o.optional(
|
|
59
64
|
o.object({
|
|
60
|
-
nodeShape: o.optional(o.union([
|
|
65
|
+
nodeShape: o.optional(o.union([a, e(a)])),
|
|
61
66
|
nodeColor: o.optional(
|
|
62
67
|
o.union([
|
|
63
68
|
o.string(),
|
|
@@ -70,7 +75,7 @@ const r = o.enum(["discrete", "continuous", "stringSource"]), c = o.object({
|
|
|
70
75
|
e(o.number()),
|
|
71
76
|
i(o.number())
|
|
72
77
|
])),
|
|
73
|
-
lineShape: o.optional(
|
|
78
|
+
lineShape: o.optional(t),
|
|
74
79
|
lineColor: o.optional(o.union([
|
|
75
80
|
o.string(),
|
|
76
81
|
e(o.string()),
|
|
@@ -80,6 +85,6 @@ const r = o.enum(["discrete", "continuous", "stringSource"]), c = o.object({
|
|
|
80
85
|
)
|
|
81
86
|
});
|
|
82
87
|
export {
|
|
83
|
-
|
|
88
|
+
u as DendroSettingsSchema
|
|
84
89
|
};
|
|
85
90
|
//# sourceMappingURL=dendro.js.map
|
package/dist/types/dendro.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dendro.js","sources":["../../src/types/dendro.ts"],"sourcesContent":["import { z } from 'zod';\nimport {\n type AesItem, type AesRecord,\n categoricalAesMappingFromValueSchema,\n ColumnNameSchema,\n continuousAesMappingFromValueSchema,\n LegendPositionSchema,\n LineShapeSchema,\n PointShapeSchema,\n TitlePositionSchema\n} from './common';\n\nconst ValueTypeSchema = z.enum(['discrete', 'continuous', 'stringSource']);\n\nexport const DendroSettingsSchema = z.object({\n type: z.literal('dendro'),\n title: z.object({\n name: z.string(),\n show: z.optional(z.boolean()),\n position: z.optional(TitlePositionSchema),\n }),\n size: z.optional(\n z.object({\n width: z.optional(z.number()),\n height: z.optional(z.number()),\n scale: z.optional(z.number()),\n minCellWidth: z.optional(z.number()),\n minCellHeight: z.optional(z.number()),\n maxCellWidth: z.optional(z.number()),\n maxCellHeight: z.optional(z.number()),\n })\n ),\n mode: z.optional(z.union([z.literal('normal'), z.literal('useAllNodesAsLeaves')])),\n leavesMode: z.optional(z.union([z.literal('normal'), z.literal('alignLeavesToLine')])),\n legend: z.optional(\n z.object({\n show: z.optional(z.boolean()),\n position: z.optional(LegendPositionSchema),\n })\n ),\n facetSettings: z.optional(\n z.object({\n nRows: z.optional(z.number()),\n nCols: z.optional(z.number()),\n })\n ),\n id: ColumnNameSchema,\n parentId: ColumnNameSchema,\n height: z.optional(ColumnNameSchema), // if height is not defined it is not considered in links length calculations\n labels: z.optional(ColumnNameSchema),\n facetBy: z.optional(z.array(ColumnNameSchema)),\n heatmapAnnotation: z.optional(ColumnNameSchema),\n heatmapAxis: z.optional(ColumnNameSchema),\n heatmapGroup: z.optional(z.array(ColumnNameSchema)),\n heatmapSettings: z.optional(z.object({\n valueType: z.optional(ValueTypeSchema),\n aes: z.optional(z.object({\n colorsList: z.optional(z.array(z.string())),\n colorsMap: z.optional(z.record(z.string()))\n }))\n })),\n\n connectionType: z.optional(z.union([z.literal('rectangle'), z.literal('line'), z.literal('curve')])),\n edgeInheritance: z.optional(z.union([z.literal('up'), z.literal('down')])),\n showNodes: z.optional(z.boolean()),\n showEdges: z.optional(z.boolean()),\n showLeavesLabels: z.optional(z.boolean()),\n showNodesLabels: z.optional(z.boolean()),\n rootPosition: z.optional(z.union([z.literal('left'), z.literal('top')])),\n\n aes: z.optional(\n z.object({\n nodeShape: z.optional(z.union([PointShapeSchema, categoricalAesMappingFromValueSchema(PointShapeSchema)])),\n nodeColor: z.optional(\n z.union([\n z.string(),\n categoricalAesMappingFromValueSchema(z.string()),\n continuousAesMappingFromValueSchema(z.string()),\n ])\n ),\n nodeSize: z.optional(z.union([\n z.number(),\n categoricalAesMappingFromValueSchema(z.number()),\n continuousAesMappingFromValueSchema(z.number()),\n ])),\n\n lineShape: z.optional(LineShapeSchema),\n lineColor: z.optional(z.union([\n z.string(),\n categoricalAesMappingFromValueSchema(z.string()),\n continuousAesMappingFromValueSchema(z.string()),\n ])),\n })\n ),\n});\n\nexport type DendroSettings = z.infer<typeof DendroSettingsSchema>;\n\nexport type DendroLegendInfo = Record<\n string,\n {\n values: string[];\n usedAes: (keyof AesItem)[];\n aesMap: AesRecord;\n labels: Record<string, string>;\n }\n>;\n"],"names":["ValueTypeSchema","z","DendroSettingsSchema","TitlePositionSchema","LegendPositionSchema","ColumnNameSchema","PointShapeSchema","categoricalAesMappingFromValueSchema","continuousAesMappingFromValueSchema","LineShapeSchema"],"mappings":";;AAYA,MAAMA,IAAkBC,EAAE,KAAK,CAAC,YAAY,cAAc,cAAc,CAAC,GAE5DC,IAAuBD,EAAE,OAAO;AAAA,EACzC,MAAMA,EAAE,QAAQ,QAAQ;AAAA,EACxB,OAAOA,EAAE,OAAO;AAAA,IACZ,MAAMA,EAAE,OAAA;AAAA,IACR,MAAMA,EAAE,SAASA,EAAE,SAAS;AAAA,IAC5B,UAAUA,EAAE,SAASE,CAAmB;AAAA,EAAA,CAC3C;AAAA,EACD,MAAMF,EAAE;AAAA,IACJA,EAAE,OAAO;AAAA,MACL,OAAOA,EAAE,SAASA,EAAE,QAAQ;AAAA,MAC5B,QAAQA,EAAE,SAASA,EAAE,QAAQ;AAAA,MAC7B,OAAOA,EAAE,SAASA,EAAE,QAAQ;AAAA,MAC5B,cAAcA,EAAE,SAASA,EAAE,QAAQ;AAAA,MACnC,eAAeA,EAAE,SAASA,EAAE,QAAQ;AAAA,MACpC,cAAcA,EAAE,SAASA,EAAE,QAAQ;AAAA,MACnC,eAAeA,EAAE,SAASA,EAAE,QAAQ;AAAA,IAAA,
|
|
1
|
+
{"version":3,"file":"dendro.js","sources":["../../src/types/dendro.ts"],"sourcesContent":["import { z } from 'zod';\nimport {\n type AesItem, type AesRecord,\n categoricalAesMappingFromValueSchema,\n ColumnNameSchema,\n continuousAesMappingFromValueSchema,\n LegendPositionSchema,\n LineShapeSchema,\n PointShapeSchema,\n TitlePositionSchema\n} from './common';\n\nconst ValueTypeSchema = z.enum(['discrete', 'continuous', 'stringSource']);\n\nexport const DendroSettingsSchema = z.object({\n type: z.literal('dendro'),\n title: z.object({\n name: z.string(),\n show: z.optional(z.boolean()),\n position: z.optional(TitlePositionSchema),\n }),\n size: z.optional(\n z.object({\n width: z.optional(z.number()),\n height: z.optional(z.number()),\n scale: z.optional(z.number()),\n minCellWidth: z.optional(z.number()),\n minCellHeight: z.optional(z.number()),\n maxCellWidth: z.optional(z.number()),\n maxCellHeight: z.optional(z.number()),\n marginTop: z.optional(z.number()),\n marginBottom: z.optional(z.number()),\n marginLeft: z.optional(z.number()),\n marginRight: z.optional(z.number()),\n })\n ),\n mode: z.optional(z.union([z.literal('normal'), z.literal('useAllNodesAsLeaves')])),\n leavesMode: z.optional(z.union([z.literal('normal'), z.literal('alignLeavesToLine')])),\n leavesOrder: z.optional(z.union([z.literal('indexAsc'), z.literal('indexDesc')])),\n legend: z.optional(\n z.object({\n show: z.optional(z.boolean()),\n position: z.optional(LegendPositionSchema),\n })\n ),\n facetSettings: z.optional(\n z.object({\n nRows: z.optional(z.number()),\n nCols: z.optional(z.number()),\n })\n ),\n id: ColumnNameSchema,\n parentId: ColumnNameSchema,\n height: z.optional(ColumnNameSchema), // if height is not defined it is not considered in links length calculations\n labels: z.optional(ColumnNameSchema),\n facetBy: z.optional(z.array(ColumnNameSchema)),\n heatmapAnnotation: z.optional(ColumnNameSchema),\n heatmapAxis: z.optional(ColumnNameSchema),\n heatmapGroup: z.optional(z.array(ColumnNameSchema)),\n heatmapSettings: z.optional(z.object({\n valueType: z.optional(ValueTypeSchema),\n aes: z.optional(z.object({\n colorsList: z.optional(z.array(z.string())),\n colorsMap: z.optional(z.record(z.string()))\n }))\n })),\n\n connectionType: z.optional(z.union([z.literal('rectangle'), z.literal('line'), z.literal('curve')])),\n edgeInheritance: z.optional(z.union([z.literal('up'), z.literal('down')])),\n showNodes: z.optional(z.boolean()),\n showEdges: z.optional(z.boolean()),\n showLeavesLabels: z.optional(z.boolean()),\n showNodesLabels: z.optional(z.boolean()),\n rootPosition: z.optional(z.union([z.literal('left'), z.literal('top')])),\n\n aes: z.optional(\n z.object({\n nodeShape: z.optional(z.union([PointShapeSchema, categoricalAesMappingFromValueSchema(PointShapeSchema)])),\n nodeColor: z.optional(\n z.union([\n z.string(),\n categoricalAesMappingFromValueSchema(z.string()),\n continuousAesMappingFromValueSchema(z.string()),\n ])\n ),\n nodeSize: z.optional(z.union([\n z.number(),\n categoricalAesMappingFromValueSchema(z.number()),\n continuousAesMappingFromValueSchema(z.number()),\n ])),\n\n lineShape: z.optional(LineShapeSchema),\n lineColor: z.optional(z.union([\n z.string(),\n categoricalAesMappingFromValueSchema(z.string()),\n continuousAesMappingFromValueSchema(z.string()),\n ])),\n })\n ),\n});\n\nexport type DendroSettings = z.infer<typeof DendroSettingsSchema>;\n\nexport type DendroLegendInfo = Record<\n string,\n {\n values: string[];\n usedAes: (keyof AesItem)[];\n aesMap: AesRecord;\n labels: Record<string, string>;\n }\n>;\n"],"names":["ValueTypeSchema","z","DendroSettingsSchema","TitlePositionSchema","LegendPositionSchema","ColumnNameSchema","PointShapeSchema","categoricalAesMappingFromValueSchema","continuousAesMappingFromValueSchema","LineShapeSchema"],"mappings":"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"}
|
package/dist/types/discrete.d.ts
CHANGED
|
@@ -2930,6 +2930,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2930
2930
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
2931
2931
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
2932
2932
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
2933
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
2933
2934
|
}, "strip", z.ZodTypeAny, {
|
|
2934
2935
|
title?: string | {
|
|
2935
2936
|
type: "column";
|
|
@@ -2941,6 +2942,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2941
2942
|
scale?: "linear" | "log" | undefined;
|
|
2942
2943
|
showGrid?: boolean | undefined;
|
|
2943
2944
|
showTicks?: boolean | undefined;
|
|
2945
|
+
hiddenLabels?: boolean | undefined;
|
|
2944
2946
|
significantLines?: number[] | undefined;
|
|
2945
2947
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2946
2948
|
symmetricRange?: number | undefined;
|
|
@@ -2957,6 +2959,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2957
2959
|
scale?: "linear" | "log" | undefined;
|
|
2958
2960
|
showGrid?: boolean | undefined;
|
|
2959
2961
|
showTicks?: boolean | undefined;
|
|
2962
|
+
hiddenLabels?: boolean | undefined;
|
|
2960
2963
|
significantLines?: number[] | undefined;
|
|
2961
2964
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2962
2965
|
symmetricRange?: number | undefined;
|
|
@@ -4479,6 +4482,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4479
4482
|
scale?: "linear" | "log" | undefined;
|
|
4480
4483
|
showGrid?: boolean | undefined;
|
|
4481
4484
|
showTicks?: boolean | undefined;
|
|
4485
|
+
hiddenLabels?: boolean | undefined;
|
|
4482
4486
|
significantLines?: number[] | undefined;
|
|
4483
4487
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
4484
4488
|
symmetricRange?: number | undefined;
|
|
@@ -4872,6 +4876,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4872
4876
|
scale?: "linear" | "log" | undefined;
|
|
4873
4877
|
showGrid?: boolean | undefined;
|
|
4874
4878
|
showTicks?: boolean | undefined;
|
|
4879
|
+
hiddenLabels?: boolean | undefined;
|
|
4875
4880
|
significantLines?: number[] | undefined;
|
|
4876
4881
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
4877
4882
|
symmetricRange?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discrete.d.ts","sourceRoot":"","sources":["../../src/types/discrete.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"discrete.d.ts","sourceRoot":"","sources":["../../src/types/discrete.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqEjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,MAAM,MAAM,YAAY,GAAG;IACvB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACpC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,GAAG,IAAI,CAAA;CACvD,CAAA"}
|
|
@@ -1026,6 +1026,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1026
1026
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1027
1027
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1028
1028
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1029
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1029
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1030
1031
|
title?: string | {
|
|
1031
1032
|
type: "column";
|
|
@@ -1037,6 +1038,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1037
1038
|
scale?: "linear" | "log" | undefined;
|
|
1038
1039
|
showGrid?: boolean | undefined;
|
|
1039
1040
|
showTicks?: boolean | undefined;
|
|
1041
|
+
hiddenLabels?: boolean | undefined;
|
|
1040
1042
|
significantLines?: number[] | undefined;
|
|
1041
1043
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1042
1044
|
symmetricRange?: number | undefined;
|
|
@@ -1053,6 +1055,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1053
1055
|
scale?: "linear" | "log" | undefined;
|
|
1054
1056
|
showGrid?: boolean | undefined;
|
|
1055
1057
|
showTicks?: boolean | undefined;
|
|
1058
|
+
hiddenLabels?: boolean | undefined;
|
|
1056
1059
|
significantLines?: number[] | undefined;
|
|
1057
1060
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1058
1061
|
symmetricRange?: number | undefined;
|
|
@@ -1087,6 +1090,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1087
1090
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1088
1091
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1089
1092
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1093
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1090
1094
|
}, "strip", z.ZodTypeAny, {
|
|
1091
1095
|
title?: string | {
|
|
1092
1096
|
type: "column";
|
|
@@ -1098,6 +1102,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1098
1102
|
scale?: "linear" | "log" | undefined;
|
|
1099
1103
|
showGrid?: boolean | undefined;
|
|
1100
1104
|
showTicks?: boolean | undefined;
|
|
1105
|
+
hiddenLabels?: boolean | undefined;
|
|
1101
1106
|
significantLines?: number[] | undefined;
|
|
1102
1107
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1103
1108
|
symmetricRange?: number | undefined;
|
|
@@ -1114,6 +1119,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1114
1119
|
scale?: "linear" | "log" | undefined;
|
|
1115
1120
|
showGrid?: boolean | undefined;
|
|
1116
1121
|
showTicks?: boolean | undefined;
|
|
1122
|
+
hiddenLabels?: boolean | undefined;
|
|
1117
1123
|
significantLines?: number[] | undefined;
|
|
1118
1124
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1119
1125
|
symmetricRange?: number | undefined;
|
|
@@ -1811,6 +1817,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1811
1817
|
scale?: "linear" | "log" | undefined;
|
|
1812
1818
|
showGrid?: boolean | undefined;
|
|
1813
1819
|
showTicks?: boolean | undefined;
|
|
1820
|
+
hiddenLabels?: boolean | undefined;
|
|
1814
1821
|
significantLines?: number[] | undefined;
|
|
1815
1822
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1816
1823
|
symmetricRange?: number | undefined;
|
|
@@ -1828,6 +1835,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1828
1835
|
scale?: "linear" | "log" | undefined;
|
|
1829
1836
|
showGrid?: boolean | undefined;
|
|
1830
1837
|
showTicks?: boolean | undefined;
|
|
1838
|
+
hiddenLabels?: boolean | undefined;
|
|
1831
1839
|
significantLines?: number[] | undefined;
|
|
1832
1840
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1833
1841
|
symmetricRange?: number | undefined;
|
|
@@ -1990,6 +1998,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1990
1998
|
scale?: "linear" | "log" | undefined;
|
|
1991
1999
|
showGrid?: boolean | undefined;
|
|
1992
2000
|
showTicks?: boolean | undefined;
|
|
2001
|
+
hiddenLabels?: boolean | undefined;
|
|
1993
2002
|
significantLines?: number[] | undefined;
|
|
1994
2003
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1995
2004
|
symmetricRange?: number | undefined;
|
|
@@ -2007,6 +2016,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2007
2016
|
scale?: "linear" | "log" | undefined;
|
|
2008
2017
|
showGrid?: boolean | undefined;
|
|
2009
2018
|
showTicks?: boolean | undefined;
|
|
2019
|
+
hiddenLabels?: boolean | undefined;
|
|
2010
2020
|
significantLines?: number[] | undefined;
|
|
2011
2021
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2012
2022
|
symmetricRange?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scatterplot-umap.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot-umap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EAEe,mCAAmC,EAGxD,MAAM,UAAU,CAAC;AAClB,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAE3D,KAAK,gBAAgB,CAAC,SAAS,SAAS,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,OAAO,oCAAoC,CAAC,SAAS,CAAC,CAAC,CAAC;AACxH,KAAK,iBAAiB,CAAC,SAAS,SAAS,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,OAAO,mCAAmC,CAAC,SAAS,CAAC,CAAC,CAAC;AAExH,MAAM,MAAM,wBAAwB,CAAC,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAClG,MAAM,MAAM,uBAAuB,CAAC,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAElG,QAAA,MAAM,gBAAgB;;;;;;;;;;;;EAIpB,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAErE,QAAA,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvB,CAAC;AAEH,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxB,CAAC;AAEH,QAAA,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAuD,CAAC;AAExF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"scatterplot-umap.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot-umap.ts"],"names":[],"mappings":"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"}
|
|
@@ -1101,6 +1101,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1101
1101
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1102
1102
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1103
1103
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1104
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1105
|
}, "strip", z.ZodTypeAny, {
|
|
1105
1106
|
title?: string | {
|
|
1106
1107
|
type: "column";
|
|
@@ -1112,6 +1113,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1112
1113
|
scale?: "linear" | "log" | undefined;
|
|
1113
1114
|
showGrid?: boolean | undefined;
|
|
1114
1115
|
showTicks?: boolean | undefined;
|
|
1116
|
+
hiddenLabels?: boolean | undefined;
|
|
1115
1117
|
significantLines?: number[] | undefined;
|
|
1116
1118
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1117
1119
|
symmetricRange?: number | undefined;
|
|
@@ -1128,6 +1130,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1128
1130
|
scale?: "linear" | "log" | undefined;
|
|
1129
1131
|
showGrid?: boolean | undefined;
|
|
1130
1132
|
showTicks?: boolean | undefined;
|
|
1133
|
+
hiddenLabels?: boolean | undefined;
|
|
1131
1134
|
significantLines?: number[] | undefined;
|
|
1132
1135
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1133
1136
|
symmetricRange?: number | undefined;
|
|
@@ -1222,6 +1225,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1222
1225
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
1223
1226
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
1224
1227
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
1228
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1225
1229
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1230
|
title?: string | {
|
|
1227
1231
|
type: "column";
|
|
@@ -1233,6 +1237,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1233
1237
|
scale?: "linear" | "log" | undefined;
|
|
1234
1238
|
showGrid?: boolean | undefined;
|
|
1235
1239
|
showTicks?: boolean | undefined;
|
|
1240
|
+
hiddenLabels?: boolean | undefined;
|
|
1236
1241
|
significantLines?: number[] | undefined;
|
|
1237
1242
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1238
1243
|
symmetricRange?: number | undefined;
|
|
@@ -1249,6 +1254,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1249
1254
|
scale?: "linear" | "log" | undefined;
|
|
1250
1255
|
showGrid?: boolean | undefined;
|
|
1251
1256
|
showTicks?: boolean | undefined;
|
|
1257
|
+
hiddenLabels?: boolean | undefined;
|
|
1252
1258
|
significantLines?: number[] | undefined;
|
|
1253
1259
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
1254
1260
|
symmetricRange?: number | undefined;
|
|
@@ -2084,6 +2090,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2084
2090
|
scale?: "linear" | "log" | undefined;
|
|
2085
2091
|
showGrid?: boolean | undefined;
|
|
2086
2092
|
showTicks?: boolean | undefined;
|
|
2093
|
+
hiddenLabels?: boolean | undefined;
|
|
2087
2094
|
significantLines?: number[] | undefined;
|
|
2088
2095
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2089
2096
|
symmetricRange?: number | undefined;
|
|
@@ -2117,6 +2124,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2117
2124
|
scale?: "linear" | "log" | undefined;
|
|
2118
2125
|
showGrid?: boolean | undefined;
|
|
2119
2126
|
showTicks?: boolean | undefined;
|
|
2127
|
+
hiddenLabels?: boolean | undefined;
|
|
2120
2128
|
significantLines?: number[] | undefined;
|
|
2121
2129
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2122
2130
|
symmetricRange?: number | undefined;
|
|
@@ -2327,6 +2335,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2327
2335
|
scale?: "linear" | "log" | undefined;
|
|
2328
2336
|
showGrid?: boolean | undefined;
|
|
2329
2337
|
showTicks?: boolean | undefined;
|
|
2338
|
+
hiddenLabels?: boolean | undefined;
|
|
2330
2339
|
significantLines?: number[] | undefined;
|
|
2331
2340
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2332
2341
|
symmetricRange?: number | undefined;
|
|
@@ -2360,6 +2369,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2360
2369
|
scale?: "linear" | "log" | undefined;
|
|
2361
2370
|
showGrid?: boolean | undefined;
|
|
2362
2371
|
showTicks?: boolean | undefined;
|
|
2372
|
+
hiddenLabels?: boolean | undefined;
|
|
2363
2373
|
significantLines?: number[] | undefined;
|
|
2364
2374
|
significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
2365
2375
|
symmetricRange?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scatterplot.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,OAAO,EAAE,oCAAoC,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACnG,OAAO,EAGH,mCAAmC,EAMtC,MAAM,UAAU,CAAC;AAElB,KAAK,gBAAgB,CAAC,SAAS,SAAS,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,OAAO,oCAAoC,CAAC,SAAS,CAAC,CAAC,CAAC;AACxH,KAAK,iBAAiB,CAAC,SAAS,SAAS,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,OAAO,mCAAmC,CAAC,SAAS,CAAC,CAAC,CAAC;AAExH,MAAM,MAAM,wBAAwB,CAAC,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAClG,MAAM,MAAM,uBAAuB,CAAC,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;AAElG,QAAA,MAAM,gBAAgB;;;;;;;;;;;;EAIpB,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAErE,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASnB,CAAC;AACH,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWpB,CAAC;AACH,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA+C,CAAC;AAE5E,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"scatterplot.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot.ts"],"names":[],"mappings":"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"}
|