@wcstack/state 1.19.1 → 1.20.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.
@@ -868,6 +868,9 @@ const STATE_COMMAND_TOKENS_NAME = "$commandTokens";
868
868
  const STATE_COMMAND_NAMESPACE_NAME = "$command";
869
869
  const STATE_EVENT_TOKENS_NAME = "$eventTokens";
870
870
  const STATE_ON_NAME = "$on";
871
+ const STATE_STREAMS_NAME = "$streams";
872
+ const STATE_STREAM_STATUS_NAMESPACE_NAME = "$streamStatus";
873
+ const STATE_STREAM_ERROR_NAMESPACE_NAME = "$streamError";
871
874
 
872
875
  /**
873
876
  * manifest.ts — `<wcs-state>` の構文・フィルタ・予約名を機械可読な単一正本として公開する。
@@ -918,6 +921,9 @@ function getWcsManifest() {
918
921
  STATE_COMMAND_NAMESPACE_NAME,
919
922
  STATE_EVENT_TOKENS_NAME,
920
923
  STATE_ON_NAME,
924
+ STATE_STREAMS_NAME,
925
+ STATE_STREAM_STATUS_NAMESPACE_NAME,
926
+ STATE_STREAM_ERROR_NAMESPACE_NAME,
921
927
  ],
922
928
  };
923
929
  }
@@ -528,6 +528,9 @@
528
528
  "$commandTokens",
529
529
  "$command",
530
530
  "$eventTokens",
531
- "$on"
531
+ "$on",
532
+ "$streams",
533
+ "$streamStatus",
534
+ "$streamError"
532
535
  ]
533
536
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/state",
3
- "version": "1.19.1",
3
+ "version": "1.20.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",