@dereekb/dbx-core 8.12.10 → 8.12.13

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.
@@ -173,6 +173,12 @@ class DbxActionContextStoreSourceInstance {
173
173
  trigger() {
174
174
  this.useStore((x) => x.trigger());
175
175
  }
176
+ triggerWithValue(value) {
177
+ this.useStore((x) => {
178
+ x.trigger();
179
+ x.readyValue(value);
180
+ });
181
+ }
176
182
  readyValue(value) {
177
183
  this.useStore((x) => x.readyValue(value));
178
184
  }