SheetXL - v0.3.20
    Preparing search index...

    Interface ScriptWorkspaceProps

    Move this to another project. Automation-Editor

    interface ScriptWorkspaceProps {
        autoFocusSel?: string;
        commands?: IGroup;
        editorProps?: ScriptEditorProps;
        onClose?: () => void;
        readOnly?: boolean;
        scripts: IScript;
        sx?: SxProps<Theme>;
    }

    Hierarchy

    • HTMLAttributes<HTMLElement>
      • ScriptWorkspaceProps
    Index

    Properties

    autoFocusSel?: string

    Allows for component to be autoFocused.

    If a string is provided this will be used as a querySelector to find the initial focusable component.

    commands?: IGroup

    The commands to use for the toolbar.

    editorProps?: ScriptEditorProps

    Props to pass to the editor.

    onClose?: () => void

    Called when the user request a close.

    readOnly?: boolean

    If the values can be modified

    scripts: IScript

    The script module to interact with.

    sx?: SxProps<Theme>