@milaboratories/miplots4 1.0.120 → 1.0.121

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
@@ -655,12 +655,15 @@ declare const HistogramSettingsSchema: z.ZodObject<{
655
655
  fillColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
656
656
  type: z.ZodLiteral<"grouping">;
657
657
  value: z.ZodString;
658
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
658
659
  }, "strip", z.ZodTypeAny, {
659
660
  type: "grouping";
660
661
  value: string;
662
+ palette?: string[] | undefined;
661
663
  }, {
662
664
  type: "grouping";
663
665
  value: string;
666
+ palette?: string[] | undefined;
664
667
  }>, z.ZodString, z.ZodObject<{
665
668
  domain: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
666
669
  range: z.ZodArray<z.ZodString, "many">;
@@ -681,6 +684,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
681
684
  fillColor?: string | {
682
685
  type: "grouping";
683
686
  value: string;
687
+ palette?: string[] | undefined;
684
688
  } | {
685
689
  range: string[];
686
690
  type?: "linear" | "log" | undefined;
@@ -692,6 +696,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
692
696
  fillColor?: string | {
693
697
  type: "grouping";
694
698
  value: string;
699
+ palette?: string[] | undefined;
695
700
  } | {
696
701
  range: string[];
697
702
  type?: "linear" | "log" | undefined;
@@ -706,6 +711,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
706
711
  fillColor?: string | {
707
712
  type: "grouping";
708
713
  value: string;
714
+ palette?: string[] | undefined;
709
715
  } | {
710
716
  range: string[];
711
717
  type?: "linear" | "log" | undefined;
@@ -720,6 +726,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
720
726
  fillColor?: string | {
721
727
  type: "grouping";
722
728
  value: string;
729
+ palette?: string[] | undefined;
723
730
  } | {
724
731
  range: string[];
725
732
  type?: "linear" | "log" | undefined;
@@ -751,6 +758,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
751
758
  fillColor?: string | {
752
759
  type: "grouping";
753
760
  value: string;
761
+ palette?: string[] | undefined;
754
762
  } | {
755
763
  range: string[];
756
764
  type?: "linear" | "log" | undefined;
@@ -844,6 +852,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
844
852
  fillColor?: string | {
845
853
  type: "grouping";
846
854
  value: string;
855
+ palette?: string[] | undefined;
847
856
  } | {
848
857
  range: string[];
849
858
  type?: "linear" | "log" | undefined;
@@ -1285,239 +1294,19 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1285
1294
  lineColor?: string | undefined;
1286
1295
  fillColor?: string | undefined;
1287
1296
  }>>>>;
1288
- aes: z.ZodOptional<z.ZodObject<{
1289
- size: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
1290
- columnName: z.ZodObject<{
1291
- type: z.ZodLiteral<"column">;
1292
- value: z.ZodString;
1293
- label: z.ZodOptional<z.ZodString>;
1294
- valueLabels: z.ZodOptional<z.ZodString>;
1295
- }, "strip", z.ZodTypeAny, {
1296
- type: "column";
1297
- value: string;
1298
- label?: string | undefined;
1299
- valueLabels?: string | undefined;
1300
- }, {
1301
- type: "column";
1302
- value: string;
1303
- label?: string | undefined;
1304
- valueLabels?: string | undefined;
1305
- }>;
1306
- valuesMap: z.ZodRecord<z.ZodString, z.ZodNumber>;
1307
- }, "strip", z.ZodTypeAny, {
1308
- columnName: {
1309
- type: "column";
1310
- value: string;
1311
- label?: string | undefined;
1312
- valueLabels?: string | undefined;
1313
- };
1314
- valuesMap: Record<string, number>;
1315
- }, {
1316
- columnName: {
1317
- type: "column";
1318
- value: string;
1319
- label?: string | undefined;
1320
- valueLabels?: string | undefined;
1321
- };
1322
- valuesMap: Record<string, number>;
1323
- }>, z.ZodObject<{
1324
- columnName: z.ZodObject<{
1325
- type: z.ZodLiteral<"column">;
1326
- value: z.ZodString;
1327
- label: z.ZodOptional<z.ZodString>;
1328
- valueLabels: z.ZodOptional<z.ZodString>;
1329
- }, "strip", z.ZodTypeAny, {
1330
- type: "column";
1331
- value: string;
1332
- label?: string | undefined;
1333
- valueLabels?: string | undefined;
1334
- }, {
1335
- type: "column";
1336
- value: string;
1337
- label?: string | undefined;
1338
- valueLabels?: string | undefined;
1339
- }>;
1340
- domain: z.ZodArray<z.ZodNumber, "many">;
1341
- range: z.ZodArray<z.ZodNumber, "many">;
1342
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1343
- }, "strip", z.ZodTypeAny, {
1344
- columnName: {
1345
- type: "column";
1346
- value: string;
1347
- label?: string | undefined;
1348
- valueLabels?: string | undefined;
1349
- };
1350
- domain: number[];
1351
- range: number[];
1352
- type?: "linear" | "log" | undefined;
1353
- }, {
1354
- columnName: {
1355
- type: "column";
1356
- value: string;
1357
- label?: string | undefined;
1358
- valueLabels?: string | undefined;
1359
- };
1360
- domain: number[];
1361
- range: number[];
1362
- type?: "linear" | "log" | undefined;
1363
- }>]>>;
1364
- color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1365
- columnName: z.ZodObject<{
1366
- type: z.ZodLiteral<"column">;
1367
- value: z.ZodString;
1368
- label: z.ZodOptional<z.ZodString>;
1369
- valueLabels: z.ZodOptional<z.ZodString>;
1370
- }, "strip", z.ZodTypeAny, {
1371
- type: "column";
1372
- value: string;
1373
- label?: string | undefined;
1374
- valueLabels?: string | undefined;
1375
- }, {
1376
- type: "column";
1377
- value: string;
1378
- label?: string | undefined;
1379
- valueLabels?: string | undefined;
1380
- }>;
1381
- valuesMap: z.ZodRecord<z.ZodString, z.ZodString>;
1382
- }, "strip", z.ZodTypeAny, {
1383
- columnName: {
1384
- type: "column";
1385
- value: string;
1386
- label?: string | undefined;
1387
- valueLabels?: string | undefined;
1388
- };
1389
- valuesMap: Record<string, string>;
1390
- }, {
1391
- columnName: {
1392
- type: "column";
1393
- value: string;
1394
- label?: string | undefined;
1395
- valueLabels?: string | undefined;
1396
- };
1397
- valuesMap: Record<string, string>;
1398
- }>]>>;
1399
- shape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
1400
- columnName: z.ZodObject<{
1401
- type: z.ZodLiteral<"column">;
1402
- value: z.ZodString;
1403
- label: z.ZodOptional<z.ZodString>;
1404
- valueLabels: z.ZodOptional<z.ZodString>;
1405
- }, "strip", z.ZodTypeAny, {
1406
- type: "column";
1407
- value: string;
1408
- label?: string | undefined;
1409
- valueLabels?: string | undefined;
1410
- }, {
1411
- type: "column";
1412
- value: string;
1413
- label?: string | undefined;
1414
- valueLabels?: string | undefined;
1415
- }>;
1416
- valuesMap: z.ZodRecord<z.ZodString, z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>>;
1417
- }, "strip", z.ZodTypeAny, {
1418
- columnName: {
1419
- type: "column";
1420
- value: string;
1421
- label?: string | undefined;
1422
- valueLabels?: string | undefined;
1423
- };
1424
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
1425
- }, {
1426
- columnName: {
1427
- type: "column";
1428
- value: string;
1429
- label?: string | undefined;
1430
- valueLabels?: string | undefined;
1431
- };
1432
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
1433
- }>]>>;
1434
- }, "strip", z.ZodTypeAny, {
1435
- size?: number | {
1436
- columnName: {
1437
- type: "column";
1438
- value: string;
1439
- label?: string | undefined;
1440
- valueLabels?: string | undefined;
1441
- };
1442
- domain: number[];
1443
- range: number[];
1444
- type?: "linear" | "log" | undefined;
1445
- } | {
1446
- columnName: {
1447
- type: "column";
1448
- value: string;
1449
- label?: string | undefined;
1450
- valueLabels?: string | undefined;
1451
- };
1452
- valuesMap: Record<string, number>;
1453
- } | undefined;
1454
- color?: string | {
1455
- columnName: {
1456
- type: "column";
1457
- value: string;
1458
- label?: string | undefined;
1459
- valueLabels?: string | undefined;
1460
- };
1461
- valuesMap: Record<string, string>;
1462
- } | undefined;
1463
- shape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
1464
- columnName: {
1465
- type: "column";
1466
- value: string;
1467
- label?: string | undefined;
1468
- valueLabels?: string | undefined;
1469
- };
1470
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
1471
- } | undefined;
1472
- }, {
1473
- size?: number | {
1474
- columnName: {
1475
- type: "column";
1476
- value: string;
1477
- label?: string | undefined;
1478
- valueLabels?: string | undefined;
1479
- };
1480
- domain: number[];
1481
- range: number[];
1482
- type?: "linear" | "log" | undefined;
1483
- } | {
1484
- columnName: {
1485
- type: "column";
1486
- value: string;
1487
- label?: string | undefined;
1488
- valueLabels?: string | undefined;
1489
- };
1490
- valuesMap: Record<string, number>;
1491
- } | undefined;
1492
- color?: string | {
1493
- columnName: {
1494
- type: "column";
1495
- value: string;
1496
- label?: string | undefined;
1497
- valueLabels?: string | undefined;
1498
- };
1499
- valuesMap: Record<string, string>;
1500
- } | undefined;
1501
- shape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
1502
- columnName: {
1503
- type: "column";
1504
- value: string;
1505
- label?: string | undefined;
1506
- valueLabels?: string | undefined;
1507
- };
1508
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
1509
- } | undefined;
1510
- }>>;
1511
1297
  trend: z.ZodOptional<z.ZodObject<{
1512
1298
  color: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1513
1299
  type: z.ZodLiteral<"grouping">;
1514
1300
  value: z.ZodString;
1301
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1515
1302
  }, "strip", z.ZodTypeAny, {
1516
1303
  type: "grouping";
1517
1304
  value: string;
1305
+ palette?: string[] | undefined;
1518
1306
  }, {
1519
1307
  type: "grouping";
1520
1308
  value: string;
1309
+ palette?: string[] | undefined;
1521
1310
  }>, z.ZodObject<{
1522
1311
  columnName: z.ZodObject<{
1523
1312
  type: z.ZodLiteral<"column">;
@@ -1564,6 +1353,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1564
1353
  color?: string | {
1565
1354
  type: "grouping";
1566
1355
  value: string;
1356
+ palette?: string[] | undefined;
1567
1357
  } | {
1568
1358
  columnName: {
1569
1359
  type: "column";
@@ -1580,6 +1370,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1580
1370
  color?: string | {
1581
1371
  type: "grouping";
1582
1372
  value: string;
1373
+ palette?: string[] | undefined;
1583
1374
  } | {
1584
1375
  columnName: {
1585
1376
  type: "column";
@@ -1599,12 +1390,15 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1599
1390
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1600
1391
  type: z.ZodLiteral<"grouping">;
1601
1392
  value: z.ZodString;
1393
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1602
1394
  }, "strip", z.ZodTypeAny, {
1603
1395
  type: "grouping";
1604
1396
  value: string;
1397
+ palette?: string[] | undefined;
1605
1398
  }, {
1606
1399
  type: "grouping";
1607
1400
  value: string;
1401
+ palette?: string[] | undefined;
1608
1402
  }>, z.ZodObject<{
1609
1403
  columnName: z.ZodObject<{
1610
1404
  type: z.ZodLiteral<"column">;
@@ -1649,12 +1443,15 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1649
1443
  dotShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
1650
1444
  type: z.ZodLiteral<"grouping">;
1651
1445
  value: z.ZodString;
1446
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1652
1447
  }, "strip", z.ZodTypeAny, {
1653
1448
  type: "grouping";
1654
1449
  value: string;
1450
+ palette?: string[] | undefined;
1655
1451
  }, {
1656
1452
  type: "grouping";
1657
1453
  value: string;
1454
+ palette?: string[] | undefined;
1658
1455
  }>]>>;
1659
1456
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
1660
1457
  columnName: z.ZodObject<{
@@ -1701,6 +1498,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1701
1498
  dotFill?: string | {
1702
1499
  type: "grouping";
1703
1500
  value: string;
1501
+ palette?: string[] | undefined;
1704
1502
  } | {
1705
1503
  columnName: {
1706
1504
  type: "column";
@@ -1715,6 +1513,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1715
1513
  dotShape?: "0" | {
1716
1514
  type: "grouping";
1717
1515
  value: string;
1516
+ palette?: string[] | undefined;
1718
1517
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1719
1518
  dotSize?: number | {
1720
1519
  columnName: {
@@ -1731,6 +1530,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1731
1530
  dotFill?: string | {
1732
1531
  type: "grouping";
1733
1532
  value: string;
1533
+ palette?: string[] | undefined;
1734
1534
  } | {
1735
1535
  columnName: {
1736
1536
  type: "column";
@@ -1745,6 +1545,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1745
1545
  dotShape?: "0" | {
1746
1546
  type: "grouping";
1747
1547
  value: string;
1548
+ palette?: string[] | undefined;
1748
1549
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1749
1550
  dotSize?: number | {
1750
1551
  columnName: {
@@ -1764,6 +1565,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1764
1565
  dotFill?: string | {
1765
1566
  type: "grouping";
1766
1567
  value: string;
1568
+ palette?: string[] | undefined;
1767
1569
  } | {
1768
1570
  columnName: {
1769
1571
  type: "column";
@@ -1778,6 +1580,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1778
1580
  dotShape?: "0" | {
1779
1581
  type: "grouping";
1780
1582
  value: string;
1583
+ palette?: string[] | undefined;
1781
1584
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1782
1585
  dotSize?: number | {
1783
1586
  columnName: {
@@ -1797,6 +1600,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1797
1600
  dotFill?: string | {
1798
1601
  type: "grouping";
1799
1602
  value: string;
1603
+ palette?: string[] | undefined;
1800
1604
  } | {
1801
1605
  columnName: {
1802
1606
  type: "column";
@@ -1811,6 +1615,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1811
1615
  dotShape?: "0" | {
1812
1616
  type: "grouping";
1813
1617
  value: string;
1618
+ palette?: string[] | undefined;
1814
1619
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1815
1620
  dotSize?: number | {
1816
1621
  columnName: {
@@ -1833,12 +1638,15 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1833
1638
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1834
1639
  type: z.ZodLiteral<"grouping">;
1835
1640
  value: z.ZodString;
1641
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1836
1642
  }, "strip", z.ZodTypeAny, {
1837
1643
  type: "grouping";
1838
1644
  value: string;
1645
+ palette?: string[] | undefined;
1839
1646
  }, {
1840
1647
  type: "grouping";
1841
1648
  value: string;
1649
+ palette?: string[] | undefined;
1842
1650
  }>, z.ZodObject<{
1843
1651
  columnName: z.ZodObject<{
1844
1652
  type: z.ZodLiteral<"column">;
@@ -1887,6 +1695,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1887
1695
  lineColor?: string | {
1888
1696
  type: "grouping";
1889
1697
  value: string;
1698
+ palette?: string[] | undefined;
1890
1699
  } | {
1891
1700
  columnName: {
1892
1701
  type: "column";
@@ -1905,6 +1714,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1905
1714
  lineColor?: string | {
1906
1715
  type: "grouping";
1907
1716
  value: string;
1717
+ palette?: string[] | undefined;
1908
1718
  } | {
1909
1719
  columnName: {
1910
1720
  type: "column";
@@ -1926,6 +1736,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1926
1736
  lineColor?: string | {
1927
1737
  type: "grouping";
1928
1738
  value: string;
1739
+ palette?: string[] | undefined;
1929
1740
  } | {
1930
1741
  columnName: {
1931
1742
  type: "column";
@@ -1948,6 +1759,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1948
1759
  lineColor?: string | {
1949
1760
  type: "grouping";
1950
1761
  value: string;
1762
+ palette?: string[] | undefined;
1951
1763
  } | {
1952
1764
  columnName: {
1953
1765
  type: "column";
@@ -1994,6 +1806,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
1994
1806
  dotFill?: string | {
1995
1807
  type: "grouping";
1996
1808
  value: string;
1809
+ palette?: string[] | undefined;
1997
1810
  } | {
1998
1811
  columnName: {
1999
1812
  type: "column";
@@ -2008,6 +1821,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2008
1821
  dotShape?: "0" | {
2009
1822
  type: "grouping";
2010
1823
  value: string;
1824
+ palette?: string[] | undefined;
2011
1825
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
2012
1826
  dotSize?: number | {
2013
1827
  columnName: {
@@ -2029,6 +1843,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2029
1843
  lineColor?: string | {
2030
1844
  type: "grouping";
2031
1845
  value: string;
1846
+ palette?: string[] | undefined;
2032
1847
  } | {
2033
1848
  columnName: {
2034
1849
  type: "column";
@@ -2056,45 +1871,6 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2056
1871
  label?: string | undefined;
2057
1872
  valueLabels?: string | undefined;
2058
1873
  }[] | undefined;
2059
- aes?: {
2060
- size?: number | {
2061
- columnName: {
2062
- type: "column";
2063
- value: string;
2064
- label?: string | undefined;
2065
- valueLabels?: string | undefined;
2066
- };
2067
- domain: number[];
2068
- range: number[];
2069
- type?: "linear" | "log" | undefined;
2070
- } | {
2071
- columnName: {
2072
- type: "column";
2073
- value: string;
2074
- label?: string | undefined;
2075
- valueLabels?: string | undefined;
2076
- };
2077
- valuesMap: Record<string, number>;
2078
- } | undefined;
2079
- color?: string | {
2080
- columnName: {
2081
- type: "column";
2082
- value: string;
2083
- label?: string | undefined;
2084
- valueLabels?: string | undefined;
2085
- };
2086
- valuesMap: Record<string, string>;
2087
- } | undefined;
2088
- shape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2089
- columnName: {
2090
- type: "column";
2091
- value: string;
2092
- label?: string | undefined;
2093
- valueLabels?: string | undefined;
2094
- };
2095
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
2096
- } | undefined;
2097
- } | undefined;
2098
1874
  size?: {
2099
1875
  width?: number | undefined;
2100
1876
  height?: number | undefined;
@@ -2184,6 +1960,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2184
1960
  color?: string | {
2185
1961
  type: "grouping";
2186
1962
  value: string;
1963
+ palette?: string[] | undefined;
2187
1964
  } | {
2188
1965
  columnName: {
2189
1966
  type: "column";
@@ -2228,6 +2005,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2228
2005
  dotFill?: string | {
2229
2006
  type: "grouping";
2230
2007
  value: string;
2008
+ palette?: string[] | undefined;
2231
2009
  } | {
2232
2010
  columnName: {
2233
2011
  type: "column";
@@ -2242,6 +2020,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2242
2020
  dotShape?: "0" | {
2243
2021
  type: "grouping";
2244
2022
  value: string;
2023
+ palette?: string[] | undefined;
2245
2024
  } | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
2246
2025
  dotSize?: number | {
2247
2026
  columnName: {
@@ -2263,6 +2042,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2263
2042
  lineColor?: string | {
2264
2043
  type: "grouping";
2265
2044
  value: string;
2045
+ palette?: string[] | undefined;
2266
2046
  } | {
2267
2047
  columnName: {
2268
2048
  type: "column";
@@ -2290,45 +2070,6 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2290
2070
  label?: string | undefined;
2291
2071
  valueLabels?: string | undefined;
2292
2072
  }[] | undefined;
2293
- aes?: {
2294
- size?: number | {
2295
- columnName: {
2296
- type: "column";
2297
- value: string;
2298
- label?: string | undefined;
2299
- valueLabels?: string | undefined;
2300
- };
2301
- domain: number[];
2302
- range: number[];
2303
- type?: "linear" | "log" | undefined;
2304
- } | {
2305
- columnName: {
2306
- type: "column";
2307
- value: string;
2308
- label?: string | undefined;
2309
- valueLabels?: string | undefined;
2310
- };
2311
- valuesMap: Record<string, number>;
2312
- } | undefined;
2313
- color?: string | {
2314
- columnName: {
2315
- type: "column";
2316
- value: string;
2317
- label?: string | undefined;
2318
- valueLabels?: string | undefined;
2319
- };
2320
- valuesMap: Record<string, string>;
2321
- } | undefined;
2322
- shape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2323
- columnName: {
2324
- type: "column";
2325
- value: string;
2326
- label?: string | undefined;
2327
- valueLabels?: string | undefined;
2328
- };
2329
- valuesMap: Record<string, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25">;
2330
- } | undefined;
2331
- } | undefined;
2332
2073
  size?: {
2333
2074
  width?: number | undefined;
2334
2075
  height?: number | undefined;
@@ -2418,6 +2159,7 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
2418
2159
  color?: string | {
2419
2160
  type: "grouping";
2420
2161
  value: string;
2162
+ palette?: string[] | undefined;
2421
2163
  } | {
2422
2164
  columnName: {
2423
2165
  type: "column";
@@ -2774,12 +2516,15 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2774
2516
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2775
2517
  type: z.ZodLiteral<"grouping">;
2776
2518
  value: z.ZodString;
2519
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2777
2520
  }, "strip", z.ZodTypeAny, {
2778
2521
  type: "grouping";
2779
2522
  value: string;
2523
+ palette?: string[] | undefined;
2780
2524
  }, {
2781
2525
  type: "grouping";
2782
2526
  value: string;
2527
+ palette?: string[] | undefined;
2783
2528
  }>, z.ZodObject<{
2784
2529
  columnName: z.ZodObject<{
2785
2530
  type: z.ZodLiteral<"column">;
@@ -2824,12 +2569,15 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2824
2569
  dotShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
2825
2570
  type: z.ZodLiteral<"grouping">;
2826
2571
  value: z.ZodString;
2572
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2827
2573
  }, "strip", z.ZodTypeAny, {
2828
2574
  type: "grouping";
2829
2575
  value: string;
2576
+ palette?: string[] | undefined;
2830
2577
  }, {
2831
2578
  type: "grouping";
2832
2579
  value: string;
2580
+ palette?: string[] | undefined;
2833
2581
  }>]>>;
2834
2582
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
2835
2583
  columnName: z.ZodObject<{
@@ -2886,10 +2634,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2886
2634
  } | {
2887
2635
  type: "grouping";
2888
2636
  value: string;
2637
+ palette?: string[] | undefined;
2889
2638
  } | undefined;
2890
2639
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2891
2640
  type: "grouping";
2892
2641
  value: string;
2642
+ palette?: string[] | undefined;
2893
2643
  } | undefined;
2894
2644
  dotSize?: number | {
2895
2645
  columnName: {
@@ -2916,10 +2666,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2916
2666
  } | {
2917
2667
  type: "grouping";
2918
2668
  value: string;
2669
+ palette?: string[] | undefined;
2919
2670
  } | undefined;
2920
2671
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2921
2672
  type: "grouping";
2922
2673
  value: string;
2674
+ palette?: string[] | undefined;
2923
2675
  } | undefined;
2924
2676
  dotSize?: number | {
2925
2677
  columnName: {
@@ -2949,10 +2701,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2949
2701
  } | {
2950
2702
  type: "grouping";
2951
2703
  value: string;
2704
+ palette?: string[] | undefined;
2952
2705
  } | undefined;
2953
2706
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2954
2707
  type: "grouping";
2955
2708
  value: string;
2709
+ palette?: string[] | undefined;
2956
2710
  } | undefined;
2957
2711
  dotSize?: number | {
2958
2712
  columnName: {
@@ -2982,10 +2736,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2982
2736
  } | {
2983
2737
  type: "grouping";
2984
2738
  value: string;
2739
+ palette?: string[] | undefined;
2985
2740
  } | undefined;
2986
2741
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
2987
2742
  type: "grouping";
2988
2743
  value: string;
2744
+ palette?: string[] | undefined;
2989
2745
  } | undefined;
2990
2746
  dotSize?: number | {
2991
2747
  columnName: {
@@ -3008,12 +2764,15 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3008
2764
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
3009
2765
  type: z.ZodLiteral<"grouping">;
3010
2766
  value: z.ZodString;
2767
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3011
2768
  }, "strip", z.ZodTypeAny, {
3012
2769
  type: "grouping";
3013
2770
  value: string;
2771
+ palette?: string[] | undefined;
3014
2772
  }, {
3015
2773
  type: "grouping";
3016
2774
  value: string;
2775
+ palette?: string[] | undefined;
3017
2776
  }>, z.ZodObject<{
3018
2777
  columnName: z.ZodObject<{
3019
2778
  type: z.ZodLiteral<"column">;
@@ -3072,6 +2831,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3072
2831
  } | {
3073
2832
  type: "grouping";
3074
2833
  value: string;
2834
+ palette?: string[] | undefined;
3075
2835
  } | undefined;
3076
2836
  opacity?: number | undefined;
3077
2837
  }, {
@@ -3090,6 +2850,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3090
2850
  } | {
3091
2851
  type: "grouping";
3092
2852
  value: string;
2853
+ palette?: string[] | undefined;
3093
2854
  } | undefined;
3094
2855
  opacity?: number | undefined;
3095
2856
  }>>;
@@ -3111,6 +2872,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3111
2872
  } | {
3112
2873
  type: "grouping";
3113
2874
  value: string;
2875
+ palette?: string[] | undefined;
3114
2876
  } | undefined;
3115
2877
  opacity?: number | undefined;
3116
2878
  } | undefined;
@@ -3133,6 +2895,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3133
2895
  } | {
3134
2896
  type: "grouping";
3135
2897
  value: string;
2898
+ palette?: string[] | undefined;
3136
2899
  } | undefined;
3137
2900
  opacity?: number | undefined;
3138
2901
  } | undefined;
@@ -3174,10 +2937,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3174
2937
  } | {
3175
2938
  type: "grouping";
3176
2939
  value: string;
2940
+ palette?: string[] | undefined;
3177
2941
  } | undefined;
3178
2942
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
3179
2943
  type: "grouping";
3180
2944
  value: string;
2945
+ palette?: string[] | undefined;
3181
2946
  } | undefined;
3182
2947
  dotSize?: number | {
3183
2948
  columnName: {
@@ -3209,6 +2974,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3209
2974
  } | {
3210
2975
  type: "grouping";
3211
2976
  value: string;
2977
+ palette?: string[] | undefined;
3212
2978
  } | undefined;
3213
2979
  opacity?: number | undefined;
3214
2980
  } | undefined;
@@ -3341,10 +3107,12 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3341
3107
  } | {
3342
3108
  type: "grouping";
3343
3109
  value: string;
3110
+ palette?: string[] | undefined;
3344
3111
  } | undefined;
3345
3112
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
3346
3113
  type: "grouping";
3347
3114
  value: string;
3115
+ palette?: string[] | undefined;
3348
3116
  } | undefined;
3349
3117
  dotSize?: number | {
3350
3118
  columnName: {
@@ -3376,6 +3144,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3376
3144
  } | {
3377
3145
  type: "grouping";
3378
3146
  value: string;
3147
+ palette?: string[] | undefined;
3379
3148
  } | undefined;
3380
3149
  opacity?: number | undefined;
3381
3150
  } | undefined;