Skip to content
Snippets Groups Projects
Commit 8dd6133a authored by David Sehnal's avatar David Sehnal
Browse files

added mol-theme module to config files

parent 0a00768a
No related branches found
No related tags found
No related merge requests found
...@@ -20,11 +20,12 @@ The core of Mol* currently consists of these modules: ...@@ -20,11 +20,12 @@ The core of Mol* currently consists of these modules:
- `mol-model-props` Common "custom properties". - `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-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-geo` Creating molecular geometries.
- `mol-theme` Molecular representation themeing.
- `mol-gl` A lightweight wrapper around WebGL. - `mol-gl` A lightweight wrapper around WebGL.
- `mol-canvas3d` A low level 3d view component. Uses `mol-geo` to generate geometries. - `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-state` State representation tree with state saving and automatic updates.
- `mol-app` Components for builduing UIs. - `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. - `mol-util` Useful things that do not fit elsewhere.
Moreover, the project contains the imlementation of `servers`, including Moreover, the project contains the imlementation of `servers`, including
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
"mol-app($|/.*)": "<rootDir>/src/mol-app$1", "mol-app($|/.*)": "<rootDir>/src/mol-app$1",
"mol-data($|/.*)": "<rootDir>/src/mol-data$1", "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
"mol-geo($|/.*)": "<rootDir>/src/mol-geo$1", "mol-geo($|/.*)": "<rootDir>/src/mol-geo$1",
"mol-theme($|/.*)": "<rootDir>/src/mol-theme$1",
"mol-gl($|/.*)": "<rootDir>/src/mol-gl$1", "mol-gl($|/.*)": "<rootDir>/src/mol-gl$1",
"mol-io($|/.*)": "<rootDir>/src/mol-io$1", "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
"mol-math($|/.*)": "<rootDir>/src/mol-math$1", "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
"mol-app": ["./mol-app"], "mol-app": ["./mol-app"],
"mol-data": ["./mol-data", "./mol-data/index.ts"], "mol-data": ["./mol-data", "./mol-data/index.ts"],
"mol-geo": ["./mol-geo"], "mol-geo": ["./mol-geo"],
"mol-theme": ["./mol-theme"],
"mol-gl": ["./mol-gl"], "mol-gl": ["./mol-gl"],
"mol-io": ["./mol-io"], "mol-io": ["./mol-io"],
"mol-math": ["./mol-math"], "mol-math": ["./mol-math"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment