@tableflow/js
Version:
The JavaScript SDK for TableFlow. Embed an importer to collect and transform CSV files in your application.
60 lines (59 loc) • 1.45 kB
TypeScript
import { StoryObj } from "@storybook/html";
import { TableFlowImporterProps } from "./types";
declare const meta: {
title: string;
render: (args: TableFlowImporterProps) => "<button type=\"button\" id=\"uploadButton\">Import</button>" | "";
argTypes: {
elementId: {
control: string;
};
importerId: {
control: string;
};
hostUrl: {
control: string;
};
darkMode: {
control: string;
};
primaryColor: {
control: string;
};
modalCloseOnOutsideClick: {
control: string;
};
skipHeaderRowSelection: {
control: string;
};
showDownloadTemplateButton: {
control: string;
};
schemaless: {
control: string;
};
schemalessReadOnly: {
control: string;
};
schemalessDataTypes: {
control: string;
};
trimSpaces: {
control: string;
};
waitOnComplete: {
control: string;
};
language: {
control: string;
};
customTranslations: {
control: string;
};
showUploadAnotherFileButton: {
control: string;
};
};
};
export default meta;
type Story = StoryObj<TableFlowImporterProps>;
export declare const App: Story;