ITopActionsDropdownOption interface

TopActions ドロップダウン オプションの props。

プロパティ

ariaLabel

スクリーン リーダーの利点を得るための選択グループ オプションの aria ラベル。

checked

選択グループ オプションがオンかどうか。

既定値は False です。

disabled

選択グループ オプションが無効かどうか。

iconProps

[選択] フィールドのアイコン コンポーネント の小道具。

imageSize

選択肢フィールドの画像の幅と高さ (ピクセル単位)。

imageSrc

選択肢フィールドの画像のソース。

key

オプションを一意に特定するために必要なキー。

selectedImageSrc

選択されている選択肢フィールドの画像のソース。

text

オプション用のテキスト文字列。

title

項目の上にマウス ポインターを置くと表示されるタイトル (ヒント) テキスト。

プロパティの詳細

ariaLabel

スクリーン リーダーの利点を得るための選択グループ オプションの aria ラベル。

readonly ariaLabel?: string;

プロパティ値

string

checked

選択グループ オプションがオンかどうか。

既定値は False です。

readonly checked?: boolean;

プロパティ値

boolean

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