@webitel/ui-sdk 2.0.0 → 2.0.2

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.
@@ -2381,7 +2381,7 @@ module.exports = function (argument) {
2381
2381
 
2382
2382
  var wellKnownSymbol = __webpack_require__(5112);
2383
2383
  var create = __webpack_require__(30);
2384
- var definePropertyModule = __webpack_require__(3070);
2384
+ var defineProperty = (__webpack_require__(3070).f);
2385
2385
 
2386
2386
  var UNSCOPABLES = wellKnownSymbol('unscopables');
2387
2387
  var ArrayPrototype = Array.prototype;
@@ -2389,7 +2389,7 @@ var ArrayPrototype = Array.prototype;
2389
2389
  // Array.prototype[@@unscopables]
2390
2390
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2391
2391
  if (ArrayPrototype[UNSCOPABLES] == undefined) {
2392
- definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
2392
+ defineProperty(ArrayPrototype, UNSCOPABLES, {
2393
2393
  configurable: true,
2394
2394
  value: create(null)
2395
2395
  });
@@ -3110,30 +3110,44 @@ module.exports = function (object, key, value) {
3110
3110
  /***/ 8052:
3111
3111
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3112
3112
 
3113
- var global = __webpack_require__(7854);
3114
3113
  var isCallable = __webpack_require__(614);
3115
3114
  var createNonEnumerableProperty = __webpack_require__(8880);
3116
3115
  var makeBuiltIn = __webpack_require__(6339);
3117
- var setGlobal = __webpack_require__(3505);
3116
+ var defineGlobalProperty = __webpack_require__(3072);
3118
3117
 
3119
3118
  module.exports = function (O, key, value, options) {
3120
- var unsafe = options ? !!options.unsafe : false;
3121
- var simple = options ? !!options.enumerable : false;
3122
- var noTargetGet = options ? !!options.noTargetGet : false;
3123
- var name = options && options.name !== undefined ? options.name : key;
3119
+ if (!options) options = {};
3120
+ var simple = options.enumerable;
3121
+ var name = options.name !== undefined ? options.name : key;
3124
3122
  if (isCallable(value)) makeBuiltIn(value, name, options);
3125
- if (O === global) {
3123
+ if (options.global) {
3126
3124
  if (simple) O[key] = value;
3127
- else setGlobal(key, value);
3128
- return O;
3129
- } else if (!unsafe) {
3130
- delete O[key];
3131
- } else if (!noTargetGet && O[key]) {
3132
- simple = true;
3133
- }
3134
- if (simple) O[key] = value;
3135
- else createNonEnumerableProperty(O, key, value);
3136
- return O;
3125
+ else defineGlobalProperty(key, value);
3126
+ } else {
3127
+ if (!options.unsafe) delete O[key];
3128
+ else if (O[key]) simple = true;
3129
+ if (simple) O[key] = value;
3130
+ else createNonEnumerableProperty(O, key, value);
3131
+ } return O;
3132
+ };
3133
+
3134
+
3135
+ /***/ }),
3136
+
3137
+ /***/ 3072:
3138
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3139
+
3140
+ var global = __webpack_require__(7854);
3141
+
3142
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
3143
+ var defineProperty = Object.defineProperty;
3144
+
3145
+ module.exports = function (key, value) {
3146
+ try {
3147
+ defineProperty(global, key, { value: value, configurable: true, writable: true });
3148
+ } catch (error) {
3149
+ global[key] = value;
3150
+ } return value;
3137
3151
  };
3138
3152
 
3139
3153
 
@@ -3520,24 +3534,24 @@ var global = __webpack_require__(7854);
3520
3534
  var getOwnPropertyDescriptor = (__webpack_require__(1236).f);
3521
3535
  var createNonEnumerableProperty = __webpack_require__(8880);
3522
3536
  var defineBuiltIn = __webpack_require__(8052);
3523
- var setGlobal = __webpack_require__(3505);
3537
+ var defineGlobalProperty = __webpack_require__(3072);
3524
3538
  var copyConstructorProperties = __webpack_require__(9920);
3525
3539
  var isForced = __webpack_require__(4705);
3526
3540
 
3527
3541
  /*
3528
- options.target - name of the target object
3529
- options.global - target is the global object
3530
- options.stat - export as static methods of target
3531
- options.proto - export as prototype methods of target
3532
- options.real - real prototype method for the `pure` version
3533
- options.forced - export even if the native feature is available
3534
- options.bind - bind methods to the target, required for the `pure` version
3535
- options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
3536
- options.unsafe - use the simple assignment of property instead of delete + defineProperty
3537
- options.sham - add a flag to not completely full polyfills
3538
- options.enumerable - export as enumerable property
3539
- options.noTargetGet - prevent calling a getter on target
3540
- options.name - the .name of the function if it does not match the key
3542
+ options.target - name of the target object
3543
+ options.global - target is the global object
3544
+ options.stat - export as static methods of target
3545
+ options.proto - export as prototype methods of target
3546
+ options.real - real prototype method for the `pure` version
3547
+ options.forced - export even if the native feature is available
3548
+ options.bind - bind methods to the target, required for the `pure` version
3549
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
3550
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
3551
+ options.sham - add a flag to not completely full polyfills
3552
+ options.enumerable - export as enumerable property
3553
+ options.dontCallGetSet - prevent calling a getter on target
3554
+ options.name - the .name of the function if it does not match the key
3541
3555
  */
3542
3556
  module.exports = function (options, source) {
3543
3557
  var TARGET = options.target;
@@ -3547,13 +3561,13 @@ module.exports = function (options, source) {
3547
3561
  if (GLOBAL) {
3548
3562
  target = global;
3549
3563
  } else if (STATIC) {
3550
- target = global[TARGET] || setGlobal(TARGET, {});
3564
+ target = global[TARGET] || defineGlobalProperty(TARGET, {});
3551
3565
  } else {
3552
3566
  target = (global[TARGET] || {}).prototype;
3553
3567
  }
3554
3568
  if (target) for (key in source) {
3555
3569
  sourceProperty = source[key];
3556
- if (options.noTargetGet) {
3570
+ if (options.dontCallGetSet) {
3557
3571
  descriptor = getOwnPropertyDescriptor(target, key);
3558
3572
  targetProperty = descriptor && descriptor.value;
3559
3573
  } else targetProperty = target[key];
@@ -4672,11 +4686,12 @@ var makeBuiltIn = module.exports = function (value, name, options) {
4672
4686
  if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
4673
4687
  defineProperty(value, 'length', { value: options.arity });
4674
4688
  }
4675
- if (options && hasOwn(options, 'constructor') && options.constructor) {
4676
- if (DESCRIPTORS) try {
4677
- defineProperty(value, 'prototype', { writable: false });
4678
- } catch (error) { /* empty */ }
4679
- } else value.prototype = undefined;
4689
+ try {
4690
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
4691
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
4692
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
4693
+ } else if (value.prototype) value.prototype = undefined;
4694
+ } catch (error) { /* empty */ }
4680
4695
  var state = enforceInternalState(value);
4681
4696
  if (!hasOwn(state, 'source')) {
4682
4697
  state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
@@ -4690,6 +4705,23 @@ Function.prototype.toString = makeBuiltIn(function toString() {
4690
4705
  }, 'toString');
4691
4706
 
4692
4707
 
4708
+ /***/ }),
4709
+
4710
+ /***/ 4758:
4711
+ /***/ (function(module) {
4712
+
4713
+ var ceil = Math.ceil;
4714
+ var floor = Math.floor;
4715
+
4716
+ // `Math.trunc` method
4717
+ // https://tc39.es/ecma262/#sec-math.trunc
4718
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
4719
+ module.exports = Math.trunc || function trunc(x) {
4720
+ var n = +x;
4721
+ return (n > 0 ? floor : ceil)(n);
4722
+ };
4723
+
4724
+
4693
4725
  /***/ }),
4694
4726
 
4695
4727
  /***/ 5948:
@@ -5805,25 +5837,6 @@ module.exports = Object.is || function is(x, y) {
5805
5837
  };
5806
5838
 
5807
5839
 
5808
- /***/ }),
5809
-
5810
- /***/ 3505:
5811
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
5812
-
5813
- var global = __webpack_require__(7854);
5814
-
5815
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
5816
- var defineProperty = Object.defineProperty;
5817
-
5818
- module.exports = function (key, value) {
5819
- try {
5820
- defineProperty(global, key, { value: value, configurable: true, writable: true });
5821
- } catch (error) {
5822
- global[key] = value;
5823
- } return value;
5824
- };
5825
-
5826
-
5827
5840
  /***/ }),
5828
5841
 
5829
5842
  /***/ 6340:
@@ -5891,10 +5904,10 @@ module.exports = function (key) {
5891
5904
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
5892
5905
 
5893
5906
  var global = __webpack_require__(7854);
5894
- var setGlobal = __webpack_require__(3505);
5907
+ var defineGlobalProperty = __webpack_require__(3072);
5895
5908
 
5896
5909
  var SHARED = '__core-js_shared__';
5897
- var store = global[SHARED] || setGlobal(SHARED, {});
5910
+ var store = global[SHARED] || defineGlobalProperty(SHARED, {});
5898
5911
 
5899
5912
  module.exports = store;
5900
5913
 
@@ -5910,10 +5923,10 @@ var store = __webpack_require__(5465);
5910
5923
  (module.exports = function (key, value) {
5911
5924
  return store[key] || (store[key] = value !== undefined ? value : {});
5912
5925
  })('versions', []).push({
5913
- version: '3.22.5',
5926
+ version: '3.22.7',
5914
5927
  mode: IS_PURE ? 'pure' : 'global',
5915
5928
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
5916
- license: 'https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE',
5929
+ license: 'https://github.com/zloirock/core-js/blob/v3.22.7/LICENSE',
5917
5930
  source: 'https://github.com/zloirock/core-js'
5918
5931
  });
5919
5932
 
@@ -6239,17 +6252,16 @@ module.exports = function (it) {
6239
6252
  /***/ }),
6240
6253
 
6241
6254
  /***/ 9303:
6242
- /***/ (function(module) {
6255
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
6243
6256
 
6244
- var ceil = Math.ceil;
6245
- var floor = Math.floor;
6257
+ var trunc = __webpack_require__(4758);
6246
6258
 
6247
6259
  // `ToIntegerOrInfinity` abstract operation
6248
6260
  // https://tc39.es/ecma262/#sec-tointegerorinfinity
6249
6261
  module.exports = function (argument) {
6250
6262
  var number = +argument;
6251
- // eslint-disable-next-line no-self-compare -- safe
6252
- return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
6263
+ // eslint-disable-next-line no-self-compare -- NaN check
6264
+ return number !== number || number === 0 ? 0 : trunc(number);
6253
6265
  };
6254
6266
 
6255
6267
 
@@ -13972,7 +13984,7 @@ var PrivatePopper = () => ({
13972
13984
  }
13973
13985
  this.$emit("update:shown", true);
13974
13986
  },
13975
- hide({ event = null, skipDelay = false } = {}) {
13987
+ hide({ event = null, skipDelay = false, skipAiming = false } = {}) {
13976
13988
  var _a;
13977
13989
  if (this.$_hideInProgress)
13978
13990
  return;
@@ -13980,7 +13992,7 @@ var PrivatePopper = () => ({
13980
13992
  this.$_pendingHide = true;
13981
13993
  return;
13982
13994
  }
13983
- if (this.hasPopperShowTriggerHover && this.$_isAimingPopper()) {
13995
+ if (!skipAiming && this.hasPopperShowTriggerHover && this.$_isAimingPopper()) {
13984
13996
  if (this.parentPopper) {
13985
13997
  this.parentPopper.lockedChild = this;
13986
13998
  clearTimeout(this.parentPopper.lockedChildTimer);
@@ -14332,14 +14344,14 @@ var PrivatePopper = () => ({
14332
14344
  };
14333
14345
  this.$_registerTriggerListeners(this.$_targetNodes, SHOW_EVENT_MAP, this.triggers, this.showTriggers, handleShow);
14334
14346
  this.$_registerTriggerListeners([this.$_popperNode], SHOW_EVENT_MAP, this.popperTriggers, this.popperShowTriggers, handleShow);
14335
- const handleHide = (event) => {
14347
+ const handleHide = (skipAiming) => (event) => {
14336
14348
  if (event.usedByTooltip) {
14337
14349
  return;
14338
14350
  }
14339
- this.hide({ event });
14351
+ this.hide({ event, skipAiming });
14340
14352
  };
14341
- this.$_registerTriggerListeners(this.$_targetNodes, HIDE_EVENT_MAP, this.triggers, this.hideTriggers, handleHide);
14342
- this.$_registerTriggerListeners([this.$_popperNode], HIDE_EVENT_MAP, this.popperTriggers, this.popperHideTriggers, handleHide);
14353
+ this.$_registerTriggerListeners(this.$_targetNodes, HIDE_EVENT_MAP, this.triggers, this.hideTriggers, handleHide(false));
14354
+ this.$_registerTriggerListeners([this.$_popperNode], HIDE_EVENT_MAP, this.popperTriggers, this.popperHideTriggers, handleHide(true));
14343
14355
  },
14344
14356
  $_registerEventListeners(targetNodes, eventType, handler) {
14345
14357
  this.$_events.push({ targetNodes, eventType, handler });
@@ -15344,7 +15356,7 @@ function install(app, options2 = {}) {
15344
15356
  app.component("VMenu", PrivateMenu);
15345
15357
  }
15346
15358
  const floating_vue_es_plugin = {
15347
- version: "1.0.0-beta.17",
15359
+ version: "1.0.0-beta.18",
15348
15360
  install,
15349
15361
  options: config
15350
15362
  };
@@ -16063,13 +16075,13 @@ var wt_divider_component = componentNormalizer_normalizeComponent(
16063
16075
  )
16064
16076
 
16065
16077
  /* harmony default export */ var wt_divider = (wt_divider_component.exports);
16066
- ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=template&id=4c8423b3&scoped=true&
16067
- var wt_tooltipvue_type_template_id_4c8423b3_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-tooltip',{staticClass:"wt-tooltip",class:{
16078
+ ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=template&id=f65255ba&scoped=true&
16079
+ var wt_tooltipvue_type_template_id_f65255ba_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-tooltip',{staticClass:"wt-tooltip",class:{
16068
16080
  'wt-tooltip--contrast': _vm.contrast
16069
16081
  },attrs:{"placement":_vm.placement,"popper-class":[
16070
16082
  'wt-tooltip__popper',
16071
- { 'wt-tooltip--contrast__popper': _vm.contrast } ]},scopedSlots:_vm._u([{key:"popper",fn:function(){return [_vm._t("default")]},proxy:true}],null,true)},[_vm._t("activator")],2)}
16072
- var wt_tooltipvue_type_template_id_4c8423b3_scoped_true_staticRenderFns = []
16083
+ { 'wt-tooltip--contrast__popper': _vm.contrast } ],"triggers":['hover', 'focus', 'touch']},scopedSlots:_vm._u([{key:"popper",fn:function(){return [_vm._t("default")]},proxy:true}],null,true)},[_vm._t("activator")],2)}
16084
+ var wt_tooltipvue_type_template_id_f65255ba_scoped_true_staticRenderFns = []
16073
16085
 
16074
16086
 
16075
16087
  ;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-81[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=script&lang=js&
@@ -16092,6 +16104,7 @@ var wt_tooltipvue_type_template_id_4c8423b3_scoped_true_staticRenderFns = []
16092
16104
  //
16093
16105
  //
16094
16106
  //
16107
+ //
16095
16108
  /* harmony default export */ var wt_tooltipvue_type_script_lang_js_ = ({
16096
16109
  name: 'wt-tooltip',
16097
16110
  props: {
@@ -16107,10 +16120,10 @@ var wt_tooltipvue_type_template_id_4c8423b3_scoped_true_staticRenderFns = []
16107
16120
  });
16108
16121
  ;// CONCATENATED MODULE: ./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=script&lang=js&
16109
16122
  /* harmony default export */ var wt_tooltip_wt_tooltipvue_type_script_lang_js_ = (wt_tooltipvue_type_script_lang_js_);
16110
- ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=style&index=0&id=4c8423b3&lang=scss&scoped=true&
16123
+ ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=style&index=0&id=f65255ba&lang=scss&scoped=true&
16111
16124
  // extracted by mini-css-extract-plugin
16112
16125
 
16113
- ;// CONCATENATED MODULE: ./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=style&index=0&id=4c8423b3&lang=scss&scoped=true&
16126
+ ;// CONCATENATED MODULE: ./src/components/atoms/wt-tooltip/wt-tooltip.vue?vue&type=style&index=0&id=f65255ba&lang=scss&scoped=true&
16114
16127
 
16115
16128
  ;// CONCATENATED MODULE: ./src/components/atoms/wt-tooltip/wt-tooltip.vue
16116
16129
 
@@ -16123,11 +16136,11 @@ var wt_tooltipvue_type_template_id_4c8423b3_scoped_true_staticRenderFns = []
16123
16136
 
16124
16137
  var wt_tooltip_component = componentNormalizer_normalizeComponent(
16125
16138
  wt_tooltip_wt_tooltipvue_type_script_lang_js_,
16126
- wt_tooltipvue_type_template_id_4c8423b3_scoped_true_render,
16127
- wt_tooltipvue_type_template_id_4c8423b3_scoped_true_staticRenderFns,
16139
+ wt_tooltipvue_type_template_id_f65255ba_scoped_true_render,
16140
+ wt_tooltipvue_type_template_id_f65255ba_scoped_true_staticRenderFns,
16128
16141
  false,
16129
16142
  null,
16130
- "4c8423b3",
16143
+ "f65255ba",
16131
16144
  null
16132
16145
 
16133
16146
  )
@@ -20490,22 +20503,22 @@ var wt_search_bar_component = componentNormalizer_normalizeComponent(
20490
20503
  )
20491
20504
 
20492
20505
  /* harmony default export */ var wt_search_bar = (wt_search_bar_component.exports);
20493
- ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/molecules/wt-select/wt-select.vue?vue&type=template&id=5e1ce59d&scoped=true&
20494
- var wt_selectvue_type_template_id_5e1ce59d_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"wt-select",class:{
20506
+ ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/molecules/wt-select/wt-select.vue?vue&type=template&id=0fac7f12&scoped=true&
20507
+ var wt_selectvue_type_template_id_0fac7f12_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"wt-select",class:{
20495
20508
  'wt-select--disabled': _vm.disabled,
20496
20509
  'wt-select--invalid': _vm.invalid,
20497
20510
  'wt-select--clearable': _vm.clearable,
20498
20511
  'wt-select--loading': _vm.isLoading,
20499
- }},[(_vm.hasLabel)?_c('wt-label',_vm._b({staticClass:"wt-select__label",attrs:{"disabled":_vm.disabled,"invalid":_vm.invalid}},'wt-label',_vm.labelProps,false),[_vm._t("label",function(){return [_vm._v(_vm._s(_vm.requiredLabel))]},null,{ label: _vm.label })],2):_vm._e(),_c('vue-multiselect',_vm._g(_vm._b({ref:"vue-multiselect",staticClass:"wt-select__select",attrs:{"value":_vm.selectValue,"options":_vm.selectOptions,"placeholder":_vm.placeholder || _vm.label,"limit":1,"label":_vm.optionLabel,"track-by":_vm.trackBy,"limit-text":function (count) { return ("+" + count); },"loading":false,"internal-search":!_vm.searchMethod,"disabled":_vm.disabled,"allow-empty":_vm.allowEmpty},scopedSlots:_vm._u([{key:"tag",fn:function(ref){
20512
+ }},[(_vm.hasLabel)?_c('wt-label',_vm._b({staticClass:"wt-select__label",attrs:{"disabled":_vm.disabled,"invalid":_vm.invalid}},'wt-label',_vm.labelProps,false),[_vm._t("label",function(){return [_vm._v(_vm._s(_vm.requiredLabel))]},null,{ label: _vm.label })],2):_vm._e(),_c('vue-multiselect',_vm._g(_vm._b({ref:"vue-multiselect",staticClass:"wt-select__select",attrs:{"allow-empty":_vm.allowEmpty,"disabled":_vm.disabled,"internal-search":!_vm.searchMethod,"label":_vm.optionLabel,"limit":1,"limit-text":function (count) { return ("+" + count); },"loading":false,"options":_vm.selectOptions,"placeholder":_vm.placeholder || _vm.label,"track-by":_vm.trackBy,"value":_vm.selectValue},scopedSlots:_vm._u([{key:"tag",fn:function(ref){
20500
20513
  var option = ref.option;
20501
20514
  return [_c('span',{staticClass:"multiselect__custom-tag"},[_vm._v(" "+_vm._s(option[_vm.optionLabel] || option)+" ")])]}},{key:"singleLabel",fn:function(ref){
20502
20515
  var option = ref.option;
20503
- return [_vm._t("singleLabel",function(){return [_c('span',{staticClass:"multiselect__single-label"},[_vm._v(" "+_vm._s(_vm.$te(option.locale) ? _vm.$t(option.locale) : (option[_vm.optionLabel] || option))+" ")])]},null,{ option: option, optionLabel: _vm.optionLabel })]}},{key:"option",fn:function(ref){
20516
+ return [_vm._t("singleLabel",function(){return [_c('span',{staticClass:"multiselect__single-label"},[_vm._v(" "+_vm._s(_vm.getOptionLabel({ option: option, optionLabel: _vm.optionLabel }))+" ")])]},null,{ option: option, optionLabel: _vm.optionLabel })]}},{key:"option",fn:function(ref){
20504
20517
  var option = ref.option;
20505
- return [_vm._t("option",function(){return [_c('span',[_vm._v(" "+_vm._s(_vm.$te(option.locale) ? _vm.$t(option.locale) : (option[_vm.optionLabel] || option))+" ")])]},null,{ option: option, optionLabel: _vm.optionLabel })]}},{key:"caret",fn:function(ref){
20518
+ return [_vm._t("option",function(){return [_c('span',[_vm._v(" "+_vm._s(_vm.getOptionLabel({ option: option, optionLabel: _vm.optionLabel }))+" ")])]},null,{ option: option, optionLabel: _vm.optionLabel })]}},{key:"caret",fn:function(ref){
20506
20519
  var toggle = ref.toggle;
20507
- return [_c('wt-icon-btn',{staticClass:"wt-select__arrow-caret",attrs:{"icon":"arrow-down","disabled":_vm.disabled},nativeOn:{"mousedown":function($event){$event.preventDefault();$event.stopPropagation();return toggle.apply(null, arguments)}}})]}},{key:"clear",fn:function(ref){return [(_vm.clearable)?_c('wt-icon-btn',{staticClass:"wt-select__clear",class:{ 'hidden': !_vm.isValue },attrs:{"disabled":_vm.disabled,"icon":"close"},on:{"click":_vm.clearValue}}):_vm._e()]}}],null,true)},'vue-multiselect',_vm.$attrs,false),_vm.listeners),[_c('template',{slot:"beforeList"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isLoading),expression:"isLoading"}],staticClass:"wt-select__loading-wrapper"},[_c('wt-loader',{attrs:{"size":"sm"}})],1)]),(_vm.showIntersectionObserver)?_c('template',{slot:"afterList"},[_c('div',{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:(_vm.handleAfterListIntersect),expression:"handleAfterListIntersect"}]})]):_vm._e()],2),(_vm.isValidation)?_c('wt-input-info',{attrs:{"invalid":_vm.invalid}},[_vm._v(_vm._s(_vm.validationText)+" ")]):_vm._e()],1)}
20508
- var wt_selectvue_type_template_id_5e1ce59d_scoped_true_staticRenderFns = []
20520
+ return [_c('wt-icon-btn',{staticClass:"wt-select__arrow-caret",attrs:{"disabled":_vm.disabled,"icon":"arrow-down"},nativeOn:{"mousedown":function($event){$event.preventDefault();$event.stopPropagation();return toggle.apply(null, arguments)}}})]}},{key:"clear",fn:function(ref){return [(_vm.clearable)?_c('wt-icon-btn',{staticClass:"wt-select__clear",class:{ 'hidden': !_vm.isValue },attrs:{"disabled":_vm.disabled,"icon":"close"},on:{"click":_vm.clearValue}}):_vm._e()]}}],null,true)},'vue-multiselect',_vm.$attrs,false),_vm.listeners),[_c('template',{slot:"beforeList"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isLoading),expression:"isLoading"}],staticClass:"wt-select__loading-wrapper"},[_c('wt-loader',{attrs:{"size":"sm"}})],1)]),(_vm.showIntersectionObserver)?_c('template',{slot:"afterList"},[_c('div',{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:(_vm.handleAfterListIntersect),expression:"handleAfterListIntersect"}]})]):_vm._e()],2),(_vm.isValidation)?_c('wt-input-info',{attrs:{"invalid":_vm.invalid}},[_vm._v(_vm._s(_vm.validationText)+" ")]):_vm._e()],1)}
20521
+ var wt_selectvue_type_template_id_0fac7f12_scoped_true_staticRenderFns = []
20509
20522
 
20510
20523
 
20511
20524
  ;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
@@ -21275,6 +21288,7 @@ var isEmpty = function isEmpty(value) {
21275
21288
 
21276
21289
 
21277
21290
 
21291
+
21278
21292
  //
21279
21293
  //
21280
21294
  //
@@ -21490,6 +21504,17 @@ var isEmpty = function isEmpty(value) {
21490
21504
  }
21491
21505
  },
21492
21506
  methods: {
21507
+ getOptionLabel: function getOptionLabel(_ref) {
21508
+ var option = _ref.option,
21509
+ optionLabel = _ref.optionLabel;
21510
+
21511
+ if (option.locale) {
21512
+ if (Array.isArray(option.locale)) return this.$tc.apply(this, _toConsumableArray(option.locale));
21513
+ return this.$t(option.locale);
21514
+ }
21515
+
21516
+ return option[optionLabel] || option;
21517
+ },
21493
21518
  handleSearchChange: function handleSearchChange(search) {
21494
21519
  if (!this.isApiMode) return;
21495
21520
  this.isLoading = true;
@@ -21509,13 +21534,13 @@ var isEmpty = function isEmpty(value) {
21509
21534
  _this2 = this;
21510
21535
 
21511
21536
  return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
21512
- var _ref, search, page, _yield$_this2$searchM, items, next;
21537
+ var _ref2, search, page, _yield$_this2$searchM, items, next;
21513
21538
 
21514
21539
  return _regeneratorRuntime().wrap(function _callee$(_context) {
21515
21540
  while (1) {
21516
21541
  switch (_context.prev = _context.next) {
21517
21542
  case 0:
21518
- _ref = _arguments.length > 0 && _arguments[0] !== undefined ? _arguments[0] : _this2.searchParams, search = _ref.search, page = _ref.page;
21543
+ _ref2 = _arguments.length > 0 && _arguments[0] !== undefined ? _arguments[0] : _this2.searchParams, search = _ref2.search, page = _ref2.page;
21519
21544
 
21520
21545
  if (_this2.isApiMode) {
21521
21546
  _context.next = 3;
@@ -21567,10 +21592,10 @@ var isEmpty = function isEmpty(value) {
21567
21592
  });
21568
21593
  ;// CONCATENATED MODULE: ./src/components/molecules/wt-select/wt-select.vue?vue&type=script&lang=js&
21569
21594
  /* harmony default export */ var wt_select_wt_selectvue_type_script_lang_js_ = (wt_selectvue_type_script_lang_js_);
21570
- ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/molecules/wt-select/wt-select.vue?vue&type=style&index=0&id=5e1ce59d&lang=scss&scoped=true&
21595
+ ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/molecules/wt-select/wt-select.vue?vue&type=style&index=0&id=0fac7f12&lang=scss&scoped=true&
21571
21596
  // extracted by mini-css-extract-plugin
21572
21597
 
21573
- ;// CONCATENATED MODULE: ./src/components/molecules/wt-select/wt-select.vue?vue&type=style&index=0&id=5e1ce59d&lang=scss&scoped=true&
21598
+ ;// CONCATENATED MODULE: ./src/components/molecules/wt-select/wt-select.vue?vue&type=style&index=0&id=0fac7f12&lang=scss&scoped=true&
21574
21599
 
21575
21600
  ;// CONCATENATED MODULE: ./src/components/molecules/wt-select/wt-select.vue
21576
21601
 
@@ -21583,11 +21608,11 @@ var isEmpty = function isEmpty(value) {
21583
21608
 
21584
21609
  var wt_select_component = componentNormalizer_normalizeComponent(
21585
21610
  wt_select_wt_selectvue_type_script_lang_js_,
21586
- wt_selectvue_type_template_id_5e1ce59d_scoped_true_render,
21587
- wt_selectvue_type_template_id_5e1ce59d_scoped_true_staticRenderFns,
21611
+ wt_selectvue_type_template_id_0fac7f12_scoped_true_render,
21612
+ wt_selectvue_type_template_id_0fac7f12_scoped_true_staticRenderFns,
21588
21613
  false,
21589
21614
  null,
21590
- "5e1ce59d",
21615
+ "0fac7f12",
21591
21616
  null
21592
21617
 
21593
21618
  )
@@ -24707,9 +24732,9 @@ var wt_table_component = componentNormalizer_normalizeComponent(
24707
24732
  )
24708
24733
 
24709
24734
  /* harmony default export */ var wt_table = (wt_table_component.exports);
24710
- ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=template&id=18266cec&scoped=true&
24711
- var wt_table_actionsvue_type_template_id_18266cec_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('aside',{staticClass:"wt-table-actions"},[_vm._t("default"),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isImport)?_c('wt-icon-btn',{attrs:{"icon":"download"},on:{"click":function($event){return _vm.$emit('input', 'import')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('reusable.import'))+" ")]),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isExport)?_c('wt-icon-btn',{attrs:{"icon":"upload"},on:{"click":function($event){return _vm.$emit('input', 'export')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('reusable.export'))+" ")]),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isFilterReset)?_c('wt-icon-btn',{attrs:{"icon":"clear"},on:{"click":function($event){return _vm.$emit('input', 'filterReset')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.filterReset'))+" ")]),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isColumnSelect)?_c('wt-icon-btn',{attrs:{"icon":"column-select"},on:{"click":function($event){return _vm.$emit('input', 'columnSelect')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.columnSelect'))+" ")]),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isRefresh)?_c('wt-icon-btn',{attrs:{"icon":"refresh"},on:{"click":function($event){return _vm.$emit('input', 'refresh')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.refreshTable'))+" ")]),_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [(_vm.isSettings)?_c('wt-icon-btn',{class:{'active': _vm.isSettingsActive},attrs:{"icon":"filter"},on:{"click":function($event){return _vm.$emit('input', 'settings')}}}):_vm._e()]},proxy:true}])},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.expandFilters'))+" ")])],2)}
24712
- var wt_table_actionsvue_type_template_id_18266cec_scoped_true_staticRenderFns = []
24735
+ ;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=template&id=2645d022&scoped=true&
24736
+ var wt_table_actionsvue_type_template_id_2645d022_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('aside',{staticClass:"wt-table-actions"},[_vm._t("default"),(_vm.isImport)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{attrs:{"icon":"download"},on:{"click":function($event){return _vm.$emit('input', 'import')}}})]},proxy:true}],null,false,2126024255)},[_vm._v(" "+_vm._s(_vm.$t('reusable.import'))+" ")]):_vm._e(),(_vm.isExport)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{attrs:{"icon":"upload"},on:{"click":function($event){return _vm.$emit('input', 'export')}}})]},proxy:true}],null,false,42249425)},[_vm._v(" "+_vm._s(_vm.$t('reusable.export'))+" ")]):_vm._e(),(_vm.isFilterReset)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{attrs:{"icon":"clear"},on:{"click":function($event){return _vm.$emit('input', 'filterReset')}}})]},proxy:true}],null,false,2792737498)},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.filterReset'))+" ")]):_vm._e(),(_vm.isColumnSelect)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{attrs:{"icon":"column-select"},on:{"click":function($event){return _vm.$emit('input', 'columnSelect')}}})]},proxy:true}],null,false,2418030907)},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.columnSelect'))+" ")]):_vm._e(),(_vm.isRefresh)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{attrs:{"icon":"refresh"},on:{"click":function($event){return _vm.$emit('input', 'refresh')}}})]},proxy:true}],null,false,3218732278)},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.refreshTable'))+" ")]):_vm._e(),(_vm.isSettings)?_c('wt-tooltip',{scopedSlots:_vm._u([{key:"activator",fn:function(){return [_c('wt-icon-btn',{class:{'active': _vm.isSettingsActive},attrs:{"icon":"filter"},on:{"click":function($event){return _vm.$emit('input', 'settings')}}})]},proxy:true}],null,false,3871527912)},[_vm._v(" "+_vm._s(_vm.$t('webitelUI.tableActions.expandFilters'))+" ")]):_vm._e()],2)}
24737
+ var wt_table_actionsvue_type_template_id_2645d022_scoped_true_staticRenderFns = []
24713
24738
 
24714
24739
 
24715
24740
  ;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-81[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=script&lang=js&
@@ -24774,12 +24799,6 @@ var wt_table_actionsvue_type_template_id_18266cec_scoped_true_staticRenderFns =
24774
24799
  //
24775
24800
  //
24776
24801
  //
24777
- //
24778
- //
24779
- //
24780
- //
24781
- //
24782
- //
24783
24802
  /* harmony default export */ var wt_table_actionsvue_type_script_lang_js_ = ({
24784
24803
  name: 'wt-table-actions',
24785
24804
  props: {
@@ -24817,10 +24836,10 @@ var wt_table_actionsvue_type_template_id_18266cec_scoped_true_staticRenderFns =
24817
24836
  });
24818
24837
  ;// CONCATENATED MODULE: ./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=script&lang=js&
24819
24838
  /* harmony default export */ var wt_table_actions_wt_table_actionsvue_type_script_lang_js_ = (wt_table_actionsvue_type_script_lang_js_);
24820
- ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=style&index=0&id=18266cec&lang=scss&scoped=true&
24839
+ ;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-63[0].rules[0].use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-63[0].rules[0].use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=style&index=0&id=2645d022&lang=scss&scoped=true&
24821
24840
  // extracted by mini-css-extract-plugin
24822
24841
 
24823
- ;// CONCATENATED MODULE: ./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=style&index=0&id=18266cec&lang=scss&scoped=true&
24842
+ ;// CONCATENATED MODULE: ./src/components/organisms/wt-table-actions/wt-table-actions.vue?vue&type=style&index=0&id=2645d022&lang=scss&scoped=true&
24824
24843
 
24825
24844
  ;// CONCATENATED MODULE: ./src/components/organisms/wt-table-actions/wt-table-actions.vue
24826
24845
 
@@ -24833,11 +24852,11 @@ var wt_table_actionsvue_type_template_id_18266cec_scoped_true_staticRenderFns =
24833
24852
 
24834
24853
  var wt_table_actions_component = componentNormalizer_normalizeComponent(
24835
24854
  wt_table_actions_wt_table_actionsvue_type_script_lang_js_,
24836
- wt_table_actionsvue_type_template_id_18266cec_scoped_true_render,
24837
- wt_table_actionsvue_type_template_id_18266cec_scoped_true_staticRenderFns,
24855
+ wt_table_actionsvue_type_template_id_2645d022_scoped_true_render,
24856
+ wt_table_actionsvue_type_template_id_2645d022_scoped_true_staticRenderFns,
24838
24857
  false,
24839
24858
  null,
24840
- "18266cec",
24859
+ "2645d022",
24841
24860
  null
24842
24861
 
24843
24862
  )