Skip to content

Commit 60031e0

Browse files
authored
Merge pull request #1731 from shentao/next-release-3.0.0-beta.3
build: 3.0.0-beta.3
2 parents 2f6d30f + 6bbf878 commit 60031e0

12 files changed

+172
-185
lines changed

dist/vue-multiselect.common.js

+42-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multiselect.common.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multiselect.esm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ var multiselectMixin = {
685685
this.isOpen = false;
686686
/* istanbul ignore else */
687687
if (this.searchable) {
688-
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
688+
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
689689
} else {
690690
if (typeof this.$el !== 'undefined') this.$el.blur();
691691
}
@@ -1196,7 +1196,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
11961196
id: _ctx.id,
11971197
type: "text",
11981198
autocomplete: "off",
1199-
spellcheck: "false",
1199+
spellcheck: false,
12001200
placeholder: _ctx.placeholder,
12011201
style: $options.inputStyle,
12021202
value: _ctx.search,

dist/vue-multiselect.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ var VueMultiselect = (function (exports, vue) {
686686
this.isOpen = false;
687687
/* istanbul ignore else */
688688
if (this.searchable) {
689-
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
689+
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
690690
} else {
691691
if (typeof this.$el !== 'undefined') this.$el.blur();
692692
}
@@ -1197,7 +1197,7 @@ var VueMultiselect = (function (exports, vue) {
11971197
id: _ctx.id,
11981198
type: "text",
11991199
autocomplete: "off",
1200-
spellcheck: "false",
1200+
spellcheck: false,
12011201
placeholder: _ctx.placeholder,
12021202
style: $options.inputStyle,
12031203
value: _ctx.search,

dist/vue-multiselect.ssr.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ var multiselectMixin = {
689689
this.isOpen = false;
690690
/* istanbul ignore else */
691691
if (this.searchable) {
692-
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
692+
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
693693
} else {
694694
if (typeof this.$el !== 'undefined') this.$el.blur();
695695
}
@@ -1200,7 +1200,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
12001200
id: _ctx.id,
12011201
type: "text",
12021202
autocomplete: "off",
1203-
spellcheck: "false",
1203+
spellcheck: false,
12041204
placeholder: _ctx.placeholder,
12051205
style: $options.inputStyle,
12061206
value: _ctx.search,

dist/vue-multiselect.umd.js

+42-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multiselect.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multiselect.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multiselect.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)