structured-render - v1.2.0
    Preparing search index...

    Variable VirStructuredRenderConst

    VirStructuredRender: DeclarativeElementDefinition<
        "vir-structured-render",
        {
            data: Readonly<RenderInput>;
            options?: Readonly<
                PartialWithUndefined<
                    Readonly<
                        {
                            icons: Readonly<{ [IconKey in string]: ViraIconSvg }>;
                            pluralSourcesString: string;
                            sourceString: string;
                        },
                    > & {
                        blockCardExpansion: boolean;
                        currentlyExpanded: { [key: string]: boolean };
                        expandAllCards: boolean;
                        expandFirstCard: boolean;
                        expandSourcesOnPrint: boolean;
                        hideViewOnPageButtons: boolean;
                        isPhoneSize: boolean;
                        markdownStyles: string | CSSResult;
                        processingIcon: ViraIconSvg;
                        processingString: string;
                        sourceIcon: ViraIconSvg;
                        useCardStyles: boolean;
                        useDrawerForSources: boolean;
                        viewOnPageIcon: ViraIconSvg;
                        createViewOnPageString(this: void, pageNumber: number): string;
                    } & { isPhoneSize: boolean; isTabletSize: boolean },
                >,
            >;
        },
        { currentlyExpanded: Record<string, boolean>; lastStyleString: string },
        {},
        "vir-structured-render-phone-size" | "vir-structured-render-tablet-size",

            | "vir-structured-render-h1-font-size"
            | "vir-structured-render-h2-font-size"
            | "vir-structured-render-h3-font-size"
            | "vir-structured-render-small-font-size",
        readonly [],
        readonly [],
    > = ...

    Used to render Structured Render data to the DOM. This is the easiest way, if you use element-vir, to include Structured Render data in your web app. You can also use renderStructuredHtml to render Structured Render data to raw HTML.