From d4b6d691264bf21e4e2c97548aaad9aa80678a6b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?=
<43071496+adam-kov@users.noreply.github.com>
Date: Mon, 20 Feb 2023 18:05:15 +0100
Subject: [PATCH] feat(frontend): Add file input app component (#1211)
* feat(frontend): Add file input app component
* fix(frontend): Handle multiple file selects
* fix(frontend): File input styling
---
.../otherInputs/AppFileInput.svelte | 43 +++++++
.../components/apps/editor/Component.svelte | 48 +++++++-
.../common/fileInput/FileInput.svelte | 113 ++++++++++++++++++
frontend/src/lib/components/common/index.ts | 1 +
4 files changed, 202 insertions(+), 3 deletions(-)
create mode 100644 frontend/src/lib/components/apps/components/otherInputs/AppFileInput.svelte
create mode 100644 frontend/src/lib/components/common/fileInput/FileInput.svelte
diff --git a/frontend/src/lib/components/apps/components/otherInputs/AppFileInput.svelte b/frontend/src/lib/components/apps/components/otherInputs/AppFileInput.svelte
new file mode 100644
index 0000000000..86a773782a
--- /dev/null
+++ b/frontend/src/lib/components/apps/components/otherInputs/AppFileInput.svelte
@@ -0,0 +1,43 @@
+
+
+