srcdev-nuxt-forms 0.0.22 → 0.1.0
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/.prettierrc +2 -1
- package/assets/styles/forms/themes/_error.css +12 -0
- package/assets/styles/forms/themes/_ghost.css +11 -0
- package/assets/styles/forms/themes/_primary.css +9 -1
- package/assets/styles/forms/themes/_secondary.css +11 -0
- package/assets/styles/forms/themes/_success.css +12 -0
- package/assets/styles/forms/themes/_tertiary.css +11 -0
- package/assets/styles/forms/themes/_warning.css +11 -0
- package/assets/styles/forms/themes/index.css +6 -0
- package/assets/styles/forms/variables/_theme.css +64 -1
- package/assets/styles/variables/colors/_orange.css +1 -1
- package/assets/styles/variables/colors/_red.css +1 -1
- package/components/forms/c12/prop-validators/index.ts +25 -0
- package/components/forms/c12/validation-patterns/en.json +1 -1
- package/components/forms/input-button/InputButtonCore.vue +367 -0
- package/components/forms/input-button/variants/InputButtonConfirm.vue +78 -0
- package/components/forms/input-button/variants/InputButtonSubmit.vue +74 -0
- package/components/forms/input-text/InputTextCore.vue +77 -59
- package/components/forms/input-text/variants/material/InputEmailMaterial.vue +72 -0
- package/components/forms/input-text/variants/material/InputPasswordMaterial.vue +88 -0
- package/components/forms/input-text/variants/material/InputTextMaterial.vue +75 -0
- package/components/forms/input-text/variants/material/InputTextMaterialCore.vue +258 -0
- package/components/forms/ui/FormField.vue +7 -2
- package/components/forms/ui/FormWrapper.vue +2 -2
- package/composables/useErrorMessages.ts +4 -4
- package/composables/useFormControl.ts +36 -16
- package/composables/useUpdateStyleClassPassthrough.ts +29 -0
- package/layouts/default.vue +33 -2
- package/nuxt.config.ts +4 -3
- package/package.json +3 -1
- package/pages/forms/examples/buttons/index.vue +154 -0
- package/pages/forms/examples/material/text-fields-compact.vue +136 -0
- package/pages/forms/examples/material/text-fields.vue +136 -0
- package/pages/index.vue +2 -70
- package/types/types.forms.ts +6 -11
- package/components/forms/input-text/InputTextField.vue +0 -22
- package/components/forms/input-text/variants/InputTextMaterial.vue +0 -159
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<InputButtonCore
|
|
3
|
+
type="submit"
|
|
4
|
+
:use-effect="useEffect"
|
|
5
|
+
:isPending="isPending"
|
|
6
|
+
:readonly
|
|
7
|
+
:effect="effect"
|
|
8
|
+
:data-test-id="dataTestId"
|
|
9
|
+
:size
|
|
10
|
+
:weight
|
|
11
|
+
:button-text="buttonText"
|
|
12
|
+
:style-class-passthrough="styleClassPassthrough"
|
|
13
|
+
:theme
|
|
14
|
+
/>
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<script setup lang="ts">
|
|
18
|
+
import propValidators from '../../c12/prop-validators';
|
|
19
|
+
|
|
20
|
+
const props = defineProps({
|
|
21
|
+
size: {
|
|
22
|
+
type: String as PropType<string>,
|
|
23
|
+
default: 'normal',
|
|
24
|
+
validator(value: string) {
|
|
25
|
+
return propValidators.size.includes(value);
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
weight: {
|
|
29
|
+
type: String as PropType<string>,
|
|
30
|
+
default: 'wght-400',
|
|
31
|
+
validator(value: string) {
|
|
32
|
+
return propValidators.weight.includes(value);
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
theme: {
|
|
36
|
+
type: String as PropType<string>,
|
|
37
|
+
default: 'primary',
|
|
38
|
+
validator(value: string) {
|
|
39
|
+
return propValidators.theme.includes(value);
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
useEffect: {
|
|
43
|
+
type: Boolean,
|
|
44
|
+
default: false,
|
|
45
|
+
},
|
|
46
|
+
effect: {
|
|
47
|
+
type: String as PropType<string>,
|
|
48
|
+
default: 'fancy',
|
|
49
|
+
validator(value: string) {
|
|
50
|
+
return ['fancy', 'pulse'].includes(value);
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
buttonText: {
|
|
54
|
+
type: String,
|
|
55
|
+
required: true,
|
|
56
|
+
},
|
|
57
|
+
dataTestId: {
|
|
58
|
+
type: String,
|
|
59
|
+
default: '',
|
|
60
|
+
},
|
|
61
|
+
styleClassPassthrough: {
|
|
62
|
+
type: String,
|
|
63
|
+
default: '',
|
|
64
|
+
},
|
|
65
|
+
isPending: {
|
|
66
|
+
type: Boolean,
|
|
67
|
+
default: false,
|
|
68
|
+
},
|
|
69
|
+
readonly: {
|
|
70
|
+
type: Boolean,
|
|
71
|
+
default: false,
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
</script>
|
|
@@ -1,23 +1,33 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<input
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
2
|
+
<div class="input-text-wrapper" :class="[{ 'has-left-content': hasLeftContent }]">
|
|
3
|
+
<template v-if="hasLeftContent">
|
|
4
|
+
<span class="left-content">
|
|
5
|
+
<slot name="left"></slot>
|
|
6
|
+
</span>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<input
|
|
10
|
+
:type
|
|
11
|
+
:placeholder="c12.placeholder"
|
|
12
|
+
:id
|
|
13
|
+
:name
|
|
14
|
+
:pattern="componentValidation.pattern"
|
|
15
|
+
:maxlength="componentValidation.maxlength"
|
|
16
|
+
:required
|
|
17
|
+
:class="['input-text', 'text-normal', styleClassPassthrough, { active: isFocused }, { dirty: isDirty }, { error: fieldHasError() }]"
|
|
18
|
+
v-model="modelValue.data[name]"
|
|
19
|
+
ref="inputField"
|
|
20
|
+
:readonly="isPending"
|
|
21
|
+
@focusin="updateFocus(name, true)"
|
|
22
|
+
@focusout="updateFocus(name, false)"
|
|
23
|
+
/>
|
|
24
|
+
|
|
25
|
+
<template v-if="hasRightContent">
|
|
26
|
+
<span class="right-content">
|
|
27
|
+
<slot name="right"></slot>
|
|
28
|
+
</span>
|
|
29
|
+
</template>
|
|
30
|
+
</div>
|
|
21
31
|
</template>
|
|
22
32
|
|
|
23
33
|
<script setup lang="ts">
|
|
@@ -29,9 +39,7 @@ const props = defineProps({
|
|
|
29
39
|
// type: String as PropType<"text" | "password" | "tel" | "number" | "email" | "url">, // This breaks props setup in unit tests
|
|
30
40
|
type: String,
|
|
31
41
|
validator(value: string) {
|
|
32
|
-
return ['text', 'password', 'tel', 'number', 'email', 'url'].includes(
|
|
33
|
-
value
|
|
34
|
-
);
|
|
42
|
+
return ['text', 'password', 'tel', 'number', 'email', 'url'].includes(value);
|
|
35
43
|
},
|
|
36
44
|
},
|
|
37
45
|
id: {
|
|
@@ -41,20 +49,16 @@ const props = defineProps({
|
|
|
41
49
|
},
|
|
42
50
|
name: {
|
|
43
51
|
type: String,
|
|
44
|
-
|
|
52
|
+
required: true,
|
|
45
53
|
},
|
|
46
54
|
validation: {
|
|
47
55
|
type: String,
|
|
48
|
-
default:
|
|
56
|
+
default: null,
|
|
49
57
|
},
|
|
50
58
|
required: {
|
|
51
59
|
type: Boolean,
|
|
52
60
|
value: false,
|
|
53
61
|
},
|
|
54
|
-
isPending: {
|
|
55
|
-
type: Boolean,
|
|
56
|
-
value: false,
|
|
57
|
-
},
|
|
58
62
|
c12: {
|
|
59
63
|
type: Object as PropType<InpuTextC12>,
|
|
60
64
|
required: true,
|
|
@@ -65,69 +69,83 @@ const props = defineProps({
|
|
|
65
69
|
},
|
|
66
70
|
});
|
|
67
71
|
|
|
72
|
+
const slots = useSlots();
|
|
73
|
+
const hasLeftContent = computed(() => slots.left !== undefined);
|
|
74
|
+
const hasRightContent = computed(() => slots.right !== undefined);
|
|
75
|
+
|
|
68
76
|
const modelValue = defineModel() as Ref<IFormData>;
|
|
69
|
-
|
|
77
|
+
|
|
78
|
+
const updateFocus = (name: string, isFocused: boolean) => {
|
|
79
|
+
modelValue.value.focusedField = isFocused ? name : '';
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
const isPending = computed(() => {
|
|
83
|
+
return modelValue.value.isPending;
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
const isFocused = computed(() => {
|
|
87
|
+
return modelValue.value.focusedField == name.value;
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
const isDirty = computed(() => {
|
|
91
|
+
return modelValue.value.dirtyFields[name.value];
|
|
92
|
+
});
|
|
70
93
|
|
|
71
94
|
const name = computed(() => {
|
|
72
95
|
return props.name !== null ? props.name : props.id;
|
|
73
96
|
});
|
|
97
|
+
|
|
74
98
|
const validatorLocale = toRef(useRuntimeConfig().public.validatorLocale);
|
|
75
99
|
|
|
76
|
-
const componentValidation =
|
|
77
|
-
validationConfig[validatorLocale.value][props.validation];
|
|
100
|
+
const componentValidation = validationConfig[validatorLocale.value][props.validation];
|
|
78
101
|
const inputField = ref<HTMLInputElement | null>(null);
|
|
79
102
|
|
|
80
|
-
const { hasCustomError, removeCustomError } = useErrorMessage(
|
|
81
|
-
name.value,
|
|
82
|
-
modelValue
|
|
83
|
-
);
|
|
103
|
+
const { hasCustomError, removeCustomError } = useErrorMessage(name.value, modelValue);
|
|
84
104
|
|
|
85
105
|
const fieldHasError = () => {
|
|
86
106
|
const hasApiErrorMessage = hasCustomError();
|
|
87
107
|
const inputBad = !inputField.value?.validity.valid;
|
|
88
108
|
|
|
89
109
|
if (modelValue.value.isPending) {
|
|
90
|
-
modelValue.value!.validityState[name.value] =
|
|
91
|
-
inputField.value?.validity.valid ?? false;
|
|
110
|
+
modelValue.value!.validityState[name.value] = inputField.value?.validity.valid ?? false;
|
|
92
111
|
return hasApiErrorMessage ? hasApiErrorMessage : inputBad;
|
|
93
112
|
}
|
|
94
113
|
return false;
|
|
95
114
|
};
|
|
96
115
|
|
|
97
116
|
watchEffect(() => {
|
|
98
|
-
console.log(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
117
|
+
console.log('watchEffect()');
|
|
118
|
+
modelValue.value.dirtyFields[name.value] = modelValue.value.data[name.value] !== '';
|
|
119
|
+
|
|
120
|
+
modelValue.value!.validityState[name.value] = inputField.value?.validity.valid ?? false;
|
|
121
|
+
if (hasCustomError()) {
|
|
122
|
+
removeCustomError(inputField.value?.validity.valid);
|
|
123
|
+
}
|
|
102
124
|
});
|
|
103
125
|
|
|
104
126
|
const isValid = () => {
|
|
105
127
|
setTimeout(() => {
|
|
106
|
-
modelValue.value!.validityState[name.value] =
|
|
107
|
-
inputField.value?.validity.valid ?? false;
|
|
128
|
+
modelValue.value!.validityState[name.value] = inputField.value?.validity.valid ?? false;
|
|
108
129
|
}, 0);
|
|
109
130
|
};
|
|
110
131
|
|
|
111
|
-
// Keep an eye on this for performance issue
|
|
112
|
-
watch(
|
|
113
|
-
() => modelValue.value.data[name.value],
|
|
114
|
-
() => {
|
|
115
|
-
modelValue.value!.validityState[name.value] =
|
|
116
|
-
inputField.value?.validity.valid ?? false;
|
|
117
|
-
if (hasCustomError()) {
|
|
118
|
-
removeCustomError(inputField.value?.validity.valid);
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
{ deep: true }
|
|
122
|
-
);
|
|
123
|
-
|
|
124
132
|
onMounted(() => {
|
|
125
133
|
isValid();
|
|
126
134
|
});
|
|
127
135
|
</script>
|
|
128
136
|
|
|
129
137
|
<style lang="css">
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
138
|
+
.input-text-wrapper {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
|
|
142
|
+
&.has-left-content {
|
|
143
|
+
margin-left: var(--_gutter);
|
|
144
|
+
|
|
145
|
+
.left-content {
|
|
146
|
+
display: flex;
|
|
147
|
+
align-items: center;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
133
151
|
</style>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<InputTextMaterialCore type="email" :id :name :required :c12 :styleClassPassthrough :theme v-model="modelValue">
|
|
3
|
+
<template #input>
|
|
4
|
+
<InputTextCore :id :name type="email" :validation :required v-model="modelValue" :c12 :style-class-passthrough="styleClassPassthrough">
|
|
5
|
+
<template #left>
|
|
6
|
+
<Icon name="radix-icons:envelope-closed" class="icon" />
|
|
7
|
+
</template>
|
|
8
|
+
</InputTextCore>
|
|
9
|
+
</template>
|
|
10
|
+
</InputTextMaterialCore>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup lang="ts">
|
|
14
|
+
import type { InpuTextC12, IFormData } from '@/types/types.forms';
|
|
15
|
+
|
|
16
|
+
import propValidators from '../../../c12/prop-validators';
|
|
17
|
+
|
|
18
|
+
const props = defineProps({
|
|
19
|
+
size: {
|
|
20
|
+
type: String as PropType<string>,
|
|
21
|
+
default: 'normal',
|
|
22
|
+
validator(value: string) {
|
|
23
|
+
return propValidators.size.includes(value);
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
weight: {
|
|
27
|
+
type: String as PropType<string>,
|
|
28
|
+
default: 'wght-400',
|
|
29
|
+
validator(value: string) {
|
|
30
|
+
return propValidators.weight.includes(value);
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
theme: {
|
|
34
|
+
type: String as PropType<string>,
|
|
35
|
+
default: 'primary',
|
|
36
|
+
validator(value: string) {
|
|
37
|
+
return propValidators.theme.includes(value);
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
id: {
|
|
41
|
+
// type: String as PropType<string>,
|
|
42
|
+
type: String,
|
|
43
|
+
required: true,
|
|
44
|
+
},
|
|
45
|
+
name: {
|
|
46
|
+
type: String,
|
|
47
|
+
default: null,
|
|
48
|
+
},
|
|
49
|
+
validation: {
|
|
50
|
+
type: String,
|
|
51
|
+
default: '',
|
|
52
|
+
},
|
|
53
|
+
required: {
|
|
54
|
+
type: Boolean,
|
|
55
|
+
value: false,
|
|
56
|
+
},
|
|
57
|
+
c12: {
|
|
58
|
+
type: Object as PropType<InpuTextC12>,
|
|
59
|
+
required: true,
|
|
60
|
+
},
|
|
61
|
+
styleClassPassthrough: {
|
|
62
|
+
type: String,
|
|
63
|
+
default: '',
|
|
64
|
+
},
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
const name = computed(() => {
|
|
68
|
+
return props.name !== null ? props.name : props.id;
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
const modelValue = defineModel() as Ref<IFormData>;
|
|
72
|
+
</script>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<InputTextMaterialCore :type :id :name :required :c12 :styleClassPassthrough :theme v-model="modelValue">
|
|
3
|
+
<template #input>
|
|
4
|
+
<InputTextCore :id :name :type :validation :required v-model="modelValue" :c12 :style-class-passthrough="styleClassPassthrough">
|
|
5
|
+
<template #right>
|
|
6
|
+
<InputButtonCore @click.stop.prevent="toggleDisplayPassword" :is-pending="false" button-text="Submit" theme="ghost" size="x-small">
|
|
7
|
+
<template #iconOnly>
|
|
8
|
+
<Icon v-if="displayPassword" name="radix-icons:eye-none" class="icon" />
|
|
9
|
+
<Icon v-else name="radix-icons:eye-open" class="icon" />
|
|
10
|
+
</template>
|
|
11
|
+
</InputButtonCore>
|
|
12
|
+
</template>
|
|
13
|
+
</InputTextCore>
|
|
14
|
+
</template>
|
|
15
|
+
</InputTextMaterialCore>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
import type { InpuTextC12, IFormData } from '@/types/types.forms';
|
|
20
|
+
|
|
21
|
+
import propValidators from '../../../c12/prop-validators';
|
|
22
|
+
|
|
23
|
+
const props = defineProps({
|
|
24
|
+
size: {
|
|
25
|
+
type: String as PropType<string>,
|
|
26
|
+
default: 'normal',
|
|
27
|
+
validator(value: string) {
|
|
28
|
+
return propValidators.size.includes(value);
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
weight: {
|
|
32
|
+
type: String as PropType<string>,
|
|
33
|
+
default: 'wght-400',
|
|
34
|
+
validator(value: string) {
|
|
35
|
+
return propValidators.weight.includes(value);
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
theme: {
|
|
39
|
+
type: String as PropType<string>,
|
|
40
|
+
default: 'primary',
|
|
41
|
+
validator(value: string) {
|
|
42
|
+
return propValidators.theme.includes(value);
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
id: {
|
|
46
|
+
// type: String as PropType<string>,
|
|
47
|
+
type: String,
|
|
48
|
+
required: true,
|
|
49
|
+
},
|
|
50
|
+
name: {
|
|
51
|
+
type: String,
|
|
52
|
+
default: null,
|
|
53
|
+
},
|
|
54
|
+
validation: {
|
|
55
|
+
type: String,
|
|
56
|
+
default: '',
|
|
57
|
+
},
|
|
58
|
+
required: {
|
|
59
|
+
type: Boolean,
|
|
60
|
+
value: false,
|
|
61
|
+
},
|
|
62
|
+
c12: {
|
|
63
|
+
type: Object as PropType<InpuTextC12>,
|
|
64
|
+
required: true,
|
|
65
|
+
},
|
|
66
|
+
styleClassPassthrough: {
|
|
67
|
+
type: String,
|
|
68
|
+
default: '',
|
|
69
|
+
},
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
const name = computed(() => {
|
|
73
|
+
return props.name !== null ? props.name : props.id;
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
const modelValue = defineModel() as Ref<IFormData>;
|
|
77
|
+
|
|
78
|
+
const displayPassword = ref(false);
|
|
79
|
+
|
|
80
|
+
const type = computed(() => {
|
|
81
|
+
// return displayPassword.value && !modelValue.value.isPending ? "text" : "password";
|
|
82
|
+
return displayPassword.value ? 'text' : 'password';
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
const toggleDisplayPassword = () => {
|
|
86
|
+
displayPassword.value = !displayPassword.value;
|
|
87
|
+
};
|
|
88
|
+
</script>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<InputTextMaterialCore :type :id :name :required :c12 :styleClassPassthrough :theme v-model="modelValue">
|
|
3
|
+
<template #input>
|
|
4
|
+
<InputTextCore :id :name type="text" :validation :required v-model="modelValue" :c12 :style-class-passthrough="styleClassPassthrough" />
|
|
5
|
+
</template>
|
|
6
|
+
</InputTextMaterialCore>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
import type { InpuTextC12, IFormData } from '@/types/types.forms';
|
|
11
|
+
|
|
12
|
+
import propValidators from '../../../c12/prop-validators';
|
|
13
|
+
|
|
14
|
+
const props = defineProps({
|
|
15
|
+
size: {
|
|
16
|
+
type: String as PropType<string>,
|
|
17
|
+
default: 'normal',
|
|
18
|
+
validator(value: string) {
|
|
19
|
+
return propValidators.size.includes(value);
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
weight: {
|
|
23
|
+
type: String as PropType<string>,
|
|
24
|
+
default: 'wght-400',
|
|
25
|
+
validator(value: string) {
|
|
26
|
+
return propValidators.weight.includes(value);
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
theme: {
|
|
30
|
+
type: String as PropType<string>,
|
|
31
|
+
default: 'primary',
|
|
32
|
+
validator(value: string) {
|
|
33
|
+
return propValidators.theme.includes(value);
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
type: {
|
|
37
|
+
// type: String as PropType<"text" | "password" | "tel" | "number" | "email" | "url">, // This breaks props setup in unit tests
|
|
38
|
+
type: String,
|
|
39
|
+
validator(value: string) {
|
|
40
|
+
return ['text', 'password', 'tel', 'number', 'email', 'url'].includes(value);
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
id: {
|
|
44
|
+
// type: String as PropType<string>,
|
|
45
|
+
type: String,
|
|
46
|
+
required: true,
|
|
47
|
+
},
|
|
48
|
+
name: {
|
|
49
|
+
type: String,
|
|
50
|
+
default: null,
|
|
51
|
+
},
|
|
52
|
+
validation: {
|
|
53
|
+
type: String,
|
|
54
|
+
default: '',
|
|
55
|
+
},
|
|
56
|
+
required: {
|
|
57
|
+
type: Boolean,
|
|
58
|
+
value: false,
|
|
59
|
+
},
|
|
60
|
+
c12: {
|
|
61
|
+
type: Object as PropType<InpuTextC12>,
|
|
62
|
+
required: true,
|
|
63
|
+
},
|
|
64
|
+
styleClassPassthrough: {
|
|
65
|
+
type: String,
|
|
66
|
+
default: '',
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const name = computed(() => {
|
|
71
|
+
return props.name !== null ? props.name : props.id;
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
const modelValue = defineModel() as Ref<IFormData>;
|
|
75
|
+
</script>
|