maquette
    Preparing search index...

    Interface ProjectorOptions

    Options that may be passed when creating the Projector

    interface ProjectorOptions {
        performanceLogger?: ProjectorPerformanceLogger;
        styleApplyer(domNode: HTMLElement, styleName: string, value: string): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    performanceLogger?: ProjectorPerformanceLogger

    Can be used to log performance metrics

    Methods

    • May be used to add vendor prefixes when applying inline styles when needed. This function is called when VNodeProperties#styles is used. This function should execute domNode.style[styleName] = value or do something smarter.

      Parameters

      • domNode: HTMLElement

        The DOM Node that needs to receive the style

      • styleName: string

        The name of the style that should be applied, for example transform.

      • value: string

        The value of this style, for example rotate(45deg).

      Returns void