TextField
TextField を使用して、テキスト入力フィールドを作成します。
TextField
コンポーネントをアプリに追加するには、以下のようにします。
import {TextField} from '@stripe/ui-extension-sdk/ui';
<TextField label="Business name" placeholder="Acme Inc…" onChange={(e) => { console.log(e.target.value); }} />
TextField のプロパティー
プロパティー | タイプ |
---|---|
| オプション
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. |
無効
TextField エレメントに invalid
を設定すると、コンポーネントをレンダリングし、指定された値が受け入れられないことを視覚的に示すために赤い輪郭線を表示できます。このプロパティを省略すると、デフォルトで false
が設定されます。
<TextField label="Current year" defaultValue="1892" invalid />
タイプ
TextField の type
プロパティーを設定して、予期されるテキスト値のタイプに応じて異なる方法でレンダリングすることができます。これは、<input />
のタイプ属性と似ていますが、テキストが許可されるタイプに制限されています。このプロパティーを省略すると、デフォルトで text
になります。
<TextField label="Text" type="text" /> <TextField label="Password" type="password" /> <TextField label="Search" type="search" /> <TextField label="Number" type="number" />
サイズ
size
を変更すると、デフォルト値より少し大きい、または少し小さいサイズを選択できます。一般に、同一のフォーム内で異なるサイズを組み合わせることはお勧めしません。デフォルト値は medium
です。
<TextField label="Small" size="small" /> <TextField label="Medium" size="medium" /> <TextField label="Large" size="large" />
無効と読み取り専用
フィールドに disabled
(無効) のマークを付けることができます。これにより、そのフィールドが使われなくなり、デザインが変わります。無効にすると、フォームの送信時にそのフォームエレメントのデータが送信されなくなります。
フィールドを readOnly
(読み取り専用) にすることもできます。読み取り専用の場合、エレメント内のデータは送信されますが、ユーザーはそのデータを変更できません。
<TextField label="Disabled" defaultValue="Field is disabled" disabled /> <TextField label="Readonly" defaultValue="Field is readonly" readOnly />
ステータス管理
Use the TextField
component as an uncontrolled input:
<TextField onChange={(e) => { console.log(e); }} label="First name" />
幅
Set the width of a TextField
component using the available values with the css
prop:
<TextField label="Search" type="search" css={{width: 'fill'}} />