gitextract_2gw30632/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .prettierrc ├── .storybook/ │ ├── main.js │ └── preview.js ├── LICENSE.md ├── README.md ├── demo-sandbox/ │ ├── .gitignore │ ├── .prettierrc │ ├── index.css │ ├── index.jsx │ └── package.json ├── package.json ├── src/ │ ├── .eslintrc.json │ ├── .stylelintrc │ ├── components/ │ │ ├── IconButton.scss │ │ ├── IconButton.tsx │ │ ├── Importer.scss │ │ ├── Importer.stories.tsx │ │ ├── Importer.tsx │ │ ├── ImporterField.tsx │ │ ├── ImporterFrame.scss │ │ ├── ImporterFrame.tsx │ │ ├── ImporterProps.ts │ │ ├── ProgressDisplay.scss │ │ ├── ProgressDisplay.tsx │ │ ├── TextButton.scss │ │ ├── TextButton.tsx │ │ ├── fields-step/ │ │ │ ├── ColumnDragCard.scss │ │ │ ├── ColumnDragCard.tsx │ │ │ ├── ColumnDragObject.scss │ │ │ ├── ColumnDragObject.tsx │ │ │ ├── ColumnDragSourceArea.scss │ │ │ ├── ColumnDragSourceArea.tsx │ │ │ ├── ColumnDragState.tsx │ │ │ ├── ColumnDragTargetArea.scss │ │ │ ├── ColumnDragTargetArea.tsx │ │ │ ├── ColumnPreview.tsx │ │ │ └── FieldsStep.tsx │ │ └── file-step/ │ │ ├── FileSelector.scss │ │ ├── FileSelector.tsx │ │ ├── FileStep.scss │ │ ├── FileStep.tsx │ │ ├── FormatDataRowPreview.scss │ │ ├── FormatDataRowPreview.tsx │ │ ├── FormatErrorMessage.scss │ │ ├── FormatErrorMessage.tsx │ │ ├── FormatRawPreview.scss │ │ └── FormatRawPreview.tsx │ ├── index.ts │ ├── locale/ │ │ ├── ImporterLocale.ts │ │ ├── LocaleContext.tsx │ │ ├── index.ts │ │ ├── locale_daDK.ts │ │ ├── locale_deDE.ts │ │ ├── locale_enUS.ts │ │ ├── locale_itIT.ts │ │ ├── locale_ptBR.ts │ │ └── locale_trTR.ts │ ├── parser.ts │ └── theme.scss ├── test/ │ ├── .eslintrc.json │ ├── basics.test.ts │ ├── bom.test.ts │ ├── customConfig.test.ts │ ├── encoding.test.ts │ ├── fixtures/ │ │ ├── bom.csv │ │ ├── customDelimited.txt │ │ ├── encodingWindows1250.csv │ │ ├── noeof.csv │ │ └── simple.csv │ ├── noeof.test.ts │ ├── public/ │ │ └── index.html │ ├── testServer.ts │ ├── uiSetup.ts │ └── webdriver.ts ├── tsconfig.base.json ├── tsconfig.json └── webpack.config.js