@eturnity/eturnity_reusable_components 7.39.4--EPDM-12129.2 → 7.39.4--EPDM-12129.3
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/addNewButton/index.vue +2 -2
- package/src/components/buttons/mainButton/index.vue +2 -2
- package/src/components/iconWrapper/index.vue +2 -2
- package/src/components/inputs/checkbox/index.vue +2 -2
- package/src/components/inputs/inputNumber/index.vue +2 -2
- package/src/components/inputs/inputText/index.vue +2 -2
- package/src/components/inputs/radioButton/index.vue +2 -2
- package/src/components/inputs/searchInput/index.vue +2 -2
- package/src/components/inputs/select/index.vue +3 -3
- package/src/components/inputs/textAreaInput/index.vue +2 -2
- package/src/components/inputs/toggle/index.vue +3 -2
- package/src/components/rangeSlider/Slider.vue +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<PageContainer :should-position="shouldPosition">
|
3
|
-
<ButtonContainer :data-id="dataId" :data-
|
3
|
+
<ButtonContainer :data-id="dataId" :data-qa-id="dataQaId">
|
4
4
|
<PlusButtonSvg />
|
5
5
|
</ButtonContainer>
|
6
6
|
</PageContainer>
|
@@ -57,7 +57,7 @@
|
|
57
57
|
type: String,
|
58
58
|
default: '',
|
59
59
|
},
|
60
|
-
|
60
|
+
dataQaId: {
|
61
61
|
type: String,
|
62
62
|
default: '',
|
63
63
|
},
|
@@ -4,7 +4,7 @@
|
|
4
4
|
:id="id"
|
5
5
|
:custom-color="customColor"
|
6
6
|
:data-id="dataId"
|
7
|
-
:data-
|
7
|
+
:data-qa-id="dataQaId"
|
8
8
|
:font-color="fontColor"
|
9
9
|
:is-disabled="isDisabled"
|
10
10
|
:min-width="minWidth"
|
@@ -146,7 +146,7 @@
|
|
146
146
|
type: String,
|
147
147
|
default: '',
|
148
148
|
},
|
149
|
-
|
149
|
+
dataQaId: {
|
150
150
|
type: String,
|
151
151
|
default: '',
|
152
152
|
},
|
@@ -4,7 +4,7 @@
|
|
4
4
|
:border-radius="borderRadius"
|
5
5
|
:color="iconColor"
|
6
6
|
:data-id="dataId"
|
7
|
-
:data-
|
7
|
+
:data-qa-id="dataQaId"
|
8
8
|
:disabled="disabled"
|
9
9
|
:has-border="hasBorder"
|
10
10
|
:hovered-background-color="hoveredBackgroundColor"
|
@@ -155,7 +155,7 @@
|
|
155
155
|
type: String,
|
156
156
|
default: '',
|
157
157
|
},
|
158
|
-
|
158
|
+
dataQaId: {
|
159
159
|
type: String,
|
160
160
|
default: '',
|
161
161
|
},
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<InputCheckbox
|
14
14
|
:checked="isChecked"
|
15
15
|
:data-id="dataId"
|
16
|
-
:data-
|
16
|
+
:data-qa-id="dataQaId"
|
17
17
|
type="checkbox"
|
18
18
|
@change="onChangeHandler(!isChecked)"
|
19
19
|
/>
|
@@ -204,7 +204,7 @@
|
|
204
204
|
type: String,
|
205
205
|
default: '',
|
206
206
|
},
|
207
|
-
|
207
|
+
dataQaId: {
|
208
208
|
type: String,
|
209
209
|
default: '',
|
210
210
|
},
|
@@ -35,7 +35,7 @@
|
|
35
35
|
:background-color="backgroundColor"
|
36
36
|
:border-color="borderColor"
|
37
37
|
:data-id="inputDataId"
|
38
|
-
:data-
|
38
|
+
:data-qa-id="dataQaId"
|
39
39
|
:disabled="disabled"
|
40
40
|
:font-color="fontColor"
|
41
41
|
:font-size="fontSize"
|
@@ -501,7 +501,7 @@
|
|
501
501
|
required: false,
|
502
502
|
default: '',
|
503
503
|
},
|
504
|
-
|
504
|
+
dataQaId: {
|
505
505
|
required: false,
|
506
506
|
default: '',
|
507
507
|
},
|
@@ -28,7 +28,7 @@
|
|
28
28
|
ref="inputElement"
|
29
29
|
:background-color="backgroundColor"
|
30
30
|
:data-id="inputDataId"
|
31
|
-
:data-
|
31
|
+
:data-qa-id="dataQaId"
|
32
32
|
:disabled="disabled"
|
33
33
|
:disabled-background-color="disabledBackgroundColor"
|
34
34
|
:font-color="fontColor"
|
@@ -325,7 +325,7 @@
|
|
325
325
|
required: false,
|
326
326
|
default: '',
|
327
327
|
},
|
328
|
-
|
328
|
+
dataQaId: {
|
329
329
|
required: false,
|
330
330
|
default: '',
|
331
331
|
},
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<Radio
|
12
12
|
:checked="selectedOption === item.value"
|
13
13
|
:data-id="`radio_button_${dataId}_option_${item.value}`"
|
14
|
-
:data-
|
14
|
+
:data-qa-id="dataQaId"
|
15
15
|
:disabled="item.disabled"
|
16
16
|
:name="'radioButtons_' + radioName"
|
17
17
|
type="radio"
|
@@ -248,7 +248,7 @@
|
|
248
248
|
type: String,
|
249
249
|
default: 'key',
|
250
250
|
},
|
251
|
-
|
251
|
+
dataQaId: {
|
252
252
|
type: String,
|
253
253
|
default: '',
|
254
254
|
},
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<InputContainer
|
6
6
|
ref="inputElement"
|
7
7
|
:data-id="dataId"
|
8
|
-
:data-
|
8
|
+
:data-qa-id="dataQaId"
|
9
9
|
:disabled="disabled"
|
10
10
|
:has-focus="hasFocus"
|
11
11
|
:input-width="inputWidth"
|
@@ -121,7 +121,7 @@
|
|
121
121
|
required: false,
|
122
122
|
default: '',
|
123
123
|
},
|
124
|
-
|
124
|
+
dataQaId: {
|
125
125
|
required: false,
|
126
126
|
default: '',
|
127
127
|
type: String,
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<LabelWrapper
|
14
14
|
v-if="label"
|
15
15
|
:data-id="labelDataId"
|
16
|
-
:data-
|
16
|
+
:data-qa-id="dataQaId"
|
17
17
|
:info-text-message="!!infoTextMessage || !!$slots.infoText"
|
18
18
|
>
|
19
19
|
<InputLabel
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"
|
46
46
|
class="select-button"
|
47
47
|
:data-id="dataId"
|
48
|
-
:data-
|
48
|
+
:data-qa-id="dataQaId"
|
49
49
|
:disabled="disabled"
|
50
50
|
:font-color="
|
51
51
|
buttonFontColor || colorMode == 'dark' ? 'white' : 'black'
|
@@ -555,7 +555,7 @@
|
|
555
555
|
type: String,
|
556
556
|
default: '',
|
557
557
|
},
|
558
|
-
|
558
|
+
dataQaId: {
|
559
559
|
type: String,
|
560
560
|
default: '',
|
561
561
|
},
|
@@ -18,7 +18,7 @@
|
|
18
18
|
>
|
19
19
|
<textarea
|
20
20
|
:data-id="inputDataId"
|
21
|
-
:data-
|
21
|
+
:data-qa-id="dataQaId"
|
22
22
|
:disabled="isDisabled"
|
23
23
|
:placeholder="placeholder"
|
24
24
|
:resize="resize"
|
@@ -186,7 +186,7 @@
|
|
186
186
|
required: false,
|
187
187
|
default: '',
|
188
188
|
},
|
189
|
-
|
189
|
+
dataQaId: {
|
190
190
|
required: false,
|
191
191
|
default: '',
|
192
192
|
type: String,
|
@@ -2,7 +2,8 @@
|
|
2
2
|
<Container>
|
3
3
|
<FlexWrapper
|
4
4
|
:data-id="dataId"
|
5
|
-
:data-
|
5
|
+
:data-qa-id="dataQaId"
|
6
|
+
data-test-id="page_wrapper"
|
6
7
|
:disabled="disabled"
|
7
8
|
:size="size"
|
8
9
|
@click="onToggleChange"
|
@@ -304,7 +305,7 @@
|
|
304
305
|
type: String,
|
305
306
|
default: '',
|
306
307
|
},
|
307
|
-
|
308
|
+
dataQaId: {
|
308
309
|
type: String,
|
309
310
|
default: '',
|
310
311
|
},
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div
|
3
3
|
:class="className"
|
4
4
|
:data-id="dataId"
|
5
|
-
:data-
|
5
|
+
:data-qa-id="dataQaId"
|
6
6
|
:style="style"
|
7
7
|
@mousedown="elementMouseDown"
|
8
8
|
@touchstart="elementTouchDown"
|
@@ -65,7 +65,7 @@
|
|
65
65
|
type: String,
|
66
66
|
default: '',
|
67
67
|
},
|
68
|
-
|
68
|
+
dataQaId: {
|
69
69
|
type: String,
|
70
70
|
default: '',
|
71
71
|
},
|