comand-component-library 4.3.10 → 4.3.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.3.10",
3
+ "version": "4.3.12",
4
4
  "license": "GPL-3.0-only",
5
5
  "author": "CoManD-UI",
6
6
  "private": false,
@@ -287,7 +287,6 @@ a img.flag {
287
287
  }
288
288
  }
289
289
  /* end tooltip for cmd-form-element and cmd-fake-select -------------------------------------------------------------------------------------------------------------------- */
290
-
291
290
  /* ----------------------------------------------- END COMPONENTS AND GLOBAL STYLES --------------------------------------------------- */
292
291
 
293
292
  /* ---------------------------------------------- BEGIN MEDIA QUERIES AND BROWSER SPECIFIC STYLES -------------------------------------------------- */
@@ -38,11 +38,11 @@
38
38
  <!-- end CmdIcon -->
39
39
 
40
40
  <!-- begin default headline-text without slot -->
41
- <span v-if="headlineText" v-html="headlineText"></span>
41
+ <span v-if="headlineText" v-html="headlineText" :class="['text-align-' + textAlign]"></span>
42
42
  <!-- end default headline-text without slot -->
43
43
 
44
44
  <!-- begin headline-text with slot -->
45
- <span v-else>
45
+ <span v-else :class="['text-align-' + textAlign]">
46
46
  <!-- begin slot -->
47
47
  <slot></slot>
48
48
  <!-- end slot -->
@@ -91,13 +91,15 @@
91
91
  <CmdIcon v-if="cmdIcon" v-bind="cmdIcon"/>
92
92
  <!-- end CmdIcon -->
93
93
 
94
- <!-- begin pre-headline-text -->
95
- <span class="pre-headline-text">{{ preHeadlineText }}</span>
96
- <!-- end pre-headline-text -->
94
+ <span :class="['pre-headline-text-wrapper', 'text-align-' + textAlign]">
95
+ <!-- begin pre-headline-text -->
96
+ <span class="pre-headline-text">{{ preHeadlineText }}</span>
97
+ <!-- end pre-headline-text -->
97
98
 
98
- <!-- begin slot -->
99
- <slot>{{ headlineText }}</slot>
100
- <!-- end slot -->
99
+ <!-- begin slot -->
100
+ <slot>{{ headlineText }}</slot>
101
+ <!-- end slot -->
102
+ </span>
101
103
  </component>
102
104
  </template>
103
105
  <component v-else-if="headlineText" :is="headlineTag">