vue-intergrall-plugins 1.0.95 → 1.0.96

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.
@@ -4974,6 +4974,13 @@ var script$n = {
4974
4974
  if (data) {
4975
4975
  if (data.msg_ret) {
4976
4976
  if (data.error) throw new Error(data.msg_ret);
4977
+ if (selectionIndex == 2) {
4978
+ _this.$toasted.global.defaultInfo({
4979
+ msg: data.msg_ret
4980
+ });
4981
+ _this.$emit("close-blocker-standard-message");
4982
+ return _this.closeStandardMessages();
4983
+ }
4977
4984
  return _this.$toasted.global.defaultInfo({
4978
4985
  msg: data.msg_ret
4979
4986
  });
@@ -5177,7 +5184,7 @@ var __vue_staticRenderFns__$n = [];
5177
5184
  /* style */
5178
5185
  var __vue_inject_styles__$n = function __vue_inject_styles__(inject) {
5179
5186
  if (!inject) return;
5180
- inject("data-v-7abf5d83_0", {
5187
+ inject("data-v-31da8e93_0", {
5181
5188
  source: ".transition-selects{min-height:80px;display:flex;flex-direction:column;width:100%}.loader-select{position:relative;min-height:35px;background:#fff;width:100%;border:1px solid #ccc;border-radius:5px;z-index:1}.loading-message{background-color:#555!important}",
5182
5189
  map: undefined,
5183
5190
  media: undefined
@@ -5186,7 +5193,7 @@ var __vue_inject_styles__$n = function __vue_inject_styles__(inject) {
5186
5193
  /* scoped */
5187
5194
  var __vue_scope_id__$n = undefined;
5188
5195
  /* module identifier */
5189
- var __vue_module_identifier__$n = "data-v-7abf5d83";
5196
+ var __vue_module_identifier__$n = "data-v-31da8e93";
5190
5197
  /* functional template */
5191
5198
  var __vue_is_functional_template__$n = false;
5192
5199
  /* style inject shadow dom */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-intergrall-plugins",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "",
5
5
  "main": "dist/vue-intergrall-plugins.ssr.js",
6
6
  "browser": "dist/vue-intergrall-plugins.esm.js",
@@ -143,7 +143,11 @@ export default {
143
143
  if (data) {
144
144
  if (data.msg_ret) {
145
145
  if (data.error) throw new Error(data.msg_ret)
146
-
146
+ if (selectionIndex == 2) {
147
+ this.$toasted.global.defaultInfo({ msg: data.msg_ret })
148
+ this.$emit("close-blocker-standard-message")
149
+ return this.closeStandardMessages()
150
+ }
147
151
  return this.$toasted.global.defaultInfo({ msg: data.msg_ret })
148
152
  }
149
153
  return this.showFormattedMessage(data, selectionIndex)