Skip to content

Releases: silx-kit/h5web

v11.1.0

Choose a tag to compare

@axelboc axelboc released this 25 Mar 08:26
116dcd7

Full Changelog: v11.0.0...v11.1.0

@h5web/app

  • < Heatmap > Add toolbar control to flip X axis #1573 #1574
  • < NX Heatmap > Support auxiliary signals #1500 #1577
  • < Raw > Display JPEG/PNG images stored as opaque datasets (requires h5grove>=2.1.0) #1554 #1587 #1590

@h5web/lib

  • [HeatmapVis] New prop flipXAxis to flip heatmap horizontally
  • ✨ Add props className and style to all visualization components (HeatmapVis, LineVis, RgbVis, etc.)
  • ⚠️ Deprecate components FlipYAxis and GridToggler (to be removed in H5Web 12) — use ToggleBtn directly instead.

@h5web/h5wasm

  • 🐛 Convert all bigints to number in H5WasmProvider without exceptions, notably in nested compound datasets, to fix error in Raw visualization #1536 #1581
  • 5️⃣ Propagate HDF5 errors to viewer so they can be properly handled and displayed #1570 #1586
    • H5Web no longer has to guess ahead of time whether a compression filter is supported or not; it can now request the dataset knowing that if a decompression error occurs, it will be able to detect the error and inform the user. This means that some compressed datasets may now be displayed when they didn't use to be.

Screenshots

Flip X axis

flip-x

Auxiliary signal selection

nx-image-aux

H5Web 11

Choose a tag to compare

@axelboc axelboc released this 15 Feb 12:35
v11.0.0
3402266

Full Changelog: v10.1.0...v11.0.0

🎉 H5WasmProvider now supports loading the Blosc2 and Bitshuffle compression plugins provided by @bmaranville in [email protected]. Keep an eye out for upcoming releases of myHDF5 and the VS Code extension, or check out the h5wasm demo!

@h5web/app

  • ⚠️ Breaking change [H5GroveProvider] now requires [email protected] #1557
    • ✨ External links are now included in search results thanks to improvements to the /paths endpoint.
    • ✨ Advanced HDF5 types, such as H5T_ENUM, H5T_OPAQUE, H5T_ARRAY, H5T_VLEN, H5T_REFERENCE, are now properly parsed and displayed in the metadata viewer thanks to improvements to the /metadata endpoint.
  • 🐛 Fix import issues with Vitest #1562 #1564 #1565
  • 🛠️ Reduce bundle size and runtime footprint in consumer applications #1537 #1564 #1571
  • [H5GroveProvider, HsdsProvider] Document using React's key attribute to ensure the viewer displays up-to-date metadata and dataset values when the content of the current HDF5 file changes #1559
  • [H5GroveProvider] Take advantage of h5grove's dtype=safe type conversions to fetch float16 and float128 datasets as binary (Float32Array and Float64Array respectively) instead of JSON #1561
  • [H5GroveProvider] Recommend memoising axiosConfig object with useMemo #1559

@h5web/lib

  • ⚠️ Remove mockMetadata, findMockEntity and getMockDataArray #1537
  • ⚠️ Instead of holding entire, plain JS arrays, the mockValues object now provides factory functions to generate mock ndarrays only when needed — e.g. mockValues.twoD() returns a mock ndarray with dimensions [20, 41] #1537
  • 🐛 Fix import issues with Vitest #1562 #1564 #1565
  • 🛠️ Reduce bundle size and runtime footprint in consumer applications #1537 #1564 #1571
  • Export toTypedNdArray utility to convert a plain number[] ndarray into a typed ndarray #1537

@h5web/h5wasm

  • [H5WasmProvider] Support loading Blosc2 and Bitshuffle compression plugins provided in [email protected] #1524
    • ⚠️ The type of the getPlugin function prop has changed: it now accepts a Plugin enum value as argument.
  • [H5WasmProvider] Correctly parse the following advanced HDF5 types: H5T_OPAQUE, H5T_VLEN, and H5T_REFERENCE so they no longer appear as Unknown in the metadata viewer #1556
  • 🐛 [H5WasmProvider] Fix issue when switching between two files with the same NeXus default path #1568

v10.1.0

Choose a tag to compare

@axelboc axelboc released this 18 Dec 13:29
81c7c66

Full Changelog: v10.0.0...v10.1.0

🎉 This release brings initial support for loading compressed datasets with H5WasmProvider. Keep an eye out for upcoming releases of myHDF5 and the VS Code extension, or give it a try right away in the h5wasm demo! Big thanks to @bmaranville for making common HDF5 compression plugins available through the h5wasm-plugins package. 🏆

⚠️ This version includes a change that unwillingly breaks support for Create React App. However, since CRA is no longer maintained, we have decided to not revert the change. If this is causing issues with other set-ups, please let us know.

@h5web/app

  • 🐛 < NX Heatmap > Fix min axis array length off by 1 in error message #1521

@h5web/lib

  • ✨ New useGeometry hook, H5WebGeometry abstract class, and createBufferAttribute and createIndex utilities, to ease creation/update of buffer geometries #1515
    • The DataCurve component is now a simple abstraction on top of three new components, each of which comes with its own custom H5WebGeometry class(es). You are free to use these components directly, or to reuse, extend or just get inspiration from the new geometry classes for your own custom components:
      • Line + LineGeometry
      • Glyphs + GlyphsGeometry
      • ErrorBars + ErroBarsGeometry and ErrorCapsGeometry
    • Other experimental components have been refactored and now come with their own custom geometry classes as well (ScatterPointsGeometry, SurfaceMeshGeometry).
  • 🐛 [HeatmapVis] Fix min axis array length off by 1 in error message #1521
  • 🐛 [LineVis] Forward ignoreValue prop to auxiliary DataCurve(s) #1515

@h5web/h5wasm

  • ✨ Allow consumer applications to load the following compression plugins on demand: Blosc, bzip2, LZ4, LZF, SZ, ZFP and Zstandard #1522
    • Consumers must implement the new function prop getPlugin of H5WasmProvider. This async function is called whenever a dataset compressed with one (or more) of the supported plugins is requested; it receives the name of the plugin as argument and should return the plugin's *.so shared library file as an array buffer if available.
    • Fetching the plugins' library files is the responsibility of the consumer application, as this depends on how/where the files are served, whether they are loaded via a bundler like Vite or webpack, etc. For an example of loading plugin files from the h5wasm-plugins package in a Vite project, see plugin-utils.ts in the demo project.
  • 🐛 Fix NextJS import issue #1525

H5Web 10 – now with React 18

Choose a tag to compare

@axelboc axelboc released this 17 Oct 09:09
4994009

Full Changelog: v9.0.0...v10.0.0

🥳 H5Web is now on React 18!

If your application is on React 17, you will need to upgrade to React 18 before you can upgrade to H5Web 10. Going forward, H5Web 9 will receive only critical bug fixes, and only upon request.

@h5web/app

  • 🎉 Upgrade React to v18 #1119
    • ⚠️ Breaking change: please upgrade react and react-dom to v18.x
  • < Line, Heatmap > Support visualizing boolean datasets #1498 #1499
  • 🐛 < Raw > Fix layout when content overflows #1488

@h5web/lib

  • 🎉 Upgrade React to v18 and @react-three/fiber to v8 #1119 #1494
    • ⚠️ Breaking change: please upgrade react and react-dom to v18.x, and @react-three/fiber to v8.x
  • 🐛 [RawVis] Fix layout when content overflows #1488
  • ⚠️ [LineVis, HeatmapVis] Prop dtype, which controls the dtype displayed in the tooltip, must now be provided directly as a string #1512
  • ⚠️ [VisCanvas] React Three Fiber now adds an extra div wrapper around the canvas element #1494

Experimental

  • 🐛 [useDrag] Fix unstable drag while zooming #1487

@h5web/h5wasm

  • [H5WasmProvider] Support (u)int64 data inside compound datasets (so they can be visualized with MatrixVis) #1503

v9.0.0

Choose a tag to compare

@axelboc axelboc released this 05 Sep 09:02
b97be6a

Full Changelog: v8.0.0...v9.0.0

@h5web/app

  • [H5GroveProvider, MockProvider] Support exporting < Raw > visualizations to JSON #1485
  • ✨ Allow zooming on very thin selection boxes #1482
  • 🐛 Fix heatmap snapshot feature and, more generally, fix saving WebGL canvas as image via "save image as" #1453 #1460
  • ⚠️ A number of CSS custom properties related to the domain widget (previously called "domain slider") have been renamed — cf. #1456. If you customise these properties in your app, please rename them.

@h5web/lib

Canvas

  • 🐛 [VisCanvas] Fix saving WebGL canvas as image via "save image as" #1453 #1460
  • ⚠️ The DOM structure created by VisCanvas has changed significantly, which may impact advanced use cases — see also #1471

Interactions

  • [SelectToZoom, SelectionTool] Allow cancelling selection-based interactions with right click #1370 #1463
  • [SelectToZoom] Allow zooming on very thin selection boxes #1482
  • ⚠️ Allow interacting with canvas through other interactive elements, like SVG elements. Interactive elements on top of the canvas must now take care of stopping the propagation of events that might lead to conflicting interactions before they bubble up the DOM (typically pointerdown to prevent panning/selecting). #1388 #1473

HTML/SVG overlays

  • ⚠️ [Overlay] Overflow canvas bounds by default — to hide the overflow, simply pass the appropriate inline style #1470
  • 🐛 [Annotation] Fix position of overflowing annotations #1467
  • 🐛 [SvgRect] Fix rectangle with inset stroke disappearing when width or height is close to zero (internally, SvgRect now renders a path element instead of a rect) #1482
  • ⚠️ [Html] Remove prop container and stop wrapping children with an extra div element #1465

Toolbar

  • 🐛 [DomainWidget] (previously DomainSlider): Moving one histogram marker now toggles off autoscale only for the corresponding bound (i.e. min or max, not both) #1422 #1439
    • ⚠️ [Histogram] Replace prop onChange with two props: onChangeMin and onChangeMax #1439
  • ⚠️ Rename DomainSlider to DomainWidget and export internal components #1382 #1377 #1445
    • ✨ Export component DomainSlider, which now corresponds to the slider part of the DomainWidget #1448
    • ✨ Export component DomainControls, which corresponds to the content of the DomainWidget's popup (with the bound inputs, autoscale buttons, histogram, etc.) #1455
    • ⚠️ As a result of these changes, a number of CSS custom properties have been renamed — cf. #1456
  • Export component ColorMapOption #1461
  • [ExportMenu] Add prop align to change the alignment of the Export menu popup (defaults to "center") #1485

Utilities & hooks

@h5web/h5wasm

  • [H5WasmProvider] Support exporting < Raw > visualizations to JSON #1485
  • [H5WasmProvider] Parse nested array types returned by h5wasm #1486

Screenshots

Experimental useDrag hook

This recording also demonstrates interacting with the canvas through other interactive elements.

Peek 2023-08-18 16-29

v8.0.0

Choose a tag to compare

@loichuder loichuder released this 25 May 14:33
32d95e7

Full Changelog: v7.1.0...v8.0.0

@h5web/app

  • ⚠️ Breaking change [App] Remove prop explorerOpen, which was deprecated in favor of sidebarOpen in v7.1.0 #1438
  • < NX > Show NeXus axis labels when hovering dimension buttons D0, D1, ... #1426 #1435
  • < Heatmap > Add Cubehelix colormap #1420
  • 🐛 < NX Line > Fix wrong colors in the tooltip legend in dark mode #1432
  • 🐛 < Complex Line > Remove unsupported scale types from drop-down selector in toolbar #1431

@h5web/lib

  • ⚠️ Breaking change Props and parameters that accept scale type(s) (i.e. ScaleType or ScaleType[]) are now more strictly typed to ensure that only supported scale types are provided #1431
    • This notably affects VisCanvas, LineVis, HeatmapVis, RgbVis, ScatterVis, extendDomain, and getAxisDomain
  • ⚠️ Breaking change [ScaleSelector] Prop options is now required – i.e. you must now always provide an array of scale type options #1431
    • For convenience, the following arrays of scale types are now available: AXIS_SCALE_TYPES (linear, log, symlog), COLOR_SCALE_TYPES (linear, log, symlog, sqrt), as well as their corresponding union types: AxisScaleType, ColorScaleType
  • ✨ Add Cubehelix to the list of possible interpolators #1420
  • 🐛 [LineVis] Fix wrong colors in tooltip in dark mode when auxiliaries arrays are provided #1432
  • [ToggleGroup.Btn] Add prop hint to show tooltip on hover #1435

@h5web/h5wasm

  • ✨ Parse and display chunks information when present #1433
  • 🐛 Fix support for big-endian numbers #1421 #1424

Screenshots

Axis hints in dimension mapper

Peek 2023-05-23 14-33

Cubehelix colormap

image

v7.1.0

Choose a tag to compare

@axelboc axelboc released this 13 Apr 08:07
f11b056

Full Changelog: v7.0.1...v7.1.0

🔍 H5Web now allows searching for datasets, groups and other entities in an HDF5 file by text.

👀 Keep an eye out for the next releases of jupyterlab-h5web, vscode-h5web and myHDF5, or check out one of the demos to see the feature in action!

@h5web/app

  • ✨ Show search panel in sidebar when supported by provider (currently H5GroveProvider, H5WasmProvider and MockProvider) #1348 #1367 #1391
    • [H5GroveProvider, MockProvider] Implement method getSearchablePaths to support searching through entities in the viewer #1367 #1394
    • ⚠️ [App] Rename prop explorerOpen to sidebarOpen; explorerOpen still works but is now deprecated and will be removed in the next major release #1404
  • < Heatmap, Line > Support NetCDF's _FillValue attribute to indicate missing data. When the attribute is set, the given value is ignored when computing the data domain and when rendering the line and heatmap visualizations. #1181 #1381 #1395
  • 🐛 < Heatmap > +Infinity and -Infinity no longer appear as transparent; they are now displayed with the lowest/highest colors of the selected color map just like any other under/over values #1372 #1374
  • 🐛 Fix full-screen button when H5Web is integrated into a larger application, like JupyterLab #1365 #1383
  • < Line, Scatter > Optimise creation and update of internal Three.js geometries and remove misleading error bars in case of negative error values #1390 #1393

@h5web/lib

  • [HeatmapVis, LineVis, DataCurve] Add prop ignoreValue to allow ignoring values when computing the domain and rendering the heatmap/line visualization. The prop accepts a callback that is called for each value in the data array; if the callback returns true, the value is ignored. #1381
  • [HeatmapMesh] Add optional prop mask, a uint8 ndarray that indicates which data values to mask (255) and which to show (0) #1395
  • [HeatmapMesh] Add prop badColor, which defaults to transparent, to control the color used to display NaN and other bad values (i.e. values not supported by the selected scale, and values ignored via the new mask prop) #1372 #1374
    • ⚠️ Note that the default colour for bad values used to be white.
  • ✨ Stack elements that appear on top of the canvas (i.e. HTML/SVG elements, axis grid, tooltip, etc.) in the most predictable way possible, and document the new default stacking order and how to tweak it #1387
    • ⚠️ The parent container of the canvas (i.e. available from react-three-fiber's internal state via gl.parentElement) now has pointer-event: none, which means that overlays, annotations, SVG elements and other HTML elements that get appended to this container no longer respond to pointer events by default. You can therefore remove your own pointer-events: none declarations from those elements. For elements that are meant to be interactive, you can restore interactivity with pointer-events: auto.
  • 🐛 [HeatmapVis, HeatmapMesh] +Infinity and -Infinity no longer appear as transparent ; they are now displayed with the lowest/highest colors of the selected color map just like any other under/over values #1372 #1374
  • [SelectToZoom, AxialSelectToZoom] Add prop minZoom to allow changing the default minimum zoom size of 20px #1384
  • [Toolbar] Add prop overflowChildren to forcefully render elements inside the overflow menu regardless of screen size #1378 by @PeterC-DLS
  • [DomainSlider] Add prop disabled to disable the slider and tooltip #1385
  • New SvgCircle component #1389
  • [LineVis, DataCurve, ScatterVis] Optimise creation and update of internal Three.js geometries and fix edge cases with error values <= 0 #1390 #1393
  • [getDomain, useDomain] Add optional parameter ignoreValue, a callback to ignore values from the domain computation #1381
  • Add CSS custom properties --h5w-toolbar--height and --h5w-btn--height to control the height of the toolbar and toolbar buttons #1402

Experimental

  • [TiledHeatmapMesh] Remove background mesh to keep canvas transparent where tiles are loading #1376

@h5web/h5wasm

  • 🐛 [H5WasmProvider] Fix support for unsigned 64-bit integers #1371 #1375
  • [H5WasmProvider] Implement method getSearchablePaths to support searching through entities in the viewer #1367

Screenshots

Search panel

Screencast.from.21-03-2023.17.00.24.webm

Ignore/mask values

image

image

Default stacking order

image

v7.0.1

Choose a tag to compare

@axelboc axelboc released this 22 Feb 08:05
214727a

Full Changelog: v7.0.0...v7.0.1

@h5web/lib

  • 🐛 useCameraState Fix regression introduced in v7.0.0 (PR #1361) and affecting cases where the factory function references external dependencies (i.e. props, state and other local variables) — useCameraState would ignore changes to those dependencies and return a stale state. This bug was also affecting the Annotation and DataToHtml components (but not @h5web/app). #1368
    • If you don't use useCameraState directly, upgrading should suffice.
    • If you use useCameraState directly, you'll need to revert some of the changes you made when upgrading to 7.0.0. More specifically, you'll need to pass once again a dependency array as second argument to the hook and reconfigure the react-hooks/exhaustive-deps linting rule in your project. See the documentation for useCameraState for more details.

v7.0.0

Choose a tag to compare

@axelboc axelboc released this 10 Feb 14:38
e3ce4d8

👉 These release notes appear cropped on the Releases page. You'll find them in full on their dedicated page. 👈

Full Changelog: v6.6.1...v7.0.0 — big thanks to @PeterC-DLS for #1311, #1324 and #1356 🧑‍🤝‍🧑

tldr; This release includes numerous breaking changes and new features to the component library, @h5web/lib. Highlights include: a simpler way to control the aspect ratio of the visualization; a more powerful SelectionTool component with support for validating and transforming selections; a more flexible API to render SVG shapes on top of the canvas.

@h5web/app

  • ❇️ Select-to-zoom interactions now zoom only on areas of at least 20x20px. This avoids inadvertently zooming on very small areas. Visual clues are provided to help users determine when selections being drawn become big enough to zoom on. #1345
  • 🐛 Fix error when switching from < NX Heatmap > to < NX Line > with an axis dataset longer than the signal dataset by one value (i.e. pixel boundaries) #1350 #1352
  • 🐛 When drawing a zoom selection, the stroke of the rectangle is no longer partially cropped by the canvas. #1346

@h5web/lib

Open the sections below to see the changes.

⚠️ Breaking changes
  • [HeatmapVis, RgbVis] Remove prop layout, now replaced with prop aspect (cf. New features). #1284
    • layout="cover" 👉 replace with aspect="equal" (default)
    • layout="fill" 👉 replace with aspect="auto"
    • layout="contain" 👉 remove; equivalent behaviour can be achieved by constraining the size of the visualization's container. #1283
  • [VisCanvas] Remove prop visRatio, now replaced with prop aspect (cf. New features). #1284
    • visRatio={undefined} 👉 replace with aspect="auto" (default)
    • visRatio={cols / rows} (i.e. orthonormal basis) 👉 replace with aspect="equal" (the correct visRatio is computed internally)
    • visRatio={(cols / rows) / aspect} 👉 replace with aspect={aspect}
  • [VisCanvas] Remove prop canvasRatio, which allowed restricting the canvas to a specific ratio. The canvas now always fills the available space (i.e. parent container minus axes). Migration: remove prop and constrain size of visualization container. #1283
  • [DefaultInteractions, SelectToZoom] Remove prop keepRatio. Interaction components now adjust their behaviours automatically when used inside a canvas with an aspect ratio (cf. New features). #1287
  • [SelectionTool, AxialSelectionTool] Callback props onSelectionChange and onSelectionEnd can now receive undefined when the user cancels the selection with Escape or releases the modifier key (if any). You may use the new onValidSelection callback instead of onSelectionEnd if you only care about successful selections. #1360
  • [SelectionTool, AxialSelectionTool] The shape of selection objects passed to callback props and to the render prop has changed - cf. the new interface vs. the old interface
  • Remove SelectionRect and SelectionLine. Use the new DataToHtml, SvgElement, SvgRect and SvgLine components instead. See code example below.
  • Rename useAxisSystemContext() to useVisCanvasContext() #1291
  • Utility getAxisValues now returns NumArray (i.e. TypedArray | number[]) instead of number[]. #1357
  • useCameraState The callback parameter no longer receives a context argument, and the second parameter is removed (i.e. the array dependencies à la useCallback), which means that ESLint rule react-hooks/exhaustive-deps no longer has to be configured in consumer projects. #1361
  • dataToHtml, getVisibleDomains must now be retrieved from context and no longer require a context argument. #1342
  • Rename getWorldFOV to getFovBox and move to context; it no longer requires a context argument and returns a Box instance (cf. New features). #1361
  • Hook useCanvasEvents and context utilities dataToHtml, dataToWorld, worldToData now work solely with Vector3 instances; they no longer accept/return Vector2 instances. More generally, computations in all three coordinate spaces (HTML, world, data) are now performed with Vector3 only to avoid cluttering the codebase with Vector3 <-> Vector2 conversions (cf. notably, the new Box class, as well as the Rect type used for selection rectangles). We recommend you do the same when implementing your own interactivity features. #1300 #1341
  • Callbacks passed to useCanvasEvents no longer receive points in camera space (i.e. property cameraPt).
🚀 New features
  • VisCanvas now renders an svg element that overlays the canvas. Use the new SvgElement component to append any SVG shape to it from anywhere inside the VisCanvas component tree. See code example and screen recording below. #1322
  • New SvgRect and SvgLine components to simplify rendering SVG rect and line elements from a tuple of Vector3 points. SvgRect also provides a way to simulate rendering the stroke outside or inside of the rectangle (instead of centred on the boundary). These components are for convenience only; don't hesitate to render rect, line and any other SVG element directly. #1332 #1346
  • New DataToHtml component to convert points from data space to HTML space directly in JSX. Useful to render SVG shapes on the canvas and update them automatically when the user zooms or pans. See code example below.
  • New Box utility class based on Three's Box 3, but with a more convenient API and some useful additional methods. Particularly handy when implementing interactivity features (zoom selection, SVG ROIs, etc.) #1323 #1359
  • [LineVis] Allow passing abscissa array longer than data array (i.e. the abscissa array gets cropped) #1352
  • [VisCanvas] Add prop aspect, which works similarly to matplotlib's Axes.set_aspect #1284:
    • aspect="auto": the visualization is to fill the entire canvas (default; i.e. the internal visRatio is set to undefined);
    • aspect="equal": one ordinate unit is to be displayed with the same number of pixels on screen as one abscissa unit (equivalent to aspect={1}; i.e. orthonormal basis);
    • aspect={2}: one ordinate unit is to be displayed with twice the number of pixels on screen as one abscissa unit.
  • [VisCanvas] Add nice property to abscissaConfig and ordinateConfig props. This passes through to D3 to allow it to extend the domains to nice values when appropriate. #1324
  • [SelectToZoom, AxialSelectToZoom] Enforce minimum selection size of 20x20px, with help of visual clues, to avoid inadvertently zooming when users mean to click. #1345
  • [XAxisZoom, YAxisZoom, AxialSelectToZoom] now disable themselves when used inside a canvas with an aspect ratio (equal or custom). #1287
  • [SelectToZoom] now configures its own behaviour automatically according to the canvas' aspect ratio (or lack thereof). #1287
  • [SelectionTool, AxialSelectionTool] Add props validate and onValidSelection to support validating selections. See code examples and screen recordings below. Callback props onSelectionChange and onSelectionEnd, as well as the children render prop, all receive a boolean flag conveying whether the selection they are invoked with is valid. #1345
  • [SelectionTool, AxialSelectionTool] The selection objects passed to the render prop and to the callback props now include the selection rectangle in HTML space (in addition to world and data space). This is likely what you want to use in the render prop to render the selection rectangle in SVG. See code examples below. #1343
  • [SelectionTool] Add prop transform to allow transforming the selection while it is being drawn. The render prop and onSelectionChange both receive the transformed selection object as first parameter and the raw, untransformed selection object as second parameter. This feature is used internally by AxialSelectionTool to transform the user's selection into a selection that spans the entire width or height of the canvas. For another example, check out story Rect With Transform. #1301 #1340 #1349
  • [Histogram] Add prop showLeftAxis, which defaults to true, to allow hiding the left axis (with showLeftAxis={false}) #1295
  • [DataCurve, ScatterPoints] Accept typed arrays for abscissas and ordinates #1357
  • getValueToIndexScale, getAxisDomain, getAxisValues Accept typed arrays as argument #1357
  • [**useCameraState*...
Read more

v6.6.1

Choose a tag to compare

@loichuder loichuder released this 15 Nov 14:41

Full Changelog: v6.6.0...v6.6.1

@h5web/app

  • 🐛 Fix Compression filters table appearing even if there was no filter when inspecting datasets #1282

@h5web/lib

  • 🐛 [Histogram] Fix interaction area not centered on the markers when interactive. #1277
  • 🐛 [Histogram] Markers can no longer be dragged beyond the histogram or each other. #1281