Preparing search index...

    Props for UrlInputDialog component.

    type UrlInputDialogProps = {
        testId: string;
        isVisible: boolean;
        onClose: () => void;
        onSubmit: (url: string) => void;
        isLoading: boolean;
        error?: string;
    }
    Index

    Properties

    testId: string

    Unique identifier for testing and accessibility

    isVisible: boolean

    Whether the dialog is currently visible

    onClose: () => void

    Callback fired when dialog is closed

    onSubmit: (url: string) => void

    Callback fired when URL is submitted

    isLoading: boolean

    Whether a scraping operation is in progress

    error?: string

    Error message to display, if any