@milaboratories/miplots4 1.0.130 → 1.0.131
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/scatterplot/ScatterplotSettingsImpl.js +28 -28
- package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.d.ts.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.js +42 -40
- package/dist/scatterplot/components/ChartTooltip.js.map +1 -1
- package/dist/scatterplot/dots.d.ts.map +1 -1
- package/dist/scatterplot/dots.js +24 -22
- package/dist/scatterplot/dots.js.map +1 -1
- package/dist/scatterplot/utils/formatColumnValue.d.ts +5 -0
- package/dist/scatterplot/utils/formatColumnValue.d.ts.map +1 -0
- package/dist/scatterplot/utils/formatColumnValue.js +11 -0
- package/dist/scatterplot/utils/formatColumnValue.js.map +1 -0
- package/dist/scatterplot-umap/SettingsImpl.js +25 -25
- package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.d.ts.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.js +88 -86
- package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
- package/dist/scatterplot-umap/index.d.ts.map +1 -1
- package/dist/scatterplot-umap/index.js +79 -77
- package/dist/scatterplot-umap/index.js.map +1 -1
- package/dist/types/bubble.d.ts +32 -0
- package/dist/types/bubble.d.ts.map +1 -1
- package/dist/types/common.d.ts +18 -0
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +2 -0
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +103 -0
- package/dist/types/dendro.d.ts.map +1 -1
- package/dist/types/discrete.d.ts +85 -8
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/heatmap.d.ts +159 -0
- package/dist/types/heatmap.d.ts.map +1 -1
- package/dist/types/histogram.d.ts +22 -0
- package/dist/types/histogram.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.d.ts +138 -0
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot.d.ts +152 -0
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgF/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/discrete.d.ts
CHANGED
|
@@ -741,16 +741,19 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
|
|
|
741
741
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
742
742
|
type: z.ZodLiteral<"column">;
|
|
743
743
|
value: z.ZodString;
|
|
744
|
+
format: z.ZodOptional<z.ZodString>;
|
|
744
745
|
label: z.ZodOptional<z.ZodString>;
|
|
745
746
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
746
747
|
}, "strip", z.ZodTypeAny, {
|
|
747
748
|
type: "column";
|
|
748
749
|
value: string;
|
|
750
|
+
format?: string | undefined;
|
|
749
751
|
label?: string | undefined;
|
|
750
752
|
valueLabels?: string | undefined;
|
|
751
753
|
}, {
|
|
752
754
|
type: "column";
|
|
753
755
|
value: string;
|
|
756
|
+
format?: string | undefined;
|
|
754
757
|
label?: string | undefined;
|
|
755
758
|
valueLabels?: string | undefined;
|
|
756
759
|
}>>;
|
|
@@ -818,6 +821,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
|
|
|
818
821
|
keyColumn?: {
|
|
819
822
|
type: "column";
|
|
820
823
|
value: string;
|
|
824
|
+
format?: string | undefined;
|
|
821
825
|
label?: string | undefined;
|
|
822
826
|
valueLabels?: string | undefined;
|
|
823
827
|
} | undefined;
|
|
@@ -841,6 +845,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
|
|
|
841
845
|
keyColumn?: {
|
|
842
846
|
type: "column";
|
|
843
847
|
value: string;
|
|
848
|
+
format?: string | undefined;
|
|
844
849
|
label?: string | undefined;
|
|
845
850
|
valueLabels?: string | undefined;
|
|
846
851
|
} | undefined;
|
|
@@ -852,16 +857,19 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
|
|
|
852
857
|
linkColumn: z.ZodObject<{
|
|
853
858
|
type: z.ZodLiteral<"column">;
|
|
854
859
|
value: z.ZodString;
|
|
860
|
+
format: z.ZodOptional<z.ZodString>;
|
|
855
861
|
label: z.ZodOptional<z.ZodString>;
|
|
856
862
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
857
863
|
}, "strip", z.ZodTypeAny, {
|
|
858
864
|
type: "column";
|
|
859
865
|
value: string;
|
|
866
|
+
format?: string | undefined;
|
|
860
867
|
label?: string | undefined;
|
|
861
868
|
valueLabels?: string | undefined;
|
|
862
869
|
}, {
|
|
863
870
|
type: "column";
|
|
864
871
|
value: string;
|
|
872
|
+
format?: string | undefined;
|
|
865
873
|
label?: string | undefined;
|
|
866
874
|
valueLabels?: string | undefined;
|
|
867
875
|
}>;
|
|
@@ -918,6 +926,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
|
|
|
918
926
|
linkColumn: {
|
|
919
927
|
type: "column";
|
|
920
928
|
value: string;
|
|
929
|
+
format?: string | undefined;
|
|
921
930
|
label?: string | undefined;
|
|
922
931
|
valueLabels?: string | undefined;
|
|
923
932
|
};
|
|
@@ -940,6 +949,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
|
|
|
940
949
|
linkColumn: {
|
|
941
950
|
type: "column";
|
|
942
951
|
value: string;
|
|
952
|
+
format?: string | undefined;
|
|
943
953
|
label?: string | undefined;
|
|
944
954
|
valueLabels?: string | undefined;
|
|
945
955
|
};
|
|
@@ -1111,10 +1121,10 @@ declare const StatLayerSchema: z.ZodObject<{
|
|
|
1111
1121
|
type: "stat";
|
|
1112
1122
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
1113
1123
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
1124
|
+
format?: "significance" | "pValue" | undefined;
|
|
1114
1125
|
referenceGroup?: string | number | null | undefined;
|
|
1115
1126
|
paired?: boolean | undefined;
|
|
1116
1127
|
ns?: boolean | undefined;
|
|
1117
|
-
format?: "significance" | "pValue" | undefined;
|
|
1118
1128
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
1119
1129
|
significanceLevels?: {
|
|
1120
1130
|
one: number;
|
|
@@ -1125,10 +1135,10 @@ declare const StatLayerSchema: z.ZodObject<{
|
|
|
1125
1135
|
type: "stat";
|
|
1126
1136
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
1127
1137
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
1138
|
+
format?: "significance" | "pValue" | undefined;
|
|
1128
1139
|
referenceGroup?: string | number | null | undefined;
|
|
1129
1140
|
paired?: boolean | undefined;
|
|
1130
1141
|
ns?: boolean | undefined;
|
|
1131
|
-
format?: "significance" | "pValue" | undefined;
|
|
1132
1142
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
1133
1143
|
significanceLevels?: {
|
|
1134
1144
|
one: number;
|
|
@@ -1857,16 +1867,19 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1857
1867
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
1858
1868
|
type: z.ZodLiteral<"column">;
|
|
1859
1869
|
value: z.ZodString;
|
|
1870
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1860
1871
|
label: z.ZodOptional<z.ZodString>;
|
|
1861
1872
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1862
1873
|
}, "strip", z.ZodTypeAny, {
|
|
1863
1874
|
type: "column";
|
|
1864
1875
|
value: string;
|
|
1876
|
+
format?: string | undefined;
|
|
1865
1877
|
label?: string | undefined;
|
|
1866
1878
|
valueLabels?: string | undefined;
|
|
1867
1879
|
}, {
|
|
1868
1880
|
type: "column";
|
|
1869
1881
|
value: string;
|
|
1882
|
+
format?: string | undefined;
|
|
1870
1883
|
label?: string | undefined;
|
|
1871
1884
|
valueLabels?: string | undefined;
|
|
1872
1885
|
}>>;
|
|
@@ -1934,6 +1947,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1934
1947
|
keyColumn?: {
|
|
1935
1948
|
type: "column";
|
|
1936
1949
|
value: string;
|
|
1950
|
+
format?: string | undefined;
|
|
1937
1951
|
label?: string | undefined;
|
|
1938
1952
|
valueLabels?: string | undefined;
|
|
1939
1953
|
} | undefined;
|
|
@@ -1957,6 +1971,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1957
1971
|
keyColumn?: {
|
|
1958
1972
|
type: "column";
|
|
1959
1973
|
value: string;
|
|
1974
|
+
format?: string | undefined;
|
|
1960
1975
|
label?: string | undefined;
|
|
1961
1976
|
valueLabels?: string | undefined;
|
|
1962
1977
|
} | undefined;
|
|
@@ -1966,16 +1981,19 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1966
1981
|
linkColumn: z.ZodObject<{
|
|
1967
1982
|
type: z.ZodLiteral<"column">;
|
|
1968
1983
|
value: z.ZodString;
|
|
1984
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1969
1985
|
label: z.ZodOptional<z.ZodString>;
|
|
1970
1986
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1971
1987
|
}, "strip", z.ZodTypeAny, {
|
|
1972
1988
|
type: "column";
|
|
1973
1989
|
value: string;
|
|
1990
|
+
format?: string | undefined;
|
|
1974
1991
|
label?: string | undefined;
|
|
1975
1992
|
valueLabels?: string | undefined;
|
|
1976
1993
|
}, {
|
|
1977
1994
|
type: "column";
|
|
1978
1995
|
value: string;
|
|
1996
|
+
format?: string | undefined;
|
|
1979
1997
|
label?: string | undefined;
|
|
1980
1998
|
valueLabels?: string | undefined;
|
|
1981
1999
|
}>;
|
|
@@ -2032,6 +2050,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2032
2050
|
linkColumn: {
|
|
2033
2051
|
type: "column";
|
|
2034
2052
|
value: string;
|
|
2053
|
+
format?: string | undefined;
|
|
2035
2054
|
label?: string | undefined;
|
|
2036
2055
|
valueLabels?: string | undefined;
|
|
2037
2056
|
};
|
|
@@ -2054,6 +2073,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2054
2073
|
linkColumn: {
|
|
2055
2074
|
type: "column";
|
|
2056
2075
|
value: string;
|
|
2076
|
+
format?: string | undefined;
|
|
2057
2077
|
label?: string | undefined;
|
|
2058
2078
|
valueLabels?: string | undefined;
|
|
2059
2079
|
};
|
|
@@ -2201,10 +2221,10 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2201
2221
|
type: "stat";
|
|
2202
2222
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
2203
2223
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
2224
|
+
format?: "significance" | "pValue" | undefined;
|
|
2204
2225
|
referenceGroup?: string | number | null | undefined;
|
|
2205
2226
|
paired?: boolean | undefined;
|
|
2206
2227
|
ns?: boolean | undefined;
|
|
2207
|
-
format?: "significance" | "pValue" | undefined;
|
|
2208
2228
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
2209
2229
|
significanceLevels?: {
|
|
2210
2230
|
one: number;
|
|
@@ -2215,10 +2235,10 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2215
2235
|
type: "stat";
|
|
2216
2236
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
2217
2237
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
2238
|
+
format?: "significance" | "pValue" | undefined;
|
|
2218
2239
|
referenceGroup?: string | number | null | undefined;
|
|
2219
2240
|
paired?: boolean | undefined;
|
|
2220
2241
|
ns?: boolean | undefined;
|
|
2221
|
-
format?: "significance" | "pValue" | undefined;
|
|
2222
2242
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
2223
2243
|
significanceLevels?: {
|
|
2224
2244
|
one: number;
|
|
@@ -2247,16 +2267,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2247
2267
|
y: z.ZodObject<{
|
|
2248
2268
|
type: z.ZodLiteral<"column">;
|
|
2249
2269
|
value: z.ZodString;
|
|
2270
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2250
2271
|
label: z.ZodOptional<z.ZodString>;
|
|
2251
2272
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2252
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2253
2274
|
type: "column";
|
|
2254
2275
|
value: string;
|
|
2276
|
+
format?: string | undefined;
|
|
2255
2277
|
label?: string | undefined;
|
|
2256
2278
|
valueLabels?: string | undefined;
|
|
2257
2279
|
}, {
|
|
2258
2280
|
type: "column";
|
|
2259
2281
|
value: string;
|
|
2282
|
+
format?: string | undefined;
|
|
2260
2283
|
label?: string | undefined;
|
|
2261
2284
|
valueLabels?: string | undefined;
|
|
2262
2285
|
}>;
|
|
@@ -2431,16 +2454,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2431
2454
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
2432
2455
|
type: z.ZodLiteral<"column">;
|
|
2433
2456
|
value: z.ZodString;
|
|
2457
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2434
2458
|
label: z.ZodOptional<z.ZodString>;
|
|
2435
2459
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2436
2460
|
}, "strip", z.ZodTypeAny, {
|
|
2437
2461
|
type: "column";
|
|
2438
2462
|
value: string;
|
|
2463
|
+
format?: string | undefined;
|
|
2439
2464
|
label?: string | undefined;
|
|
2440
2465
|
valueLabels?: string | undefined;
|
|
2441
2466
|
}, {
|
|
2442
2467
|
type: "column";
|
|
2443
2468
|
value: string;
|
|
2469
|
+
format?: string | undefined;
|
|
2444
2470
|
label?: string | undefined;
|
|
2445
2471
|
valueLabels?: string | undefined;
|
|
2446
2472
|
}>>;
|
|
@@ -2448,16 +2474,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2448
2474
|
columnName: z.ZodObject<{
|
|
2449
2475
|
type: z.ZodLiteral<"column">;
|
|
2450
2476
|
value: z.ZodString;
|
|
2477
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2451
2478
|
label: z.ZodOptional<z.ZodString>;
|
|
2452
2479
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2453
2480
|
}, "strip", z.ZodTypeAny, {
|
|
2454
2481
|
type: "column";
|
|
2455
2482
|
value: string;
|
|
2483
|
+
format?: string | undefined;
|
|
2456
2484
|
label?: string | undefined;
|
|
2457
2485
|
valueLabels?: string | undefined;
|
|
2458
2486
|
}, {
|
|
2459
2487
|
type: "column";
|
|
2460
2488
|
value: string;
|
|
2489
|
+
format?: string | undefined;
|
|
2461
2490
|
label?: string | undefined;
|
|
2462
2491
|
valueLabels?: string | undefined;
|
|
2463
2492
|
}>;
|
|
@@ -2492,6 +2521,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2492
2521
|
columnName: {
|
|
2493
2522
|
type: "column";
|
|
2494
2523
|
value: string;
|
|
2524
|
+
format?: string | undefined;
|
|
2495
2525
|
label?: string | undefined;
|
|
2496
2526
|
valueLabels?: string | undefined;
|
|
2497
2527
|
};
|
|
@@ -2510,6 +2540,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2510
2540
|
columnName: {
|
|
2511
2541
|
type: "column";
|
|
2512
2542
|
value: string;
|
|
2543
|
+
format?: string | undefined;
|
|
2513
2544
|
label?: string | undefined;
|
|
2514
2545
|
valueLabels?: string | undefined;
|
|
2515
2546
|
};
|
|
@@ -2529,16 +2560,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2529
2560
|
columnName: z.ZodObject<{
|
|
2530
2561
|
type: z.ZodLiteral<"column">;
|
|
2531
2562
|
value: z.ZodString;
|
|
2563
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2532
2564
|
label: z.ZodOptional<z.ZodString>;
|
|
2533
2565
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2534
2566
|
}, "strip", z.ZodTypeAny, {
|
|
2535
2567
|
type: "column";
|
|
2536
2568
|
value: string;
|
|
2569
|
+
format?: string | undefined;
|
|
2537
2570
|
label?: string | undefined;
|
|
2538
2571
|
valueLabels?: string | undefined;
|
|
2539
2572
|
}, {
|
|
2540
2573
|
type: "column";
|
|
2541
2574
|
value: string;
|
|
2575
|
+
format?: string | undefined;
|
|
2542
2576
|
label?: string | undefined;
|
|
2543
2577
|
valueLabels?: string | undefined;
|
|
2544
2578
|
}>;
|
|
@@ -2573,6 +2607,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2573
2607
|
columnName: {
|
|
2574
2608
|
type: "column";
|
|
2575
2609
|
value: string;
|
|
2610
|
+
format?: string | undefined;
|
|
2576
2611
|
label?: string | undefined;
|
|
2577
2612
|
valueLabels?: string | undefined;
|
|
2578
2613
|
};
|
|
@@ -2591,6 +2626,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2591
2626
|
columnName: {
|
|
2592
2627
|
type: "column";
|
|
2593
2628
|
value: string;
|
|
2629
|
+
format?: string | undefined;
|
|
2594
2630
|
label?: string | undefined;
|
|
2595
2631
|
valueLabels?: string | undefined;
|
|
2596
2632
|
};
|
|
@@ -2609,16 +2645,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2609
2645
|
facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2610
2646
|
type: z.ZodLiteral<"column">;
|
|
2611
2647
|
value: z.ZodString;
|
|
2648
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2612
2649
|
label: z.ZodOptional<z.ZodString>;
|
|
2613
2650
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2614
2651
|
}, "strip", z.ZodTypeAny, {
|
|
2615
2652
|
type: "column";
|
|
2616
2653
|
value: string;
|
|
2654
|
+
format?: string | undefined;
|
|
2617
2655
|
label?: string | undefined;
|
|
2618
2656
|
valueLabels?: string | undefined;
|
|
2619
2657
|
}, {
|
|
2620
2658
|
type: "column";
|
|
2621
2659
|
value: string;
|
|
2660
|
+
format?: string | undefined;
|
|
2622
2661
|
label?: string | undefined;
|
|
2623
2662
|
valueLabels?: string | undefined;
|
|
2624
2663
|
}>, "many">>;
|
|
@@ -2648,16 +2687,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2648
2687
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2649
2688
|
type: z.ZodLiteral<"column">;
|
|
2650
2689
|
value: z.ZodString;
|
|
2690
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2651
2691
|
label: z.ZodOptional<z.ZodString>;
|
|
2652
2692
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2653
2693
|
}, "strip", z.ZodTypeAny, {
|
|
2654
2694
|
type: "column";
|
|
2655
2695
|
value: string;
|
|
2696
|
+
format?: string | undefined;
|
|
2656
2697
|
label?: string | undefined;
|
|
2657
2698
|
valueLabels?: string | undefined;
|
|
2658
2699
|
}, {
|
|
2659
2700
|
type: "column";
|
|
2660
2701
|
value: string;
|
|
2702
|
+
format?: string | undefined;
|
|
2661
2703
|
label?: string | undefined;
|
|
2662
2704
|
valueLabels?: string | undefined;
|
|
2663
2705
|
}>]>>;
|
|
@@ -2676,6 +2718,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2676
2718
|
title?: string | {
|
|
2677
2719
|
type: "column";
|
|
2678
2720
|
value: string;
|
|
2721
|
+
format?: string | undefined;
|
|
2679
2722
|
label?: string | undefined;
|
|
2680
2723
|
valueLabels?: string | undefined;
|
|
2681
2724
|
} | undefined;
|
|
@@ -2694,6 +2737,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2694
2737
|
title?: string | {
|
|
2695
2738
|
type: "column";
|
|
2696
2739
|
value: string;
|
|
2740
|
+
format?: string | undefined;
|
|
2697
2741
|
label?: string | undefined;
|
|
2698
2742
|
valueLabels?: string | undefined;
|
|
2699
2743
|
} | undefined;
|
|
@@ -2713,16 +2757,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2713
2757
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2714
2758
|
type: z.ZodLiteral<"column">;
|
|
2715
2759
|
value: z.ZodString;
|
|
2760
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2716
2761
|
label: z.ZodOptional<z.ZodString>;
|
|
2717
2762
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
2718
2763
|
}, "strip", z.ZodTypeAny, {
|
|
2719
2764
|
type: "column";
|
|
2720
2765
|
value: string;
|
|
2766
|
+
format?: string | undefined;
|
|
2721
2767
|
label?: string | undefined;
|
|
2722
2768
|
valueLabels?: string | undefined;
|
|
2723
2769
|
}, {
|
|
2724
2770
|
type: "column";
|
|
2725
2771
|
value: string;
|
|
2772
|
+
format?: string | undefined;
|
|
2726
2773
|
label?: string | undefined;
|
|
2727
2774
|
valueLabels?: string | undefined;
|
|
2728
2775
|
}>]>>;
|
|
@@ -2741,6 +2788,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2741
2788
|
title?: string | {
|
|
2742
2789
|
type: "column";
|
|
2743
2790
|
value: string;
|
|
2791
|
+
format?: string | undefined;
|
|
2744
2792
|
label?: string | undefined;
|
|
2745
2793
|
valueLabels?: string | undefined;
|
|
2746
2794
|
} | undefined;
|
|
@@ -2759,6 +2807,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2759
2807
|
title?: string | {
|
|
2760
2808
|
type: "column";
|
|
2761
2809
|
value: string;
|
|
2810
|
+
format?: string | undefined;
|
|
2762
2811
|
label?: string | undefined;
|
|
2763
2812
|
valueLabels?: string | undefined;
|
|
2764
2813
|
} | undefined;
|
|
@@ -3494,16 +3543,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3494
3543
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
3495
3544
|
type: z.ZodLiteral<"column">;
|
|
3496
3545
|
value: z.ZodString;
|
|
3546
|
+
format: z.ZodOptional<z.ZodString>;
|
|
3497
3547
|
label: z.ZodOptional<z.ZodString>;
|
|
3498
3548
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
3499
3549
|
}, "strip", z.ZodTypeAny, {
|
|
3500
3550
|
type: "column";
|
|
3501
3551
|
value: string;
|
|
3552
|
+
format?: string | undefined;
|
|
3502
3553
|
label?: string | undefined;
|
|
3503
3554
|
valueLabels?: string | undefined;
|
|
3504
3555
|
}, {
|
|
3505
3556
|
type: "column";
|
|
3506
3557
|
value: string;
|
|
3558
|
+
format?: string | undefined;
|
|
3507
3559
|
label?: string | undefined;
|
|
3508
3560
|
valueLabels?: string | undefined;
|
|
3509
3561
|
}>>;
|
|
@@ -3571,6 +3623,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3571
3623
|
keyColumn?: {
|
|
3572
3624
|
type: "column";
|
|
3573
3625
|
value: string;
|
|
3626
|
+
format?: string | undefined;
|
|
3574
3627
|
label?: string | undefined;
|
|
3575
3628
|
valueLabels?: string | undefined;
|
|
3576
3629
|
} | undefined;
|
|
@@ -3594,6 +3647,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3594
3647
|
keyColumn?: {
|
|
3595
3648
|
type: "column";
|
|
3596
3649
|
value: string;
|
|
3650
|
+
format?: string | undefined;
|
|
3597
3651
|
label?: string | undefined;
|
|
3598
3652
|
valueLabels?: string | undefined;
|
|
3599
3653
|
} | undefined;
|
|
@@ -3603,16 +3657,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3603
3657
|
linkColumn: z.ZodObject<{
|
|
3604
3658
|
type: z.ZodLiteral<"column">;
|
|
3605
3659
|
value: z.ZodString;
|
|
3660
|
+
format: z.ZodOptional<z.ZodString>;
|
|
3606
3661
|
label: z.ZodOptional<z.ZodString>;
|
|
3607
3662
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
3608
3663
|
}, "strip", z.ZodTypeAny, {
|
|
3609
3664
|
type: "column";
|
|
3610
3665
|
value: string;
|
|
3666
|
+
format?: string | undefined;
|
|
3611
3667
|
label?: string | undefined;
|
|
3612
3668
|
valueLabels?: string | undefined;
|
|
3613
3669
|
}, {
|
|
3614
3670
|
type: "column";
|
|
3615
3671
|
value: string;
|
|
3672
|
+
format?: string | undefined;
|
|
3616
3673
|
label?: string | undefined;
|
|
3617
3674
|
valueLabels?: string | undefined;
|
|
3618
3675
|
}>;
|
|
@@ -3669,6 +3726,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3669
3726
|
linkColumn: {
|
|
3670
3727
|
type: "column";
|
|
3671
3728
|
value: string;
|
|
3729
|
+
format?: string | undefined;
|
|
3672
3730
|
label?: string | undefined;
|
|
3673
3731
|
valueLabels?: string | undefined;
|
|
3674
3732
|
};
|
|
@@ -3691,6 +3749,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3691
3749
|
linkColumn: {
|
|
3692
3750
|
type: "column";
|
|
3693
3751
|
value: string;
|
|
3752
|
+
format?: string | undefined;
|
|
3694
3753
|
label?: string | undefined;
|
|
3695
3754
|
valueLabels?: string | undefined;
|
|
3696
3755
|
};
|
|
@@ -3838,10 +3897,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3838
3897
|
type: "stat";
|
|
3839
3898
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
3840
3899
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
3900
|
+
format?: "significance" | "pValue" | undefined;
|
|
3841
3901
|
referenceGroup?: string | number | null | undefined;
|
|
3842
3902
|
paired?: boolean | undefined;
|
|
3843
3903
|
ns?: boolean | undefined;
|
|
3844
|
-
format?: "significance" | "pValue" | undefined;
|
|
3845
3904
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
3846
3905
|
significanceLevels?: {
|
|
3847
3906
|
one: number;
|
|
@@ -3852,10 +3911,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3852
3911
|
type: "stat";
|
|
3853
3912
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
3854
3913
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
3914
|
+
format?: "significance" | "pValue" | undefined;
|
|
3855
3915
|
referenceGroup?: string | number | null | undefined;
|
|
3856
3916
|
paired?: boolean | undefined;
|
|
3857
3917
|
ns?: boolean | undefined;
|
|
3858
|
-
format?: "significance" | "pValue" | undefined;
|
|
3859
3918
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
3860
3919
|
significanceLevels?: {
|
|
3861
3920
|
one: number;
|
|
@@ -3873,6 +3932,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3873
3932
|
y: {
|
|
3874
3933
|
type: "column";
|
|
3875
3934
|
value: string;
|
|
3935
|
+
format?: string | undefined;
|
|
3876
3936
|
label?: string | undefined;
|
|
3877
3937
|
valueLabels?: string | undefined;
|
|
3878
3938
|
};
|
|
@@ -4032,6 +4092,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4032
4092
|
keyColumn?: {
|
|
4033
4093
|
type: "column";
|
|
4034
4094
|
value: string;
|
|
4095
|
+
format?: string | undefined;
|
|
4035
4096
|
label?: string | undefined;
|
|
4036
4097
|
valueLabels?: string | undefined;
|
|
4037
4098
|
} | undefined;
|
|
@@ -4041,6 +4102,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4041
4102
|
linkColumn: {
|
|
4042
4103
|
type: "column";
|
|
4043
4104
|
value: string;
|
|
4105
|
+
format?: string | undefined;
|
|
4044
4106
|
label?: string | undefined;
|
|
4045
4107
|
valueLabels?: string | undefined;
|
|
4046
4108
|
};
|
|
@@ -4084,10 +4146,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4084
4146
|
type: "stat";
|
|
4085
4147
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
4086
4148
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
4149
|
+
format?: "significance" | "pValue" | undefined;
|
|
4087
4150
|
referenceGroup?: string | number | null | undefined;
|
|
4088
4151
|
paired?: boolean | undefined;
|
|
4089
4152
|
ns?: boolean | undefined;
|
|
4090
|
-
format?: "significance" | "pValue" | undefined;
|
|
4091
4153
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
4092
4154
|
significanceLevels?: {
|
|
4093
4155
|
one: number;
|
|
@@ -4151,6 +4213,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4151
4213
|
keyColumn?: {
|
|
4152
4214
|
type: "column";
|
|
4153
4215
|
value: string;
|
|
4216
|
+
format?: string | undefined;
|
|
4154
4217
|
label?: string | undefined;
|
|
4155
4218
|
valueLabels?: string | undefined;
|
|
4156
4219
|
} | undefined;
|
|
@@ -4158,6 +4221,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4158
4221
|
title?: string | {
|
|
4159
4222
|
type: "column";
|
|
4160
4223
|
value: string;
|
|
4224
|
+
format?: string | undefined;
|
|
4161
4225
|
label?: string | undefined;
|
|
4162
4226
|
valueLabels?: string | undefined;
|
|
4163
4227
|
} | undefined;
|
|
@@ -4177,6 +4241,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4177
4241
|
title?: string | {
|
|
4178
4242
|
type: "column";
|
|
4179
4243
|
value: string;
|
|
4244
|
+
format?: string | undefined;
|
|
4180
4245
|
label?: string | undefined;
|
|
4181
4246
|
valueLabels?: string | undefined;
|
|
4182
4247
|
} | undefined;
|
|
@@ -4195,6 +4260,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4195
4260
|
facetBy?: {
|
|
4196
4261
|
type: "column";
|
|
4197
4262
|
value: string;
|
|
4263
|
+
format?: string | undefined;
|
|
4198
4264
|
label?: string | undefined;
|
|
4199
4265
|
valueLabels?: string | undefined;
|
|
4200
4266
|
}[] | undefined;
|
|
@@ -4202,6 +4268,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4202
4268
|
columnName: {
|
|
4203
4269
|
type: "column";
|
|
4204
4270
|
value: string;
|
|
4271
|
+
format?: string | undefined;
|
|
4205
4272
|
label?: string | undefined;
|
|
4206
4273
|
valueLabels?: string | undefined;
|
|
4207
4274
|
};
|
|
@@ -4221,6 +4288,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4221
4288
|
columnName: {
|
|
4222
4289
|
type: "column";
|
|
4223
4290
|
value: string;
|
|
4291
|
+
format?: string | undefined;
|
|
4224
4292
|
label?: string | undefined;
|
|
4225
4293
|
valueLabels?: string | undefined;
|
|
4226
4294
|
};
|
|
@@ -4247,6 +4315,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4247
4315
|
y: {
|
|
4248
4316
|
type: "column";
|
|
4249
4317
|
value: string;
|
|
4318
|
+
format?: string | undefined;
|
|
4250
4319
|
label?: string | undefined;
|
|
4251
4320
|
valueLabels?: string | undefined;
|
|
4252
4321
|
};
|
|
@@ -4406,6 +4475,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4406
4475
|
keyColumn?: {
|
|
4407
4476
|
type: "column";
|
|
4408
4477
|
value: string;
|
|
4478
|
+
format?: string | undefined;
|
|
4409
4479
|
label?: string | undefined;
|
|
4410
4480
|
valueLabels?: string | undefined;
|
|
4411
4481
|
} | undefined;
|
|
@@ -4415,6 +4485,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4415
4485
|
linkColumn: {
|
|
4416
4486
|
type: "column";
|
|
4417
4487
|
value: string;
|
|
4488
|
+
format?: string | undefined;
|
|
4418
4489
|
label?: string | undefined;
|
|
4419
4490
|
valueLabels?: string | undefined;
|
|
4420
4491
|
};
|
|
@@ -4458,10 +4529,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4458
4529
|
type: "stat";
|
|
4459
4530
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
4460
4531
|
testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
|
|
4532
|
+
format?: "significance" | "pValue" | undefined;
|
|
4461
4533
|
referenceGroup?: string | number | null | undefined;
|
|
4462
4534
|
paired?: boolean | undefined;
|
|
4463
4535
|
ns?: boolean | undefined;
|
|
4464
|
-
format?: "significance" | "pValue" | undefined;
|
|
4465
4536
|
correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
|
|
4466
4537
|
significanceLevels?: {
|
|
4467
4538
|
one: number;
|
|
@@ -4525,6 +4596,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4525
4596
|
keyColumn?: {
|
|
4526
4597
|
type: "column";
|
|
4527
4598
|
value: string;
|
|
4599
|
+
format?: string | undefined;
|
|
4528
4600
|
label?: string | undefined;
|
|
4529
4601
|
valueLabels?: string | undefined;
|
|
4530
4602
|
} | undefined;
|
|
@@ -4532,6 +4604,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4532
4604
|
title?: string | {
|
|
4533
4605
|
type: "column";
|
|
4534
4606
|
value: string;
|
|
4607
|
+
format?: string | undefined;
|
|
4535
4608
|
label?: string | undefined;
|
|
4536
4609
|
valueLabels?: string | undefined;
|
|
4537
4610
|
} | undefined;
|
|
@@ -4551,6 +4624,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4551
4624
|
title?: string | {
|
|
4552
4625
|
type: "column";
|
|
4553
4626
|
value: string;
|
|
4627
|
+
format?: string | undefined;
|
|
4554
4628
|
label?: string | undefined;
|
|
4555
4629
|
valueLabels?: string | undefined;
|
|
4556
4630
|
} | undefined;
|
|
@@ -4569,6 +4643,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4569
4643
|
facetBy?: {
|
|
4570
4644
|
type: "column";
|
|
4571
4645
|
value: string;
|
|
4646
|
+
format?: string | undefined;
|
|
4572
4647
|
label?: string | undefined;
|
|
4573
4648
|
valueLabels?: string | undefined;
|
|
4574
4649
|
}[] | undefined;
|
|
@@ -4576,6 +4651,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4576
4651
|
columnName: {
|
|
4577
4652
|
type: "column";
|
|
4578
4653
|
value: string;
|
|
4654
|
+
format?: string | undefined;
|
|
4579
4655
|
label?: string | undefined;
|
|
4580
4656
|
valueLabels?: string | undefined;
|
|
4581
4657
|
};
|
|
@@ -4595,6 +4671,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4595
4671
|
columnName: {
|
|
4596
4672
|
type: "column";
|
|
4597
4673
|
value: string;
|
|
4674
|
+
format?: string | undefined;
|
|
4598
4675
|
label?: string | undefined;
|
|
4599
4676
|
valueLabels?: string | undefined;
|
|
4600
4677
|
};
|