@eturnity/eturnity_reusable_components 8.13.13-EPDM-6306.0 → 8.13.13-EPDM-12459.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
@@ -60,7 +60,7 @@
|
|
60
60
|
:show-linear-unit-name="showLinearUnitName"
|
61
61
|
:slot-size="slotSize"
|
62
62
|
:text-align="textAlign"
|
63
|
-
:value="
|
63
|
+
:value="formatWithCurrency(value)"
|
64
64
|
@blur="onInputBlur($event)"
|
65
65
|
@focus="focusInput()"
|
66
66
|
@input="onInput($event)"
|
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
<UnitContainer
|
76
76
|
v-if="unitName && showLinearUnitName && !hasSlot"
|
77
|
-
:has-length="
|
77
|
+
:has-length="!!textInput.length"
|
78
78
|
:is-error="isError"
|
79
79
|
>{{ unitName }}</UnitContainer
|
80
80
|
>
|
@@ -91,7 +91,7 @@
|
|
91
91
|
:disabled="isSelectDisabled"
|
92
92
|
:select-width="`${selectWidth}px`"
|
93
93
|
:show-border="false"
|
94
|
-
@input-change="
|
94
|
+
@input-change="$emit('select-change', $event)"
|
95
95
|
>
|
96
96
|
<template #selector>
|
97
97
|
<SelectText>{{ getSelectValue }}</SelectText>
|
@@ -449,18 +449,8 @@
|
|
449
449
|
background-color: ${({ theme }) => theme.colors.grey4};
|
450
450
|
`
|
451
451
|
|
452
|
-
const EVENT_TYPES = {
|
453
|
-
INPUT_FOCUS: 'input-focus',
|
454
|
-
INPUT_CHANGE: 'input-change',
|
455
|
-
INPUT_BLUR: 'input-blur',
|
456
|
-
PRESS_ENTER: 'on-enter-click',
|
457
|
-
INPUT_DRAG: 'on-input-drag',
|
458
|
-
SELECT_CHANGE: 'select-change',
|
459
|
-
}
|
460
|
-
|
461
452
|
export default {
|
462
453
|
name: 'InputNumber',
|
463
|
-
emits: [...Object.values(EVENT_TYPES)],
|
464
454
|
components: {
|
465
455
|
Container,
|
466
456
|
InputContainer,
|
@@ -699,10 +689,9 @@
|
|
699
689
|
},
|
700
690
|
data() {
|
701
691
|
return {
|
692
|
+
textInput: '',
|
702
693
|
isFocused: false,
|
703
694
|
warningIcon: warningIcon,
|
704
|
-
inputValue: null,
|
705
|
-
enteredValue: null,
|
706
695
|
}
|
707
696
|
},
|
708
697
|
computed: {
|
@@ -725,14 +714,6 @@
|
|
725
714
|
|
726
715
|
return item ? item.label : '-'
|
727
716
|
},
|
728
|
-
formattedValue() {
|
729
|
-
return this.isFocused
|
730
|
-
? this.enteredValue
|
731
|
-
: this.formatWithCurrency(this.value)
|
732
|
-
},
|
733
|
-
hasLength() {
|
734
|
-
return this.formattedValue !== null && this.formattedValue.length > 0
|
735
|
-
},
|
736
717
|
},
|
737
718
|
watch: {
|
738
719
|
focus(value) {
|
@@ -743,19 +724,30 @@
|
|
743
724
|
clearInput: function (value) {
|
744
725
|
if (value) {
|
745
726
|
// If the value is typed, then we should clear the textInput on Continue
|
746
|
-
this.
|
747
|
-
this.enteredValue = ''
|
727
|
+
this.textInput = ''
|
748
728
|
}
|
749
729
|
},
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
}
|
758
|
-
}
|
730
|
+
},
|
731
|
+
created() {
|
732
|
+
if (this.value) {
|
733
|
+
this.textInput = numberToString({
|
734
|
+
value: this.value,
|
735
|
+
numberPrecision: this.numberPrecision,
|
736
|
+
minDecimals: this.minDecimals,
|
737
|
+
})
|
738
|
+
} else if (this.defaultNumber !== null) {
|
739
|
+
this.textInput = numberToString({
|
740
|
+
value: this.defaultNumber,
|
741
|
+
numberPrecision: this.numberPrecision,
|
742
|
+
minDecimals: this.minDecimals,
|
743
|
+
})
|
744
|
+
} else if (this.minNumber !== null) {
|
745
|
+
this.textInput = numberToString({
|
746
|
+
value: this.minNumber,
|
747
|
+
numberPrecision: this.numberPrecision,
|
748
|
+
minDecimals: this.minDecimals,
|
749
|
+
})
|
750
|
+
}
|
759
751
|
},
|
760
752
|
mounted() {
|
761
753
|
if (this.focus) {
|
@@ -794,28 +786,29 @@
|
|
794
786
|
}
|
795
787
|
},
|
796
788
|
onEnterPress() {
|
797
|
-
this.$emit(
|
789
|
+
this.$emit('on-enter-click')
|
798
790
|
this.$refs.inputField1.$el.blur()
|
799
791
|
},
|
800
|
-
onChangeHandler(
|
801
|
-
if (isNaN(
|
802
|
-
|
792
|
+
onChangeHandler(event) {
|
793
|
+
if (isNaN(event) || event === '') {
|
794
|
+
event = this.defaultNumber
|
803
795
|
? this.defaultNumber
|
804
796
|
: this.minNumber || this.minNumber === 0
|
805
797
|
? this.minNumber
|
806
|
-
:
|
798
|
+
: event
|
807
799
|
}
|
808
800
|
if (!this.allowNegative) {
|
809
|
-
|
801
|
+
event = Math.abs(event)
|
810
802
|
}
|
811
|
-
|
803
|
+
event = parseFloat(event)
|
812
804
|
// Need to return an integer rather than a string
|
813
|
-
|
805
|
+
this.$emit('input-change', event)
|
814
806
|
},
|
815
|
-
onEvaluateCode(
|
807
|
+
onEvaluateCode(event) {
|
816
808
|
// function to perform math on the code
|
817
809
|
// filter the string in case of any malicious content
|
818
|
-
|
810
|
+
const val = event.target.value
|
811
|
+
let filtered = val.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
819
812
|
filtered = filtered.split(/([-+*/()])/)
|
820
813
|
let formatted = filtered.map((item) => {
|
821
814
|
if (
|
@@ -873,29 +866,48 @@
|
|
873
866
|
return array
|
874
867
|
},
|
875
868
|
onInput(event) {
|
876
|
-
this.
|
877
|
-
if (!this.isFocused || this.enteredValue === this.inputValue) {
|
869
|
+
if (!this.isFocused) {
|
878
870
|
return
|
879
871
|
}
|
872
|
+
if (event.target.value === '') {
|
873
|
+
this.$emit('on-input', '')
|
874
|
+
}
|
880
875
|
let evaluatedVal
|
881
876
|
try {
|
882
|
-
evaluatedVal = this.onEvaluateCode(
|
877
|
+
evaluatedVal = this.onEvaluateCode(event)
|
883
878
|
} finally {
|
884
|
-
this.
|
885
|
-
|
886
|
-
if (this.isFocused && typeof this.enteredValue !== 'number') {
|
887
|
-
this.$emit(EVENT_TYPES.INPUT_CHANGE, this.inputValue)
|
879
|
+
if (evaluatedVal && this.value != evaluatedVal) {
|
880
|
+
this.$emit('on-input', evaluatedVal)
|
888
881
|
}
|
889
882
|
}
|
890
883
|
this.textInput = evaluatedVal
|
891
884
|
},
|
892
885
|
onInputBlur(e) {
|
893
886
|
this.isFocused = false
|
894
|
-
|
895
|
-
this
|
896
|
-
|
897
|
-
|
898
|
-
|
887
|
+
let value = e.target.value
|
888
|
+
let evaluatedInput = this.onEvaluateCode(e)
|
889
|
+
this.onChangeHandler(evaluatedInput ? evaluatedInput : value)
|
890
|
+
if ((evaluatedInput && value.length) || this.minNumber !== null) {
|
891
|
+
this.textInput = numberToString({
|
892
|
+
value:
|
893
|
+
evaluatedInput && value.length
|
894
|
+
? evaluatedInput
|
895
|
+
: this.defaultNumber
|
896
|
+
? this.defaultNumber
|
897
|
+
: this.minNumber,
|
898
|
+
numberPrecision: this.numberPrecision,
|
899
|
+
minDecimals: this.minDecimals,
|
900
|
+
})
|
901
|
+
}
|
902
|
+
let adjustedMinValue =
|
903
|
+
evaluatedInput && evaluatedInput.length
|
904
|
+
? evaluatedInput
|
905
|
+
: this.defaultNumber
|
906
|
+
? this.defaultNumber
|
907
|
+
: this.minNumber || this.minNumber === 0
|
908
|
+
? this.minNumber
|
909
|
+
: ''
|
910
|
+
this.$emit('input-blur', adjustedMinValue)
|
899
911
|
},
|
900
912
|
focusInput() {
|
901
913
|
if (this.disabled) {
|
@@ -905,7 +917,7 @@
|
|
905
917
|
this.$nextTick(() => {
|
906
918
|
this.$refs.inputField1.$el.select()
|
907
919
|
})
|
908
|
-
this.$emit(
|
920
|
+
this.$emit('input-focus')
|
909
921
|
},
|
910
922
|
blurInput() {
|
911
923
|
if (this.disabled) {
|
@@ -925,7 +937,7 @@
|
|
925
937
|
: this.minNumber || this.minNumber === 0
|
926
938
|
? this.minNumber
|
927
939
|
: ''
|
928
|
-
if (adjustedMinValue || adjustedMinValue === 0) {
|
940
|
+
if ((adjustedMinValue || adjustedMinValue === 0) && !this.isFocused) {
|
929
941
|
let input = this.numberToStringEnabled
|
930
942
|
? numberToString({
|
931
943
|
value: adjustedMinValue,
|
@@ -938,8 +950,6 @@
|
|
938
950
|
return input + ' ' + unit
|
939
951
|
} else if (!adjustedMinValue && adjustedMinValue !== 0) {
|
940
952
|
return ''
|
941
|
-
} else if (this.isFocused) {
|
942
|
-
return value
|
943
953
|
} else {
|
944
954
|
return this.numberToStringEnabled
|
945
955
|
? numberToString({
|
@@ -960,7 +970,14 @@
|
|
960
970
|
e.preventDefault()
|
961
971
|
let value = parseFloat(this.value || 0)
|
962
972
|
value += parseFloat(this.interactionStep) * parseInt(e.movementX)
|
963
|
-
this.$emit(
|
973
|
+
this.$emit('on-input-drag', value)
|
974
|
+
|
975
|
+
this.textInput = numberToString({
|
976
|
+
value: value && value.length ? value : this.minNumber,
|
977
|
+
numberPrecision: this.numberPrecision,
|
978
|
+
minDecimals: this.minDecimals,
|
979
|
+
})
|
980
|
+
//this.value=value
|
964
981
|
},
|
965
982
|
stopInteract(e) {
|
966
983
|
e.preventDefault()
|
@@ -968,9 +985,6 @@
|
|
968
985
|
window.removeEventListener('mouseup', this.stopInteract, false)
|
969
986
|
this.blurInput()
|
970
987
|
},
|
971
|
-
handleSelectChange(value) {
|
972
|
-
this.$emit(EVENT_TYPES.SELECT_CHANGE, value)
|
973
|
-
},
|
974
988
|
},
|
975
989
|
}
|
976
990
|
</script>
|
@@ -109,11 +109,7 @@
|
|
109
109
|
>
|
110
110
|
<slot name="selector" :selected-value="selectedValue"></slot>
|
111
111
|
</Selector>
|
112
|
-
<Caret
|
113
|
-
class="caret_dropdown"
|
114
|
-
:color-mode="colorMode"
|
115
|
-
@click.stop="toggleCaretDropdown"
|
116
|
-
>
|
112
|
+
<Caret class="caret_dropdown" :color-mode="colorMode">
|
117
113
|
<Icon
|
118
114
|
v-if="isDropdownOpen"
|
119
115
|
:color="
|
@@ -142,12 +138,11 @@
|
|
142
138
|
v-show="isSelectDropdownShown"
|
143
139
|
ref="dropdown"
|
144
140
|
:bg-color="
|
145
|
-
|
146
|
-
colorMode == 'dark' ||
|
147
|
-
colorMode == 'transparent'
|
141
|
+
colorMode == 'dark' || colorMode == 'transparent'
|
148
142
|
? 'black'
|
149
143
|
: 'white'
|
150
144
|
"
|
145
|
+
class="rc-select-dropdown"
|
151
146
|
:dropdown-position="dropdownPosition"
|
152
147
|
:font-color="
|
153
148
|
dropdownFontColor ||
|
@@ -167,10 +162,17 @@
|
|
167
162
|
:hovered-index="hoveredIndex"
|
168
163
|
:hovered-value="hoveredValue"
|
169
164
|
:is-active="isActive"
|
165
|
+
:is-fixed-dropdown-position="isFixedDropdownPosition"
|
166
|
+
:is-parent-modal="isParentModal"
|
170
167
|
:min-width="minWidth"
|
171
168
|
:no-relative="noRelative"
|
172
169
|
:option-width="getOptionWidth"
|
173
170
|
:selected-value="selectedValue"
|
171
|
+
:style="{
|
172
|
+
transform: `translate(${dropdownPosition?.left}px, ${
|
173
|
+
noRelative ? 'auto' : `${dropdownPosition?.top}px`
|
174
|
+
})`,
|
175
|
+
}"
|
174
176
|
@mouseleave="optionLeave"
|
175
177
|
@option-hovered="optionHovered"
|
176
178
|
@option-selected="optionSelected"
|
@@ -208,7 +210,7 @@
|
|
208
210
|
// </template>
|
209
211
|
// </Select>
|
210
212
|
|
211
|
-
import { Teleport } from 'vue'
|
213
|
+
import { Teleport, inject } from 'vue'
|
212
214
|
import styled from 'vue3-styled-components'
|
213
215
|
import InfoText from '../../infoText'
|
214
216
|
import Icon from '../../icon'
|
@@ -392,14 +394,17 @@
|
|
392
394
|
selectedValue: Number | String,
|
393
395
|
noRelative: Boolean,
|
394
396
|
minWidth: String,
|
397
|
+
isParentModal: Boolean,
|
398
|
+
isFixedDropdownPosition: Boolean,
|
395
399
|
}
|
396
400
|
const SelectDropdown = styled('div', selectDropdownAttrs)`
|
397
401
|
box-sizing: border-box;
|
398
|
-
z-index: ${(props) =>
|
399
|
-
|
400
|
-
|
401
|
-
props.
|
402
|
-
|
402
|
+
z-index: ${(props) =>
|
403
|
+
props.isActive ? '2' : props.isParentModal ? '9999999' : '99999'};
|
404
|
+
position: ${(props) =>
|
405
|
+
props.isFixedDropdownPosition ? 'fixed' : 'absolute'};
|
406
|
+
top: 0px;
|
407
|
+
left: 0px;
|
403
408
|
border: ${BORDER_WIDTH} solid ${(props) => props.theme.colors.grey4};
|
404
409
|
border-radius: 4px;
|
405
410
|
display: flex;
|
@@ -647,6 +652,11 @@
|
|
647
652
|
type: String,
|
648
653
|
required: false,
|
649
654
|
},
|
655
|
+
isFixedDropdownPosition: {
|
656
|
+
type: Boolean,
|
657
|
+
required: false,
|
658
|
+
default: false,
|
659
|
+
},
|
650
660
|
},
|
651
661
|
|
652
662
|
data() {
|
@@ -664,6 +674,17 @@
|
|
664
674
|
},
|
665
675
|
dropdownWidth: null,
|
666
676
|
hoveredValue: null,
|
677
|
+
isDisplayedAtBottom: true,
|
678
|
+
selectTopPosition: 0,
|
679
|
+
selectAndDropdownDistance: 0,
|
680
|
+
animationFrameId: null,
|
681
|
+
}
|
682
|
+
},
|
683
|
+
setup() {
|
684
|
+
const modalRef = inject('modalRef')
|
685
|
+
|
686
|
+
return {
|
687
|
+
modalRef,
|
667
688
|
}
|
668
689
|
},
|
669
690
|
computed: {
|
@@ -721,6 +742,9 @@
|
|
721
742
|
/windows phone/i.test(userAgent)
|
722
743
|
)
|
723
744
|
},
|
745
|
+
isParentModal() {
|
746
|
+
return !!this.modalRef
|
747
|
+
},
|
724
748
|
},
|
725
749
|
watch: {
|
726
750
|
value(val) {
|
@@ -734,8 +758,13 @@
|
|
734
758
|
}, 10)
|
735
759
|
await this.$nextTick()
|
736
760
|
this.handleSetDropdownOffet()
|
761
|
+
if (!this.isFixedDropdownPosition) this.calculateSelectTopPosition()
|
737
762
|
} else {
|
738
763
|
this.dropdownPosition.left = null
|
764
|
+
if (this.animationFrameId) {
|
765
|
+
cancelAnimationFrame(this.animationFrameId)
|
766
|
+
this.animationFrameId = null
|
767
|
+
}
|
739
768
|
setTimeout(() => {
|
740
769
|
this.isClickOutsideActive = false
|
741
770
|
}, 10)
|
@@ -748,11 +777,30 @@
|
|
748
777
|
})
|
749
778
|
}
|
750
779
|
},
|
780
|
+
isSelectDropdownShown(isShown) {
|
781
|
+
if (!isShown) return
|
782
|
+
// Need to wait for 1ms to make sure the dropdown menu is shown in the DOM
|
783
|
+
// before getting the distance between the select and the dropdown menu
|
784
|
+
setTimeout(() => {
|
785
|
+
this.getDistanceBetweenSelectAndDropdownMenu()
|
786
|
+
}, 100)
|
787
|
+
},
|
788
|
+
selectTopPosition() {
|
789
|
+
this.dropdownPosition.top =
|
790
|
+
this.selectTopPosition +
|
791
|
+
this.$refs.select.$el.clientHeight +
|
792
|
+
this.selectAndDropdownDistance
|
793
|
+
},
|
751
794
|
},
|
752
795
|
mounted() {
|
753
796
|
this.observeDropdownHeight()
|
754
797
|
this.observeSelectWidth()
|
755
798
|
window.addEventListener('resize', this.handleSetDropdownOffet)
|
799
|
+
if (!this.isFixedDropdownPosition)
|
800
|
+
document.body.addEventListener(
|
801
|
+
'scroll',
|
802
|
+
this.calculateSelectTopPosition
|
803
|
+
)
|
756
804
|
},
|
757
805
|
beforeMount() {
|
758
806
|
this.selectedValue = this.value
|
@@ -761,6 +809,12 @@
|
|
761
809
|
window.removeEventListener('resize', this.handleSetDropdownOffet)
|
762
810
|
if (this.dropdownResizeObserver) this.dropdownResizeObserver.disconnect()
|
763
811
|
if (this.selectResizeObserver) this.selectResizeObserver.disconnect()
|
812
|
+
if (!this.isFixedDropdownPosition) {
|
813
|
+
document.body.removeEventListener(
|
814
|
+
'scroll',
|
815
|
+
this.calculateSelectTopPosition
|
816
|
+
)
|
817
|
+
}
|
764
818
|
},
|
765
819
|
unmounted() {
|
766
820
|
document.removeEventListener('click', this.clickOutside)
|
@@ -866,11 +920,11 @@
|
|
866
920
|
return
|
867
921
|
}
|
868
922
|
await this.$nextTick()
|
869
|
-
|
923
|
+
this.isDisplayedAtBottom = await this.generateDropdownPosition()
|
870
924
|
// If the dropdown menu is going to be displayed at the bottom,
|
871
925
|
// we need reverify its position after a dom update (nextTick)
|
872
926
|
await this.$nextTick()
|
873
|
-
if (isDisplayedAtBottom) this.generateDropdownPosition()
|
927
|
+
if (this.isDisplayedAtBottom) this.generateDropdownPosition()
|
874
928
|
},
|
875
929
|
async generateDropdownPosition() {
|
876
930
|
const isDropdownNotCompletelyVisible =
|
@@ -963,6 +1017,25 @@
|
|
963
1017
|
}
|
964
1018
|
}
|
965
1019
|
},
|
1020
|
+
getDistanceBetweenSelectAndDropdownMenu() {
|
1021
|
+
const wholeSelectTopPosition =
|
1022
|
+
this.selectTopPosition + this.$refs.select.$el.clientHeight
|
1023
|
+
this.selectAndDropdownDistance =
|
1024
|
+
this.dropdownPosition.top - wholeSelectTopPosition
|
1025
|
+
},
|
1026
|
+
calculateSelectTopPosition() {
|
1027
|
+
const selectRef = this.$refs.select
|
1028
|
+
if (selectRef) {
|
1029
|
+
const currentTopPosition =
|
1030
|
+
selectRef.$el.getBoundingClientRect().top + window.scrollY
|
1031
|
+
if (this.selectTopPosition !== currentTopPosition) {
|
1032
|
+
this.selectTopPosition = currentTopPosition
|
1033
|
+
}
|
1034
|
+
}
|
1035
|
+
this.animationFrameId = requestAnimationFrame(
|
1036
|
+
this.calculateSelectTopPosition
|
1037
|
+
)
|
1038
|
+
},
|
966
1039
|
},
|
967
1040
|
}
|
968
1041
|
</script>
|
@@ -1,7 +1,11 @@
|
|
1
1
|
<template>
|
2
2
|
<PageWrapper
|
3
3
|
v-if="isOpen"
|
4
|
+
<<<<<<< HEAD
|
5
|
+
ref="modalRef"
|
6
|
+
=======
|
4
7
|
:add-padding-top="addPaddingTop"
|
8
|
+
>>>>>>> master
|
5
9
|
:backdrop="backdrop"
|
6
10
|
:is-open="isOpen"
|
7
11
|
:position="position"
|
@@ -36,6 +40,7 @@
|
|
36
40
|
// <div>Data....</div>
|
37
41
|
// </modal>
|
38
42
|
|
43
|
+
import { ref, provide } from 'vue'
|
39
44
|
import styled from 'vue3-styled-components'
|
40
45
|
import CloseButton from '../../buttons/closeButton'
|
41
46
|
import Spinner from '../../spinner'
|
@@ -58,14 +63,14 @@
|
|
58
63
|
props.backdrop == 'dark'
|
59
64
|
? 'rgba(0, 0, 0, 0.4)'
|
60
65
|
: 'rgba(255, 255, 255, 0.9)'};
|
61
|
-
z-index:
|
66
|
+
z-index: 9999999;
|
62
67
|
overflow: auto;
|
63
68
|
padding-top: ${(props) => (props.addPaddingTop ? '80px' : '0')};
|
64
69
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
`
|
70
|
+
@media (max-width: 425px) {
|
71
|
+
background: white;
|
72
|
+
}
|
73
|
+
`
|
69
74
|
|
70
75
|
const modalContainerAttrs = { overflow: String, isLoading: Boolean }
|
71
76
|
const ModalContainer = styled('div', modalContainerAttrs)`
|
@@ -163,6 +168,14 @@
|
|
163
168
|
default: false,
|
164
169
|
},
|
165
170
|
},
|
171
|
+
setup() {
|
172
|
+
const modalRef = ref(null)
|
173
|
+
provide('modalRef', modalRef)
|
174
|
+
|
175
|
+
return {
|
176
|
+
modalRef,
|
177
|
+
}
|
178
|
+
},
|
166
179
|
watch: {
|
167
180
|
isOpen: {
|
168
181
|
immediate: true,
|
@@ -94,7 +94,7 @@ export const stringToNumber = ({
|
|
94
94
|
|
95
95
|
export const numberToString = ({ value, numberPrecision, minDecimals }) => {
|
96
96
|
const minimumRounding = minDecimals ? minDecimals : 0
|
97
|
-
value =
|
97
|
+
value = parseFloat(value)
|
98
98
|
return value.toLocaleString(langForLocaleString(), {
|
99
99
|
minimumFractionDigits: minimumRounding, // removing this for now. Why do we need this to be a minimum amount?
|
100
100
|
maximumFractionDigits:
|