@eturnity/eturnity_reusable_components 7.4.4-EPDM-7260.27 → 7.4.4-EPDM-7260.28
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
CHANGED
@@ -83,11 +83,7 @@
|
|
83
83
|
>
|
84
84
|
<slot name="selector" :selectedValue="selectedValue"></slot>
|
85
85
|
</selector>
|
86
|
-
<<<<<<< HEAD
|
87
|
-
<Caret @click.stop="toggleCaretDropdown" v-if="dropDownArrowVisible">
|
88
|
-
=======
|
89
86
|
<Caret @click.stop="toggleCaretDropdown" class="caret_dropdown">
|
90
|
-
>>>>>>> 815539e19f2883b2a6c7d813c6c2799ce3cb0993
|
91
87
|
<icon
|
92
88
|
v-if="isDropdownOpen"
|
93
89
|
name="arrow_up"
|
@@ -228,12 +224,7 @@ const optionalLabel = styled.span`
|
|
228
224
|
const inputProps = {
|
229
225
|
selectWidth: String,
|
230
226
|
optionWidth: String,
|
231
|
-
<<<<<<< HEAD
|
232
|
-
minWidth: String,
|
233
|
-
maxWidth: String
|
234
|
-
=======
|
235
227
|
noRelative: Boolean
|
236
|
-
>>>>>>> 815539e19f2883b2a6c7d813c6c2799ce3cb0993
|
237
228
|
}
|
238
229
|
const Container = styled('div', inputProps)`
|
239
230
|
width: ${(props) => props.selectWidth};
|
@@ -272,12 +263,7 @@ const selectButtonAttrs = {
|
|
272
263
|
showDisabledBackground: Boolean
|
273
264
|
}
|
274
265
|
const selectButton = styled('div', selectButtonAttrs)`
|
275
|
-
<<<<<<< HEAD
|
276
|
-
font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
|
277
|
-
position: relative;
|
278
|
-
=======
|
279
266
|
position: ${(props) => (props.noRelative ? 'static' : 'relative')};
|
280
|
-
>>>>>>> 815539e19f2883b2a6c7d813c6c2799ce3cb0993
|
281
267
|
box-sizing: border-box;
|
282
268
|
border-radius: 4px;
|
283
269
|
max-width: ${(props) => (props.selectWidth ? props.selectWidth : '100%')};
|
@@ -385,15 +371,11 @@ const DropdownAttrs = { noRelative: Boolean }
|
|
385
371
|
const DropdownWrapper = styled('div', DropdownAttrs)`
|
386
372
|
position: ${(props) => (props.noRelative ? 'static' : 'relative')};
|
387
373
|
`
|
388
|
-
<<<<<<< HEAD
|
389
|
-
const inputAttrs = { alignItems: String, hasLabel: Boolean, minWidth: String }
|
390
|
-
=======
|
391
374
|
const inputAttrs = {
|
392
375
|
alignItems: String,
|
393
376
|
hasLabel: Boolean,
|
394
377
|
noRelative: Boolean
|
395
378
|
}
|
396
|
-
>>>>>>> 815539e19f2883b2a6c7d813c6c2799ce3cb0993
|
397
379
|
const InputWrapper = styled('div', inputAttrs)`
|
398
380
|
position: ${(props) => (props.noRelative ? 'static' : 'relative')};
|
399
381
|
display: grid;
|
@@ -468,9 +450,6 @@ export default {
|
|
468
450
|
required: false,
|
469
451
|
default: '36px'
|
470
452
|
},
|
471
|
-
minWidth: {
|
472
|
-
required: false
|
473
|
-
},
|
474
453
|
optionWidth: {
|
475
454
|
required: false,
|
476
455
|
default: null
|
@@ -550,18 +529,16 @@ export default {
|
|
550
529
|
type: Boolean,
|
551
530
|
default: false
|
552
531
|
},
|
553
|
-
<<<<<<< HEAD
|
554
532
|
leftPadding: {
|
555
533
|
type: String,
|
556
534
|
default: '15px'
|
557
|
-
|
535
|
+
},
|
558
536
|
tablePaddingLeft: {
|
559
537
|
required: false
|
560
538
|
},
|
561
539
|
showDisabledBackground: {
|
562
540
|
required: false,
|
563
541
|
default: true
|
564
|
-
>>>>>>> 815539e19f2883b2a6c7d813c6c2799ce3cb0993
|
565
542
|
},
|
566
543
|
minOptionLength: {
|
567
544
|
type: Number,
|