For AI agents: the complete documentation index is available at https://payhon.github.io/AppKernia/en-US/llms.txt, the full documentation bundle is available at https://payhon.github.io/AppKernia/en-US/llms-full.txt, and this page is available as Markdown at https://payhon.github.io/AppKernia/en-US/mobile-components/text-field.md.

ak-text-field

The field unifies label, input, password mode, disabled state, and field errors. Business validation remains in the feature schema.

<ak-text-field
  v-model="form.email"
  :label="t('auth.fields.email')"
  :placeholder="t('auth.fields.emailPlaceholder')"
  :error="errors.email"
  :disabled="submitting"
/>
PropTypeDefaultMeaning
modelValueString''Current value
labelString''Visible field label
placeholderString''Hint; never a replacement for the label
errorString''Localized error text
passwordBooleanfalseNative input password mode
disabledBooleanfalseBlocks input and updates

update:modelValue(value: string) emits on native input when enabled. Passwords, OTPs, and MFA input never enter logs, analytics, clipboard monitoring, or normal storage.