chem-generic-ui 2.3.0-rc8 → 2.4.0-beta.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.
- package/CHANGELOG.md +9 -0
- package/README.md +2 -4
- package/dist/chem-generic-ui.cjs.js +13 -13
- package/dist/chem-generic-ui.cjs.js.map +1 -1
- package/dist/chem-generic-ui.es.js +12146 -11268
- package/dist/chem-generic-ui.es.js.map +1 -1
- package/package.json +2 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Chem-Generic-UI Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
### Features and Enhancements
|
|
6
|
+
- **Template settings** for Designers — enable/disable the common layer-header functions (record time, add reaction, add/remove layer) per template via the gear icon in the grid's Template column; each switch saves immediately and applies to every version of the template. Saved segments honor the settings through the flat `settings` field serialized by the gem. Requires labimotion with the klass `settings` column and its host ELN twin migration `add_settings_to_klasses`. ([#904](https://github.com/LabIMotion/chem-generic-ui/issues/904))
|
|
7
|
+
- Support linking **Cell Line** elements in the **Link Element** field — cell lines can be dragged onto, and searched for in, generic Link Element fields (`CELL_LINE` enabled in the permit-target whitelist). ([#906](https://github.com/LabIMotion/chem-generic-ui/issues/906))
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- Fixed `searchTargets` leaking `generic_grid` into the Link Element drag-and-drop accept list (used a non-existent `PERMIT_TARGET.GRID` key instead of `GENERIC_GRID`). ([#923](https://github.com/LabIMotion/chem-generic-ui/issues/923))
|
|
11
|
+
|
|
3
12
|
## [2.3.0]
|
|
4
13
|
|
|
5
14
|
### Breaking Changes
|
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/chem-generic-ui)
|
|
4
4
|
[](https://doi.org/10.5281/zenodo.8305319)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
A React component for dynamically building user interfaces.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
This library is purely written in JavaScript and is based on the [React](https://reactjs.org/) library.
|
|
9
9
|
|
|
10
10
|
## Project Showcase
|
|
11
11
|
|
|
@@ -13,8 +13,6 @@ It is used in the Chemotion LabIMotion ecosystem for constructing structured dat
|
|
|
13
13
|
|
|
14
14
|
<img src="https://labimotion.github.io/assets/images/labimotion_logo.png" alt="LabIMotion Logo" width="300" />
|
|
15
15
|
|
|
16
|
-
A scientific data management application built using chem-generic-ui.
|
|
17
|
-
|
|
18
16
|
#### Flexible Layout Designs
|
|
19
17
|
|
|
20
18
|
- [Rich UI Components](https://www.chemotion.net/docs/labimotion/designer/components/fields/types)
|