@milaboratories/miplots4 1.0.78 → 1.0.80
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 +20 -0
- package/dist/index.js +50 -50
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
136
136
|
sizeRange?: number[] | undefined;
|
|
137
137
|
}>>;
|
|
138
138
|
xAxis: z.ZodOptional<z.ZodObject<{
|
|
139
|
+
sorting: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
139
140
|
position: z.ZodOptional<z.ZodEnum<["top", "bottom"]>>;
|
|
140
141
|
title: z.ZodOptional<z.ZodString>;
|
|
141
142
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -146,6 +147,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
146
147
|
title?: string | undefined;
|
|
147
148
|
position?: "top" | "bottom" | undefined;
|
|
148
149
|
showTicks?: boolean | undefined;
|
|
150
|
+
sorting?: "asc" | "desc" | undefined;
|
|
149
151
|
showTitle?: boolean | undefined;
|
|
150
152
|
showAxisLabels?: boolean | undefined;
|
|
151
153
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -153,11 +155,13 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
153
155
|
title?: string | undefined;
|
|
154
156
|
position?: "top" | "bottom" | undefined;
|
|
155
157
|
showTicks?: boolean | undefined;
|
|
158
|
+
sorting?: "asc" | "desc" | undefined;
|
|
156
159
|
showTitle?: boolean | undefined;
|
|
157
160
|
showAxisLabels?: boolean | undefined;
|
|
158
161
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
159
162
|
}>>;
|
|
160
163
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
164
|
+
sorting: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
161
165
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
162
166
|
title: z.ZodOptional<z.ZodString>;
|
|
163
167
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -168,6 +172,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
168
172
|
title?: string | undefined;
|
|
169
173
|
position?: "left" | "right" | undefined;
|
|
170
174
|
showTicks?: boolean | undefined;
|
|
175
|
+
sorting?: "asc" | "desc" | undefined;
|
|
171
176
|
showTitle?: boolean | undefined;
|
|
172
177
|
showAxisLabels?: boolean | undefined;
|
|
173
178
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -175,6 +180,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
175
180
|
title?: string | undefined;
|
|
176
181
|
position?: "left" | "right" | undefined;
|
|
177
182
|
showTicks?: boolean | undefined;
|
|
183
|
+
sorting?: "asc" | "desc" | undefined;
|
|
178
184
|
showTitle?: boolean | undefined;
|
|
179
185
|
showAxisLabels?: boolean | undefined;
|
|
180
186
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -317,6 +323,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
317
323
|
title?: string | undefined;
|
|
318
324
|
position?: "top" | "bottom" | undefined;
|
|
319
325
|
showTicks?: boolean | undefined;
|
|
326
|
+
sorting?: "asc" | "desc" | undefined;
|
|
320
327
|
showTitle?: boolean | undefined;
|
|
321
328
|
showAxisLabels?: boolean | undefined;
|
|
322
329
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -325,6 +332,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
325
332
|
title?: string | undefined;
|
|
326
333
|
position?: "left" | "right" | undefined;
|
|
327
334
|
showTicks?: boolean | undefined;
|
|
335
|
+
sorting?: "asc" | "desc" | undefined;
|
|
328
336
|
showTitle?: boolean | undefined;
|
|
329
337
|
showAxisLabels?: boolean | undefined;
|
|
330
338
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -409,6 +417,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
409
417
|
title?: string | undefined;
|
|
410
418
|
position?: "top" | "bottom" | undefined;
|
|
411
419
|
showTicks?: boolean | undefined;
|
|
420
|
+
sorting?: "asc" | "desc" | undefined;
|
|
412
421
|
showTitle?: boolean | undefined;
|
|
413
422
|
showAxisLabels?: boolean | undefined;
|
|
414
423
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -417,6 +426,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
|
|
|
417
426
|
title?: string | undefined;
|
|
418
427
|
position?: "left" | "right" | undefined;
|
|
419
428
|
showTicks?: boolean | undefined;
|
|
429
|
+
sorting?: "asc" | "desc" | undefined;
|
|
420
430
|
showTitle?: boolean | undefined;
|
|
421
431
|
showAxisLabels?: boolean | undefined;
|
|
422
432
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -5430,6 +5440,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5430
5440
|
type?: "full" | "groups" | "none" | undefined;
|
|
5431
5441
|
}>>;
|
|
5432
5442
|
xAxis: z.ZodOptional<z.ZodObject<{
|
|
5443
|
+
sorting: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
5433
5444
|
position: z.ZodOptional<z.ZodEnum<["top", "bottom"]>>;
|
|
5434
5445
|
groupingPosition: z.ZodOptional<z.ZodEnum<["top", "bottom"]>>;
|
|
5435
5446
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -5443,6 +5454,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5443
5454
|
title?: string | undefined;
|
|
5444
5455
|
position?: "top" | "bottom" | undefined;
|
|
5445
5456
|
showTicks?: boolean | undefined;
|
|
5457
|
+
sorting?: "asc" | "desc" | undefined;
|
|
5446
5458
|
showTitle?: boolean | undefined;
|
|
5447
5459
|
showAxisLabels?: boolean | undefined;
|
|
5448
5460
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -5453,6 +5465,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5453
5465
|
title?: string | undefined;
|
|
5454
5466
|
position?: "top" | "bottom" | undefined;
|
|
5455
5467
|
showTicks?: boolean | undefined;
|
|
5468
|
+
sorting?: "asc" | "desc" | undefined;
|
|
5456
5469
|
showTitle?: boolean | undefined;
|
|
5457
5470
|
showAxisLabels?: boolean | undefined;
|
|
5458
5471
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -5461,6 +5474,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5461
5474
|
groupLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
5462
5475
|
}>>;
|
|
5463
5476
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
5477
|
+
sorting: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
5464
5478
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
5465
5479
|
groupingPosition: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
5466
5480
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -5474,6 +5488,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5474
5488
|
title?: string | undefined;
|
|
5475
5489
|
position?: "left" | "right" | undefined;
|
|
5476
5490
|
showTicks?: boolean | undefined;
|
|
5491
|
+
sorting?: "asc" | "desc" | undefined;
|
|
5477
5492
|
showTitle?: boolean | undefined;
|
|
5478
5493
|
showAxisLabels?: boolean | undefined;
|
|
5479
5494
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -5484,6 +5499,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
5484
5499
|
title?: string | undefined;
|
|
5485
5500
|
position?: "left" | "right" | undefined;
|
|
5486
5501
|
showTicks?: boolean | undefined;
|
|
5502
|
+
sorting?: "asc" | "desc" | undefined;
|
|
5487
5503
|
showTitle?: boolean | undefined;
|
|
5488
5504
|
showAxisLabels?: boolean | undefined;
|
|
5489
5505
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -6390,6 +6406,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
6390
6406
|
title?: string | undefined;
|
|
6391
6407
|
position?: "top" | "bottom" | undefined;
|
|
6392
6408
|
showTicks?: boolean | undefined;
|
|
6409
|
+
sorting?: "asc" | "desc" | undefined;
|
|
6393
6410
|
showTitle?: boolean | undefined;
|
|
6394
6411
|
showAxisLabels?: boolean | undefined;
|
|
6395
6412
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -6401,6 +6418,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
6401
6418
|
title?: string | undefined;
|
|
6402
6419
|
position?: "left" | "right" | undefined;
|
|
6403
6420
|
showTicks?: boolean | undefined;
|
|
6421
|
+
sorting?: "asc" | "desc" | undefined;
|
|
6404
6422
|
showTitle?: boolean | undefined;
|
|
6405
6423
|
showAxisLabels?: boolean | undefined;
|
|
6406
6424
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -6630,6 +6648,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
6630
6648
|
title?: string | undefined;
|
|
6631
6649
|
position?: "top" | "bottom" | undefined;
|
|
6632
6650
|
showTicks?: boolean | undefined;
|
|
6651
|
+
sorting?: "asc" | "desc" | undefined;
|
|
6633
6652
|
showTitle?: boolean | undefined;
|
|
6634
6653
|
showAxisLabels?: boolean | undefined;
|
|
6635
6654
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -6641,6 +6660,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
6641
6660
|
title?: string | undefined;
|
|
6642
6661
|
position?: "left" | "right" | undefined;
|
|
6643
6662
|
showTicks?: boolean | undefined;
|
|
6663
|
+
sorting?: "asc" | "desc" | undefined;
|
|
6644
6664
|
showTitle?: boolean | undefined;
|
|
6645
6665
|
showAxisLabels?: boolean | undefined;
|
|
6646
6666
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|