or run

npx @tessl/cli init
Log in

Version

Files

docs

api-services.mdbase-classes.mdcomposables.mdconfiguration.mdindex.mdutilities.md
tile.json

rubric.jsonevals/scenario-10/

{
  "context": "Evaluates how well the solution leverages PrimeVue form inputs to build the profile intake form, focusing on correct use of InputText, Password, InputNumber, and Slider paired with a Badge. Scoring is purely about using the library components and their built-in behaviors to satisfy the spec's requirements and emissions.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "InputText usage",
      "description": "Username field uses PrimeVue InputText with a left icon (p-input-icon-left or equivalent pt slot), maxlength of 20, and v-model based update:modelValue wiring instead of a native input.",
      "max_score": 20
    },
    {
      "name": "Password meter",
      "description": "PrimeVue Password component configured with feedback (strength meter) including weakLabel/mediumLabel/strongLabel matching weak/medium/strong buckets and toggleMask enabled so show/hide keeps the value intact.",
      "max_score": 25
    },
    {
      "name": "InputNumber config",
      "description": "PrimeVue InputNumber in currency mode (mode=\"currency\" with currency symbol and useGrouping=true) applying step=50 plus min=0 and max=10000, emitting normalized numbers via its update:modelValue on arrow clicks and blur/change.",
      "max_score": 25
    },
    {
      "name": "Slider binding",
      "description": "PrimeVue Slider bound with v-model between 0 and 10 at step 1; change/onSlideEnd used to push the mood value into the model and displayed alongside via a PrimeVue Badge/Tag component.",
      "max_score": 15
    },
    {
      "name": "PrimeVue emission coherence",
      "description": "Aggregate form model updates come from PrimeVue component events (InputText, Password, InputNumber, Slider) to emit update:modelValue and submit without manual DOM querying.",
      "max_score": 15
    }
  ]
}