@eturnity/eturnity_reusable_components 8.13.13-EPDM-11600.5 → 8.13.13-EPDM-12618.4
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 +3 -2
- package/src/components/infoCard/index.vue +3 -7
- package/src/components/inputs/inputNumber/InputNumber.stories.js +5 -19
- package/src/components/inputs/inputNumber/index.vue +3 -15
- package/src/components/inputs/inputText/index.vue +1 -3
- package/src/components/pageSubtitle/index.vue +1 -7
- package/src/components/tableDropdown/index.vue +6 -4
package/package.json
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
<svg
|
2
|
-
|
1
|
+
<svg fill="none" height="16" viewbox="12 12 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<circle cx="20" cy="20" r="7"></circle>
|
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>
|
3
4
|
</svg>
|
@@ -123,11 +123,7 @@
|
|
123
123
|
return this.type === 'error_minor'
|
124
124
|
},
|
125
125
|
iconName() {
|
126
|
-
return this.type === 'warning'
|
127
|
-
? 'warning_triangle'
|
128
|
-
: this.isErrorMinor
|
129
|
-
? 'erase'
|
130
|
-
: 'info'
|
126
|
+
return this.type === 'warning' ? 'warning_triangle' : 'info'
|
131
127
|
},
|
132
128
|
presetStyles() {
|
133
129
|
// the types that doesn't have explicit border anyway have it transparent
|
@@ -146,8 +142,8 @@
|
|
146
142
|
stylesCollection.iconColor = theme.semanticColors.teal[800]
|
147
143
|
} else if (this.isErrorMinor) {
|
148
144
|
stylesCollection.borderStyle = 'dashed'
|
149
|
-
stylesCollection.borderColor = theme.colors.
|
150
|
-
stylesCollection.iconColor = theme.colors.
|
145
|
+
stylesCollection.borderColor = theme.colors.pureRed
|
146
|
+
stylesCollection.iconColor = theme.colors.pureRed
|
151
147
|
} else {
|
152
148
|
stylesCollection.borderStyle = 'dashed'
|
153
149
|
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: {},
|
6
7
|
}
|
7
8
|
|
8
|
-
const Template = (args) => ({
|
9
|
+
const Template = (args, { argTypes }) => ({
|
9
10
|
// Components used in your story `template` are defined in the `components` object
|
10
11
|
components: { InputNumber },
|
11
|
-
setup()
|
12
|
-
|
13
|
-
|
14
|
-
template: `<InputNumber v-bind="args" />`,
|
12
|
+
// The story's `args` need to be mapped into the template through the `setup()` method
|
13
|
+
props: Object.keys(argTypes),
|
14
|
+
template: '<input-number v-bind="$props" />',
|
15
15
|
|
16
16
|
// import InputNumber from "@eturnity/eturnity_reusable_components/src/components/inputs/inputNumber"
|
17
17
|
// How to use:
|
@@ -73,20 +73,6 @@ 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
|
-
|
90
76
|
export const LinearUnit = Template.bind({})
|
91
77
|
LinearUnit.args = {
|
92
78
|
placeholder: 'Enter Value',
|
@@ -43,6 +43,7 @@
|
|
43
43
|
:color-mode="colorMode"
|
44
44
|
:data-id="inputDataId"
|
45
45
|
:data-qa-id="dataQaId"
|
46
|
+
:disabled="disabled"
|
46
47
|
:font-color="colorMode === 'transparent' ? 'white' : fontColor"
|
47
48
|
:font-size="fontSize"
|
48
49
|
:has-label-slot="hasLabelSlot"
|
@@ -52,7 +53,6 @@
|
|
52
53
|
:is-disabled="disabled"
|
53
54
|
:is-error="isError"
|
54
55
|
: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
|
136
|
+
<ErrorMessage v-if="isError">{{ errorMessage }}</ErrorMessage>
|
137
137
|
</Container>
|
138
138
|
</template>
|
139
139
|
|
@@ -195,7 +195,6 @@
|
|
195
195
|
slotSize: String,
|
196
196
|
inputHeight: String,
|
197
197
|
isInteractive: Boolean,
|
198
|
-
isPreDefined: Boolean,
|
199
198
|
alignItems: String,
|
200
199
|
labelFontColor: String,
|
201
200
|
labelFontWeight: String,
|
@@ -256,7 +255,7 @@
|
|
256
255
|
color: ${(props) =>
|
257
256
|
props.isError
|
258
257
|
? props.theme.colors.grey6
|
259
|
-
: props.isDisabled
|
258
|
+
: props.isDisabled
|
260
259
|
? props.colorMode === 'transparent'
|
261
260
|
? props.theme.colors.white
|
262
261
|
: props.theme.colors.grey2
|
@@ -530,11 +529,6 @@
|
|
530
529
|
required: false,
|
531
530
|
default: 0,
|
532
531
|
},
|
533
|
-
isPreDefined: {
|
534
|
-
type: Boolean,
|
535
|
-
required: false,
|
536
|
-
default: false,
|
537
|
-
},
|
538
532
|
minDecimals: {
|
539
533
|
type: Number,
|
540
534
|
required: false,
|
@@ -655,18 +649,12 @@
|
|
655
649
|
required: false,
|
656
650
|
default: '',
|
657
651
|
},
|
658
|
-
labelDataTestId: {
|
659
|
-
type: String,
|
660
|
-
required: false,
|
661
|
-
default: '',
|
662
|
-
},
|
663
652
|
inputDataId: {
|
664
653
|
type: String,
|
665
654
|
required: false,
|
666
655
|
default: '',
|
667
656
|
},
|
668
657
|
dataQaId: {
|
669
|
-
type: String,
|
670
658
|
required: false,
|
671
659
|
default: '',
|
672
660
|
},
|
@@ -169,9 +169,7 @@
|
|
169
169
|
position: relative;
|
170
170
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '16px')};
|
171
171
|
color: ${(props) =>
|
172
|
-
props.
|
173
|
-
? props.theme.colors.grey6
|
174
|
-
: props.isDisabled
|
172
|
+
props.isDisabled
|
175
173
|
? props.theme.colors.grey2
|
176
174
|
: props.fontColor
|
177
175
|
? props.fontColor + ' !important'
|
@@ -5,8 +5,7 @@
|
|
5
5
|
:has-info-text="!!infoText"
|
6
6
|
:margin-bottom="marginBottom"
|
7
7
|
>
|
8
|
-
<span
|
9
|
-
<span v-else data-test-id="page_subtitle_text">
|
8
|
+
<span data-test-id="page_subtitle_text">
|
10
9
|
{{ text }}
|
11
10
|
</span>
|
12
11
|
<InfoText
|
@@ -59,11 +58,6 @@
|
|
59
58
|
required: true,
|
60
59
|
type: String,
|
61
60
|
},
|
62
|
-
containsHtml: {
|
63
|
-
required: false,
|
64
|
-
type: Boolean,
|
65
|
-
default: false,
|
66
|
-
},
|
67
61
|
color: {
|
68
62
|
required: false,
|
69
63
|
type: String,
|
@@ -78,10 +78,13 @@
|
|
78
78
|
v-else
|
79
79
|
class="inputField"
|
80
80
|
:disabled="customInputDisabled"
|
81
|
+
:error-message="item.errorMessage"
|
81
82
|
:font-color="showArchived ? theme.colors.red : 'black'"
|
83
|
+
:is-error="item.isError"
|
82
84
|
:min-width="item.value.length + 'ch'"
|
83
85
|
:no-border="true"
|
84
86
|
:value="item.value"
|
87
|
+
@input-blur="onCustomInputChange($event.trim())"
|
85
88
|
@input-change="onCustomInputChange($event)"
|
86
89
|
/>
|
87
90
|
</InputContainer>
|
@@ -162,7 +165,7 @@
|
|
162
165
|
</OptionsItem>
|
163
166
|
</OptionsWrapper>
|
164
167
|
<CustomContainer
|
165
|
-
v-if="
|
168
|
+
v-if="getCustomName.length && allowFreeInputs"
|
166
169
|
@click="onCustomNameClick()"
|
167
170
|
>
|
168
171
|
<CustomName>{{ getCustomName }}</CustomName>
|
@@ -226,7 +229,6 @@
|
|
226
229
|
const ItemAttrs = { isNested: Boolean, showArchived: Boolean }
|
227
230
|
const ComponentItem = styled('td', ItemAttrs)`
|
228
231
|
padding-left: ${(props) => (props.isNested ? '14px !important' : '0')};
|
229
|
-
overflow: hidden;
|
230
232
|
text-overflow: ellipsis;
|
231
233
|
padding-right: 0 !important;
|
232
234
|
color: ${(props) =>
|
@@ -558,7 +560,7 @@
|
|
558
560
|
},
|
559
561
|
computed: {
|
560
562
|
getCustomName() {
|
561
|
-
return this.inputText
|
563
|
+
return this.inputText.trim()
|
562
564
|
},
|
563
565
|
theme() {
|
564
566
|
return theme
|
@@ -652,7 +654,7 @@
|
|
652
654
|
},
|
653
655
|
onCustomNameClick() {
|
654
656
|
this.wasClicked = true
|
655
|
-
this.$emit('on-custom-input-name', this.
|
657
|
+
this.$emit('on-custom-input-name', this.getCustomName)
|
656
658
|
this.$emit('toggle-dropdown-open', { close: true })
|
657
659
|
this.inputText = ''
|
658
660
|
},
|