chem-generic-ui 2.1.0-rc8 → 2.1.0
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 +65 -4
- package/README.md +2 -0
- package/dist/bundle.js +3 -3
- package/package.json +25 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,72 @@
|
|
|
1
1
|
# Chem-Generic-UI Changelog
|
|
2
2
|
|
|
3
3
|
## [2.1.0]
|
|
4
|
-
> 2025-03-04
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
### Features and Enhancements
|
|
6
|
+
- **Source Reference** feature for Generic Datasets.
|
|
7
|
+
- **Dynamic Layer Display Names** feature.
|
|
8
|
+
- **Group layers** feature: Layer grouping to manage multiple layers as a single unit.
|
|
9
|
+
- Set restriction values based on field type and assignment.
|
|
10
|
+
- New Restriction Settings UI.
|
|
11
|
+
- Default information feature in Generic Datasets.
|
|
12
|
+
- Enhanced saving validation for Generic Elements to consider field visibility.
|
|
13
|
+
- Default reference element information feature in Generic Datasets.
|
|
14
|
+
- Template submission support.
|
|
15
|
+
- Contextual information and identifiers for Generic Datasets.
|
|
16
|
+
- Support for linking Samples in Generic Segments.
|
|
17
|
+
- Resizable Work Area.
|
|
18
|
+
- SMILES as the default output in **Export table data** functionality when linked Samples exist.
|
|
19
|
+
- (UI) Dropdowns automatically flip direction based on available space.
|
|
20
|
+
- (UI) Updated unit button size to *small*.
|
|
21
|
+
- **Export table data** to XLSX format feature.
|
|
22
|
+
- Element associations in Generic Datasets.
|
|
23
|
+
- System Units: Pressure, Power, and Volume (Electrochemical and Material Science).
|
|
24
|
+
- Sample associations in Generic Datasets.
|
|
25
|
+
- Added links to textual descriptions.
|
|
26
|
+
- Extended Generic Element identifier to 10 characters.
|
|
27
|
+
- Improved color selection UI for layer attributes.
|
|
28
|
+
- Sorted element association lists for better usability.
|
|
29
|
+
- Edit Mode for data exchange.
|
|
30
|
+
- Added controls to support the MoleculeArchive platform.
|
|
31
|
+
- Version information summary.
|
|
32
|
+
- Column reordering via UI in Designer table fields.
|
|
33
|
+
- (UI) Added search icon to **Quick Filter**.
|
|
34
|
+
- (UI) Moved **Quick Filter** to the top of the page.
|
|
35
|
+
- Display template version information in the MyDB view.
|
|
36
|
+
- Introduced components with built-in unit conversion utilities for developers.
|
|
37
|
+
- Improved layer collapse/expand button style.
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
- Fixed an issue with validation of element for required fields with visibility.
|
|
41
|
+
- Fixed an issue where adding a Reaction to a Generic Segment failed after the UI refactor.
|
|
42
|
+
- Fixed layer styles being overridden by external styles.
|
|
43
|
+
- Fixed `useDnD` not being recognized.
|
|
44
|
+
- Fixed creation issue (database ancestry changes) caused by library upgrade.
|
|
45
|
+
- Fixed default values not applying correctly for Multiple Selection fields in the Designer.
|
|
46
|
+
- Fixed the text-formula field not working in the Designer.
|
|
47
|
+
- Fixed intermittent disappearance of the scrollbar on the Designer page.
|
|
48
|
+
- Fixed datetime field styles being overridden by external wrappers.
|
|
49
|
+
- Fixed **Quick Filter** reset not working.
|
|
50
|
+
- Fixed input losing focus after entering one character in Designer select fields.
|
|
51
|
+
- Fixed incorrect ordering numbers on version list.
|
|
52
|
+
|
|
53
|
+
### Chores
|
|
54
|
+
- Refined placeholder text color.
|
|
55
|
+
- Renamed:
|
|
56
|
+
- Drag Element → Link Element
|
|
57
|
+
- Drag Molecule → Link Molecule
|
|
58
|
+
- Drag Sample → Link Sample
|
|
59
|
+
- Refactored button implementation by introducing a shared tooltip button component.
|
|
60
|
+
- Refactored the revision modal.
|
|
61
|
+
- Added index for efficient querying.
|
|
62
|
+
- Added safer parsing when converting text to links.
|
|
63
|
+
- Removed unused properties, styles and components.
|
|
64
|
+
- Removed custom datepicker styles due to a library upgrade.
|
|
65
|
+
- Migrated utility functions to `pureUtils` for better organization.
|
|
66
|
+
- Node.js version upgrade.
|
|
67
|
+
- Dependency upgrades and test coverage improvements.
|
|
68
|
+
|
|
69
|
+
|
|
9
70
|
|
|
10
71
|
## [2.0.0]
|
|
11
72
|
> 2025-03-25
|
package/README.md
CHANGED
|
@@ -21,6 +21,8 @@ This library is purely written in JavaScript and is based on the [React](https:/
|
|
|
21
21
|
- Segment Details: [Table-Based layout, for multiple records with drag-and-drop functionality inside tables](https://www.chemotion.net/docs/labimotion/user/segments/details)
|
|
22
22
|
- Dataset Details: [Styling and unit conversion](https://www.chemotion.net/docs/labimotion/user/datasets/details)
|
|
23
23
|
|
|
24
|
+
- Layer grouping to manage multiple layers
|
|
25
|
+
|
|
24
26
|
## Installation
|
|
25
27
|
|
|
26
28
|
The chem-generic-ui library is available as an NPM package. Install it either with NPM:
|