comand-component-library 4.0.99 → 4.1.1

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.
@@ -371,10 +371,6 @@ export default {
371
371
  }
372
372
  }
373
373
 
374
- .cmd-company-logo {
375
- margin: 0 auto
376
- }
377
-
378
374
  &.navigation-inline {
379
375
  header {
380
376
  .cmd-company-logo, .main-navigation-wrapper {
@@ -10,6 +10,7 @@
10
10
  <a
11
11
  v-if="iconClose.show && iconClose.iconClass"
12
12
  href="#"
13
+ class="close-button"
13
14
  @click.prevent="showSystemMessage = false"
14
15
  :title="iconClose.tooltip"
15
16
  >
@@ -19,18 +20,18 @@
19
20
  </a>
20
21
  <!-- end close-icon -->
21
22
 
22
- <!-- begin CmdHeadline -->
23
- <CmdHeadline
24
- class="message-headline"
25
- :cmdIcon="headlineIcon"
26
- :headlineText="systemMessage"
27
- :headlineLevel="messageHeadlineLevel"
28
- :id="htmlId"
29
- />
30
- <!-- end CmdHeadline -->
31
-
32
23
  <!-- begin slot-content -->
33
- <slot></slot>
24
+ <slot>
25
+ <!-- begin CmdHeadline -->
26
+ <CmdHeadline
27
+ class="message-headline"
28
+ :cmdIcon="headlineIcon"
29
+ :headlineText="systemMessage"
30
+ :headlineLevel="messageHeadlineLevel"
31
+ :id="htmlId"
32
+ />
33
+ <!-- end CmdHeadline -->
34
+ </slot>
34
35
  <!-- end slot-content -->
35
36
  </div>
36
37
  </transition>
@@ -163,7 +164,7 @@ export default {
163
164
  }
164
165
  }
165
166
 
166
- > a:not(.button) {
167
+ > a.close-button {
167
168
  display: flex;
168
169
  position: absolute;
169
170
  width: auto; /* avoids stretching by flex-containers */
@@ -189,7 +190,7 @@ export default {
189
190
  }
190
191
 
191
192
  &.warning {
192
- > a:not(.button) {
193
+ > a.close-button {
193
194
  border-color: var(--default-text-color);
194
195
 
195
196
  [class*="icon-"] {
@@ -459,7 +459,7 @@ export default {
459
459
  &:hover, &:active, &:focus {
460
460
  &.active {
461
461
  figcaption {
462
- color: var(--hyperlink-color);
462
+ color: var(--hyperlink-color-highlighted);
463
463
  background: none;
464
464
  }
465
465
  }
@@ -3,11 +3,11 @@ export default {
3
3
  return {
4
4
  defaultMessageProperties: {
5
5
  "cmdformelement.headline.requirements_for_input": "Requirements for input",
6
- "cmdformelement.validationTooltip.an_error_occurred": "An error occurred!",
7
- "cmdformelement.validationTooltip.information_is_filled_correctly": "This information is filled correctly!",
8
- "cmdformelement.validationTooltip.caps_lock_is_activated": "Attention: Caps lock is activated!",
9
- "cmdformelement.validationTooltip.open_field_requirements": "Open field requirements!",
10
- "cmdformelement.validationTooltip.is_valid_email": "Is valid e-mail-address"
6
+ "cmdformelement.validation_tooltip.an_error_occurred": "An error occurred!",
7
+ "cmdformelement.validation_tooltip.information_is_filled_correctly": "This information is filled correctly!",
8
+ "cmdformelement.validation_tooltip.caps_lock_is_activated": "Attention: Caps lock is activated!",
9
+ "cmdformelement.validation_tooltip.open_field_requirements": "Open field requirements!",
10
+ "cmdformelement.validation_tooltip.is_valid_email": "Is valid e-mail-address"
11
11
  }
12
12
  }
13
13
  }
@@ -0,0 +1,10 @@
1
+ export default {
2
+ data() {
3
+ return {
4
+ defaultMessageProperties: {
5
+ "cmdgooglemaps.system_message.accept_terms": "You must accept cookies to view the map.",
6
+ "cmdgooglemaps.button_text.accept_required_cookies": "Accept required cookies"
7
+ }
8
+ }
9
+ }
10
+ }