@datagrok/helm 2.13.4 → 2.13.5
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/CHANGELOG.md +13 -0
- package/CLAUDE.md +0 -13
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +2 -2
- package/src/utils/helm-grid-cell-renderer.ts +108 -0
- package/test-console-output-1.log +101 -91
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Helm changelog
|
|
2
2
|
|
|
3
|
+
## 2.13.4 (2026-03-31)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Added reverse compatibility support
|
|
8
|
+
* Improved startup performance with dynamic imports for heavy dependencies
|
|
9
|
+
* [#3604](https://github.com/datagrok-ai/public/issues/3604): Migrated function tags to roles
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Gap symbol connections now correctly restore for complex and multi-connection cases
|
|
14
|
+
* Async renderer no longer causes infinite queues
|
|
15
|
+
|
|
3
16
|
## 2.13.1 (2025-10-31)
|
|
4
17
|
|
|
5
18
|
Polifill for 1.25
|
package/CLAUDE.md
CHANGED
|
@@ -1,24 +1,11 @@
|
|
|
1
1
|
# CLAUDE.md
|
|
2
2
|
|
|
3
|
-
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
-
|
|
5
3
|
## Overview
|
|
6
4
|
|
|
7
5
|
**Helm** (`@datagrok/helm`) is a Datagrok plugin providing full support for **HELM notation** (Hierarchical Editing Language for Macromolecules) — importing, detecting, rendering, editing, and conversion. It wraps the Pistoia HELM Web Editor and Scilligence JSDraw2 libraries, integrating them into the Datagrok platform with custom cell renderers, input widgets, and monomer library management.
|
|
8
6
|
|
|
9
7
|
Category: **Bioinformatics**.
|
|
10
8
|
|
|
11
|
-
## Build Commands
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm install
|
|
15
|
-
npm run build # grok api && grok check --soft && webpack
|
|
16
|
-
npm run test # grok test
|
|
17
|
-
npm run lint # eslint src --ext .ts
|
|
18
|
-
npm run lint-fix
|
|
19
|
-
npm run build-all # Builds chem-meta → js-api → utils → bio → this package
|
|
20
|
-
```
|
|
21
|
-
|
|
22
9
|
## Architecture
|
|
23
10
|
|
|
24
11
|
### Entry Point — `src/package.ts`
|