@wcstack/state 1.32.0 → 1.33.0

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.
@@ -1381,6 +1381,7 @@ function parseStatePart(statePart) {
1381
1381
  else {
1382
1382
  stateAndPath = statePart.trim();
1383
1383
  }
1384
+ if (stateAndPath.indexOf(STATE_NAME_SEPARATOR) !== -1) ;
1384
1385
  const [statePathName, stateName = 'default'] = stateAndPath.split(STATE_NAME_SEPARATOR).map(trimFn);
1385
1386
  const pathInfo = getPathInfo(statePathName);
1386
1387
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/state",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Reactive state management with declarative data binding for Web Components. Zero dependencies, buildless.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",