evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
A compact form that collects a profile username, password, monthly budget, and mood rating using the UI library's form input components.
export interface ProfileIntakeFormModel {
username: string;
password: string;
monthlyBudget: number | null;
mood: number;
}
export interface ProfileIntakeFormEmits {
(e: 'update:modelValue', value: ProfileIntakeFormModel): void;
(e: 'submit', value: ProfileIntakeFormModel): void;
}
export interface ProfileIntakeFormProps {
modelValue: ProfileIntakeFormModel;
loading?: boolean;
disableSubmit?: boolean;
}
export const ProfileIntakeForm: import('vue').DefineComponent<
ProfileIntakeFormProps,
{},
{},
{},
{},
{},
{},
ProfileIntakeFormEmits
>;UI component library supplying styled text fields, password entry with strength meter and toggle, numeric inputs with steppers/formatting, and slider controls. @satisfied-by