comand-component-library 4.0.57 → 4.0.58

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.0.57",
3
+ "version": "4.0.58",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -581,6 +581,7 @@
581
581
  :toggleSwitch="true"
582
582
  :status="validationStatus"
583
583
  :disabled="disabledStatus"
584
+ :required="true"
584
585
  />
585
586
  <CmdFormElement
586
587
  element="input"
@@ -156,7 +156,7 @@
156
156
  <span class="label-text">{{ offLabel }}</span>
157
157
  </span>
158
158
  <span v-if="labelText" :class="['label-text', {hidden: !showLabel}]">
159
- <span>{{ labelText }}<sup v-if="$attrs.required">*</sup></span>
159
+ <span v-html="labelText"></span><sup v-if="$attrs.required">*</sup>
160
160
  </span>
161
161
  </template>
162
162
  <slot v-else></slot>