@eturnity/eturnity_reusable_components 7.33.1 → 7.33.2-EPDM-9697.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.33.1",
3
+ "version": "7.33.2-EPDM-9697.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -72,12 +72,7 @@
72
72
  </IconWrapper>
73
73
  <SelectWrapper v-if="showSelect">
74
74
  <Divider />
75
- <<<<<<< HEAD
76
75
  <RCSelect
77
- =======
78
- <Select
79
- :disabled="isSelectDisabled"
80
- >>>>>>> f7f274d10df532971e44249a355b2a458d105e1c
81
76
  :select-width="`${selectWidth}px`"
82
77
  :show-border="false"
83
78
  @input-change="$emit('select-change', $event)"
@@ -516,10 +511,6 @@
516
511
  type: [String, Number],
517
512
  default: null,
518
513
  },
519
- isSelectDisabled: {
520
- type: Boolean,
521
- default: false,
522
- },
523
514
  },
524
515
  data() {
525
516
  return {
@@ -13,7 +13,7 @@
13
13
  <LabelWrapper
14
14
  v-if="label"
15
15
  :data-id="labelDataId"
16
- :info-text-message="!!infoTextMessage || !!$slots.infoText"
16
+ :info-text-message="!!infoTextMessage"
17
17
  >
18
18
  <InputLabel
19
19
  :font-color="
@@ -181,7 +181,6 @@
181
181
  import Icon from '../../icon'
182
182
  import InputText from '../inputText'
183
183
  import DraggableInputHandle from '../../draggableInputHandle'
184
- import { debounce } from '../../../utils'
185
184
 
186
185
  const CARET_WIDTH = '30px'
187
186
  const BORDER_WIDTH = '1px'
@@ -734,9 +733,9 @@
734
733
  this.blur()
735
734
  this.$emit('input-change', e)
736
735
  },
737
- optionHovered: debounce(function (e) {
736
+ optionHovered(e) {
738
737
  this.hoveredValue = e
739
- }, 300),
738
+ },
740
739
  mouseEnterHandler() {
741
740
  if (this.hoverDropdown) {
742
741
  this.focus()
@@ -1,12 +0,0 @@
1
- export function debounce(fn, wait) {
2
- let timer
3
- return function (...args) {
4
- if (timer) {
5
- clearTimeout(timer)
6
- }
7
- const context = this
8
- timer = setTimeout(() => {
9
- fn.apply(context, args)
10
- }, wait)
11
- }
12
- }