@milaboratories/miplots4 1.0.69 → 1.0.71
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 +28 -0
- package/dist/index.js +10 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2284,6 +2284,22 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2284
2284
|
label?: string | undefined;
|
|
2285
2285
|
valueLabels?: string | undefined;
|
|
2286
2286
|
}>, "many">>;
|
|
2287
|
+
label: z.ZodOptional<z.ZodObject<{
|
|
2288
|
+
type: z.ZodLiteral<"column">;
|
|
2289
|
+
value: z.ZodString;
|
|
2290
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2291
|
+
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2292
|
+
}, "strip", z.ZodTypeAny, {
|
|
2293
|
+
type: "column";
|
|
2294
|
+
value: string;
|
|
2295
|
+
label?: string | undefined;
|
|
2296
|
+
valueLabels?: string | undefined;
|
|
2297
|
+
}, {
|
|
2298
|
+
type: "column";
|
|
2299
|
+
value: string;
|
|
2300
|
+
label?: string | undefined;
|
|
2301
|
+
valueLabels?: string | undefined;
|
|
2302
|
+
}>>;
|
|
2287
2303
|
inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2288
2304
|
fillColor: z.ZodOptional<z.ZodString>;
|
|
2289
2305
|
lineColor: z.ZodOptional<z.ZodString>;
|
|
@@ -2444,6 +2460,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2444
2460
|
} | undefined;
|
|
2445
2461
|
} | undefined;
|
|
2446
2462
|
}[];
|
|
2463
|
+
label?: {
|
|
2464
|
+
type: "column";
|
|
2465
|
+
value: string;
|
|
2466
|
+
label?: string | undefined;
|
|
2467
|
+
valueLabels?: string | undefined;
|
|
2468
|
+
} | undefined;
|
|
2447
2469
|
grouping?: {
|
|
2448
2470
|
type: "column";
|
|
2449
2471
|
value: string;
|
|
@@ -2557,6 +2579,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2557
2579
|
} | undefined;
|
|
2558
2580
|
} | undefined;
|
|
2559
2581
|
}[];
|
|
2582
|
+
label?: {
|
|
2583
|
+
type: "column";
|
|
2584
|
+
value: string;
|
|
2585
|
+
label?: string | undefined;
|
|
2586
|
+
valueLabels?: string | undefined;
|
|
2587
|
+
} | undefined;
|
|
2560
2588
|
grouping?: {
|
|
2561
2589
|
type: "column";
|
|
2562
2590
|
value: string;
|