@eturnity/eturnity_reusable_components 7.30.1 → 7.30.3

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.30.1",
3
+ "version": "7.30.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -53,7 +53,7 @@
53
53
  "
54
54
  :fontSize="fontSize"
55
55
  :hasError="hasError"
56
- :hasNoPadding="hasNoPadding"
56
+ :hasNoPadding="isSearchBarVisible || !hasSelectButtonPadding"
57
57
  :disabled="disabled"
58
58
  @keydown="onKeyDown"
59
59
  :showBorder="showBorder"
@@ -162,7 +162,7 @@
162
162
  // alignItems="vertical"
163
163
  // label-data-id="test-label-data-id"
164
164
  // data-id="test-data-id"
165
- // :hasNoPadding="true"
165
+ // :hasSelectButtonPadding="false"
166
166
  // >
167
167
  // <template #selector="{selectedValue}">
168
168
  // value selected: {{selectedValue}}
@@ -533,6 +533,11 @@ export default {
533
533
  type: String,
534
534
  default: ''
535
535
  },
536
+ hasSelectButtonPadding: {
537
+ required: false,
538
+ type: Boolean,
539
+ default: true
540
+ },
536
541
  isDraggable: {
537
542
  type: Boolean,
538
543
  default: false
@@ -556,11 +561,6 @@ export default {
556
561
  type: String,
557
562
  default: DROPDOWN_MENU_POSITIONS.Automatic // options: ['automatic', bottom]
558
563
  },
559
- hasNoPadding: {
560
- required: false,
561
- default: false,
562
- type: Boolean
563
- },
564
564
  infoTextWidth: {
565
565
  type: String,
566
566
  required: false
@@ -19,7 +19,7 @@
19
19
  :cellPaddings="cellPaddings"
20
20
  :tableCursor="tableCursor"
21
21
  @mouseover="hasAimHover ? setHovers($event) : null"
22
- @mouseleave="hasAimHover ? removeHoverClass : null"
22
+ @mouseleave="hasAimHover ? removeHoverClass() : null"
23
23
  >
24
24
  <slot />
25
25
  </table-container>