@eturnity/eturnity_reusable_components 8.10.1 → 8.10.3-EPDM-11600.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 +1 -1
- package/src/assets/svgIcons/erase.svg +2 -3
- package/src/components/infoCard/index.vue +3 -3
- package/src/components/infoText/infoText.spec.js +1 -1
- package/src/components/inputs/inputNumber/index.vue +8 -1
- package/src/components/modals/modal/index.vue +11 -2
- package/src/components/selectedOptions/index.vue +2 -12
- package/src/components/selectedOptions/selectedOptions.spec.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>
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<RCIcon
|
13
13
|
:color="iconColor ? iconColor : presetStyles.iconColor"
|
14
14
|
data-test-id="info_card_icon"
|
15
|
-
name="info"
|
15
|
+
:name="isErrorMinor ? 'erase' : 'info'"
|
16
16
|
size="24px"
|
17
17
|
/>
|
18
18
|
<TextContainer data-test-id="info_card_text_container">
|
@@ -138,8 +138,8 @@
|
|
138
138
|
stylesCollection.iconColor = theme.colors.white
|
139
139
|
} else if (this.isErrorMinor) {
|
140
140
|
stylesCollection.borderStyle = 'dashed'
|
141
|
-
stylesCollection.borderColor = theme.colors.
|
142
|
-
stylesCollection.iconColor = theme.colors.
|
141
|
+
stylesCollection.borderColor = theme.colors.grey4
|
142
|
+
stylesCollection.iconColor = theme.colors.red
|
143
143
|
} else {
|
144
144
|
stylesCollection.borderStyle = 'dashed'
|
145
145
|
stylesCollection.borderColor = theme.colors.grey4
|
@@ -5,7 +5,7 @@ import theme from '@/assets/theme'
|
|
5
5
|
|
6
6
|
jest.mock('@/components/icon/iconCache.mjs', () => ({
|
7
7
|
// need to mock this due to how jest handles import.meta
|
8
|
-
fetchIcon: jest.fn(() => Promise.resolve('
|
8
|
+
fetchIcon: jest.fn(() => Promise.resolve('close.svg')),
|
9
9
|
}))
|
10
10
|
|
11
11
|
describe('InfoText Component', () => {
|
@@ -52,6 +52,7 @@
|
|
52
52
|
:is-disabled="disabled"
|
53
53
|
:is-error="isError"
|
54
54
|
:is-interactive="isInteractive"
|
55
|
+
:is-pre-defined="isPreDefined"
|
55
56
|
:min-width="minWidth"
|
56
57
|
:no-border="noBorder"
|
57
58
|
:placeholder="displayedPlaceholder"
|
@@ -194,6 +195,7 @@
|
|
194
195
|
slotSize: String,
|
195
196
|
inputHeight: String,
|
196
197
|
isInteractive: Boolean,
|
198
|
+
isPreDefined: Boolean,
|
197
199
|
alignItems: String,
|
198
200
|
labelFontColor: String,
|
199
201
|
labelFontWeight: String,
|
@@ -254,7 +256,7 @@
|
|
254
256
|
color: ${(props) =>
|
255
257
|
props.isError
|
256
258
|
? props.theme.colors.grey6
|
257
|
-
: props.isDisabled
|
259
|
+
: props.isDisabled && !props.isPreDefined
|
258
260
|
? props.colorMode === 'transparent'
|
259
261
|
? props.theme.colors.white
|
260
262
|
: props.theme.colors.grey2
|
@@ -524,6 +526,11 @@
|
|
524
526
|
required: false,
|
525
527
|
default: 0,
|
526
528
|
},
|
529
|
+
isPreDefined: {
|
530
|
+
type: Boolean,
|
531
|
+
required: false,
|
532
|
+
default: false,
|
533
|
+
},
|
527
534
|
minDecimals: {
|
528
535
|
type: Number,
|
529
536
|
required: false,
|
@@ -1,6 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<PageWrapper
|
3
3
|
v-if="isOpen"
|
4
|
+
:add-padding-top="addPaddingTop"
|
4
5
|
:backdrop="backdrop"
|
5
6
|
:is-open="isOpen"
|
6
7
|
:position="position"
|
@@ -36,7 +37,11 @@
|
|
36
37
|
|
37
38
|
const ContentContainer = styled.div``
|
38
39
|
|
39
|
-
const pageAttrs = {
|
40
|
+
const pageAttrs = {
|
41
|
+
backdrop: String,
|
42
|
+
position: String,
|
43
|
+
addPaddingTop: Boolean,
|
44
|
+
}
|
40
45
|
const PageWrapper = styled('div', pageAttrs)`
|
41
46
|
position: ${(props) => props.position}
|
42
47
|
display: grid;
|
@@ -50,7 +55,7 @@
|
|
50
55
|
: 'rgba(255, 255, 255, 0.9)'};
|
51
56
|
z-index: 99999;
|
52
57
|
overflow: auto;
|
53
|
-
padding-top: 80px;
|
58
|
+
padding-top: ${(props) => (props.addPaddingTop ? '80px' : '0')};
|
54
59
|
|
55
60
|
@media (max-width: 425px) {
|
56
61
|
background: white;
|
@@ -148,6 +153,10 @@
|
|
148
153
|
type: String,
|
149
154
|
default: 'auto',
|
150
155
|
},
|
156
|
+
addPaddingTop: {
|
157
|
+
type: Boolean,
|
158
|
+
default: false,
|
159
|
+
},
|
151
160
|
},
|
152
161
|
watch: {
|
153
162
|
isOpen: {
|
@@ -5,12 +5,7 @@
|
|
5
5
|
<TitleContainer>
|
6
6
|
<BoxTitle> {{ numberSelected }} {{ selectedText }} </BoxTitle>
|
7
7
|
<IconContainer @click="$emit('on-close')">
|
8
|
-
<Icon
|
9
|
-
color="white"
|
10
|
-
cursor="pointer"
|
11
|
-
name="close_for_modals,_tool_tips"
|
12
|
-
size="14px"
|
13
|
-
/>
|
8
|
+
<Icon color="white" cursor="pointer" name="close" size="14px" />
|
14
9
|
</IconContainer>
|
15
10
|
</TitleContainer>
|
16
11
|
<DividerContainer>
|
@@ -91,12 +86,7 @@
|
|
91
86
|
</EmptyText>
|
92
87
|
<CloseContainer>
|
93
88
|
<IconContainer @click="$emit('on-close')">
|
94
|
-
<Icon
|
95
|
-
color="white"
|
96
|
-
cursor="pointer"
|
97
|
-
name="close_for_modals,_tool_tips"
|
98
|
-
size="14px"
|
99
|
-
/>
|
89
|
+
<Icon color="white" cursor="pointer" name="close" size="14px" />
|
100
90
|
</IconContainer>
|
101
91
|
</CloseContainer>
|
102
92
|
</BoxContainer>
|
@@ -5,7 +5,7 @@ import theme from '@/assets/theme'
|
|
5
5
|
|
6
6
|
jest.mock('@/components/icon/iconCache.mjs', () => ({
|
7
7
|
// need to mock this due to how jest handles import.meta
|
8
|
-
fetchIcon: jest.fn(() => Promise.resolve('
|
8
|
+
fetchIcon: jest.fn(() => Promise.resolve('close.svg')),
|
9
9
|
}))
|
10
10
|
|
11
11
|
describe('RCSelectedOptions.vue', () => {
|