@eturnity/eturnity_reusable_components 8.13.13-EPDM-6306.0 → 8.13.13-EPDM-11600.5
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 +1 -1
- package/src/assets/svgIcons/erase.svg +2 -3
- package/src/components/infoCard/index.vue +7 -3
- package/src/components/inputs/inputNumber/InputNumber.stories.js +19 -5
- package/src/components/inputs/inputNumber/index.vue +93 -67
- package/src/components/pageSubtitle/index.vue +7 -1
- package/src/helpers/numberConverter.js +1 -1
package/package.json
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
<svg
|
2
|
-
<
|
3
|
-
<path d="M24.9592 15.0408C22.2382 12.3197 17.7618 12.3197 15.0408 15.0408C12.3197 17.7618 12.3197 22.2382 15.0408 24.9592C17.7618 27.6803 22.2382 27.6803 24.9592 24.9592C27.6803 22.2382 27.6803 17.8495 24.9592 15.0408ZM23.6426 22.5016L22.4138 23.7304L19.9561 21.2727L17.4984 23.7304L16.2696 22.5016L18.7273 20.0439L16.2696 17.5862L17.4984 16.3574L19.9561 18.815L22.4138 16.3574L23.6426 17.5862L21.185 20.0439L23.6426 22.5016Z" fill="#FF5656"></path>
|
1
|
+
<svg width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M18.4389 3.06113C14.3574 -1.02038 7.64263 -1.02038 3.56113 3.06113C-0.520376 7.14263 -0.520376 13.8574 3.56113 17.9389C7.64263 22.0204 14.3574 22.0204 18.4389 17.9389C22.5204 13.8574 22.5204 7.2743 18.4389 3.06113ZM16.464 14.2524L14.6207 16.0956L10.9342 12.4091L7.24765 16.0956L5.40439 14.2524L9.09091 10.5658L5.40439 6.87931L7.24765 5.03605L10.9342 8.72257L14.6207 5.03605L16.464 6.87931L12.7774 10.5658L16.464 14.2524Z" fill="#FF5656"/>
|
4
3
|
</svg>
|
@@ -123,7 +123,11 @@
|
|
123
123
|
return this.type === 'error_minor'
|
124
124
|
},
|
125
125
|
iconName() {
|
126
|
-
return this.type === 'warning'
|
126
|
+
return this.type === 'warning'
|
127
|
+
? 'warning_triangle'
|
128
|
+
: this.isErrorMinor
|
129
|
+
? 'erase'
|
130
|
+
: 'info'
|
127
131
|
},
|
128
132
|
presetStyles() {
|
129
133
|
// the types that doesn't have explicit border anyway have it transparent
|
@@ -142,8 +146,8 @@
|
|
142
146
|
stylesCollection.iconColor = theme.semanticColors.teal[800]
|
143
147
|
} else if (this.isErrorMinor) {
|
144
148
|
stylesCollection.borderStyle = 'dashed'
|
145
|
-
stylesCollection.borderColor = theme.colors.
|
146
|
-
stylesCollection.iconColor = theme.colors.
|
149
|
+
stylesCollection.borderColor = theme.colors.grey4
|
150
|
+
stylesCollection.iconColor = theme.colors.red
|
147
151
|
} else {
|
148
152
|
stylesCollection.borderStyle = 'dashed'
|
149
153
|
stylesCollection.borderColor = theme.colors.grey4
|
@@ -3,15 +3,15 @@ import InputNumber from './index.vue'
|
|
3
3
|
export default {
|
4
4
|
title: 'InputNumber',
|
5
5
|
component: InputNumber,
|
6
|
-
// argTypes: {},
|
7
6
|
}
|
8
7
|
|
9
|
-
const Template = (args
|
8
|
+
const Template = (args) => ({
|
10
9
|
// Components used in your story `template` are defined in the `components` object
|
11
10
|
components: { InputNumber },
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
setup() {
|
12
|
+
return { args: args }
|
13
|
+
},
|
14
|
+
template: `<InputNumber v-bind="args" />`,
|
15
15
|
|
16
16
|
// import InputNumber from "@eturnity/eturnity_reusable_components/src/components/inputs/inputNumber"
|
17
17
|
// How to use:
|
@@ -73,6 +73,20 @@ Disabled.args = {
|
|
73
73
|
showLinearUnitName: false,
|
74
74
|
}
|
75
75
|
|
76
|
+
export const DisabledAndPreDefined = Template.bind({})
|
77
|
+
DisabledAndPreDefined.args = {
|
78
|
+
placeholder: 'Enter Value',
|
79
|
+
disabled: true,
|
80
|
+
isPreDefined: true,
|
81
|
+
value: '',
|
82
|
+
inputWidth: '200px',
|
83
|
+
isError: false,
|
84
|
+
numberPrecision: 0,
|
85
|
+
noBorder: false,
|
86
|
+
textAlign: 'left',
|
87
|
+
showLinearUnitName: false,
|
88
|
+
}
|
89
|
+
|
76
90
|
export const LinearUnit = Template.bind({})
|
77
91
|
LinearUnit.args = {
|
78
92
|
placeholder: 'Enter Value',
|
@@ -43,7 +43,6 @@
|
|
43
43
|
:color-mode="colorMode"
|
44
44
|
:data-id="inputDataId"
|
45
45
|
:data-qa-id="dataQaId"
|
46
|
-
:disabled="disabled"
|
47
46
|
:font-color="colorMode === 'transparent' ? 'white' : fontColor"
|
48
47
|
:font-size="fontSize"
|
49
48
|
:has-label-slot="hasLabelSlot"
|
@@ -53,6 +52,7 @@
|
|
53
52
|
:is-disabled="disabled"
|
54
53
|
:is-error="isError"
|
55
54
|
:is-interactive="isInteractive"
|
55
|
+
:is-pre-defined="isPreDefined"
|
56
56
|
:min-width="minWidth"
|
57
57
|
:no-border="noBorder"
|
58
58
|
:placeholder="displayedPlaceholder"
|
@@ -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>
|
@@ -133,7 +133,7 @@
|
|
133
133
|
</ArrowButton>
|
134
134
|
</ArrowControls>
|
135
135
|
</InputWrapper>
|
136
|
-
<ErrorMessage v-if="isError">{{ errorMessage }}</ErrorMessage>
|
136
|
+
<ErrorMessage v-if="isError && errorMessage">{{ errorMessage }}</ErrorMessage>
|
137
137
|
</Container>
|
138
138
|
</template>
|
139
139
|
|
@@ -195,6 +195,7 @@
|
|
195
195
|
slotSize: String,
|
196
196
|
inputHeight: String,
|
197
197
|
isInteractive: Boolean,
|
198
|
+
isPreDefined: Boolean,
|
198
199
|
alignItems: String,
|
199
200
|
labelFontColor: String,
|
200
201
|
labelFontWeight: String,
|
@@ -255,7 +256,7 @@
|
|
255
256
|
color: ${(props) =>
|
256
257
|
props.isError
|
257
258
|
? props.theme.colors.grey6
|
258
|
-
: props.isDisabled
|
259
|
+
: props.isDisabled && !props.isPreDefined
|
259
260
|
? props.colorMode === 'transparent'
|
260
261
|
? props.theme.colors.white
|
261
262
|
: props.theme.colors.grey2
|
@@ -449,18 +450,8 @@
|
|
449
450
|
background-color: ${({ theme }) => theme.colors.grey4};
|
450
451
|
`
|
451
452
|
|
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
453
|
export default {
|
462
454
|
name: 'InputNumber',
|
463
|
-
emits: [...Object.values(EVENT_TYPES)],
|
464
455
|
components: {
|
465
456
|
Container,
|
466
457
|
InputContainer,
|
@@ -539,6 +530,11 @@
|
|
539
530
|
required: false,
|
540
531
|
default: 0,
|
541
532
|
},
|
533
|
+
isPreDefined: {
|
534
|
+
type: Boolean,
|
535
|
+
required: false,
|
536
|
+
default: false,
|
537
|
+
},
|
542
538
|
minDecimals: {
|
543
539
|
type: Number,
|
544
540
|
required: false,
|
@@ -659,12 +655,18 @@
|
|
659
655
|
required: false,
|
660
656
|
default: '',
|
661
657
|
},
|
658
|
+
labelDataTestId: {
|
659
|
+
type: String,
|
660
|
+
required: false,
|
661
|
+
default: '',
|
662
|
+
},
|
662
663
|
inputDataId: {
|
663
664
|
type: String,
|
664
665
|
required: false,
|
665
666
|
default: '',
|
666
667
|
},
|
667
668
|
dataQaId: {
|
669
|
+
type: String,
|
668
670
|
required: false,
|
669
671
|
default: '',
|
670
672
|
},
|
@@ -699,10 +701,9 @@
|
|
699
701
|
},
|
700
702
|
data() {
|
701
703
|
return {
|
704
|
+
textInput: '',
|
702
705
|
isFocused: false,
|
703
706
|
warningIcon: warningIcon,
|
704
|
-
inputValue: null,
|
705
|
-
enteredValue: null,
|
706
707
|
}
|
707
708
|
},
|
708
709
|
computed: {
|
@@ -725,14 +726,6 @@
|
|
725
726
|
|
726
727
|
return item ? item.label : '-'
|
727
728
|
},
|
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
729
|
},
|
737
730
|
watch: {
|
738
731
|
focus(value) {
|
@@ -743,19 +736,30 @@
|
|
743
736
|
clearInput: function (value) {
|
744
737
|
if (value) {
|
745
738
|
// If the value is typed, then we should clear the textInput on Continue
|
746
|
-
this.
|
747
|
-
this.enteredValue = ''
|
739
|
+
this.textInput = ''
|
748
740
|
}
|
749
741
|
},
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
}
|
758
|
-
}
|
742
|
+
},
|
743
|
+
created() {
|
744
|
+
if (this.value) {
|
745
|
+
this.textInput = numberToString({
|
746
|
+
value: this.value,
|
747
|
+
numberPrecision: this.numberPrecision,
|
748
|
+
minDecimals: this.minDecimals,
|
749
|
+
})
|
750
|
+
} else if (this.defaultNumber !== null) {
|
751
|
+
this.textInput = numberToString({
|
752
|
+
value: this.defaultNumber,
|
753
|
+
numberPrecision: this.numberPrecision,
|
754
|
+
minDecimals: this.minDecimals,
|
755
|
+
})
|
756
|
+
} else if (this.minNumber !== null) {
|
757
|
+
this.textInput = numberToString({
|
758
|
+
value: this.minNumber,
|
759
|
+
numberPrecision: this.numberPrecision,
|
760
|
+
minDecimals: this.minDecimals,
|
761
|
+
})
|
762
|
+
}
|
759
763
|
},
|
760
764
|
mounted() {
|
761
765
|
if (this.focus) {
|
@@ -794,28 +798,29 @@
|
|
794
798
|
}
|
795
799
|
},
|
796
800
|
onEnterPress() {
|
797
|
-
this.$emit(
|
801
|
+
this.$emit('on-enter-click')
|
798
802
|
this.$refs.inputField1.$el.blur()
|
799
803
|
},
|
800
|
-
onChangeHandler(
|
801
|
-
if (isNaN(
|
802
|
-
|
804
|
+
onChangeHandler(event) {
|
805
|
+
if (isNaN(event) || event === '') {
|
806
|
+
event = this.defaultNumber
|
803
807
|
? this.defaultNumber
|
804
808
|
: this.minNumber || this.minNumber === 0
|
805
809
|
? this.minNumber
|
806
|
-
:
|
810
|
+
: event
|
807
811
|
}
|
808
812
|
if (!this.allowNegative) {
|
809
|
-
|
813
|
+
event = Math.abs(event)
|
810
814
|
}
|
811
|
-
|
815
|
+
event = parseFloat(event)
|
812
816
|
// Need to return an integer rather than a string
|
813
|
-
|
817
|
+
this.$emit('input-change', event)
|
814
818
|
},
|
815
|
-
onEvaluateCode(
|
819
|
+
onEvaluateCode(event) {
|
816
820
|
// function to perform math on the code
|
817
821
|
// filter the string in case of any malicious content
|
818
|
-
|
822
|
+
const val = event.target.value
|
823
|
+
let filtered = val.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
819
824
|
filtered = filtered.split(/([-+*/()])/)
|
820
825
|
let formatted = filtered.map((item) => {
|
821
826
|
if (
|
@@ -873,29 +878,48 @@
|
|
873
878
|
return array
|
874
879
|
},
|
875
880
|
onInput(event) {
|
876
|
-
this.
|
877
|
-
if (!this.isFocused || this.enteredValue === this.inputValue) {
|
881
|
+
if (!this.isFocused) {
|
878
882
|
return
|
879
883
|
}
|
884
|
+
if (event.target.value === '') {
|
885
|
+
this.$emit('on-input', '')
|
886
|
+
}
|
880
887
|
let evaluatedVal
|
881
888
|
try {
|
882
|
-
evaluatedVal = this.onEvaluateCode(
|
889
|
+
evaluatedVal = this.onEvaluateCode(event)
|
883
890
|
} finally {
|
884
|
-
this.
|
885
|
-
|
886
|
-
if (this.isFocused && typeof this.enteredValue !== 'number') {
|
887
|
-
this.$emit(EVENT_TYPES.INPUT_CHANGE, this.inputValue)
|
891
|
+
if (evaluatedVal && this.value != evaluatedVal) {
|
892
|
+
this.$emit('on-input', evaluatedVal)
|
888
893
|
}
|
889
894
|
}
|
890
895
|
this.textInput = evaluatedVal
|
891
896
|
},
|
892
897
|
onInputBlur(e) {
|
893
898
|
this.isFocused = false
|
894
|
-
|
895
|
-
this
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
+
let value = e.target.value
|
900
|
+
let evaluatedInput = this.onEvaluateCode(e)
|
901
|
+
this.onChangeHandler(evaluatedInput ? evaluatedInput : value)
|
902
|
+
if ((evaluatedInput && value.length) || this.minNumber !== null) {
|
903
|
+
this.textInput = numberToString({
|
904
|
+
value:
|
905
|
+
evaluatedInput && value.length
|
906
|
+
? evaluatedInput
|
907
|
+
: this.defaultNumber
|
908
|
+
? this.defaultNumber
|
909
|
+
: this.minNumber,
|
910
|
+
numberPrecision: this.numberPrecision,
|
911
|
+
minDecimals: this.minDecimals,
|
912
|
+
})
|
913
|
+
}
|
914
|
+
let adjustedMinValue =
|
915
|
+
evaluatedInput && evaluatedInput.length
|
916
|
+
? evaluatedInput
|
917
|
+
: this.defaultNumber
|
918
|
+
? this.defaultNumber
|
919
|
+
: this.minNumber || this.minNumber === 0
|
920
|
+
? this.minNumber
|
921
|
+
: ''
|
922
|
+
this.$emit('input-blur', adjustedMinValue)
|
899
923
|
},
|
900
924
|
focusInput() {
|
901
925
|
if (this.disabled) {
|
@@ -905,7 +929,7 @@
|
|
905
929
|
this.$nextTick(() => {
|
906
930
|
this.$refs.inputField1.$el.select()
|
907
931
|
})
|
908
|
-
this.$emit(
|
932
|
+
this.$emit('input-focus')
|
909
933
|
},
|
910
934
|
blurInput() {
|
911
935
|
if (this.disabled) {
|
@@ -925,7 +949,7 @@
|
|
925
949
|
: this.minNumber || this.minNumber === 0
|
926
950
|
? this.minNumber
|
927
951
|
: ''
|
928
|
-
if (adjustedMinValue || adjustedMinValue === 0) {
|
952
|
+
if ((adjustedMinValue || adjustedMinValue === 0) && !this.isFocused) {
|
929
953
|
let input = this.numberToStringEnabled
|
930
954
|
? numberToString({
|
931
955
|
value: adjustedMinValue,
|
@@ -938,8 +962,6 @@
|
|
938
962
|
return input + ' ' + unit
|
939
963
|
} else if (!adjustedMinValue && adjustedMinValue !== 0) {
|
940
964
|
return ''
|
941
|
-
} else if (this.isFocused) {
|
942
|
-
return value
|
943
965
|
} else {
|
944
966
|
return this.numberToStringEnabled
|
945
967
|
? numberToString({
|
@@ -960,7 +982,14 @@
|
|
960
982
|
e.preventDefault()
|
961
983
|
let value = parseFloat(this.value || 0)
|
962
984
|
value += parseFloat(this.interactionStep) * parseInt(e.movementX)
|
963
|
-
this.$emit(
|
985
|
+
this.$emit('on-input-drag', value)
|
986
|
+
|
987
|
+
this.textInput = numberToString({
|
988
|
+
value: value && value.length ? value : this.minNumber,
|
989
|
+
numberPrecision: this.numberPrecision,
|
990
|
+
minDecimals: this.minDecimals,
|
991
|
+
})
|
992
|
+
//this.value=value
|
964
993
|
},
|
965
994
|
stopInteract(e) {
|
966
995
|
e.preventDefault()
|
@@ -968,9 +997,6 @@
|
|
968
997
|
window.removeEventListener('mouseup', this.stopInteract, false)
|
969
998
|
this.blurInput()
|
970
999
|
},
|
971
|
-
handleSelectChange(value) {
|
972
|
-
this.$emit(EVENT_TYPES.SELECT_CHANGE, value)
|
973
|
-
},
|
974
1000
|
},
|
975
1001
|
}
|
976
1002
|
</script>
|
@@ -5,7 +5,8 @@
|
|
5
5
|
:has-info-text="!!infoText"
|
6
6
|
:margin-bottom="marginBottom"
|
7
7
|
>
|
8
|
-
<span data-test-id="page_subtitle_text">
|
8
|
+
<span v-if="containsHtml" data-test-id="page_subtitle_text" v-html="text"></span>
|
9
|
+
<span v-else data-test-id="page_subtitle_text">
|
9
10
|
{{ text }}
|
10
11
|
</span>
|
11
12
|
<InfoText
|
@@ -58,6 +59,11 @@
|
|
58
59
|
required: true,
|
59
60
|
type: String,
|
60
61
|
},
|
62
|
+
containsHtml: {
|
63
|
+
required: false,
|
64
|
+
type: Boolean,
|
65
|
+
default: false,
|
66
|
+
},
|
61
67
|
color: {
|
62
68
|
required: false,
|
63
69
|
type: String,
|
@@ -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:
|