テキスト領域
TextArea を使用して、複数行テキストの入力フィールドを作成します。
TextArea
コンポーネントをアプリに追加するには、以下のようにします。
import {TextArea} from '@stripe/ui-extension-sdk/ui';
<TextArea label="Description" placeholder="Acme Inc was founded in…" defaultValue="Stripe Apps lets you embed custom…" onChange={(e) => { console.log(e.target.value); }} />
TextArea props
プロパティー | タイプ |
---|---|
| オプション
Specifies one of the possible autocomplete behaviors. |
| オプション
If |
| オプション
|
| オプション
Related types: CSS. |
| オプション
Specifies the initial value that a user can change. |
| オプション
コントロールのラベルの横にレンダリングされる説明テキスト。 |
| オプション
要素を無効化するかどうかを設定します。選択できなくなります。 |
| オプション
コントロールの下に表示されるエラーテキスト。 |
| オプション
Specifies the |
| オプション
指定した要素を視覚的に非表示にします。非表示の要素は引き続き存在しており、スクリーンリーダーに表示されます。 |
| オプション
要素が無効な状態であるかどうかを設定します。これは、表示専用のプロパティであり、フォーム送信を妨げるものではありません。 |
| オプション
コントロールを説明するテキスト。表示され、クリック可能になります。 |
| オプション
Specifies the maximum length of text. |
| オプション
Specifies the minimum length of text. |
| オプション
Specifies the name for this input that’s submitted with the form. |
| オプション
Required for controlled inputs. Fires immediately when the input’s value is changed by the user (for example, it fires on every keystroke). Behaves like the browser input event. |
| オプション
Fires when a key is pressed. |
| オプション
Fires when a key is released. |
| オプション
Displayed in a dimmed color when the input value is empty. |
| オプション
If |
| オプション
If |
| オプション
|
| オプション
|
| オプション
コンポーネントのサイズ。 |
| オプション
If explicitly set to |
| オプション
Overrides the default Tab button behavior. Avoid using values other than |
| オプション
Controls the input’s text. When you pass this prop, you must also pass an |
| オプション
|
| オプション非推奨
|
CSS
プロパティー | タイプ |
---|---|
| オプション
The width of the component. See Sizing for details. |
無効
エレメントで invalid
プロパティを設定することにより、TextArea
に無効のマークを付けることができます。これは純粋に視覚的なものです。デフォルトは false
です。
<TextArea label="Favorite word" defaultValue="Stripe Apps lets you embed custom…" invalid />
サイズ変更可能
デフォルトでは、TextArea
は垂直方向のサイズ変更が可能です。この設定は通常、スペースを広げる必要がある場合に向いています。エレメントのサイズを変更できないようにする場合は、resizeable
を false
に設定します。
<TextArea label="Resizable bio" defaultValue="Stripe Apps lets you embed custom…" /> <TextArea label="Unresizable bio" resizeable={false} defaultValue="Stripe Apps lets you embed custom…" />
サイズ
size
を変更すると、デフォルト値より少し大きい、または少し小さいサイズを選択できます。一般に、同一のフォーム内で異なるサイズを組み合わせることはお勧めしません。デフォルト値は medium
です。
<TextArea label="Description (large)" size="large" defaultValue="Stripe Apps lets you embed custom…" /> <TextArea label="Description (medium, default)" size="medium" defaultValue="Stripe Apps lets you embed custom…" /> <TextArea label="Description (small)" size="small" defaultValue="Stripe Apps lets you embed custom…" />
無効と読み取り専用
フィールドに disabled
(無効) のマークを付けることができます。これにより、そのフィールドが使われなくなり、デザインが変わります。無効にすると、フォームの送信時にそのフォームエレメントのデータが送信されなくなります。
フィールドを readOnly
(読み取り専用) にすることもできます。読み取り専用の場合、エレメント内のデータは送信されますが、ユーザーはそのデータを変更できません。
<TextArea label="Disabled" defaultValue="Stripe Apps lets you embed custom…" disabled /> <TextArea label="Readonly" defaultValue="Stripe Apps lets you embed custom…" readOnly />
行
TextArea
の高さは、従来のピクセル単位の高さではなく、通常の <TextArea />
のように行数で制御されます。こうすると、行のピクセル値ではなく、フォントサイズの倍数に基づいて、エレメント自体のサイズを設定できます。これにより、デフォルトでテキストの一部が隠れることがなくなります。
TextArea
コンポーネントの縦方向の高さは、設定するサイズ値によっても変わります。入力範囲のテキストの行の高さが変わるためです。
<TextArea label="Description (3 rows, default)" defaultValue="Stripe Apps lets you embed custom…" /> <TextArea label="Description (6 rows)" rows={6} defaultValue="Stripe Apps lets you embed custom…" />
ステータス管理
Use the TextArea
component as an uncontrolled input:
<TextArea onChange={(e) => { console.log(e); }} label="About your business" placeholder="Our business is…" />
幅
Set the width of a TexaArea
component using the available values with the css
prop:
<TextArea label="App feedback" defaultValue="Stripe Apps lets you embed custom…" css={{width: 'fill'}} />