Releases: datavis-tech/topologica
Releases · datavis-tech/topologica
README Overhaul & Smaller Build
Chainable set
This release modifies set
to returned the instance, so that you can chain set
calls. This is useful for constructing and setting the initial values of a Topologica instance in a single statement.
Before:
const state = Topologica({ circlesDOM });
state.set({ selection });
return state;
After:
return Topologica({ circlesDOM }).set({ selection });
PR: Chainable set #35
Optimize & Simplify
Dependencies as String
Accept String as Dependencies #24
This improves developer experience while using the library, as you can now copy-paste easily between the arguments and the list of dependencies.
Lean Overhaul
Async Functions
New feature: support for async functions!
PR: Add support for async functions #13