@milaboratories/miplots4 1.0.52 → 1.0.54
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/index.d.ts +5 -5
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5310,7 +5310,7 @@ declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
5310
5310
|
valueLabels?: string | undefined;
|
|
5311
5311
|
}>, "many">>;
|
|
5312
5312
|
heatmapSettings: z.ZodOptional<z.ZodObject<{
|
|
5313
|
-
valueType: z.ZodOptional<z.ZodEnum<["discrete", "continuous"]>>;
|
|
5313
|
+
valueType: z.ZodOptional<z.ZodEnum<["discrete", "continuous", "stringSource"]>>;
|
|
5314
5314
|
aes: z.ZodOptional<z.ZodObject<{
|
|
5315
5315
|
colorsList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5316
5316
|
colorsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -5326,13 +5326,13 @@ declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
5326
5326
|
colorsList?: string[] | undefined;
|
|
5327
5327
|
colorsMap?: Record<string, string> | undefined;
|
|
5328
5328
|
} | undefined;
|
|
5329
|
-
valueType?: "discrete" | "continuous" | undefined;
|
|
5329
|
+
valueType?: "discrete" | "continuous" | "stringSource" | undefined;
|
|
5330
5330
|
}, {
|
|
5331
5331
|
aes?: {
|
|
5332
5332
|
colorsList?: string[] | undefined;
|
|
5333
5333
|
colorsMap?: Record<string, string> | undefined;
|
|
5334
5334
|
} | undefined;
|
|
5335
|
-
valueType?: "discrete" | "continuous" | undefined;
|
|
5335
|
+
valueType?: "discrete" | "continuous" | "stringSource" | undefined;
|
|
5336
5336
|
}>>;
|
|
5337
5337
|
connectionType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rectangle">, z.ZodLiteral<"line">, z.ZodLiteral<"curve">]>>;
|
|
5338
5338
|
edgeInheritance: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"up">, z.ZodLiteral<"down">]>>;
|
|
@@ -5872,7 +5872,7 @@ declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
5872
5872
|
colorsList?: string[] | undefined;
|
|
5873
5873
|
colorsMap?: Record<string, string> | undefined;
|
|
5874
5874
|
} | undefined;
|
|
5875
|
-
valueType?: "discrete" | "continuous" | undefined;
|
|
5875
|
+
valueType?: "discrete" | "continuous" | "stringSource" | undefined;
|
|
5876
5876
|
} | undefined;
|
|
5877
5877
|
connectionType?: "line" | "curve" | "rectangle" | undefined;
|
|
5878
5878
|
showEdges?: boolean | undefined;
|
|
@@ -6026,7 +6026,7 @@ declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
6026
6026
|
colorsList?: string[] | undefined;
|
|
6027
6027
|
colorsMap?: Record<string, string> | undefined;
|
|
6028
6028
|
} | undefined;
|
|
6029
|
-
valueType?: "discrete" | "continuous" | undefined;
|
|
6029
|
+
valueType?: "discrete" | "continuous" | "stringSource" | undefined;
|
|
6030
6030
|
} | undefined;
|
|
6031
6031
|
connectionType?: "line" | "curve" | "rectangle" | undefined;
|
|
6032
6032
|
showEdges?: boolean | undefined;
|