@design.estate/dees-domtools 2.0.43 → 2.0.45

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.
@@ -14785,7 +14785,7 @@ var SmartRouter = class {
14785
14785
  }
14786
14786
  };
14787
14787
 
14788
- // node_modules/.pnpm/@push.rocks+smartstate@2.0.10/node_modules/@push.rocks/smartstate/dist_ts/index.js
14788
+ // node_modules/.pnpm/@push.rocks+smartstate@2.0.12/node_modules/@push.rocks/smartstate/dist_ts/index.js
14789
14789
  var dist_ts_exports19 = {};
14790
14790
  __export(dist_ts_exports19, {
14791
14791
  Smartstate: () => Smartstate,
@@ -14955,7 +14955,7 @@ var sha256FromString = async (stringArg) => {
14955
14955
  }
14956
14956
  };
14957
14957
 
14958
- // node_modules/.pnpm/@push.rocks+smartstate@2.0.10/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.stateaction.js
14958
+ // node_modules/.pnpm/@push.rocks+smartstate@2.0.12/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.stateaction.js
14959
14959
  var StateAction = class {
14960
14960
  constructor(statePartRef, actionDef) {
14961
14961
  this.statePartRef = statePartRef;
@@ -14966,7 +14966,7 @@ var StateAction = class {
14966
14966
  }
14967
14967
  };
14968
14968
 
14969
- // node_modules/.pnpm/@push.rocks+smartstate@2.0.10/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.statepart.js
14969
+ // node_modules/.pnpm/@push.rocks+smartstate@2.0.12/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.statepart.js
14970
14970
  var StatePart = class {
14971
14971
  constructor(nameArg, webStoreOptions) {
14972
14972
  this.state = new dist_ts_exports4.rxjs.Subject();
@@ -15055,7 +15055,8 @@ var StatePart = class {
15055
15055
  async dispatchAction(stateAction, actionPayload) {
15056
15056
  await this.cumulativeDeferred.promise;
15057
15057
  const newState = await stateAction.actionDef(this, actionPayload);
15058
- this.setState(newState);
15058
+ await this.setState(newState);
15059
+ return this.getState();
15059
15060
  }
15060
15061
  /**
15061
15062
  * waits until a certain part of the state becomes available
@@ -15083,7 +15084,7 @@ var StatePart = class {
15083
15084
  }
15084
15085
  };
15085
15086
 
15086
- // node_modules/.pnpm/@push.rocks+smartstate@2.0.10/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.smartstate.js
15087
+ // node_modules/.pnpm/@push.rocks+smartstate@2.0.12/node_modules/@push.rocks/smartstate/dist_ts/smartstate.classes.smartstate.js
15087
15088
  var Smartstate = class {
15088
15089
  constructor() {
15089
15090
  this.statePartMap = {};