@vue/shared 3.6.0-beta.16 → 3.6.0-beta.17
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/shared.cjs.js +3 -3
- package/dist/shared.cjs.prod.js +3 -3
- package/dist/shared.d.ts +6 -6
- package/dist/shared.esm-bundler.js +3 -3
- package/package.json +1 -1
package/dist/shared.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/shared v3.6.0-beta.
|
|
2
|
+
* @vue/shared v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -686,8 +686,8 @@ const VaporBlockShape = {
|
|
|
686
686
|
* - bits 0-1: true branch VaporBlockShape
|
|
687
687
|
* - bits 2-3: false branch VaporBlockShape
|
|
688
688
|
* - bit 4: v-once
|
|
689
|
-
* - bit 5: true branch
|
|
690
|
-
* - bit 6: false branch
|
|
689
|
+
* - bit 5: true branch is static and can skip branch-owned EffectScope
|
|
690
|
+
* - bit 6: false branch is static and can skip branch-owned EffectScope
|
|
691
691
|
* - bit 7: v-if sits on a slot content/fallback root chain
|
|
692
692
|
* - bits 8+: branch index + 1 for keyed dynamic fragments
|
|
693
693
|
*
|
package/dist/shared.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/shared v3.6.0-beta.
|
|
2
|
+
* @vue/shared v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -686,8 +686,8 @@ const VaporBlockShape = {
|
|
|
686
686
|
* - bits 0-1: true branch VaporBlockShape
|
|
687
687
|
* - bits 2-3: false branch VaporBlockShape
|
|
688
688
|
* - bit 4: v-once
|
|
689
|
-
* - bit 5: true branch
|
|
690
|
-
* - bit 6: false branch
|
|
689
|
+
* - bit 5: true branch is static and can skip branch-owned EffectScope
|
|
690
|
+
* - bit 6: false branch is static and can skip branch-owned EffectScope
|
|
691
691
|
* - bit 7: v-if sits on a slot content/fallback root chain
|
|
692
692
|
* - bits 8+: branch index + 1 for keyed dynamic fragments
|
|
693
693
|
*
|
package/dist/shared.d.ts
CHANGED
|
@@ -436,8 +436,8 @@ export declare enum VaporBlockShape {
|
|
|
436
436
|
* - bits 0-1: true branch VaporBlockShape
|
|
437
437
|
* - bits 2-3: false branch VaporBlockShape
|
|
438
438
|
* - bit 4: v-once
|
|
439
|
-
* - bit 5: true branch
|
|
440
|
-
* - bit 6: false branch
|
|
439
|
+
* - bit 5: true branch is static and can skip branch-owned EffectScope
|
|
440
|
+
* - bit 6: false branch is static and can skip branch-owned EffectScope
|
|
441
441
|
* - bit 7: v-if sits on a slot content/fallback root chain
|
|
442
442
|
* - bits 8+: branch index + 1 for keyed dynamic fragments
|
|
443
443
|
*
|
|
@@ -456,13 +456,13 @@ export declare enum VaporIfFlags {
|
|
|
456
456
|
*/
|
|
457
457
|
ONCE = 16,
|
|
458
458
|
/**
|
|
459
|
-
* The compiler proved that the true branch
|
|
460
|
-
*
|
|
459
|
+
* The compiler proved that the true branch only returns static template nodes,
|
|
460
|
+
* so runtime can skip creating a branch-owned EffectScope.
|
|
461
461
|
*/
|
|
462
462
|
TRUE_NO_SCOPE = 32,
|
|
463
463
|
/**
|
|
464
|
-
* The compiler proved that the false branch
|
|
465
|
-
*
|
|
464
|
+
* The compiler proved that the false branch only returns static template
|
|
465
|
+
* nodes, so runtime can skip creating a branch-owned EffectScope.
|
|
466
466
|
*/
|
|
467
467
|
FALSE_NO_SCOPE = 64,
|
|
468
468
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/shared v3.6.0-beta.
|
|
2
|
+
* @vue/shared v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -684,8 +684,8 @@ const VaporBlockShape = {
|
|
|
684
684
|
* - bits 0-1: true branch VaporBlockShape
|
|
685
685
|
* - bits 2-3: false branch VaporBlockShape
|
|
686
686
|
* - bit 4: v-once
|
|
687
|
-
* - bit 5: true branch
|
|
688
|
-
* - bit 6: false branch
|
|
687
|
+
* - bit 5: true branch is static and can skip branch-owned EffectScope
|
|
688
|
+
* - bit 6: false branch is static and can skip branch-owned EffectScope
|
|
689
689
|
* - bit 7: v-if sits on a slot content/fallback root chain
|
|
690
690
|
* - bits 8+: branch index + 1 for keyed dynamic fragments
|
|
691
691
|
*
|