comand-component-library 4.2.2 → 4.2.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/dist/comand-component-library.js +1576 -1525
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/ComponentLibrary.vue +3 -11
- package/src/components/CmdBox.vue +6 -6
- package/src/components/CmdCookieDisclaimer.vue +5 -5
- package/src/components/CmdCopyrightInformation.vue +4 -4
- package/src/components/CmdFakeSelect.vue +4 -4
- package/src/components/CmdFancyBox.vue +3 -3
- package/src/components/CmdFlexContainer.vue +109 -0
- package/src/components/CmdFormElement.vue +6 -0
- package/src/components/CmdFormFilters.vue +1 -1
- package/src/components/CmdImage.vue +1 -1
- package/src/components/CmdLink.vue +4 -0
- package/src/components/CmdLoginForm.vue +152 -3
- package/src/components/CmdMailToolEntry.vue +1 -1
- package/src/components/CmdMailToolFilter.vue +1 -1
- package/src/components/CmdMainNavigation.vue +1 -1
- package/src/components/CmdMultistepFormProgressBar.vue +13 -12
- package/src/components/CmdOpeningHours.vue +2 -2
- package/src/components/CmdSiteHeader.vue +4 -0
- package/src/components/CmdSlideshow.vue +6 -6
- package/src/components/CmdSmartSearch.vue +9 -2
- package/src/components/CmdSocialNetworks.vue +3 -3
- package/src/components/CmdSocialNetworksItem.vue +2 -2
- package/src/components/CmdSystemMessage.vue +10 -4
- package/src/components/CmdTable.vue +1 -1
- package/src/components/CmdTabs.vue +3 -3
- package/src/components/CmdThumbnailScroller.vue +1 -1
- package/src/components/CmdToggleDarkMode.vue +3 -3
- package/src/components/EditComponentWrapper.vue +5 -5
@@ -13,8 +13,8 @@ export default {
|
|
13
13
|
<style>
|
14
14
|
/* begin cmd-copyright-information ---------------------------------------------------------------------------------------- */
|
15
15
|
.cmd-copyright-information {
|
16
|
-
background: var(--dark-gray);
|
17
|
-
border-top: var(--default-border-width) var(--default-border-style) var(--
|
16
|
+
background: var(--color-dark-gray);
|
17
|
+
border-top: var(--default-border-width) var(--default-border-style) var(--color-white);
|
18
18
|
text-align: center;
|
19
19
|
padding: var(--default-padding);
|
20
20
|
margin-top: auto;
|
@@ -22,11 +22,11 @@ export default {
|
|
22
22
|
|
23
23
|
a {
|
24
24
|
text-decoration: none;
|
25
|
-
color: var(--
|
25
|
+
color: var(--color-white);
|
26
26
|
|
27
27
|
&:hover, &:active, &:focus {
|
28
28
|
text-decoration: underline;
|
29
|
-
color: var(--
|
29
|
+
color: var(--color-white);
|
30
30
|
}
|
31
31
|
}
|
32
32
|
}
|
@@ -572,7 +572,7 @@ export default {
|
|
572
572
|
}
|
573
573
|
|
574
574
|
&:hover, &:active, &:focus {
|
575
|
-
background: var(--
|
575
|
+
background: var(--color-white);
|
576
576
|
border-color: var(--primary-color);
|
577
577
|
|
578
578
|
span, [class*="icon"] {
|
@@ -630,7 +630,7 @@ export default {
|
|
630
630
|
background: var(--primary-color);
|
631
631
|
|
632
632
|
span, [class*="icon"] {
|
633
|
-
color: var(--
|
633
|
+
color: var(--color-white);
|
634
634
|
}
|
635
635
|
}
|
636
636
|
|
@@ -647,7 +647,7 @@ export default {
|
|
647
647
|
}
|
648
648
|
|
649
649
|
&.active {
|
650
|
-
background: var(--light-gray);
|
650
|
+
background: var(--color-light-gray);
|
651
651
|
|
652
652
|
span {
|
653
653
|
color: var(--hyperlink-color);
|
@@ -657,7 +657,7 @@ export default {
|
|
657
657
|
background: var(--primary-color);
|
658
658
|
|
659
659
|
span, [class*="icon"] {
|
660
|
-
color: var(--
|
660
|
+
color: var(--color-white);
|
661
661
|
}
|
662
662
|
}
|
663
663
|
}
|
@@ -624,16 +624,16 @@ export default FancyBox
|
|
624
624
|
}
|
625
625
|
|
626
626
|
&.print-grayscale {
|
627
|
-
background: linear-gradient(135deg, var(--medium-gray) 0%, var(--medium-gray) 50%, var(--
|
627
|
+
background: linear-gradient(135deg, var(--color-medium-gray) 0%, var(--color-medium-gray) 50%, var(--color-white) 50%, var(--color-white) 100%);
|
628
628
|
}
|
629
629
|
|
630
630
|
&.print-color {
|
631
|
-
background: linear-gradient(135deg, #009fe3 0%, #009fe3 25%, #e6007e 25%, #e6007e 50%, #ffed00 50%, #ffed00 50%, #ffed00 75%, var(--medium-gray) 75%, var(--medium-gray) 100%);
|
631
|
+
background: linear-gradient(135deg, #009fe3 0%, #009fe3 25%, #e6007e 25%, #e6007e 50%, #ffed00 50%, #ffed00 50%, #ffed00 75%, var(--color-medium-gray) 75%, var(--color-medium-gray) 100%);
|
632
632
|
}
|
633
633
|
|
634
634
|
&:hover, &:active, &:focus {
|
635
635
|
border: var(--primary-border);
|
636
|
-
background: var(--
|
636
|
+
background: var(--color-white);
|
637
637
|
|
638
638
|
[class*="icon-"] {
|
639
639
|
color: var(--primary-color);
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<template>
|
2
|
+
<div :class="['cmd-flex-container', 'flex-container', htmlClasses]">
|
3
|
+
<!-- begin slot-content -->
|
4
|
+
<slot></slot>
|
5
|
+
<!-- end slot-content -->
|
6
|
+
</div>
|
7
|
+
</template>
|
8
|
+
|
9
|
+
<script>
|
10
|
+
export default {
|
11
|
+
name: "CmdFlexContainer",
|
12
|
+
props: {
|
13
|
+
/**
|
14
|
+
* activate if content should be aligned vertically
|
15
|
+
*
|
16
|
+
* @affectsStyling: true
|
17
|
+
*/
|
18
|
+
alignContentVertical: {
|
19
|
+
type: String,
|
20
|
+
required: false
|
21
|
+
},
|
22
|
+
/**
|
23
|
+
* activate if no gap between items should be used
|
24
|
+
*
|
25
|
+
* @affectsStyling: true
|
26
|
+
*/
|
27
|
+
noGap: {
|
28
|
+
type: Boolean,
|
29
|
+
default: true
|
30
|
+
},
|
31
|
+
/**
|
32
|
+
* activate if items should not behave like flex-items (they are now shrunk to their content)
|
33
|
+
*
|
34
|
+
* @affectsStyling: true
|
35
|
+
*/
|
36
|
+
noFlex: {
|
37
|
+
type: Boolean,
|
38
|
+
default: true
|
39
|
+
},
|
40
|
+
/**
|
41
|
+
* define how the items will be aligned vertically
|
42
|
+
*
|
43
|
+
* attention: if alignContentVertical is activated, this property defines the horizontal alignment
|
44
|
+
*
|
45
|
+
* @allowedValues: top, flex-start, center, flex-end, bottom
|
46
|
+
* @affectsStyling: true
|
47
|
+
*/
|
48
|
+
alignItems: {
|
49
|
+
type: String,
|
50
|
+
required: false,
|
51
|
+
validator(value) {
|
52
|
+
return value === "top" ||
|
53
|
+
value === "flex-start" ||
|
54
|
+
value === "center" ||
|
55
|
+
value === "flex-end" ||
|
56
|
+
value === "bottom"
|
57
|
+
}
|
58
|
+
},
|
59
|
+
/**
|
60
|
+
* define how the items will be aligned/justified horizontally.
|
61
|
+
*
|
62
|
+
* attention: if alignContentVertical is activated, this property defines the vertical alignment/justification
|
63
|
+
*
|
64
|
+
* @allowedValues: top, flex-start, center, flex-end, bottom, space-between, space-around
|
65
|
+
* @affectsStyling: true
|
66
|
+
*/
|
67
|
+
justifyContent: {
|
68
|
+
type: String,
|
69
|
+
required: false,
|
70
|
+
validator(value) {
|
71
|
+
return value === "top" ||
|
72
|
+
value === "flex-start" ||
|
73
|
+
value === "center" ||
|
74
|
+
value === "flex-end" ||
|
75
|
+
value === "bottom" ||
|
76
|
+
value === "space-between" ||
|
77
|
+
value === "space-around"
|
78
|
+
}
|
79
|
+
}
|
80
|
+
},
|
81
|
+
computed: {
|
82
|
+
htmlClasses() {
|
83
|
+
const htmlClasses = []
|
84
|
+
|
85
|
+
if (this.alignContentVertical) {
|
86
|
+
htmlClasses.push("vertical")
|
87
|
+
}
|
88
|
+
if (this.useGap) {
|
89
|
+
htmlClasses.push("no-gap")
|
90
|
+
}
|
91
|
+
if (this.noFlex) {
|
92
|
+
htmlClasses.push("no-flex")
|
93
|
+
}
|
94
|
+
if (this.alignItems) {
|
95
|
+
htmlClasses.push("align-items-" + this.alignItems)
|
96
|
+
}
|
97
|
+
if (this.justifyContent) {
|
98
|
+
htmlClasses.push("justify-content-" + this.justifyContent)
|
99
|
+
}
|
100
|
+
|
101
|
+
return htmlClasses.join(" ")
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
</script>
|
106
|
+
|
107
|
+
<style>
|
108
|
+
|
109
|
+
</style>
|
@@ -116,7 +116,7 @@ export default {
|
|
116
116
|
margin-left: 0;
|
117
117
|
margin-right: var(--default-margin);
|
118
118
|
border: var(--default-border);
|
119
|
-
background: var(--
|
119
|
+
background: var(--color-white);
|
120
120
|
font-size: var(--font-size-small);
|
121
121
|
|
122
122
|
&:hover, &:active, &:focus {
|
@@ -9,6 +9,37 @@
|
|
9
9
|
/>
|
10
10
|
<!-- end CmdHeadline -->
|
11
11
|
|
12
|
+
<!-- begin Google-Login-Button -->
|
13
|
+
<button v-if="enableLoginWithGoogle" class="gsi-material-button">
|
14
|
+
<div class="gsi-material-button-state"></div>
|
15
|
+
<div class="gsi-material-button-content-wrapper">
|
16
|
+
<div class="gsi-material-button-icon">
|
17
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: block;">
|
18
|
+
<path fill="#EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"></path>
|
19
|
+
<path fill="#4285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"></path>
|
20
|
+
<path fill="#FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"></path>
|
21
|
+
<path fill="#34A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"></path>
|
22
|
+
<path fill="none" d="M0 0h48v48H0z"></path>
|
23
|
+
</svg>
|
24
|
+
</div>
|
25
|
+
<span class="gsi-material-button-contents">Sign in with Google</span>
|
26
|
+
<span style="display: none;">Sign in with Google</span>
|
27
|
+
</div>
|
28
|
+
</button>
|
29
|
+
<!-- end Google-Login-Button -->
|
30
|
+
|
31
|
+
<!-- begin Facebook-Login-Button -->
|
32
|
+
<div v-if="enableLoginWithFacebook"
|
33
|
+
class="fb-login-button"
|
34
|
+
data-width=""
|
35
|
+
data-size=""
|
36
|
+
data-button-type=""
|
37
|
+
data-layout=""
|
38
|
+
data-auto-logout-link="false"
|
39
|
+
data-use-continue-as="false">
|
40
|
+
</div>
|
41
|
+
<!-- end Facebook-Login-Button -->
|
42
|
+
|
12
43
|
<!-- begin form elements -->
|
13
44
|
<div :class="['login-fields flex-container', {'vertical': orientation === 'vertical'}]">
|
14
45
|
<!-- begin CmdFormElement -->
|
@@ -175,6 +206,20 @@ export default {
|
|
175
206
|
}
|
176
207
|
},
|
177
208
|
props: {
|
209
|
+
/**
|
210
|
+
* activate if login with google should be enabled
|
211
|
+
*/
|
212
|
+
enableLoginWithGoogle: {
|
213
|
+
type: Boolean,
|
214
|
+
default: true
|
215
|
+
},
|
216
|
+
/**
|
217
|
+
* activate if login with facebook should be enabled
|
218
|
+
*/
|
219
|
+
enableLoginWithFacebook: {
|
220
|
+
type: Boolean,
|
221
|
+
default: true
|
222
|
+
},
|
178
223
|
/**
|
179
224
|
* value for v-model (modelValue is default name in vue 3)
|
180
225
|
*/
|
@@ -507,16 +552,120 @@ export default {
|
|
507
552
|
align-items: center;
|
508
553
|
|
509
554
|
> a:not(.button) {
|
510
|
-
display:
|
511
|
-
align-items: center;
|
555
|
+
display: block;
|
512
556
|
text-decoration: none;
|
513
|
-
flex: none;
|
514
557
|
}
|
515
558
|
|
516
559
|
> .button {
|
517
560
|
margin-left: auto;
|
518
561
|
}
|
519
562
|
}
|
563
|
+
|
564
|
+
/* begin google-login-button */
|
565
|
+
.gsi-material-button {
|
566
|
+
-moz-user-select: none;
|
567
|
+
-webkit-user-select: none;
|
568
|
+
-ms-user-select: none;
|
569
|
+
-webkit-appearance: none;
|
570
|
+
background-color: WHITE;
|
571
|
+
background-image: none;
|
572
|
+
border: 1px solid #747775;
|
573
|
+
-webkit-border-radius: 4px;
|
574
|
+
border-radius: 4px;
|
575
|
+
-webkit-box-sizing: border-box;
|
576
|
+
box-sizing: border-box;
|
577
|
+
color: #1f1f1f;
|
578
|
+
cursor: pointer;
|
579
|
+
font-family: 'Roboto', arial, sans-serif;
|
580
|
+
font-size: 14px;
|
581
|
+
height: 40px;
|
582
|
+
letter-spacing: 0.25px;
|
583
|
+
outline: none;
|
584
|
+
overflow: hidden;
|
585
|
+
padding: 0 12px;
|
586
|
+
position: relative;
|
587
|
+
text-align: center;
|
588
|
+
-webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
|
589
|
+
transition: background-color .218s, border-color .218s, box-shadow .218s;
|
590
|
+
vertical-align: middle;
|
591
|
+
white-space: nowrap;
|
592
|
+
width: auto;
|
593
|
+
max-width: 400px;
|
594
|
+
min-width: min-content;
|
595
|
+
}
|
596
|
+
|
597
|
+
.gsi-material-button .gsi-material-button-icon {
|
598
|
+
height: 20px;
|
599
|
+
margin-right: 12px;
|
600
|
+
min-width: 20px;
|
601
|
+
width: 20px;
|
602
|
+
}
|
603
|
+
|
604
|
+
.gsi-material-button .gsi-material-button-content-wrapper {
|
605
|
+
-webkit-align-items: center;
|
606
|
+
align-items: center;
|
607
|
+
display: flex;
|
608
|
+
-webkit-flex-direction: row;
|
609
|
+
flex-direction: row;
|
610
|
+
-webkit-flex-wrap: nowrap;
|
611
|
+
flex-wrap: nowrap;
|
612
|
+
height: 100%;
|
613
|
+
justify-content: space-between;
|
614
|
+
position: relative;
|
615
|
+
width: 100%;
|
616
|
+
}
|
617
|
+
|
618
|
+
.gsi-material-button .gsi-material-button-contents {
|
619
|
+
-webkit-flex-grow: 1;
|
620
|
+
flex-grow: 1;
|
621
|
+
font-family: 'Roboto', arial, sans-serif;
|
622
|
+
font-weight: 500;
|
623
|
+
overflow: hidden;
|
624
|
+
text-overflow: ellipsis;
|
625
|
+
vertical-align: top;
|
626
|
+
}
|
627
|
+
|
628
|
+
.gsi-material-button .gsi-material-button-state {
|
629
|
+
-webkit-transition: opacity .218s;
|
630
|
+
transition: opacity .218s;
|
631
|
+
bottom: 0;
|
632
|
+
left: 0;
|
633
|
+
opacity: 0;
|
634
|
+
position: absolute;
|
635
|
+
right: 0;
|
636
|
+
top: 0;
|
637
|
+
}
|
638
|
+
|
639
|
+
.gsi-material-button:disabled {
|
640
|
+
cursor: default;
|
641
|
+
background-color: #ffffff61;
|
642
|
+
border-color: #1f1f1f1f;
|
643
|
+
}
|
644
|
+
|
645
|
+
.gsi-material-button:disabled .gsi-material-button-contents {
|
646
|
+
opacity: 38%;
|
647
|
+
}
|
648
|
+
|
649
|
+
.gsi-material-button:disabled .gsi-material-button-icon {
|
650
|
+
opacity: 38%;
|
651
|
+
}
|
652
|
+
|
653
|
+
.gsi-material-button:not(:disabled):active .gsi-material-button-state,
|
654
|
+
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
|
655
|
+
background-color: #303030;
|
656
|
+
opacity: 12%;
|
657
|
+
}
|
658
|
+
|
659
|
+
.gsi-material-button:not(:disabled):hover {
|
660
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
|
661
|
+
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
|
662
|
+
}
|
663
|
+
|
664
|
+
.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
|
665
|
+
background-color: #303030;
|
666
|
+
opacity: 8%;
|
667
|
+
}
|
668
|
+
/* end google-login-button */
|
520
669
|
}
|
521
670
|
/* end cmd-login-form ---------------------------------------------------------------------------------------- */
|
522
671
|
</style>
|
@@ -144,14 +144,14 @@ export default {
|
|
144
144
|
background: var(--primary-color-reduced-opacity);
|
145
145
|
|
146
146
|
:is(span, [class*="icon-"]) {
|
147
|
-
color: var(--
|
147
|
+
color: var(--color-white);
|
148
148
|
font-size: var(--icon-size-medium) !important;
|
149
149
|
|
150
150
|
& + [class*="icon-"] {
|
151
151
|
&:last-child {
|
152
152
|
border: var(--default-border);
|
153
153
|
border-radius: var(--full-circle);
|
154
|
-
background: var(--
|
154
|
+
background: var(--color-white);
|
155
155
|
color: var(--color-scheme-text-color);
|
156
156
|
margin: 0;
|
157
157
|
position: absolute;
|
@@ -173,7 +173,7 @@ export default {
|
|
173
173
|
background: var(--primary-color);
|
174
174
|
|
175
175
|
:is(span, [class*="icon-"]) {
|
176
|
-
color: var(--
|
176
|
+
color: var(--color-white);
|
177
177
|
}
|
178
178
|
|
179
179
|
.number {
|
@@ -191,8 +191,8 @@ export default {
|
|
191
191
|
justify-content: center;
|
192
192
|
border-radius: var(--full-circle);
|
193
193
|
border: var(--default-border);
|
194
|
-
border-color: var(--
|
195
|
-
background: var(--
|
194
|
+
border-color: var(--color-white);
|
195
|
+
background: var(--color-white);
|
196
196
|
color: var(--primary-color-reduced-opacity);
|
197
197
|
}
|
198
198
|
}
|
@@ -212,12 +212,12 @@ export default {
|
|
212
212
|
background: var(--primary-color);
|
213
213
|
|
214
214
|
span, [class*="icon-"] {
|
215
|
-
color: var(--
|
215
|
+
color: var(--color-white);
|
216
216
|
}
|
217
217
|
|
218
218
|
&:hover, &:active, &:focus {
|
219
219
|
span, [class*="icon-"] {
|
220
|
-
color: var(--
|
220
|
+
color: var(--color-white);
|
221
221
|
|
222
222
|
& + [class*="icon-"] {
|
223
223
|
&:last-child {
|
@@ -229,8 +229,8 @@ export default {
|
|
229
229
|
}
|
230
230
|
|
231
231
|
.number {
|
232
|
-
background: var(--
|
233
|
-
border-color: var(--
|
232
|
+
background: var(--color-white);
|
233
|
+
border-color: var(--color-white);
|
234
234
|
color: var(--hyperlink-color) !important;
|
235
235
|
}
|
236
236
|
|
@@ -239,8 +239,7 @@ export default {
|
|
239
239
|
border-left-color: var(--border-color);
|
240
240
|
|
241
241
|
a {
|
242
|
-
|
243
|
-
color: var(--color-scheme-text-color);
|
242
|
+
color: var(--color-white);
|
244
243
|
|
245
244
|
span, span[class*='color'] {
|
246
245
|
color: inherit;
|
@@ -248,13 +247,15 @@ export default {
|
|
248
247
|
& + [class*="icon-"] {
|
249
248
|
&:last-child {
|
250
249
|
border-color: var(--border-color);
|
251
|
-
color: var(--
|
250
|
+
color: var(--color-white);
|
252
251
|
background: var(--secondary-color);
|
253
252
|
}
|
254
253
|
}
|
255
254
|
}
|
256
255
|
|
257
256
|
&:hover, &:active, &:focus {
|
257
|
+
background: var(--color-white);
|
258
|
+
|
258
259
|
span, [class*="icon-"] {
|
259
260
|
&:not(:last-child) {
|
260
261
|
color: var(--hyperlink-color);
|
@@ -465,7 +465,7 @@ export default {
|
|
465
465
|
font-weight: bold;
|
466
466
|
display: table;
|
467
467
|
margin-bottom: var(--default-margin);
|
468
|
-
color: var(--
|
468
|
+
color: var(--color-white);
|
469
469
|
background: var(--success-color);
|
470
470
|
border-radius: var(--default-border-radius);
|
471
471
|
|
@@ -477,7 +477,7 @@ export default {
|
|
477
477
|
> a {
|
478
478
|
&:hover, &:active, &:focus {
|
479
479
|
text-decoration: underline;
|
480
|
-
color: var(--
|
480
|
+
color: var(--color-white);
|
481
481
|
}
|
482
482
|
}
|
483
483
|
|
@@ -347,7 +347,7 @@ export default {
|
|
347
347
|
padding: var(--default-padding);
|
348
348
|
line-height: 100%;
|
349
349
|
font-size: 3rem;
|
350
|
-
color: var(--
|
350
|
+
color: var(--color-white);
|
351
351
|
background: var(--primary-color);
|
352
352
|
}
|
353
353
|
|
@@ -375,7 +375,7 @@ export default {
|
|
375
375
|
border: var(--primary-border);
|
376
376
|
|
377
377
|
&:hover, &:active, &:focus {
|
378
|
-
background: var(--
|
378
|
+
background: var(--color-white);
|
379
379
|
color: var(--hyperlink-color);
|
380
380
|
}
|
381
381
|
}
|
@@ -420,7 +420,7 @@ export default {
|
|
420
420
|
list-style-type: none;
|
421
421
|
margin: 0;
|
422
422
|
border-radius: var(--full-circle);
|
423
|
-
background: var(--light-gray);
|
423
|
+
background: var(--color-light-gray);
|
424
424
|
border: var(--default-border-reduced-opacity);
|
425
425
|
|
426
426
|
a {
|
@@ -434,7 +434,7 @@ export default {
|
|
434
434
|
border-color: var(--hyperlink-color);
|
435
435
|
|
436
436
|
a {
|
437
|
-
background: var(--
|
437
|
+
background: var(--color-white);
|
438
438
|
transition: var(--default-transition);
|
439
439
|
}
|
440
440
|
}
|
@@ -451,7 +451,7 @@ export default {
|
|
451
451
|
|
452
452
|
&:hover, &:active, &:focus, &.active {
|
453
453
|
border-color: var(--primary-color);
|
454
|
-
background: var(--
|
454
|
+
background: var(--color-white);
|
455
455
|
|
456
456
|
a {
|
457
457
|
background: var(--primary-color);
|
@@ -472,7 +472,7 @@ export default {
|
|
472
472
|
right: 5.5rem;
|
473
473
|
padding: 0 0.2rem;
|
474
474
|
border-radius: var(--default-border-radius);
|
475
|
-
background: var(--
|
475
|
+
background: var(--color-white-reduced-opacity);
|
476
476
|
}
|
477
477
|
}
|
478
478
|
|
@@ -51,6 +51,13 @@ export default {
|
|
51
51
|
type: Array,
|
52
52
|
required: true
|
53
53
|
},
|
54
|
+
/**
|
55
|
+
* define the maximum listed number of recommendations
|
56
|
+
*/
|
57
|
+
maxNumberOfRecommendations: {
|
58
|
+
type: Number,
|
59
|
+
default: 3
|
60
|
+
},
|
54
61
|
/**
|
55
62
|
* set if list of recommendations will be filtered by first letter (else by any containing letter)
|
56
63
|
*/
|
@@ -94,7 +101,7 @@ export default {
|
|
94
101
|
|
95
102
|
// check if string from listOfRecommendations starsWith or contains the provides string from the searchfield
|
96
103
|
return this.filterByFirstLetter ? lowerCaseDisplayValue.startsWith(lowerCaseSearchTerm) : lowerCaseDisplayValue.includes(lowerCaseSearchTerm)
|
97
|
-
})
|
104
|
+
}).slice(0, this.maxNumberOfRecommendations)
|
98
105
|
}
|
99
106
|
},
|
100
107
|
methods: {
|
@@ -176,7 +183,7 @@ export default {
|
|
176
183
|
background: var(--hyperlink-color);
|
177
184
|
|
178
185
|
span, span[class*="icon"] {
|
179
|
-
color: var(--
|
186
|
+
color: var(--color-white);
|
180
187
|
}
|
181
188
|
}
|
182
189
|
}
|
@@ -374,12 +374,12 @@ export default {
|
|
374
374
|
border-color: var(--social-network-color);
|
375
375
|
|
376
376
|
> span {
|
377
|
-
color: var(--
|
377
|
+
color: var(--color-white);
|
378
378
|
}
|
379
379
|
|
380
380
|
&:hover, &:active, &:focus {
|
381
|
-
background: var(--
|
382
|
-
color: var(--
|
381
|
+
background: var(--color-white);
|
382
|
+
color: var(--color-white);
|
383
383
|
|
384
384
|
> span {
|
385
385
|
color: var(--social-network-color);
|