ITopActionsDropdownOption interface
TopActions ドロップダウン オプションの props。
プロパティ
aria |
スクリーン リーダーの利点を得るための選択グループ オプションの aria ラベル。 |
checked | 選択グループ オプションがオンかどうか。 既定値は False です。 |
data |
ドロップダウン オプションの data-automation-id プロパティ。 |
disabled | 選択グループ オプションが無効かどうか。 |
icon |
[選択] フィールドのアイコン コンポーネント の小道具。 |
image |
選択肢フィールドの画像の幅と高さ (ピクセル単位)。 |
image |
選択肢フィールドの画像のソース。 |
key | オプションを一意に特定するために必要なキー。 |
selected |
選択されている選択肢フィールドの画像のソース。 |
text | オプション用のテキスト文字列。 |
title | 項目の上にマウス ポインターを合わせると表示されるタイトル (ヒント) テキスト。 |
プロパティの詳細
ariaLabel
スクリーン リーダーの利点を得るための選択グループ オプションの aria ラベル。
readonly ariaLabel?: string;
プロパティ値
string
checked
選択グループ オプションがオンかどうか。
既定値は False です。
readonly checked?: boolean;
プロパティ値
boolean
dataAutomationId
ドロップダウン オプションの data-automation-id プロパティ。
readonly dataAutomationId?: string;
プロパティ値
string
disabled
選択グループ オプションが無効かどうか。
readonly disabled?: boolean;
プロパティ値
boolean
iconProps
[選択] フィールドのアイコン コンポーネント の小道具。
readonly iconProps?: ITopActionsDropdownOptionIconProps;
プロパティ値
imageSize
選択肢フィールドの画像の幅と高さ (ピクセル単位)。
readonly imageSize?: {
readonly width: number;
readonly height: number;
};
プロパティ値
{ readonly width: number; readonly height: number; }
imageSrc
選択肢フィールドの画像のソース。
readonly imageSrc?: string;
プロパティ値
string
key
オプションを一意に特定するために必要なキー。
readonly key: string | number;
プロパティ値
string | number
selectedImageSrc
選択されている選択肢フィールドの画像のソース。
readonly selectedImageSrc?: string;
プロパティ値
string
text
オプション用のテキスト文字列。
readonly text: string;
プロパティ値
string
title
項目の上にマウス ポインターを合わせると表示されるタイトル (ヒント) テキスト。
readonly title?: string;
プロパティ値
string