diff --git a/README.md b/README.md index 0bdff19ce9f64b9db67697e745058ce02ba744bf..888aafbe96f2f40f68004d110642eaf7de32a811 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,12 @@ The core of Mol* currently consists of these modules: - `mol-model-props` Common "custom properties". - `mol-script` A scriting language for creating representations/scenes and querying (includes the [MolQL query language](https://molql.github.io)). - `mol-geo` Creating molecular geometries. +- `mol-theme` Molecular representation themeing. - `mol-gl` A lightweight wrapper around WebGL. - `mol-canvas3d` A low level 3d view component. Uses `mol-geo` to generate geometries. - `mol-state` State representation tree with state saving and automatic updates. - `mol-app` Components for builduing UIs. -- `mol-plugin` Allow to define modular Mol* plugin instances utilizing `mol-state` and `mol-view3d`. +- `mol-plugin` Allow to define modular Mol* plugin instances utilizing `mol-state` and `mol-canvas3d`. - `mol-util` Useful things that do not fit elsewhere. Moreover, the project contains the imlementation of `servers`, including diff --git a/package-lock.json b/package-lock.json index 596fcefa41febf4ecacef942924c05aad728eb45..a6e919d8410914b5d76a52a8e4ad3b668941885d 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index 0c3471a7d920668ea3d7e7ff4270f7e9dd06602d..c3d686a95f3b090aab06a8db8d32c98b2cb37e2f 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "mol-app($|/.*)": "<rootDir>/src/mol-app$1", "mol-data($|/.*)": "<rootDir>/src/mol-data$1", "mol-geo($|/.*)": "<rootDir>/src/mol-geo$1", + "mol-theme($|/.*)": "<rootDir>/src/mol-theme$1", "mol-gl($|/.*)": "<rootDir>/src/mol-gl$1", "mol-io($|/.*)": "<rootDir>/src/mol-io$1", "mol-math($|/.*)": "<rootDir>/src/mol-math$1", diff --git a/tsconfig.json b/tsconfig.json index 7b896a74eaf963fef9b0a06b79771c41cc101c97..e82eb6af14db2e816708e40e12621ac9d93074dd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,7 @@ "mol-app": ["./mol-app"], "mol-data": ["./mol-data", "./mol-data/index.ts"], "mol-geo": ["./mol-geo"], + "mol-theme": ["./mol-theme"], "mol-gl": ["./mol-gl"], "mol-io": ["./mol-io"], "mol-math": ["./mol-math"],