@wcstack/state 1.29.0 → 1.30.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.
- package/dist/auto.min.js +1 -1
- package/dist/auto.min.js.map +1 -1
- package/dist/index.esm.js +7 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/parser.d.ts +1 -1
- package/dist/parser.esm.js +6 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -8148,7 +8148,7 @@ async function buildBindings(root) {
|
|
|
8148
8148
|
}
|
|
8149
8149
|
}
|
|
8150
8150
|
|
|
8151
|
-
var version = "1.
|
|
8151
|
+
var version = "1.30.0";
|
|
8152
8152
|
var pkg = {
|
|
8153
8153
|
version: version};
|
|
8154
8154
|
|
|
@@ -9470,6 +9470,12 @@ function createStateElementSummary(element) {
|
|
|
9470
9470
|
// protocol v1 追補(additive)— 配線カバレッジの宣言面(設計 §4)。
|
|
9471
9471
|
// 旧 IStateElement 実装(optional)では undefined になりうるため null に畳む。
|
|
9472
9472
|
watchPaths: element.watchPaths ?? null,
|
|
9473
|
+
// ワイルドカード行 watch の発火前提「for バインド or $listKeys 宣言」の後者。
|
|
9474
|
+
// ListKeyMap のキー(リストパス)だけを出す — キー指定(文字列/関数)は
|
|
9475
|
+
// カバレッジ判定に不要で、関数はシリアライズ境界にも載せない。
|
|
9476
|
+
keyedListPaths: element.listKeys === undefined || element.listKeys === null
|
|
9477
|
+
? null
|
|
9478
|
+
: new Set(element.listKeys.keys()),
|
|
9473
9479
|
};
|
|
9474
9480
|
}
|
|
9475
9481
|
function requireStateElement(name, rootNode) {
|