Type Alias CategoryGroup

CategoryGroup: {
    childCategories: Category[];
    fieldType: "group";
    infoButtonText?: string[];
    infoLink?: { display: string; link: string };
    key: string;
    name: string;
}

A logical grouping of catalogue items that is rendered as a collapsable entry in the catalogue tree.

Type declaration

  • childCategories: Category[]

    The list of catalogue items in the group

  • fieldType: "group"
  • OptionalinfoButtonText?: string[]

    Optional text that is accessed by clicking a "ⓘ" button next to the display name

  • OptionalinfoLink?: { display: string; link: string }

    Optional hyperlink shown next to the display name

    • display: string

      The link text

    • link: string

      The link URL

  • key: string
  • name: string

    The group's user-facing display name

MMNEPVFCICPMFPCPTTAAATR