Core utilities and base functionality for PrimeVue UI component library
52
Quality
Pending
Does it follow best practices?
Impact
52%
1.15xAverage score across 10 eval scenarios
A compact form that collects a profile username, password, monthly budget, and mood rating using the UI library's form input components.
@generates
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
Install with Tessl CLI
npx tessl i tessl/npm-primevue--coreevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10