@vue/shared 3.3.7 → 3.3.9

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.
@@ -112,7 +112,7 @@ const PatchFlagNames = {
112
112
  [4]: `STYLE`,
113
113
  [8]: `PROPS`,
114
114
  [16]: `FULL_PROPS`,
115
- [32]: `HYDRATE_EVENTS`,
115
+ [32]: `NEED_HYDRATION`,
116
116
  [64]: `STABLE_FRAGMENT`,
117
117
  [128]: `KEYED_FRAGMENT`,
118
118
  [256]: `UNKEYED_FRAGMENT`,
@@ -112,7 +112,7 @@ const PatchFlagNames = {
112
112
  [4]: `STYLE`,
113
113
  [8]: `PROPS`,
114
114
  [16]: `FULL_PROPS`,
115
- [32]: `HYDRATE_EVENTS`,
115
+ [32]: `NEED_HYDRATION`,
116
116
  [64]: `STABLE_FRAGMENT`,
117
117
  [128]: `KEYED_FRAGMENT`,
118
118
  [256]: `UNKEYED_FRAGMENT`,
package/dist/shared.d.ts CHANGED
@@ -129,10 +129,11 @@ export declare const enum PatchFlags {
129
129
  */
130
130
  FULL_PROPS = 16,
131
131
  /**
132
- * Indicates an element with event listeners (which need to be attached
133
- * during hydration)
132
+ * Indicates an element that requires props hydration
133
+ * (but not necessarily patching)
134
+ * e.g. event listeners & v-bind with prop modifier
134
135
  */
135
- HYDRATE_EVENTS = 32,
136
+ NEED_HYDRATION = 32,
136
137
  /**
137
138
  * Indicates a fragment whose children order doesn't change.
138
139
  */
@@ -108,7 +108,7 @@ const PatchFlagNames = {
108
108
  [4]: `STYLE`,
109
109
  [8]: `PROPS`,
110
110
  [16]: `FULL_PROPS`,
111
- [32]: `HYDRATE_EVENTS`,
111
+ [32]: `NEED_HYDRATION`,
112
112
  [64]: `STABLE_FRAGMENT`,
113
113
  [128]: `KEYED_FRAGMENT`,
114
114
  [256]: `UNKEYED_FRAGMENT`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/shared",
3
- "version": "3.3.7",
3
+ "version": "3.3.9",
4
4
  "description": "internal utils shared across @vue packages",
5
5
  "main": "index.js",
6
6
  "module": "dist/shared.esm-bundler.js",