@relisa/gui4vega - v0.1.0
    Preparing search index...

    Interface ExternalSelectionExporterProps

    interface ExternalSelectionExporterProps {
        code: string;
        isOpen: boolean;
        onClose: () => void;
        onExport: (data: ExportedData) => void;
    }
    Index

    Properties

    code: string

    The Vega specification code from which datasets and signals will be extracted for export.

    isOpen: boolean

    When true, the export modal is open and visible to the user. When false, the modal is closed and hidden.

    onClose: () => void

    Callback function that is called when the export modal is closed. This allows the parent component to control the visibility of the modal.

    onExport: (data: ExportedData) => void

    Callback function that is called when the user confirms the export action.

    Type Declaration

      • (data: ExportedData): void
      • Parameters

        • data: ExportedData

          The exported data containing the selected datasets and signals, which is passed to the parent component for further handling.

        Returns void