@vue/compiler-ssr 3.2.22 → 3.2.26

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.
@@ -689,7 +689,7 @@ function isTrueFalseValue(prop) {
689
689
  function isTextareaWithValue(node, prop) {
690
690
  return !!(node.tag === 'textarea' &&
691
691
  prop.name === 'bind' &&
692
- compilerDom.isBindKey(prop.arg, 'value'));
692
+ compilerDom.isStaticArgOf(prop.arg, 'value'));
693
693
  }
694
694
  function mergeCall(call, arg) {
695
695
  const existing = call.arguments[0];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-ssr",
3
- "version": "3.2.22",
3
+ "version": "3.2.26",
4
4
  "description": "@vue/compiler-ssr",
5
5
  "main": "dist/compiler-ssr.cjs.js",
6
6
  "types": "dist/compiler-ssr.d.ts",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-ssr#readme",
30
30
  "dependencies": {
31
- "@vue/shared": "3.2.22",
32
- "@vue/compiler-dom": "3.2.22"
31
+ "@vue/shared": "3.2.26",
32
+ "@vue/compiler-dom": "3.2.26"
33
33
  }
34
34
  }