@complat/chemotion-converter-client 0.14.0 → 0.16.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.
Files changed (71) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/README.md +4 -3
  3. package/dist/bundle.js +1 -1
  4. package/dist/bundle.js.LICENSE.txt +18 -13
  5. package/package.json +35 -24
  6. package/public/admin/index.css +133 -134
  7. package/public/admin/index.js +1 -1
  8. package/public/admin/index.js.LICENSE.txt +29 -0
  9. package/public/index.css +133 -134
  10. package/public/index.js +1 -1
  11. package/src/html/admin/index.html +18 -0
  12. package/src/html/index.html +18 -0
  13. package/src/js/admin.js +10 -0
  14. package/src/js/api/ConverterApi.js +246 -0
  15. package/src/js/bundle.js +2 -0
  16. package/src/js/components/App.js +106 -0
  17. package/src/js/components/admin/AdminApp.js +500 -0
  18. package/src/js/components/admin/AppContext.js +156 -0
  19. package/src/js/components/admin/form/HeaderPresenter.js +372 -0
  20. package/src/js/components/admin/form/IdentifierForm.js +61 -0
  21. package/src/js/components/admin/form/IdentifierHeader.js +79 -0
  22. package/src/js/components/admin/form/IdentifierInput.js +366 -0
  23. package/src/js/components/admin/form/MetadataIdentifierForm.js +81 -0
  24. package/src/js/components/admin/form/ProfileForm.js +155 -0
  25. package/src/js/components/admin/form/common/DatasetCard.js +279 -0
  26. package/src/js/components/admin/form/common/HistoryChangeView.js +48 -0
  27. package/src/js/components/admin/form/common/InputTables.js +379 -0
  28. package/src/js/components/admin/form/common/OperatorSelect.js +23 -0
  29. package/src/js/components/admin/form/common/ProfileHistory.js +82 -0
  30. package/src/js/components/admin/form/common/TibFetchService.js +247 -0
  31. package/src/js/components/admin/form/common/TruncatedTextWithTooltip.js +43 -0
  32. package/src/js/components/admin/form/controllComponents/DataTables/CardContent.js +272 -0
  33. package/src/js/components/admin/form/controllComponents/DataTables/DataTables.js +114 -0
  34. package/src/js/components/admin/form/controllComponents/DataTables/LoopForm.js +300 -0
  35. package/src/js/components/admin/form/controllComponents/DataTables/TableColumn.js +298 -0
  36. package/src/js/components/admin/form/controllComponents/DataTables/TableForm.js +144 -0
  37. package/src/js/components/admin/form/controllComponents/DataTables/TableIdentifier.js +50 -0
  38. package/src/js/components/admin/form/controllComponents/FormNavigator.js +140 -0
  39. package/src/js/components/admin/form/controllComponents/Identifier.js +156 -0
  40. package/src/js/components/admin/form/controllComponents/Ontology.js +60 -0
  41. package/src/js/components/admin/form/controllComponents/ReactionVariations.js +267 -0
  42. package/src/js/components/admin/form/identifier/KeyInput.js +24 -0
  43. package/src/js/components/admin/form/identifier/KeySelect.js +75 -0
  44. package/src/js/components/admin/form/identifier/LineNumberInput.js +37 -0
  45. package/src/js/components/admin/form/identifier/MatchSelect.js +45 -0
  46. package/src/js/components/admin/form/identifier/OntologyPredicateSelect.js +84 -0
  47. package/src/js/components/admin/form/identifier/OntologySubjectPredicateSelect.js +117 -0
  48. package/src/js/components/admin/form/identifier/OntologySubjectSelect.js +197 -0
  49. package/src/js/components/admin/form/identifier/OntologyTermSelect.js +110 -0
  50. package/src/js/components/admin/form/identifier/OutputKeyInput.js +105 -0
  51. package/src/js/components/admin/form/identifier/OutputLayerInput.js +50 -0
  52. package/src/js/components/admin/form/identifier/OutputTableIndexSelect.js +38 -0
  53. package/src/js/components/admin/form/identifier/TypeSelect.js +25 -0
  54. package/src/js/components/admin/form/identifier/ValueInput.js +26 -0
  55. package/src/js/components/admin/form/table/ColumnInput.js +57 -0
  56. package/src/js/components/admin/form/table/ColumnSelect.js +45 -0
  57. package/src/js/components/admin/form/table/ExtendedHeaderInput.js +34 -0
  58. package/src/js/components/admin/form/table/HeaderInput.js +34 -0
  59. package/src/js/components/admin/list/ProfileList.js +51 -0
  60. package/src/js/components/admin/list/ProfileListItem.js +69 -0
  61. package/src/js/components/admin/upload/FileUploadForm.js +73 -0
  62. package/src/js/index.js +10 -0
  63. package/src/js/utils/identifierUtils.js +327 -0
  64. package/src/js/utils/modalWrapper.js +132 -0
  65. package/src/js/utils/profileUtils.js +121 -0
  66. package/src/scss/bundle.scss +40 -0
  67. package/src/scss/components/_admin.scss +56 -0
  68. package/src/scss/components/_layout.scss +20 -0
  69. package/src/scss/components/_pre.scss +36 -0
  70. package/src/scss/components/_table.scss +4 -0
  71. package/src/scss/style.scss +4 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,52 @@
1
+ ## [0.16.0](https://github.com/ComPlat/chemotion-converter-client/compare/v0.16.0...v0.15.0)
2
+ * feat:
3
+ * Ontologie selector by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/121
4
+ * Feat: Replace column header by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/135
5
+ * 149 introduce profile versioning and diff support by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/150
6
+ * Reaction variation autofill by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/152
7
+ * 155 make units for system defined inputs configurable in the converter by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/157
8
+ * Ontology api call by @herrdivad in https://github.com/ComPlat/chemotion-converter-client/pull/98
9
+ * Reintigrate into chemotion by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/156
10
+ * fixes:
11
+ * Fix select in eln by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/123
12
+ * 118 replace example file in profile by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/131
13
+ * moved DATA TYPE to creatableHeaderOptions by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/132
14
+ * 130 ontology object missing by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/134
15
+ * 138 replace data file check identifier by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/139
16
+ * fix: changed loop metadata select lookup to metadata by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/146
17
+ * fixed error handling and added profile exists check by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/147
18
+ * Fixed merge buf options by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/153
19
+ * 151 performance degradation with many output tables generated in loops by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/154
20
+ * refactor:
21
+ * Refactoring by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/129
22
+ * Replace admin Context with Zustand store to cut re-renders by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/159
23
+ * chore:
24
+ * Fixed Docu and .vmrc by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/126
25
+ * Bump postcss from 8.5.8 to 8.5.12 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/148
26
+ * Bump webpack-dev-server from 5.2.3 to 5.2.5 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/160
27
+ * Bump @babel/core from 7.29.0 to 7.29.6 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/161
28
+ * Bump shell-quote from 1.8.3 to 1.8.4 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/162
29
+ * Bump launch-editor from 2.12.0 to 2.14.1 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/163
30
+ * Bump serialize-javascript from 7.0.4 to 7.0.6 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/164
31
+ * Bump http-proxy-middleware from 2.0.9 to 2.0.10 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/165
32
+ * Bump @babel/plugin-transform-modules-systemjs from 7.29.0 to 7.29.7 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/166
33
+ * Bump fast-uri from 3.1.0 to 3.1.3 by @dependabot in https://github.com/ComPlat/chemotion-converter-client/pull/167
34
+
35
+
36
+ ## [0.15.0](https://github.com/ComPlat/chemotion-converter-client/compare/v0.15.0...v0.14.0)
37
+ * feat:
38
+ * Input Fields for Software and devices by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/116
39
+ * fixes:
40
+ * gui to slow if to many tables and add select for ntupels by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/103
41
+ * Configured AgGrid by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/114
42
+ * dropdown select default value by @headri in https://github.com/ComPlat/chemotion-converter-client/pull/110
43
+ * build:
44
+ * new devcontainer by @StarmanMartin in https://github.com/ComPlat/chemotion-converter-client/pull/112
45
+ * chore
46
+ * Bump node-forge from 1.3.1 to 1.3.2 by @dependabot[bot] in https://github.com/ComPlat/chemotion-converter-client/pull/109
47
+ * Bump lodash from 4.17.21 to 4.17.23 by @dependabot[bot] in https://github.com/ComPlat/chemotion-converter-client/pull/119
48
+
49
+
1
50
  ## [0.14.0](https://github.com/ComPlat/chemotion-converter-client/compare/v0.14.0...v0.13.0)
2
51
 
3
52
  * feat:
package/README.md CHANGED
@@ -16,14 +16,15 @@ After following the instructions in the installation script, `nvm` should be ava
16
16
 
17
17
  ```bash
18
18
  nvm install
19
- npm install
20
- npm run build
19
+ npm install -g yarn
20
+ yarn install
21
+ yarn build
21
22
  ```
22
23
 
23
24
  While developing, the `webpack-dev-server` can be used to update the application on-the-fly:
24
25
 
25
26
  ```bash
26
- npm run serve
27
+ yarn serve
27
28
  ```
28
29
 
29
30
  Production setup