@eturnity/eturnity_reusable_components 7.32.1-EPDM-10647.1 → 7.32.1-EPDM-11143.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.32.1-EPDM-10647.1",
3
+ "version": "7.32.1-EPDM-11143.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg width="800px" height="800px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="copy" fill="none" transform="translate(85.333333, 42.666667)">
6
+ <path d="M341.333333,85.3333333 L341.333333,405.333333 L85.3333333,405.333333 L85.3333333,85.3333333 L341.333333,85.3333333 Z M298.666667,128 L128,128 L128,362.666667 L298.666667,362.666667 L298.666667,128 Z M234.666667,7.10542736e-15 L234.666667,42.6666667 L42.6666667,42.6666667 L42.6666667,298.666667 L1.42108547e-14,298.666667 L1.42108547e-14,7.10542736e-15 L234.666667,7.10542736e-15 Z">
7
+ </path>
8
+ </g>
9
+ </g>
10
+ </svg>
@@ -73,7 +73,6 @@
73
73
  <SelectWrapper v-if="showSelect">
74
74
  <Divider />
75
75
  <Select
76
- :disabled="isSelectDisabled"
77
76
  :select-width="`${selectWidth}px`"
78
77
  :show-border="false"
79
78
  @input-change="$emit('select-change', $event)"
@@ -512,10 +511,6 @@
512
511
  type: [String, Number],
513
512
  default: null,
514
513
  },
515
- isSelectDisabled: {
516
- type: Boolean,
517
- default: false,
518
- },
519
514
  },
520
515
  data() {
521
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
- }