svelte-dialogs
svelte-dialogs copied to clipboard
Text area input in dialog.prompt defaults to rtl direction
Issue: the text area input in dialog.prompt defaults to the rtl writing direction

Steps to reproduce: go on the showcase website https://bibizio.github.io/svelte-dialogs/, go to the "Prompt input types" example, try to type something in the text area input.
To those wondering, the current workaround is to add style: "direction: ltr" to the textarea object. Like this:
const input = await dialogs.prompt([{
label: "label name",
type: "textarea", rows: 10, cols: 20, style: "direction: ltr"
}], {title: "prompt title"});