@milaboratories/miplots4 1.0.115 → 1.0.117

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 CHANGED
@@ -2517,7 +2517,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2517
2517
  }, {
2518
2518
  type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
2519
2519
  }>>;
2520
- keyColumn: z.ZodObject<{
2520
+ keyColumn: z.ZodOptional<z.ZodObject<{
2521
2521
  type: z.ZodLiteral<"column">;
2522
2522
  value: z.ZodString;
2523
2523
  label: z.ZodOptional<z.ZodString>;
@@ -2532,7 +2532,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2532
2532
  value: string;
2533
2533
  label?: string | undefined;
2534
2534
  valueLabels?: string | undefined;
2535
- }>;
2535
+ }>>;
2536
2536
  x: z.ZodObject<{
2537
2537
  type: z.ZodLiteral<"column">;
2538
2538
  value: z.ZodString;
@@ -3146,12 +3146,6 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3146
3146
  show?: boolean | undefined;
3147
3147
  position?: "left" | "center" | "right" | undefined;
3148
3148
  };
3149
- keyColumn: {
3150
- type: "column";
3151
- value: string;
3152
- label?: string | undefined;
3153
- valueLabels?: string | undefined;
3154
- };
3155
3149
  x: {
3156
3150
  type: "column";
3157
3151
  value: string;
@@ -3252,6 +3246,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3252
3246
  frame?: {
3253
3247
  type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
3254
3248
  } | undefined;
3249
+ keyColumn?: {
3250
+ type: "column";
3251
+ value: string;
3252
+ label?: string | undefined;
3253
+ valueLabels?: string | undefined;
3254
+ } | undefined;
3255
3255
  xAxis?: {
3256
3256
  title?: string | {
3257
3257
  type: "column";
@@ -3313,12 +3313,6 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3313
3313
  show?: boolean | undefined;
3314
3314
  position?: "left" | "center" | "right" | undefined;
3315
3315
  };
3316
- keyColumn: {
3317
- type: "column";
3318
- value: string;
3319
- label?: string | undefined;
3320
- valueLabels?: string | undefined;
3321
- };
3322
3316
  x: {
3323
3317
  type: "column";
3324
3318
  value: string;
@@ -3419,6 +3413,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3419
3413
  frame?: {
3420
3414
  type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
3421
3415
  } | undefined;
3416
+ keyColumn?: {
3417
+ type: "column";
3418
+ value: string;
3419
+ label?: string | undefined;
3420
+ valueLabels?: string | undefined;
3421
+ } | undefined;
3422
3422
  xAxis?: {
3423
3423
  title?: string | {
3424
3424
  type: "column";
@@ -8286,10 +8286,10 @@ declare class DataFrame {
8286
8286
  data: Record<string, DataValue[]>;
8287
8287
  rowsCount: number;
8288
8288
  columnNames: string[];
8289
- rows: Row[];
8290
8289
  rowsGrouped?: RowsGroup;
8291
8290
  static from(data: DataSet): DataFrame;
8292
8291
  constructor(id: string, data: Record<string, DataValue[]>);
8292
+ get rows(): Record<string, DataValue>[];
8293
8293
  getColumn(key: string): DataValue[];
8294
8294
  getColumnCategories(key: string, ignoreNull?: boolean): string[];
8295
8295
  setGrouping(groupingColumnIds: (string | null)[]): void;