Skip to content

Commit

Permalink
chore: publish 1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiller1990 committed Jun 5, 2023
1 parent 6b73d4b commit a989458
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 63 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -5,5 +5,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.3.5"
"version": "1.3.6"
}
23 changes: 11 additions & 12 deletions packages/server-test-utils/dist/vue-server-test-utils.js
Expand Up @@ -13507,16 +13507,8 @@ function getScopedSlotRenderFunctions(ctx) {
// In Vue 2.6+ a new v-slot syntax was introduced
// scopedSlots are now saved in parent._vnode.data.scopedSlots
// We filter out _normalized, $stable and $key keys
if (
ctx &&
ctx.$options &&
ctx.$options.parent &&
ctx.$options.parent._vnode &&
ctx.$options.parent._vnode.data &&
ctx.$options.parent._vnode.data.scopedSlots
) {
var slotKeys = ctx.$options.parent._vnode.data.scopedSlots;
return keys$1(slotKeys).filter(
if (ctx.$vnode.data.scopedSlots) {
return keys$1(ctx.$vnode.data.scopedSlots).filter(
function (x) { return x !== '_normalized' && x !== '$stable' && x !== '$key'; }
)
}
Expand Down Expand Up @@ -13555,8 +13547,15 @@ function createStubFromComponent(
context
? context.children
: this.$options._renderChildren ||
getScopedSlotRenderFunctions(this).map(function (x) { return this$1.$options.parent._vnode.data.scopedSlots[x]({}); }
)
getScopedSlotRenderFunctions(this)
.map(function (x) {
var result = null;
try {
result = this$1.$vnode.data.scopedSlots[x]({});
} catch (e) {}
return result
})
.filter(Boolean)
)
}})
}
Expand Down
2 changes: 1 addition & 1 deletion packages/server-test-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/server-test-utils",
"version": "1.3.5",
"version": "1.3.6",
"description": "Utilities for testing Vue components.",
"main": "dist/vue-server-test-utils.js",
"types": "types/index.d.ts",
Expand Down
23 changes: 11 additions & 12 deletions packages/test-utils/dist/vue-test-utils.esm.js
Expand Up @@ -2295,16 +2295,8 @@ function getScopedSlotRenderFunctions(ctx) {
// In Vue 2.6+ a new v-slot syntax was introduced
// scopedSlots are now saved in parent._vnode.data.scopedSlots
// We filter out _normalized, $stable and $key keys
if (
ctx &&
ctx.$options &&
ctx.$options.parent &&
ctx.$options.parent._vnode &&
ctx.$options.parent._vnode.data &&
ctx.$options.parent._vnode.data.scopedSlots
) {
var slotKeys = ctx.$options.parent._vnode.data.scopedSlots;
return keys(slotKeys).filter(
if (ctx.$vnode.data.scopedSlots) {
return keys(ctx.$vnode.data.scopedSlots).filter(
function (x) { return x !== '_normalized' && x !== '$stable' && x !== '$key'; }
)
}
Expand Down Expand Up @@ -2343,8 +2335,15 @@ function createStubFromComponent(
context
? context.children
: this.$options._renderChildren ||
getScopedSlotRenderFunctions(this).map(function (x) { return this$1.$options.parent._vnode.data.scopedSlots[x]({}); }
)
getScopedSlotRenderFunctions(this)
.map(function (x) {
var result = null;
try {
result = this$1.$vnode.data.scopedSlots[x]({});
} catch (e) {}
return result
})
.filter(Boolean)
)
}})
}
Expand Down
23 changes: 11 additions & 12 deletions packages/test-utils/dist/vue-test-utils.iife.js
Expand Up @@ -2299,16 +2299,8 @@ var VueTestUtils = (function (exports, Vue, vueTemplateCompiler) {
// In Vue 2.6+ a new v-slot syntax was introduced
// scopedSlots are now saved in parent._vnode.data.scopedSlots
// We filter out _normalized, $stable and $key keys
if (
ctx &&
ctx.$options &&
ctx.$options.parent &&
ctx.$options.parent._vnode &&
ctx.$options.parent._vnode.data &&
ctx.$options.parent._vnode.data.scopedSlots
) {
var slotKeys = ctx.$options.parent._vnode.data.scopedSlots;
return keys(slotKeys).filter(
if (ctx.$vnode.data.scopedSlots) {
return keys(ctx.$vnode.data.scopedSlots).filter(
function (x) { return x !== '_normalized' && x !== '$stable' && x !== '$key'; }
)
}
Expand Down Expand Up @@ -2347,8 +2339,15 @@ var VueTestUtils = (function (exports, Vue, vueTemplateCompiler) {
context
? context.children
: this.$options._renderChildren ||
getScopedSlotRenderFunctions(this).map(function (x) { return this$1.$options.parent._vnode.data.scopedSlots[x]({}); }
)
getScopedSlotRenderFunctions(this)
.map(function (x) {
var result = null;
try {
result = this$1.$vnode.data.scopedSlots[x]({});
} catch (e) {}
return result
})
.filter(Boolean)
)
}})
}
Expand Down
23 changes: 11 additions & 12 deletions packages/test-utils/dist/vue-test-utils.js
Expand Up @@ -2303,16 +2303,8 @@ function getScopedSlotRenderFunctions(ctx) {
// In Vue 2.6+ a new v-slot syntax was introduced
// scopedSlots are now saved in parent._vnode.data.scopedSlots
// We filter out _normalized, $stable and $key keys
if (
ctx &&
ctx.$options &&
ctx.$options.parent &&
ctx.$options.parent._vnode &&
ctx.$options.parent._vnode.data &&
ctx.$options.parent._vnode.data.scopedSlots
) {
var slotKeys = ctx.$options.parent._vnode.data.scopedSlots;
return keys(slotKeys).filter(
if (ctx.$vnode.data.scopedSlots) {
return keys(ctx.$vnode.data.scopedSlots).filter(
function (x) { return x !== '_normalized' && x !== '$stable' && x !== '$key'; }
)
}
Expand Down Expand Up @@ -2351,8 +2343,15 @@ function createStubFromComponent(
context
? context.children
: this.$options._renderChildren ||
getScopedSlotRenderFunctions(this).map(function (x) { return this$1.$options.parent._vnode.data.scopedSlots[x]({}); }
)
getScopedSlotRenderFunctions(this)
.map(function (x) {
var result = null;
try {
result = this$1.$vnode.data.scopedSlots[x]({});
} catch (e) {}
return result
})
.filter(Boolean)
)
}})
}
Expand Down
23 changes: 11 additions & 12 deletions packages/test-utils/dist/vue-test-utils.umd.js
Expand Up @@ -2302,16 +2302,8 @@
// In Vue 2.6+ a new v-slot syntax was introduced
// scopedSlots are now saved in parent._vnode.data.scopedSlots
// We filter out _normalized, $stable and $key keys
if (
ctx &&
ctx.$options &&
ctx.$options.parent &&
ctx.$options.parent._vnode &&
ctx.$options.parent._vnode.data &&
ctx.$options.parent._vnode.data.scopedSlots
) {
var slotKeys = ctx.$options.parent._vnode.data.scopedSlots;
return keys(slotKeys).filter(
if (ctx.$vnode.data.scopedSlots) {
return keys(ctx.$vnode.data.scopedSlots).filter(
function (x) { return x !== '_normalized' && x !== '$stable' && x !== '$key'; }
)
}
Expand Down Expand Up @@ -2350,8 +2342,15 @@
context
? context.children
: this.$options._renderChildren ||
getScopedSlotRenderFunctions(this).map(function (x) { return this$1.$options.parent._vnode.data.scopedSlots[x]({}); }
)
getScopedSlotRenderFunctions(this)
.map(function (x) {
var result = null;
try {
result = this$1.$vnode.data.scopedSlots[x]({});
} catch (e) {}
return result
})
.filter(Boolean)
)
}})
}
Expand Down
2 changes: 1 addition & 1 deletion packages/test-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/test-utils",
"version": "1.3.5",
"version": "1.3.6",
"description": "Utilities for testing Vue components.",
"main": "dist/vue-test-utils.js",
"module": "dist/vue-test-utils.esm.js",
Expand Down

0 comments on commit a989458

Please sign in to comment.