@eturnity/eturnity_reusable_components 8.13.13-EPDM-12459.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 +15 -3
- package/src/components/inputs/select/index.vue +16 -89
- package/src/components/modals/modal/index.vue +5 -18
- package/src/components/pageSubtitle/index.vue +7 -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"
|
@@ -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
|
@@ -529,6 +530,11 @@
|
|
529
530
|
required: false,
|
530
531
|
default: 0,
|
531
532
|
},
|
533
|
+
isPreDefined: {
|
534
|
+
type: Boolean,
|
535
|
+
required: false,
|
536
|
+
default: false,
|
537
|
+
},
|
532
538
|
minDecimals: {
|
533
539
|
type: Number,
|
534
540
|
required: false,
|
@@ -649,12 +655,18 @@
|
|
649
655
|
required: false,
|
650
656
|
default: '',
|
651
657
|
},
|
658
|
+
labelDataTestId: {
|
659
|
+
type: String,
|
660
|
+
required: false,
|
661
|
+
default: '',
|
662
|
+
},
|
652
663
|
inputDataId: {
|
653
664
|
type: String,
|
654
665
|
required: false,
|
655
666
|
default: '',
|
656
667
|
},
|
657
668
|
dataQaId: {
|
669
|
+
type: String,
|
658
670
|
required: false,
|
659
671
|
default: '',
|
660
672
|
},
|
@@ -109,7 +109,11 @@
|
|
109
109
|
>
|
110
110
|
<slot name="selector" :selected-value="selectedValue"></slot>
|
111
111
|
</Selector>
|
112
|
-
<Caret
|
112
|
+
<Caret
|
113
|
+
class="caret_dropdown"
|
114
|
+
:color-mode="colorMode"
|
115
|
+
@click.stop="toggleCaretDropdown"
|
116
|
+
>
|
113
117
|
<Icon
|
114
118
|
v-if="isDropdownOpen"
|
115
119
|
:color="
|
@@ -138,11 +142,12 @@
|
|
138
142
|
v-show="isSelectDropdownShown"
|
139
143
|
ref="dropdown"
|
140
144
|
:bg-color="
|
141
|
-
|
145
|
+
dropdownBgColor ||
|
146
|
+
colorMode == 'dark' ||
|
147
|
+
colorMode == 'transparent'
|
142
148
|
? 'black'
|
143
149
|
: 'white'
|
144
150
|
"
|
145
|
-
class="rc-select-dropdown"
|
146
151
|
:dropdown-position="dropdownPosition"
|
147
152
|
:font-color="
|
148
153
|
dropdownFontColor ||
|
@@ -162,17 +167,10 @@
|
|
162
167
|
:hovered-index="hoveredIndex"
|
163
168
|
:hovered-value="hoveredValue"
|
164
169
|
:is-active="isActive"
|
165
|
-
:is-fixed-dropdown-position="isFixedDropdownPosition"
|
166
|
-
:is-parent-modal="isParentModal"
|
167
170
|
:min-width="minWidth"
|
168
171
|
:no-relative="noRelative"
|
169
172
|
:option-width="getOptionWidth"
|
170
173
|
:selected-value="selectedValue"
|
171
|
-
:style="{
|
172
|
-
transform: `translate(${dropdownPosition?.left}px, ${
|
173
|
-
noRelative ? 'auto' : `${dropdownPosition?.top}px`
|
174
|
-
})`,
|
175
|
-
}"
|
176
174
|
@mouseleave="optionLeave"
|
177
175
|
@option-hovered="optionHovered"
|
178
176
|
@option-selected="optionSelected"
|
@@ -210,7 +208,7 @@
|
|
210
208
|
// </template>
|
211
209
|
// </Select>
|
212
210
|
|
213
|
-
import { Teleport
|
211
|
+
import { Teleport } from 'vue'
|
214
212
|
import styled from 'vue3-styled-components'
|
215
213
|
import InfoText from '../../infoText'
|
216
214
|
import Icon from '../../icon'
|
@@ -394,17 +392,14 @@
|
|
394
392
|
selectedValue: Number | String,
|
395
393
|
noRelative: Boolean,
|
396
394
|
minWidth: String,
|
397
|
-
isParentModal: Boolean,
|
398
|
-
isFixedDropdownPosition: Boolean,
|
399
395
|
}
|
400
396
|
const SelectDropdown = styled('div', selectDropdownAttrs)`
|
401
397
|
box-sizing: border-box;
|
402
|
-
z-index: ${(props) =>
|
403
|
-
|
404
|
-
|
405
|
-
props.
|
406
|
-
|
407
|
-
left: 0px;
|
398
|
+
z-index: ${(props) => (props.isActive ? '2' : '99999')};
|
399
|
+
position: absolute;
|
400
|
+
top: ${(props) =>
|
401
|
+
props.noRelative ? 'auto' : props.dropdownPosition?.top + 'px'};
|
402
|
+
left: ${(props) => props.dropdownPosition?.left}px;
|
408
403
|
border: ${BORDER_WIDTH} solid ${(props) => props.theme.colors.grey4};
|
409
404
|
border-radius: 4px;
|
410
405
|
display: flex;
|
@@ -652,11 +647,6 @@
|
|
652
647
|
type: String,
|
653
648
|
required: false,
|
654
649
|
},
|
655
|
-
isFixedDropdownPosition: {
|
656
|
-
type: Boolean,
|
657
|
-
required: false,
|
658
|
-
default: false,
|
659
|
-
},
|
660
650
|
},
|
661
651
|
|
662
652
|
data() {
|
@@ -674,17 +664,6 @@
|
|
674
664
|
},
|
675
665
|
dropdownWidth: null,
|
676
666
|
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,
|
688
667
|
}
|
689
668
|
},
|
690
669
|
computed: {
|
@@ -742,9 +721,6 @@
|
|
742
721
|
/windows phone/i.test(userAgent)
|
743
722
|
)
|
744
723
|
},
|
745
|
-
isParentModal() {
|
746
|
-
return !!this.modalRef
|
747
|
-
},
|
748
724
|
},
|
749
725
|
watch: {
|
750
726
|
value(val) {
|
@@ -758,13 +734,8 @@
|
|
758
734
|
}, 10)
|
759
735
|
await this.$nextTick()
|
760
736
|
this.handleSetDropdownOffet()
|
761
|
-
if (!this.isFixedDropdownPosition) this.calculateSelectTopPosition()
|
762
737
|
} else {
|
763
738
|
this.dropdownPosition.left = null
|
764
|
-
if (this.animationFrameId) {
|
765
|
-
cancelAnimationFrame(this.animationFrameId)
|
766
|
-
this.animationFrameId = null
|
767
|
-
}
|
768
739
|
setTimeout(() => {
|
769
740
|
this.isClickOutsideActive = false
|
770
741
|
}, 10)
|
@@ -777,30 +748,11 @@
|
|
777
748
|
})
|
778
749
|
}
|
779
750
|
},
|
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
|
-
},
|
794
751
|
},
|
795
752
|
mounted() {
|
796
753
|
this.observeDropdownHeight()
|
797
754
|
this.observeSelectWidth()
|
798
755
|
window.addEventListener('resize', this.handleSetDropdownOffet)
|
799
|
-
if (!this.isFixedDropdownPosition)
|
800
|
-
document.body.addEventListener(
|
801
|
-
'scroll',
|
802
|
-
this.calculateSelectTopPosition
|
803
|
-
)
|
804
756
|
},
|
805
757
|
beforeMount() {
|
806
758
|
this.selectedValue = this.value
|
@@ -809,12 +761,6 @@
|
|
809
761
|
window.removeEventListener('resize', this.handleSetDropdownOffet)
|
810
762
|
if (this.dropdownResizeObserver) this.dropdownResizeObserver.disconnect()
|
811
763
|
if (this.selectResizeObserver) this.selectResizeObserver.disconnect()
|
812
|
-
if (!this.isFixedDropdownPosition) {
|
813
|
-
document.body.removeEventListener(
|
814
|
-
'scroll',
|
815
|
-
this.calculateSelectTopPosition
|
816
|
-
)
|
817
|
-
}
|
818
764
|
},
|
819
765
|
unmounted() {
|
820
766
|
document.removeEventListener('click', this.clickOutside)
|
@@ -920,11 +866,11 @@
|
|
920
866
|
return
|
921
867
|
}
|
922
868
|
await this.$nextTick()
|
923
|
-
|
869
|
+
const isDisplayedAtBottom = await this.generateDropdownPosition()
|
924
870
|
// If the dropdown menu is going to be displayed at the bottom,
|
925
871
|
// we need reverify its position after a dom update (nextTick)
|
926
872
|
await this.$nextTick()
|
927
|
-
if (
|
873
|
+
if (isDisplayedAtBottom) this.generateDropdownPosition()
|
928
874
|
},
|
929
875
|
async generateDropdownPosition() {
|
930
876
|
const isDropdownNotCompletelyVisible =
|
@@ -1017,25 +963,6 @@
|
|
1017
963
|
}
|
1018
964
|
}
|
1019
965
|
},
|
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
|
-
},
|
1039
966
|
},
|
1040
967
|
}
|
1041
968
|
</script>
|
@@ -1,11 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<PageWrapper
|
3
3
|
v-if="isOpen"
|
4
|
-
<<<<<<< HEAD
|
5
|
-
ref="modalRef"
|
6
|
-
=======
|
7
4
|
:add-padding-top="addPaddingTop"
|
8
|
-
>>>>>>> master
|
9
5
|
:backdrop="backdrop"
|
10
6
|
:is-open="isOpen"
|
11
7
|
:position="position"
|
@@ -40,7 +36,6 @@
|
|
40
36
|
// <div>Data....</div>
|
41
37
|
// </modal>
|
42
38
|
|
43
|
-
import { ref, provide } from 'vue'
|
44
39
|
import styled from 'vue3-styled-components'
|
45
40
|
import CloseButton from '../../buttons/closeButton'
|
46
41
|
import Spinner from '../../spinner'
|
@@ -63,14 +58,14 @@
|
|
63
58
|
props.backdrop == 'dark'
|
64
59
|
? 'rgba(0, 0, 0, 0.4)'
|
65
60
|
: 'rgba(255, 255, 255, 0.9)'};
|
66
|
-
z-index:
|
61
|
+
z-index: 99999;
|
67
62
|
overflow: auto;
|
68
63
|
padding-top: ${(props) => (props.addPaddingTop ? '80px' : '0')};
|
69
64
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
65
|
+
@media (max-width: 425px) {
|
66
|
+
background: white;
|
67
|
+
}
|
68
|
+
`
|
74
69
|
|
75
70
|
const modalContainerAttrs = { overflow: String, isLoading: Boolean }
|
76
71
|
const ModalContainer = styled('div', modalContainerAttrs)`
|
@@ -168,14 +163,6 @@
|
|
168
163
|
default: false,
|
169
164
|
},
|
170
165
|
},
|
171
|
-
setup() {
|
172
|
-
const modalRef = ref(null)
|
173
|
-
provide('modalRef', modalRef)
|
174
|
-
|
175
|
-
return {
|
176
|
-
modalRef,
|
177
|
-
}
|
178
|
-
},
|
179
166
|
watch: {
|
180
167
|
isOpen: {
|
181
168
|
immediate: true,
|
@@ -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,
|