@milaboratories/miplots4 1.2.1 → 1.2.2

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.
Files changed (36) hide show
  1. package/dist/common/ContinuousGrid.d.ts.map +1 -1
  2. package/dist/common/ContinuousGrid.js +90 -56
  3. package/dist/common/ContinuousGrid.js.map +1 -1
  4. package/dist/histogram/ChartRenderer.d.ts.map +1 -1
  5. package/dist/histogram/ChartRenderer.js +6 -0
  6. package/dist/histogram/ChartRenderer.js.map +1 -1
  7. package/dist/histogram/HistogramSettingsImpl.d.ts +5 -1
  8. package/dist/histogram/HistogramSettingsImpl.d.ts.map +1 -1
  9. package/dist/histogram/HistogramSettingsImpl.js.map +1 -1
  10. package/dist/scatterplot/components/Grid.d.ts.map +1 -1
  11. package/dist/scatterplot/components/Grid.js +109 -71
  12. package/dist/scatterplot/components/Grid.js.map +1 -1
  13. package/dist/types/bubble.d.ts +8 -8
  14. package/dist/types/common.d.ts +62 -6
  15. package/dist/types/common.d.ts.map +1 -1
  16. package/dist/types/common.js +15 -6
  17. package/dist/types/common.js.map +1 -1
  18. package/dist/types/dendro.d.ts +6 -6
  19. package/dist/types/discrete.d.ts +41 -13
  20. package/dist/types/discrete.d.ts.map +1 -1
  21. package/dist/types/heatmap.d.ts +4 -4
  22. package/dist/types/histogram.d.ts +59 -10
  23. package/dist/types/histogram.d.ts.map +1 -1
  24. package/dist/types/histogram.js +60 -66
  25. package/dist/types/histogram.js.map +1 -1
  26. package/dist/types/scatterplot-umap.d.ts +74 -18
  27. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  28. package/dist/types/scatterplot.d.ts +74 -18
  29. package/dist/types/scatterplot.d.ts.map +1 -1
  30. package/dist/types/selection.d.ts +8 -8
  31. package/dist/utils/getChartEdgeSides.d.ts +1 -1
  32. package/dist/utils/significantLinesStyle.d.ts +8 -0
  33. package/dist/utils/significantLinesStyle.d.ts.map +1 -0
  34. package/dist/utils/significantLinesStyle.js +12 -0
  35. package/dist/utils/significantLinesStyle.js.map +1 -0
  36. package/package.json +1 -1
@@ -1406,10 +1406,10 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1406
1406
  position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
1407
1407
  }, "strip", z.ZodTypeAny, {
1408
1408
  show?: boolean | undefined;
1409
- position?: "right" | "inside" | "top" | "bottom" | undefined;
1409
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
1410
1410
  }, {
1411
1411
  show?: boolean | undefined;
1412
- position?: "right" | "inside" | "top" | "bottom" | undefined;
1412
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
1413
1413
  }>>;
1414
1414
  tooltips: z.ZodOptional<z.ZodObject<{
1415
1415
  show: z.ZodOptional<z.ZodBoolean>;
@@ -1464,9 +1464,9 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1464
1464
  frame: z.ZodOptional<z.ZodObject<{
1465
1465
  type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
1466
1466
  }, "strip", z.ZodTypeAny, {
1467
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
1467
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
1468
1468
  }, {
1469
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
1469
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
1470
1470
  }>>;
1471
1471
  keyColumn: z.ZodOptional<z.ZodObject<{
1472
1472
  type: z.ZodLiteral<"column">;
@@ -1573,7 +1573,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1573
1573
  showGrid: z.ZodOptional<z.ZodBoolean>;
1574
1574
  showTicks: z.ZodOptional<z.ZodBoolean>;
1575
1575
  significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1576
- significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1576
+ significantLinesStyle: z.ZodOptional<z.ZodObject<{
1577
+ shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1578
+ showLabel: z.ZodOptional<z.ZodBoolean>;
1579
+ labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
1580
+ }, "strip", z.ZodTypeAny, {
1581
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1582
+ showLabel?: boolean | undefined;
1583
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1584
+ }, {
1585
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1586
+ showLabel?: boolean | undefined;
1587
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1588
+ }>>;
1577
1589
  symmetricRange: z.ZodOptional<z.ZodNumber>;
1578
1590
  upperValue: z.ZodOptional<z.ZodNumber>;
1579
1591
  lowerValue: z.ZodOptional<z.ZodNumber>;
@@ -1593,7 +1605,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1593
1605
  showTicks?: boolean | undefined;
1594
1606
  hiddenLabels?: boolean | undefined;
1595
1607
  significantLines?: number[] | undefined;
1596
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1608
+ significantLinesStyle?: {
1609
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1610
+ showLabel?: boolean | undefined;
1611
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1612
+ } | undefined;
1597
1613
  symmetricRange?: number | undefined;
1598
1614
  upperValue?: number | undefined;
1599
1615
  lowerValue?: number | undefined;
@@ -1612,7 +1628,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1612
1628
  showTicks?: boolean | undefined;
1613
1629
  hiddenLabels?: boolean | undefined;
1614
1630
  significantLines?: number[] | undefined;
1615
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1631
+ significantLinesStyle?: {
1632
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1633
+ showLabel?: boolean | undefined;
1634
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1635
+ } | undefined;
1616
1636
  symmetricRange?: number | undefined;
1617
1637
  upperValue?: number | undefined;
1618
1638
  lowerValue?: number | undefined;
@@ -1647,7 +1667,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1647
1667
  showGrid: z.ZodOptional<z.ZodBoolean>;
1648
1668
  showTicks: z.ZodOptional<z.ZodBoolean>;
1649
1669
  significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1650
- significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1670
+ significantLinesStyle: z.ZodOptional<z.ZodObject<{
1671
+ shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1672
+ showLabel: z.ZodOptional<z.ZodBoolean>;
1673
+ labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
1674
+ }, "strip", z.ZodTypeAny, {
1675
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1676
+ showLabel?: boolean | undefined;
1677
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1678
+ }, {
1679
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1680
+ showLabel?: boolean | undefined;
1681
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1682
+ }>>;
1651
1683
  symmetricRange: z.ZodOptional<z.ZodNumber>;
1652
1684
  upperValue: z.ZodOptional<z.ZodNumber>;
1653
1685
  lowerValue: z.ZodOptional<z.ZodNumber>;
@@ -1667,7 +1699,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1667
1699
  showTicks?: boolean | undefined;
1668
1700
  hiddenLabels?: boolean | undefined;
1669
1701
  significantLines?: number[] | undefined;
1670
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1702
+ significantLinesStyle?: {
1703
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1704
+ showLabel?: boolean | undefined;
1705
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1706
+ } | undefined;
1671
1707
  symmetricRange?: number | undefined;
1672
1708
  upperValue?: number | undefined;
1673
1709
  lowerValue?: number | undefined;
@@ -1686,7 +1722,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1686
1722
  showTicks?: boolean | undefined;
1687
1723
  hiddenLabels?: boolean | undefined;
1688
1724
  significantLines?: number[] | undefined;
1689
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1725
+ significantLinesStyle?: {
1726
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1727
+ showLabel?: boolean | undefined;
1728
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
1729
+ } | undefined;
1690
1730
  symmetricRange?: number | undefined;
1691
1731
  upperValue?: number | undefined;
1692
1732
  lowerValue?: number | undefined;
@@ -2680,7 +2720,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2680
2720
  }[] | undefined;
2681
2721
  legend?: {
2682
2722
  show?: boolean | undefined;
2683
- position?: "right" | "inside" | "top" | "bottom" | undefined;
2723
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
2684
2724
  } | undefined;
2685
2725
  tooltips?: {
2686
2726
  show?: boolean | undefined;
@@ -2695,7 +2735,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2695
2735
  }[] | undefined;
2696
2736
  } | undefined;
2697
2737
  frame?: {
2698
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
2738
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
2699
2739
  } | undefined;
2700
2740
  keyColumn?: {
2701
2741
  type: "column";
@@ -2721,7 +2761,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2721
2761
  showTicks?: boolean | undefined;
2722
2762
  hiddenLabels?: boolean | undefined;
2723
2763
  significantLines?: number[] | undefined;
2724
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2764
+ significantLinesStyle?: {
2765
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2766
+ showLabel?: boolean | undefined;
2767
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2768
+ } | undefined;
2725
2769
  symmetricRange?: number | undefined;
2726
2770
  upperValue?: number | undefined;
2727
2771
  lowerValue?: number | undefined;
@@ -2741,7 +2785,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2741
2785
  showTicks?: boolean | undefined;
2742
2786
  hiddenLabels?: boolean | undefined;
2743
2787
  significantLines?: number[] | undefined;
2744
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2788
+ significantLinesStyle?: {
2789
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2790
+ showLabel?: boolean | undefined;
2791
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2792
+ } | undefined;
2745
2793
  symmetricRange?: number | undefined;
2746
2794
  upperValue?: number | undefined;
2747
2795
  lowerValue?: number | undefined;
@@ -2922,7 +2970,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2922
2970
  }[] | undefined;
2923
2971
  legend?: {
2924
2972
  show?: boolean | undefined;
2925
- position?: "right" | "inside" | "top" | "bottom" | undefined;
2973
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
2926
2974
  } | undefined;
2927
2975
  tooltips?: {
2928
2976
  show?: boolean | undefined;
@@ -2937,7 +2985,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2937
2985
  }[] | undefined;
2938
2986
  } | undefined;
2939
2987
  frame?: {
2940
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
2988
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
2941
2989
  } | undefined;
2942
2990
  keyColumn?: {
2943
2991
  type: "column";
@@ -2963,7 +3011,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2963
3011
  showTicks?: boolean | undefined;
2964
3012
  hiddenLabels?: boolean | undefined;
2965
3013
  significantLines?: number[] | undefined;
2966
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3014
+ significantLinesStyle?: {
3015
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3016
+ showLabel?: boolean | undefined;
3017
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
3018
+ } | undefined;
2967
3019
  symmetricRange?: number | undefined;
2968
3020
  upperValue?: number | undefined;
2969
3021
  lowerValue?: number | undefined;
@@ -2983,7 +3035,11 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2983
3035
  showTicks?: boolean | undefined;
2984
3036
  hiddenLabels?: boolean | undefined;
2985
3037
  significantLines?: number[] | undefined;
2986
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3038
+ significantLinesStyle?: {
3039
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3040
+ showLabel?: boolean | undefined;
3041
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
3042
+ } | undefined;
2987
3043
  symmetricRange?: number | undefined;
2988
3044
  upperValue?: number | undefined;
2989
3045
  lowerValue?: number | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"scatterplot-umap.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot-umap.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"scatterplot-umap.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot-umap.ts"],"names":[],"mappings":"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"}
@@ -1865,10 +1865,10 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1865
1865
  position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
1866
1866
  }, "strip", z.ZodTypeAny, {
1867
1867
  show?: boolean | undefined;
1868
- position?: "right" | "inside" | "top" | "bottom" | undefined;
1868
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
1869
1869
  }, {
1870
1870
  show?: boolean | undefined;
1871
- position?: "right" | "inside" | "top" | "bottom" | undefined;
1871
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
1872
1872
  }>>;
1873
1873
  tooltips: z.ZodOptional<z.ZodObject<{
1874
1874
  show: z.ZodOptional<z.ZodBoolean>;
@@ -1923,9 +1923,9 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
1923
1923
  frame: z.ZodOptional<z.ZodObject<{
1924
1924
  type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
1925
1925
  }, "strip", z.ZodTypeAny, {
1926
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
1926
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
1927
1927
  }, {
1928
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
1928
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
1929
1929
  }>>;
1930
1930
  facetSettings: z.ZodOptional<z.ZodObject<{
1931
1931
  sharedX: z.ZodOptional<z.ZodBoolean>;
@@ -2122,7 +2122,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2122
2122
  showGrid: z.ZodOptional<z.ZodBoolean>;
2123
2123
  showTicks: z.ZodOptional<z.ZodBoolean>;
2124
2124
  significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2125
- significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
2125
+ significantLinesStyle: z.ZodOptional<z.ZodObject<{
2126
+ shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
2127
+ showLabel: z.ZodOptional<z.ZodBoolean>;
2128
+ labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
2129
+ }, "strip", z.ZodTypeAny, {
2130
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2131
+ showLabel?: boolean | undefined;
2132
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2133
+ }, {
2134
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2135
+ showLabel?: boolean | undefined;
2136
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2137
+ }>>;
2126
2138
  symmetricRange: z.ZodOptional<z.ZodNumber>;
2127
2139
  upperValue: z.ZodOptional<z.ZodNumber>;
2128
2140
  lowerValue: z.ZodOptional<z.ZodNumber>;
@@ -2142,7 +2154,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2142
2154
  showTicks?: boolean | undefined;
2143
2155
  hiddenLabels?: boolean | undefined;
2144
2156
  significantLines?: number[] | undefined;
2145
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2157
+ significantLinesStyle?: {
2158
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2159
+ showLabel?: boolean | undefined;
2160
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2161
+ } | undefined;
2146
2162
  symmetricRange?: number | undefined;
2147
2163
  upperValue?: number | undefined;
2148
2164
  lowerValue?: number | undefined;
@@ -2161,7 +2177,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2161
2177
  showTicks?: boolean | undefined;
2162
2178
  hiddenLabels?: boolean | undefined;
2163
2179
  significantLines?: number[] | undefined;
2164
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2180
+ significantLinesStyle?: {
2181
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2182
+ showLabel?: boolean | undefined;
2183
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2184
+ } | undefined;
2165
2185
  symmetricRange?: number | undefined;
2166
2186
  upperValue?: number | undefined;
2167
2187
  lowerValue?: number | undefined;
@@ -2266,7 +2286,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2266
2286
  showGrid: z.ZodOptional<z.ZodBoolean>;
2267
2287
  showTicks: z.ZodOptional<z.ZodBoolean>;
2268
2288
  significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2269
- significantLinesStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
2289
+ significantLinesStyle: z.ZodOptional<z.ZodObject<{
2290
+ shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
2291
+ showLabel: z.ZodOptional<z.ZodBoolean>;
2292
+ labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
2293
+ }, "strip", z.ZodTypeAny, {
2294
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2295
+ showLabel?: boolean | undefined;
2296
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2297
+ }, {
2298
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2299
+ showLabel?: boolean | undefined;
2300
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2301
+ }>>;
2270
2302
  symmetricRange: z.ZodOptional<z.ZodNumber>;
2271
2303
  upperValue: z.ZodOptional<z.ZodNumber>;
2272
2304
  lowerValue: z.ZodOptional<z.ZodNumber>;
@@ -2286,7 +2318,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2286
2318
  showTicks?: boolean | undefined;
2287
2319
  hiddenLabels?: boolean | undefined;
2288
2320
  significantLines?: number[] | undefined;
2289
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2321
+ significantLinesStyle?: {
2322
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2323
+ showLabel?: boolean | undefined;
2324
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2325
+ } | undefined;
2290
2326
  symmetricRange?: number | undefined;
2291
2327
  upperValue?: number | undefined;
2292
2328
  lowerValue?: number | undefined;
@@ -2305,7 +2341,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
2305
2341
  showTicks?: boolean | undefined;
2306
2342
  hiddenLabels?: boolean | undefined;
2307
2343
  significantLines?: number[] | undefined;
2308
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2344
+ significantLinesStyle?: {
2345
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2346
+ showLabel?: boolean | undefined;
2347
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
2348
+ } | undefined;
2309
2349
  symmetricRange?: number | undefined;
2310
2350
  upperValue?: number | undefined;
2311
2351
  lowerValue?: number | undefined;
@@ -3811,7 +3851,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
3811
3851
  }[] | undefined;
3812
3852
  legend?: {
3813
3853
  show?: boolean | undefined;
3814
- position?: "right" | "inside" | "top" | "bottom" | undefined;
3854
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
3815
3855
  } | undefined;
3816
3856
  tooltips?: {
3817
3857
  show?: boolean | undefined;
@@ -3826,7 +3866,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
3826
3866
  }[] | undefined;
3827
3867
  } | undefined;
3828
3868
  frame?: {
3829
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
3869
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
3830
3870
  } | undefined;
3831
3871
  facetSettings?: {
3832
3872
  sharedX?: boolean | undefined;
@@ -3868,7 +3908,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
3868
3908
  showTicks?: boolean | undefined;
3869
3909
  hiddenLabels?: boolean | undefined;
3870
3910
  significantLines?: number[] | undefined;
3871
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3911
+ significantLinesStyle?: {
3912
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3913
+ showLabel?: boolean | undefined;
3914
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
3915
+ } | undefined;
3872
3916
  symmetricRange?: number | undefined;
3873
3917
  upperValue?: number | undefined;
3874
3918
  lowerValue?: number | undefined;
@@ -3906,7 +3950,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
3906
3950
  showTicks?: boolean | undefined;
3907
3951
  hiddenLabels?: boolean | undefined;
3908
3952
  significantLines?: number[] | undefined;
3909
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3953
+ significantLinesStyle?: {
3954
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3955
+ showLabel?: boolean | undefined;
3956
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
3957
+ } | undefined;
3910
3958
  symmetricRange?: number | undefined;
3911
3959
  upperValue?: number | undefined;
3912
3960
  lowerValue?: number | undefined;
@@ -4179,7 +4227,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
4179
4227
  }[] | undefined;
4180
4228
  legend?: {
4181
4229
  show?: boolean | undefined;
4182
- position?: "right" | "inside" | "top" | "bottom" | undefined;
4230
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
4183
4231
  } | undefined;
4184
4232
  tooltips?: {
4185
4233
  show?: boolean | undefined;
@@ -4194,7 +4242,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
4194
4242
  }[] | undefined;
4195
4243
  } | undefined;
4196
4244
  frame?: {
4197
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
4245
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
4198
4246
  } | undefined;
4199
4247
  facetSettings?: {
4200
4248
  sharedX?: boolean | undefined;
@@ -4236,7 +4284,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
4236
4284
  showTicks?: boolean | undefined;
4237
4285
  hiddenLabels?: boolean | undefined;
4238
4286
  significantLines?: number[] | undefined;
4239
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
4287
+ significantLinesStyle?: {
4288
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
4289
+ showLabel?: boolean | undefined;
4290
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
4291
+ } | undefined;
4240
4292
  symmetricRange?: number | undefined;
4241
4293
  upperValue?: number | undefined;
4242
4294
  lowerValue?: number | undefined;
@@ -4274,7 +4326,11 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
4274
4326
  showTicks?: boolean | undefined;
4275
4327
  hiddenLabels?: boolean | undefined;
4276
4328
  significantLines?: number[] | undefined;
4277
- significantLinesStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
4329
+ significantLinesStyle?: {
4330
+ shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
4331
+ showLabel?: boolean | undefined;
4332
+ labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
4333
+ } | undefined;
4278
4334
  symmetricRange?: number | undefined;
4279
4335
  upperValue?: number | undefined;
4280
4336
  lowerValue?: number | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"scatterplot.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0CvF,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,MAAM,MAAM,qBAAqB,GAAG,MAAM,CACtC,MAAM,EACN;IACI,MAAM,EAAE,QAAQ,EAAE,CAAC;IACnB,OAAO,EAAE,CAAC,MAAM,OAAO,CAAC,EAAE,CAAC;IAC3B,MAAM,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,OAAO,KAAK,SAAS,GAAG,SAAS,CAAC;IACzE,MAAM,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;CACpC,CACJ,CAAC"}
1
+ {"version":3,"file":"scatterplot.d.ts","sourceRoot":"","sources":["../../src/types/scatterplot.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0CvF,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,MAAM,MAAM,qBAAqB,GAAG,MAAM,CACtC,MAAM,EACN;IACI,MAAM,EAAE,QAAQ,EAAE,CAAC;IACnB,OAAO,EAAE,CAAC,MAAM,OAAO,CAAC,EAAE,CAAC;IAC3B,MAAM,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,OAAO,KAAK,SAAS,GAAG,SAAS,CAAC;IACzE,MAAM,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;CACpC,CACJ,CAAC"}
@@ -188,10 +188,10 @@ export declare const SelectionSettingsSchema: z.ZodObject<{
188
188
  position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
189
189
  }, "strip", z.ZodTypeAny, {
190
190
  show?: boolean | undefined;
191
- position?: "right" | "inside" | "top" | "bottom" | undefined;
191
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
192
192
  }, {
193
193
  show?: boolean | undefined;
194
- position?: "right" | "inside" | "top" | "bottom" | undefined;
194
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
195
195
  }>>;
196
196
  title: z.ZodObject<{
197
197
  name: z.ZodString;
@@ -244,9 +244,9 @@ export declare const SelectionSettingsSchema: z.ZodObject<{
244
244
  frame: z.ZodOptional<z.ZodObject<{
245
245
  type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
246
246
  }, "strip", z.ZodTypeAny, {
247
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
247
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
248
248
  }, {
249
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
249
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
250
250
  }>>;
251
251
  fillColor: z.ZodUnion<[z.ZodString, z.ZodObject<{
252
252
  type: z.ZodString;
@@ -317,10 +317,10 @@ export declare const SelectionSettingsSchema: z.ZodObject<{
317
317
  opacity?: number | undefined;
318
318
  legend?: {
319
319
  show?: boolean | undefined;
320
- position?: "right" | "inside" | "top" | "bottom" | undefined;
320
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
321
321
  } | undefined;
322
322
  frame?: {
323
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
323
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
324
324
  } | undefined;
325
325
  facetSettings?: {
326
326
  order?: string[] | undefined;
@@ -406,10 +406,10 @@ export declare const SelectionSettingsSchema: z.ZodObject<{
406
406
  opacity?: number | undefined;
407
407
  legend?: {
408
408
  show?: boolean | undefined;
409
- position?: "right" | "inside" | "top" | "bottom" | undefined;
409
+ position?: "top" | "bottom" | "right" | "inside" | undefined;
410
410
  } | undefined;
411
411
  frame?: {
412
- type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
412
+ type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
413
413
  } | undefined;
414
414
  facetSettings?: {
415
415
  order?: string[] | undefined;
@@ -1,2 +1,2 @@
1
- export declare function getChartEdgeSides(index: number, facetsCount: number, columnsCount: number, rowsCount: number): ("left" | "right" | "top" | "bottom")[];
1
+ export declare function getChartEdgeSides(index: number, facetsCount: number, columnsCount: number, rowsCount: number): ("top" | "bottom" | "left" | "right")[];
2
2
  //# sourceMappingURL=getChartEdgeSides.d.ts.map
@@ -0,0 +1,8 @@
1
+ import { LineShape, SignificantLineLabelPosition, SignificantLinesStyle } from '../types';
2
+ export type ResolvedSignificantLinesStyle = {
3
+ shape: LineShape;
4
+ showLabel: boolean;
5
+ labelPosition: SignificantLineLabelPosition;
6
+ };
7
+ export declare function resolveSignificantLinesStyle(value: SignificantLinesStyle | undefined, axis: 'x' | 'y'): ResolvedSignificantLinesStyle;
8
+ //# sourceMappingURL=significantLinesStyle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"significantLinesStyle.d.ts","sourceRoot":"","sources":["../../src/utils/significantLinesStyle.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,SAAS,EACT,4BAA4B,EAC5B,qBAAqB,EACxB,MAAM,UAAU,CAAC;AAElB,MAAM,MAAM,6BAA6B,GAAG;IACxC,KAAK,EAAE,SAAS,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,aAAa,EAAE,4BAA4B,CAAC;CAC/C,CAAC;AAOF,wBAAgB,4BAA4B,CACxC,KAAK,EAAE,qBAAqB,GAAG,SAAS,EACxC,IAAI,EAAE,GAAG,GAAG,GAAG,GAChB,6BAA6B,CAkB/B"}
@@ -0,0 +1,12 @@
1
+ var e = "top", t = "left";
2
+ function n(n, r) {
3
+ let i = r === "x" ? e : t, a = r === "x" ? ["top", "bottom"] : ["left", "right"], o = "solid", s = !1, c = i;
4
+ return n && (n.shape && (o = n.shape), n.showLabel !== void 0 && (s = n.showLabel), n.labelPosition && a.includes(n.labelPosition) && (c = n.labelPosition)), {
5
+ shape: o,
6
+ showLabel: s,
7
+ labelPosition: c
8
+ };
9
+ }
10
+ export { n as resolveSignificantLinesStyle };
11
+
12
+ //# sourceMappingURL=significantLinesStyle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"significantLinesStyle.js","names":[],"sources":["../../src/utils/significantLinesStyle.ts"],"sourcesContent":["import type {\n LineShape,\n SignificantLineLabelPosition,\n SignificantLinesStyle,\n} from '../types';\n\nexport type ResolvedSignificantLinesStyle = {\n shape: LineShape;\n showLabel: boolean;\n labelPosition: SignificantLineLabelPosition;\n};\n\nconst X_FALLBACK: SignificantLineLabelPosition = 'top';\nconst Y_FALLBACK: SignificantLineLabelPosition = 'left';\n\n// Fill in defaults for the optional fields and reject mismatched\n// labelPosition values (e.g. `top` on a Y axis).\nexport function resolveSignificantLinesStyle(\n value: SignificantLinesStyle | undefined,\n axis: 'x' | 'y',\n): ResolvedSignificantLinesStyle {\n const fallback = axis === 'x' ? X_FALLBACK : Y_FALLBACK;\n const valid: SignificantLineLabelPosition[] = axis === 'x'\n ? ['top', 'bottom']\n : ['left', 'right'];\n\n let shape: LineShape = 'solid';\n let showLabel = false;\n let labelPosition: SignificantLineLabelPosition = fallback;\n\n if (value) {\n if (value.shape) shape = value.shape;\n if (value.showLabel !== undefined) showLabel = value.showLabel;\n if (value.labelPosition && valid.includes(value.labelPosition)) {\n labelPosition = value.labelPosition;\n }\n }\n return { shape, showLabel, labelPosition };\n}\n"],"mappings":"AAYA,IAAM,IAA2C,OAC3C,IAA2C;AAIjD,SAAgB,EACZ,GACA,GAC6B;CAC7B,IAAM,IAAW,MAAS,MAAM,IAAa,GACvC,IAAwC,MAAS,MACjD,CAAC,OAAO,SAAS,GACjB,CAAC,QAAQ,QAAQ,EAEnB,IAAmB,SACnB,IAAY,IACZ,IAA8C;AASlD,QAPI,MACI,EAAM,UAAO,IAAQ,EAAM,QAC3B,EAAM,cAAc,KAAA,MAAW,IAAY,EAAM,YACjD,EAAM,iBAAiB,EAAM,SAAS,EAAM,cAAc,KAC1D,IAAgB,EAAM,iBAGvB;EAAE;EAAO;EAAW;EAAe"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/miplots4",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Data visualization library",
5
5
  "author": "erohinaelena",
6
6
  "license": "ISC",