Skip to content

Commit

Permalink
Merge pull request #1731 from shentao/next-release-3.0.0-beta.3
Browse files Browse the repository at this point in the history
build: 3.0.0-beta.3
  • Loading branch information
mattelen authored Oct 25, 2023
2 parents 2f6d30f + 6bbf878 commit 60031e0
Show file tree
Hide file tree
Showing 12 changed files with 172 additions and 185 deletions.
84 changes: 42 additions & 42 deletions dist/vue-multiselect.common.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-multiselect.common.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/vue-multiselect.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ var multiselectMixin = {
this.isOpen = false;
/* istanbul ignore else */
if (this.searchable) {
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
} else {
if (typeof this.$el !== 'undefined') this.$el.blur();
}
Expand Down Expand Up @@ -1196,7 +1196,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
id: _ctx.id,
type: "text",
autocomplete: "off",
spellcheck: "false",
spellcheck: false,
placeholder: _ctx.placeholder,
style: $options.inputStyle,
value: _ctx.search,
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ var VueMultiselect = (function (exports, vue) {
this.isOpen = false;
/* istanbul ignore else */
if (this.searchable) {
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
} else {
if (typeof this.$el !== 'undefined') this.$el.blur();
}
Expand Down Expand Up @@ -1197,7 +1197,7 @@ var VueMultiselect = (function (exports, vue) {
id: _ctx.id,
type: "text",
autocomplete: "off",
spellcheck: "false",
spellcheck: false,
placeholder: _ctx.placeholder,
style: $options.inputStyle,
value: _ctx.search,
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-multiselect.ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ var multiselectMixin = {
this.isOpen = false;
/* istanbul ignore else */
if (this.searchable) {
if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur();
} else {
if (typeof this.$el !== 'undefined') this.$el.blur();
}
Expand Down Expand Up @@ -1200,7 +1200,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
id: _ctx.id,
type: "text",
autocomplete: "off",
spellcheck: "false",
spellcheck: false,
placeholder: _ctx.placeholder,
style: $options.inputStyle,
value: _ctx.search,
Expand Down
84 changes: 42 additions & 42 deletions dist/vue-multiselect.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-multiselect.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-multiselect.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-multiselect.umd.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 60031e0

Please sign in to comment.