CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Variable getTabPanelAriaProps

    getTabPanelAriaProps: (
        id: string,
        labelledBy: string,
        isHidden: boolean,
    ) => {
        "aria-labelledby": string;
        hidden?: boolean;
        id: string;
        role: string;
        tabIndex: number;
    }

    Type Declaration

      • (
            id: string,
            labelledBy: string,
            isHidden: boolean,
        ): {
            "aria-labelledby": string;
            hidden?: boolean;
            id: string;
            role: string;
            tabIndex: number;
        }
      • Generate ARIA props for a tab panel

        Parameters

        • id: string

          Panel identifier

        • labelledBy: string

          ID of the tab that labels this panel

        • isHidden: boolean

          Whether the panel is currently hidden

        Returns {
            "aria-labelledby": string;
            hidden?: boolean;
            id: string;
            role: string;
            tabIndex: number;
        }

        ARIA props object