Class DefaultTheme

Default theme implementation of TypeDoc. If a theme does not provide a custom Theme implementation, this theme class will be used.

Hierarchy (view full)

Constructors

Properties

componentName: string

The name of this component as set by the @Component decorator.

icons: {
    1: (() => Element);
    1024: (() => Element);
    1048576: (() => Element);
    128: (() => Element);
    131072: (() => Element);
    16: (() => Element);
    16384: (() => Element);
    2: (() => Element);
    2048: (() => Element);
    2097152: (() => Element);
    256: (() => Element);
    262144: (() => Element);
    32: (() => Element);
    32768: (() => Element);
    4: (() => Element);
    4096: (() => Element);
    4194304: (() => Element);
    512: (() => Element);
    524288: (() => Element);
    64: (() => Element);
    65536: (() => Element);
    8: (() => Element);
    8192: (() => Element);
    anchor: (() => Element);
    checkbox: (() => Element);
    chevronDown: (() => Element);
    chevronSmall: (() => Element);
    menu: (() => Element);
    search: (() => Element);
} = ...

The icons which will actually be rendered. The source of truth lives on the theme, and the DefaultThemeRenderContext.icons member will produce references to these.

These icons will be written twice. Once to an icons.svg file in the assets directory which will be referenced by icons on the context, and once to an icons.js file so that references to the icons can be dynamically embedded within the page for use by the search dropdown and when loading the page on file:// urls.

Custom themes may overwrite this entire object or individual properties on it to customize the icons used within the page, however TypeDoc currently assumes that all icons are svg elements, so custom themes must also use svg elements.

Type declaration

markedPlugin: MarkedPlugin
URL_PREFIX: RegExp = ...

Accessors

Methods

  • Remove one or many callbacks. If context is null, removes all callbacks with that function. If callback is null, removes all callbacks for the event. If name is null, removes all bound callbacks for all events.

    Returns this

  • Parameters

    • eventMap: undefined | EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: undefined | string
    • Optional callback: EventCallback
    • Optional context: any

    Returns this

  • Bind an event to only be triggered a single time. After the first time the callback is invoked, its listener will be removed. If multiple events are passed in using the space-separated syntax, the handler will fire once for each event, not once for a combination of all events.

    Parameters

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: any

    Returns this

  • Trigger one or many events, firing all bound callbacks. Callbacks are passed the same arguments as trigger is, apart from the event name (unless you're listening on "all", which will cause your callback to receive the true name of the event as the first argument).

    Parameters

    Returns DefaultTheme

  • Return a url for the given reflection.

    Parameters

    • reflection: Models.Reflection

      The reflection the url should be generated for.

    • Optional relative: Models.Reflection

      The parent reflection the url generation should stop on.

    • separator: string = "."

      The separator used to generate the url.

    Returns string

    The generated url.

Generated using TypeDoc