@vue/shared
Advanced tools
| /** | ||
| * @vue/shared v3.6.0-beta.16 | ||
| * @vue/shared v3.6.0-beta.17 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -689,4 +689,4 @@ * @license MIT | ||
| * - bit 4: v-once | ||
| * - bit 5: true branch does not need EffectScope | ||
| * - bit 6: false branch does not need EffectScope | ||
| * - bit 5: true branch is static and can skip branch-owned EffectScope | ||
| * - bit 6: false branch is static and can skip branch-owned EffectScope | ||
| * - bit 7: v-if sits on a slot content/fallback root chain | ||
@@ -693,0 +693,0 @@ * - bits 8+: branch index + 1 for keyed dynamic fragments |
| /** | ||
| * @vue/shared v3.6.0-beta.16 | ||
| * @vue/shared v3.6.0-beta.17 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -689,4 +689,4 @@ * @license MIT | ||
| * - bit 4: v-once | ||
| * - bit 5: true branch does not need EffectScope | ||
| * - bit 6: false branch does not need EffectScope | ||
| * - bit 5: true branch is static and can skip branch-owned EffectScope | ||
| * - bit 6: false branch is static and can skip branch-owned EffectScope | ||
| * - bit 7: v-if sits on a slot content/fallback root chain | ||
@@ -693,0 +693,0 @@ * - bits 8+: branch index + 1 for keyed dynamic fragments |
+6
-6
@@ -439,4 +439,4 @@ //#region temp/packages/shared/src/makeMap.d.ts | ||
| * - bit 4: v-once | ||
| * - bit 5: true branch does not need EffectScope | ||
| * - bit 6: false branch does not need EffectScope | ||
| * - bit 5: true branch is static and can skip branch-owned EffectScope | ||
| * - bit 6: false branch is static and can skip branch-owned EffectScope | ||
| * - bit 7: v-if sits on a slot content/fallback root chain | ||
@@ -460,9 +460,9 @@ * - bits 8+: branch index + 1 for keyed dynamic fragments | ||
| /** | ||
| * The compiler proved that the true branch does not create branch-owned | ||
| * effects or disposers. | ||
| * The compiler proved that the true branch only returns static template nodes, | ||
| * so runtime can skip creating a branch-owned EffectScope. | ||
| */ | ||
| TRUE_NO_SCOPE = 32, | ||
| /** | ||
| * The compiler proved that the false branch does not create branch-owned | ||
| * effects or disposers. | ||
| * The compiler proved that the false branch only returns static template | ||
| * nodes, so runtime can skip creating a branch-owned EffectScope. | ||
| */ | ||
@@ -469,0 +469,0 @@ FALSE_NO_SCOPE = 64, |
| /** | ||
| * @vue/shared v3.6.0-beta.16 | ||
| * @vue/shared v3.6.0-beta.17 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -687,4 +687,4 @@ * @license MIT | ||
| * - bit 4: v-once | ||
| * - bit 5: true branch does not need EffectScope | ||
| * - bit 6: false branch does not need EffectScope | ||
| * - bit 5: true branch is static and can skip branch-owned EffectScope | ||
| * - bit 6: false branch is static and can skip branch-owned EffectScope | ||
| * - bit 7: v-if sits on a slot content/fallback root chain | ||
@@ -691,0 +691,0 @@ * - bits 8+: branch index + 1 for keyed dynamic fragments |
+1
-1
| { | ||
| "name": "@vue/shared", | ||
| "version": "3.6.0-beta.16", | ||
| "version": "3.6.0-beta.17", | ||
| "description": "internal utils shared across @vue packages", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
118556
0.22%