Releases: matthewp/corset
Releases · matthewp/corset
v1.0.2
v1.0.1
v1.0.0
v0.9.3
Patch Changes
-
fb1a0cf: Adds
createStore
to the function contextThis is a new function
creatStore(): Store
, provided to functions, that allow them to create new stores that are scoped to the sheet they are called within.This is meant to allow custom functions to asynchronously change values and have that reflect in bindings.
v0.9.2
v0.9.1
v0.9.0
Minor Changes
-
b91646e: Adds support for Stores
This change adds a new feature "stores". A store is a Map that can be created in any scope within a sheet. The Map will be shared within JS inside of a behavior. It can be passed to child behaviors (through inputProperties) and when a child behavior modifies it, it will rebind() the parent behavior as well.