お知らせ一覧表示パーツ

interface InformationListParts {
    enableHtmlTag: boolean;
    iconTag?: string;
    informationList: Entity[];
    numberOfDisplay?: number;
    passwordWarnAreaStyleClass?: "info" | "warning" | "error" | "info-outline" | "warning-outline" | "error-outline";
    passwordWarnIcon?: string;
    passwordWarningMessage?: string;
    remainDays?: number;
    shouldWarn: boolean;
    showWarningPasswordAge: boolean;
    style?: string;
    title?: string;
    type: TopViewPartsType;
}

Hierarchy

  • TopViewPartsBase
    • InformationListParts

Properties

enableHtmlTag: boolean

HTML形式での出力可否

iconTag?: string

アイコンタグ

informationList: Entity[]

お知らせ一覧

numberOfDisplay?: number

お知らせ一覧の表示件数

passwordWarnAreaStyleClass?: "info" | "warning" | "error" | "info-outline" | "warning-outline" | "error-outline"

パスワード警告表示領域スタイルクラス

passwordWarnIcon?: string

パスワード警告アイコン

passwordWarningMessage?: string

パスワードの有効期限警告メッセージ

remainDays?: number

パスワード期限までの残日数

shouldWarn: boolean

警告を出すか否か?

showWarningPasswordAge: boolean

パスワードの有効期限警告を表示するか?

style?: string

スタイルシートのクラス名

title?: string

タイトル

TopViewPartsタイプ