higlass 2.2.0 → 2.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.
@@ -1581,6 +1581,19 @@ declare const _default: {
1581
1581
  name: string;
1582
1582
  inlineOptions: any;
1583
1583
  };
1584
+ reverseAxis: {
1585
+ name: string;
1586
+ inlineOptions: {
1587
+ yes: {
1588
+ name: string;
1589
+ value: boolean;
1590
+ };
1591
+ no: {
1592
+ name: string;
1593
+ value: boolean;
1594
+ };
1595
+ };
1596
+ };
1584
1597
  colorbarPosition: {
1585
1598
  name: string;
1586
1599
  inlineOptions: {
@@ -1,9 +1,9 @@
1
1
  export default tileToCanvas;
2
2
  /**
3
3
  * Convert a 1D numerical array into a canvas image
4
- * @param {Uint8ClampedArray} pixData - 1D data array
4
+ * @param {Uint8ClampedArray<ArrayBuffer>} pixData - 1D data array
5
5
  * @param {number} w - Width
6
6
  * @param {number} h - Height
7
7
  * @return {object} Canvas object
8
8
  */
9
- declare function tileToCanvas(pixData: Uint8ClampedArray, w?: number, h?: number): object;
9
+ declare function tileToCanvas(pixData: Uint8ClampedArray<ArrayBuffer>, w?: number, h?: number): object;
package/dist/esm.html CHANGED
@@ -26,6 +26,7 @@
26
26
  <script type="module">
27
27
  import * as hglib from "./higlass.mjs";
28
28
  globalThis.hglib = hglib;
29
+ console.log("CSS length:", hglib.CSS?.length);
29
30
  </script>
30
31
 
31
32
  </head>