Circle V2 API Docs
    Preparing search index...

    Interface JsonViewerProps

    interface JsonViewerProps {
        "aria-label"?: string;
        caseSensitive?: boolean;
        colorPalette?: ConditionalValue<
            | "border"
            | "bg"
            | "current"
            | "transparent"
            | "black"
            | "white"
            | "gossamer"
            | "amber"
            | "coral"
            | "emerald"
            | "bluishGray"
            | "fg"
            | "brand"
            | "info"
            | "success"
            | "error"
            | "destructive"
            | "warning"
            | "ai"
            | "aiStart"
            | "aiEnd"
            | "impersonation"
            | `var(--${string})`
            | AnyString
            | "blue"
            | "cyan"
            | "gray"
            | "green"
            | "orange"
            | "pink"
            | "purple"
            | "red"
            | "teal"
            | "yellow"
            | "whiteAlpha"
            | "blackAlpha"
            | undefined,
        >;
        data: unknown;
        defaultCollapseDepth?: number;
        emptyState?: ReactNode;
        onSearchQueryChange?: (query: string) => void;
        searchIn?: JsonSearchIn;
        searchQuery?: string;
        showCopy?: boolean;
        showNodeCopy?: boolean;
        showToolbar?: boolean;
        size?: "sm" | "md";
    }
    Index

    Properties

    "aria-label"?: string
    caseSensitive?: boolean
    colorPalette?: ConditionalValue<
        | "border"
        | "bg"
        | "current"
        | "transparent"
        | "black"
        | "white"
        | "gossamer"
        | "amber"
        | "coral"
        | "emerald"
        | "bluishGray"
        | "fg"
        | "brand"
        | "info"
        | "success"
        | "error"
        | "destructive"
        | "warning"
        | "ai"
        | "aiStart"
        | "aiEnd"
        | "impersonation"
        | `var(--${string})`
        | AnyString
        | "blue"
        | "cyan"
        | "gray"
        | "green"
        | "orange"
        | "pink"
        | "purple"
        | "red"
        | "teal"
        | "yellow"
        | "whiteAlpha"
        | "blackAlpha"
        | undefined,
    >
    data: unknown
    defaultCollapseDepth?: number
    emptyState?: ReactNode
    onSearchQueryChange?: (query: string) => void
    searchIn?: JsonSearchIn
    searchQuery?: string
    showCopy?: boolean
    showNodeCopy?: boolean
    showToolbar?: boolean
    size?: "sm" | "md"