spectraview 1.8.2 → 1.8.4

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 (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
+ ## [1.8.4] — 2026-02-26
9
+
10
+ ### Fixed
11
+
12
+ - Sub-module barrel exports: added 4 missing components (AnnotationLayer, Minimap, Tooltip, DataTable), 3 hooks (useKeyboardNavigation, useNormalization, useHistory), 1 parser (parseSpc), 7 util modules
13
+ - CITATION.cff version updated to 1.8.2
14
+ - `.gitignore` expanded with `.claude/`, IDE dirs, `*.log`, OS files
15
+ - Removed stale `debug-storybook.log` and unused `vitest.shims.d.ts`
16
+ - Added `engines: { node: ">=18" }` to package.json
17
+
8
18
  ## [1.8.2] — 2026-02-26
9
19
 
10
20
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spectraview",
3
- "version": "1.8.2",
3
+ "version": "1.8.4",
4
4
  "description": "Interactive React component for vibrational spectroscopy (IR, Raman, NIR)",
5
5
  "author": "Tubhyam Karthikeyan <takarthikeyan25@gmail.com>",
6
6
  "license": "MIT",
@@ -118,6 +118,9 @@
118
118
  "storybook": "storybook dev -p 6006",
119
119
  "build-storybook": "storybook build"
120
120
  },
121
+ "engines": {
122
+ "node": ">=18"
123
+ },
121
124
  "publishConfig": {
122
125
  "access": "public"
123
126
  }