Select
Select を使用して、ドロップダウンのオプションセットから選択します。
Select
コンポーネントをアプリに追加するには、以下のようにします。
import {Select} from '@stripe/ui-extension-sdk/ui';
<Select name="demo-001" label="Choose a pet" onChange={(e) => { console.log(e); }} > <option value="">Choose an option</option> <option value="dogs">Dogs</option> <option value="cats">Cats</option> </Select>
Select プロパティ
プロパティー | タイプ |
---|---|
| 必須
コンポーネントのコンテンツ。 |
| オプション
Specifies one of the possible autocomplete behaviors. |
| オプション
If |
| オプション
Related types: CSS. |
| オプション
A string (or an array of strings for |
| オプション
コントロールのラベルの横にレンダリングされる説明テキスト。 |
| オプション
要素を無効化するかどうかを設定します。選択できなくなります。 |
| オプション
コントロールの下に表示されるエラーテキスト。 |
| オプション
Specifies the |
| オプション
指定した要素を視覚的に非表示にします。非表示の要素は引き続き存在しており、スクリーンリーダーに表示されます。 |
| オプション
要素が無効な状態であるかどうかを設定します。これは、表示専用のプロパティであり、フォーム送信を妨げるものではありません。 |
| オプション
コントロールを説明するテキスト。表示され、クリック可能になります。 |
| オプション
If |
| オプション
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. |
| オプション
If |
| オプション
コンポーネントのサイズ。 |
| オプション
A string (or an array of strings for |
CSS
プロパティー | タイプ |
---|---|
| オプション
The width of the component. See Sizing for details. |
ステータス管理
Use the Select
component as an uncontrolled input:
<Select name="demo-001" label="Choose a pet" onChange={(e) => { console.log(e); }} > <option value="">Choose an option</option> <option value="dogs">Dogs</option> <option value="cats">Cats</option> </Select>
無効化
Select
コンポーネントは無効化でき、これにより変更できなくなります。
<Select name="demo-001" disabled label="Choose a pet"> <option value="">Choose an option</option> <option value="dogs">Dogs</option> <option value="cats">Cats</option> </Select>
幅
Set the width of a Select
component using the available values with the css
prop:
<Select css={{ width: 'fill', }} name="demo-001" label="Choose a pet" onChange={(e) => { console.log(e); }} > <option value="">Choose an option</option> <option value="dogs">Dogs</option> <option value="cats">Cats</option> </Select>