Warehouse article/improve modal

This commit is contained in:
Luca Haid
2025-12-05 13:57:38 +00:00
parent 5defc5fc09
commit 7f5cb27f1a
5 changed files with 1057 additions and 175 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ Vue.component('tt-input', {
placeholder: String,
required: Boolean,
row: Boolean,
formLabel: Boolean,
value: [String, Number],
hint: String,
additionalProps: Object,
@@ -27,7 +28,7 @@ Vue.component('tt-input', {
<div :class="{'row': row, 'form-group' : !noFormGroup, 'tt-input-with-icon': prefixIcon}">
<slot name="prepend"></slot>
<label
:class="{'col-form-label': row, 'col-sm-4': row, 'col-form-label-sm': sm && row}"
:class="{'col-form-label': row || formLabel, 'col-sm-4': row, 'col-form-label-sm': sm && row}"
v-if="label"
:for="label">{{ label }}</label>
<i v-if="prefixIcon" :class="['prefix-icon', prefixIcon]"></i>