From 75e1adb7b3ff84c6d7a96d4d9c56abf11c7435e0 Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Wed, 3 Nov 2021 16:10:06 +0530 Subject: [PATCH] refactor: empty state illustrations --- .../collections/graphql/Collection.vue | 13 +++- .../components/collections/graphql/Folder.vue | 13 +++- .../components/collections/graphql/index.vue | 5 ++ .../components/collections/index.vue | 5 ++ .../components/collections/my/Collection.vue | 13 +++- .../components/collections/my/Folder.vue | 13 +++- .../collections/teams/Collection.vue | 13 +++- .../components/collections/teams/Folder.vue | 13 +++- .../components/environments/Edit.vue | 13 +++- .../components/environments/index.vue | 5 ++ .../components/graphql/RequestOptions.vue | 12 +++ .../components/graphql/Sidebar.vue | 28 ++++++- .../components/history/index.vue | 6 +- .../components/http/Authorization.vue | 5 ++ .../hoppscotch-app/components/http/Body.vue | 5 ++ .../components/http/BodyParameters.vue | 5 ++ .../components/http/Headers.vue | 12 +++ .../components/http/Parameters.vue | 12 +++ .../components/http/ResponseMeta.vue | 17 ++++- .../components/http/TestResult.vue | 5 ++ .../components/realtime/Websocket.vue | 13 +++- .../hoppscotch-app/components/teams/Edit.vue | 13 +++- .../components/teams/Invite.vue | 35 +++++++-- .../hoppscotch-app/components/teams/index.vue | 20 ++++- packages/hoppscotch-app/locales/en.json | 5 +- .../images/states/black/add_category.svg | 12 +++ .../images/states/black/add_comment.svg | 19 +++++ .../static/images/states/black/add_files.svg | 26 +++++++ .../static/images/states/black/add_group.svg | 37 +++++++++ .../static/images/states/black/blockchain.svg | 24 ++++++ .../static/images/states/black/history.svg | 38 ++++++++++ .../static/images/states/black/login.svg | 22 ++++++ .../static/images/states/black/pack.svg | 39 ++++++++++ .../states/black/upload_single_file.svg | 17 +++++ .../static/images/states/black/validation.svg | 23 ++++++ .../static/images/states/black/youre_lost.svg | 76 +++++++++++++++++++ .../images/states/dark/add_category.svg | 12 +++ .../static/images/states/dark/add_comment.svg | 19 +++++ .../static/images/states/dark/add_files.svg | 26 +++++++ .../static/images/states/dark/add_group.svg | 37 +++++++++ .../static/images/states/dark/blockchain.svg | 24 ++++++ .../static/images/states/dark/history.svg | 38 ++++++++++ .../static/images/states/dark/login.svg | 22 ++++++ .../static/images/states/dark/pack.svg | 39 ++++++++++ .../images/states/dark/upload_single_file.svg | 17 +++++ .../static/images/states/dark/validation.svg | 23 ++++++ .../static/images/states/dark/youre_lost.svg | 76 +++++++++++++++++++ .../images/states/light/add_category.svg | 12 +++ .../images/states/light/add_comment.svg | 19 +++++ .../static/images/states/light/add_files.svg | 26 +++++++ .../static/images/states/light/add_group.svg | 37 +++++++++ .../static/images/states/light/blockchain.svg | 24 ++++++ .../static/images/states/light/history.svg | 38 ++++++++++ .../static/images/states/light/login.svg | 22 ++++++ .../static/images/states/light/pack.svg | 39 ++++++++++ .../states/light/upload_single_file.svg | 17 +++++ .../static/images/states/light/validation.svg | 26 +++++++ .../static/images/states/light/youre_lost.svg | 76 +++++++++++++++++++ 58 files changed, 1276 insertions(+), 25 deletions(-) create mode 100644 packages/hoppscotch-app/static/images/states/black/add_category.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/add_comment.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/add_files.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/add_group.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/blockchain.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/history.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/login.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/pack.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/upload_single_file.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/validation.svg create mode 100644 packages/hoppscotch-app/static/images/states/black/youre_lost.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/add_category.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/add_comment.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/add_files.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/add_group.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/blockchain.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/history.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/login.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/pack.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/upload_single_file.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/validation.svg create mode 100644 packages/hoppscotch-app/static/images/states/dark/youre_lost.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/add_category.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/add_comment.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/add_files.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/add_group.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/blockchain.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/history.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/login.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/pack.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/upload_single_file.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/validation.svg create mode 100644 packages/hoppscotch-app/static/images/states/light/youre_lost.svg diff --git a/packages/hoppscotch-app/components/collections/graphql/Collection.vue b/packages/hoppscotch-app/components/collections/graphql/Collection.vue index 0662016b..b72a4c9b 100644 --- a/packages/hoppscotch-app/components/collections/graphql/Collection.vue +++ b/packages/hoppscotch-app/components/collections/graphql/Collection.vue @@ -155,7 +155,18 @@ justify-center " > - folder_open + {{ $t("empty.collection") }} diff --git a/packages/hoppscotch-app/components/collections/graphql/Folder.vue b/packages/hoppscotch-app/components/collections/graphql/Folder.vue index 0d2b09d6..0cd1a292 100644 --- a/packages/hoppscotch-app/components/collections/graphql/Folder.vue +++ b/packages/hoppscotch-app/components/collections/graphql/Folder.vue @@ -154,7 +154,18 @@ justify-center " > - folder_open + {{ $t("empty.folder") }} diff --git a/packages/hoppscotch-app/components/collections/graphql/index.vue b/packages/hoppscotch-app/components/collections/graphql/index.vue index d915e97c..016e6c95 100644 --- a/packages/hoppscotch-app/components/collections/graphql/index.vue +++ b/packages/hoppscotch-app/components/collections/graphql/index.vue @@ -70,6 +70,11 @@ v-if="collections.length === 0" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.collections") }} diff --git a/packages/hoppscotch-app/components/collections/index.vue b/packages/hoppscotch-app/components/collections/index.vue index 90a80f5a..5a8acf63 100644 --- a/packages/hoppscotch-app/components/collections/index.vue +++ b/packages/hoppscotch-app/components/collections/index.vue @@ -108,6 +108,11 @@ v-if="filteredCollections.length === 0 && filterText.length === 0" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.collections") }} diff --git a/packages/hoppscotch-app/components/collections/my/Collection.vue b/packages/hoppscotch-app/components/collections/my/Collection.vue index 6b27d2ea..9e991d04 100644 --- a/packages/hoppscotch-app/components/collections/my/Collection.vue +++ b/packages/hoppscotch-app/components/collections/my/Collection.vue @@ -181,7 +181,18 @@ justify-center " > - folder_open + {{ $t("empty.collection") }} diff --git a/packages/hoppscotch-app/components/collections/my/Folder.vue b/packages/hoppscotch-app/components/collections/my/Folder.vue index 1f00fa26..5c894183 100644 --- a/packages/hoppscotch-app/components/collections/my/Folder.vue +++ b/packages/hoppscotch-app/components/collections/my/Folder.vue @@ -163,7 +163,18 @@ justify-center " > - folder_open + {{ $t("empty.folder") }} diff --git a/packages/hoppscotch-app/components/collections/teams/Collection.vue b/packages/hoppscotch-app/components/collections/teams/Collection.vue index bacb0242..3c3e120e 100644 --- a/packages/hoppscotch-app/components/collections/teams/Collection.vue +++ b/packages/hoppscotch-app/components/collections/teams/Collection.vue @@ -177,7 +177,18 @@ justify-center " > - folder_open + {{ $t("empty.collection") }} diff --git a/packages/hoppscotch-app/components/collections/teams/Folder.vue b/packages/hoppscotch-app/components/collections/teams/Folder.vue index f7713e46..0e8ccaee 100644 --- a/packages/hoppscotch-app/components/collections/teams/Folder.vue +++ b/packages/hoppscotch-app/components/collections/teams/Folder.vue @@ -158,7 +158,18 @@ justify-center " > - folder_open + {{ $t("empty.folder") }} diff --git a/packages/hoppscotch-app/components/environments/Edit.vue b/packages/hoppscotch-app/components/environments/Edit.vue index 214da7d6..e65da1f7 100644 --- a/packages/hoppscotch-app/components/environments/Edit.vue +++ b/packages/hoppscotch-app/components/environments/Edit.vue @@ -82,7 +82,18 @@ justify-center " > - + {{ $t("empty.environments") }} diff --git a/packages/hoppscotch-app/components/environments/index.vue b/packages/hoppscotch-app/components/environments/index.vue index 286c09aa..8f6851fd 100644 --- a/packages/hoppscotch-app/components/environments/index.vue +++ b/packages/hoppscotch-app/components/environments/index.vue @@ -106,6 +106,11 @@ v-if="environments.length === 0" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.environments") }} diff --git a/packages/hoppscotch-app/components/graphql/RequestOptions.vue b/packages/hoppscotch-app/components/graphql/RequestOptions.vue index 89ae463a..0f3604f5 100644 --- a/packages/hoppscotch-app/components/graphql/RequestOptions.vue +++ b/packages/hoppscotch-app/components/graphql/RequestOptions.vue @@ -243,6 +243,18 @@ justify-center " > + {{ $t("empty.headers") }} diff --git a/packages/hoppscotch-app/components/graphql/Sidebar.vue b/packages/hoppscotch-app/components/graphql/Sidebar.vue index 5a3a10d2..a23186cd 100644 --- a/packages/hoppscotch-app/components/graphql/Sidebar.vue +++ b/packages/hoppscotch-app/components/graphql/Sidebar.vue @@ -42,9 +42,20 @@ justify-center " > - link + - {{ $t("empty.schema") }} + {{ $t("empty.documentation") }}
@@ -198,7 +209,18 @@ justify-center " > - link + {{ $t("empty.schema") }} diff --git a/packages/hoppscotch-app/components/history/index.vue b/packages/hoppscotch-app/components/history/index.vue index 7a31ee7b..d7a80e14 100644 --- a/packages/hoppscotch-app/components/history/index.vue +++ b/packages/hoppscotch-app/components/history/index.vue @@ -60,7 +60,11 @@ v-if="history.length === 0" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > - schedule + {{ $t("empty.history") }} diff --git a/packages/hoppscotch-app/components/http/Authorization.vue b/packages/hoppscotch-app/components/http/Authorization.vue index 9df9b77e..89f93b89 100644 --- a/packages/hoppscotch-app/components/http/Authorization.vue +++ b/packages/hoppscotch-app/components/http/Authorization.vue @@ -95,6 +95,11 @@ v-if="authType === 'none'" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.authorization") }} diff --git a/packages/hoppscotch-app/components/http/Body.vue b/packages/hoppscotch-app/components/http/Body.vue index 79e7b9b8..6419c0eb 100644 --- a/packages/hoppscotch-app/components/http/Body.vue +++ b/packages/hoppscotch-app/components/http/Body.vue @@ -65,6 +65,11 @@ v-if="contentType == null" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.body") }} diff --git a/packages/hoppscotch-app/components/http/BodyParameters.vue b/packages/hoppscotch-app/components/http/BodyParameters.vue index 8325aa6c..2808fbf2 100644 --- a/packages/hoppscotch-app/components/http/BodyParameters.vue +++ b/packages/hoppscotch-app/components/http/BodyParameters.vue @@ -153,6 +153,11 @@ v-if="bodyParams.length === 0" class="flex flex-col text-secondaryLight p-4 items-center justify-center" > + {{ $t("empty.body") }} diff --git a/packages/hoppscotch-app/components/http/Headers.vue b/packages/hoppscotch-app/components/http/Headers.vue index ffbe01fb..97d075c8 100644 --- a/packages/hoppscotch-app/components/http/Headers.vue +++ b/packages/hoppscotch-app/components/http/Headers.vue @@ -144,6 +144,18 @@ justify-center " > + {{ $t("empty.headers") }} diff --git a/packages/hoppscotch-app/components/http/Parameters.vue b/packages/hoppscotch-app/components/http/Parameters.vue index 1c9e8fbf..9761edbd 100644 --- a/packages/hoppscotch-app/components/http/Parameters.vue +++ b/packages/hoppscotch-app/components/http/Parameters.vue @@ -137,6 +137,18 @@ justify-center " > + {{ $t("empty.parameters") }} diff --git a/packages/hoppscotch-app/components/http/ResponseMeta.vue b/packages/hoppscotch-app/components/http/ResponseMeta.vue index 53f8e86f..af56cf2d 100644 --- a/packages/hoppscotch-app/components/http/ResponseMeta.vue +++ b/packages/hoppscotch-app/components/http/ResponseMeta.vue @@ -68,11 +68,22 @@ justify-center " > - cloud_off - + + {{ $t("error.network_fail") }} - + {{ $t("helpers.network_fail") }} + {{ $t("empty.tests") }} diff --git a/packages/hoppscotch-app/components/realtime/Websocket.vue b/packages/hoppscotch-app/components/realtime/Websocket.vue index 81bd5535..1126a288 100644 --- a/packages/hoppscotch-app/components/realtime/Websocket.vue +++ b/packages/hoppscotch-app/components/realtime/Websocket.vue @@ -146,7 +146,18 @@ justify-center " > - topic + {{ $t("empty.protocols") }} diff --git a/packages/hoppscotch-app/components/teams/Edit.vue b/packages/hoppscotch-app/components/teams/Edit.vue index ba269dc0..12c49899 100644 --- a/packages/hoppscotch-app/components/teams/Edit.vue +++ b/packages/hoppscotch-app/components/teams/Edit.vue @@ -59,7 +59,18 @@ justify-center " > - + {{ $t("empty.members") }} diff --git a/packages/hoppscotch-app/components/teams/Invite.vue b/packages/hoppscotch-app/components/teams/Invite.vue index cb3898e7..ec2fe789 100644 --- a/packages/hoppscotch-app/components/teams/Invite.vue +++ b/packages/hoppscotch-app/components/teams/Invite.vue @@ -131,7 +131,6 @@ justify-center " > - {{ $t("empty.pending_invites") }} @@ -250,7 +249,18 @@ justify-center " > - + {{ $t("empty.invites") }} @@ -348,7 +358,12 @@ @click.native=" () => { sendInvitesResult = [] - newInvites = [] + newInvites = [ + { + key: '', + value: 'VIEWRER', + }, + ] } " /> @@ -473,7 +488,12 @@ const removeInvitee = async (id: string) => { } } -const newInvites = ref>([]) +const newInvites = ref>([ + { + key: "", + value: TeamMemberRole.Viewer, + }, +]) const addNewInvitee = () => { newInvites.value.push({ @@ -580,7 +600,12 @@ const getErrorMessage = (error: SendInvitesErrorType) => { const hideModal = () => { sendingInvites.value = false sendInvitesResult.value = [] - newInvites.value = [] + newInvites.value = [ + { + key: "", + value: TeamMemberRole.Viewer, + }, + ] emit("hide-modal") } diff --git a/packages/hoppscotch-app/components/teams/index.vue b/packages/hoppscotch-app/components/teams/index.vue index 120ade67..0a4fb194 100644 --- a/packages/hoppscotch-app/components/teams/index.vue +++ b/packages/hoppscotch-app/components/teams/index.vue @@ -27,10 +27,26 @@ justify-center " > - help_outline - + + {{ $t("empty.teams") }} +
+ + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/add_comment.svg b/packages/hoppscotch-app/static/images/states/black/add_comment.svg new file mode 100644 index 00000000..a92d69d5 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/add_comment.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/add_files.svg b/packages/hoppscotch-app/static/images/states/black/add_files.svg new file mode 100644 index 00000000..062632eb --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/add_files.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/add_group.svg b/packages/hoppscotch-app/static/images/states/black/add_group.svg new file mode 100644 index 00000000..beff51f4 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/add_group.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/blockchain.svg b/packages/hoppscotch-app/static/images/states/black/blockchain.svg new file mode 100644 index 00000000..e25ea082 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/blockchain.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/history.svg b/packages/hoppscotch-app/static/images/states/black/history.svg new file mode 100644 index 00000000..eed97a01 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/history.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/login.svg b/packages/hoppscotch-app/static/images/states/black/login.svg new file mode 100644 index 00000000..85c8946f --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/login.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/pack.svg b/packages/hoppscotch-app/static/images/states/black/pack.svg new file mode 100644 index 00000000..8da16f1c --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/pack.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/upload_single_file.svg b/packages/hoppscotch-app/static/images/states/black/upload_single_file.svg new file mode 100644 index 00000000..28d8f519 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/upload_single_file.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/validation.svg b/packages/hoppscotch-app/static/images/states/black/validation.svg new file mode 100644 index 00000000..745a3db0 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/validation.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/black/youre_lost.svg b/packages/hoppscotch-app/static/images/states/black/youre_lost.svg new file mode 100644 index 00000000..2b9f2768 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/black/youre_lost.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/add_category.svg b/packages/hoppscotch-app/static/images/states/dark/add_category.svg new file mode 100644 index 00000000..35a0f418 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/add_category.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/add_comment.svg b/packages/hoppscotch-app/static/images/states/dark/add_comment.svg new file mode 100644 index 00000000..3d91be12 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/add_comment.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/add_files.svg b/packages/hoppscotch-app/static/images/states/dark/add_files.svg new file mode 100644 index 00000000..085eb1b2 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/add_files.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/add_group.svg b/packages/hoppscotch-app/static/images/states/dark/add_group.svg new file mode 100644 index 00000000..4350ea15 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/add_group.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/blockchain.svg b/packages/hoppscotch-app/static/images/states/dark/blockchain.svg new file mode 100644 index 00000000..44bd3c75 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/blockchain.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/history.svg b/packages/hoppscotch-app/static/images/states/dark/history.svg new file mode 100644 index 00000000..ecc28652 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/history.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/login.svg b/packages/hoppscotch-app/static/images/states/dark/login.svg new file mode 100644 index 00000000..ef598220 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/login.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/pack.svg b/packages/hoppscotch-app/static/images/states/dark/pack.svg new file mode 100644 index 00000000..2bce9f95 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/pack.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/upload_single_file.svg b/packages/hoppscotch-app/static/images/states/dark/upload_single_file.svg new file mode 100644 index 00000000..9780023e --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/upload_single_file.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/validation.svg b/packages/hoppscotch-app/static/images/states/dark/validation.svg new file mode 100644 index 00000000..55fbf2ad --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/validation.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/dark/youre_lost.svg b/packages/hoppscotch-app/static/images/states/dark/youre_lost.svg new file mode 100644 index 00000000..ea33353f --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/dark/youre_lost.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/add_category.svg b/packages/hoppscotch-app/static/images/states/light/add_category.svg new file mode 100644 index 00000000..71838de2 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/add_category.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/add_comment.svg b/packages/hoppscotch-app/static/images/states/light/add_comment.svg new file mode 100644 index 00000000..4f832226 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/add_comment.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/add_files.svg b/packages/hoppscotch-app/static/images/states/light/add_files.svg new file mode 100644 index 00000000..c1fd3312 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/add_files.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/add_group.svg b/packages/hoppscotch-app/static/images/states/light/add_group.svg new file mode 100644 index 00000000..10f4c21b --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/add_group.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/blockchain.svg b/packages/hoppscotch-app/static/images/states/light/blockchain.svg new file mode 100644 index 00000000..1985222d --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/blockchain.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/history.svg b/packages/hoppscotch-app/static/images/states/light/history.svg new file mode 100644 index 00000000..ba0fc5e1 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/history.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/login.svg b/packages/hoppscotch-app/static/images/states/light/login.svg new file mode 100644 index 00000000..73b9bccd --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/login.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/pack.svg b/packages/hoppscotch-app/static/images/states/light/pack.svg new file mode 100644 index 00000000..9da14b72 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/pack.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/upload_single_file.svg b/packages/hoppscotch-app/static/images/states/light/upload_single_file.svg new file mode 100644 index 00000000..056f0fff --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/upload_single_file.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/validation.svg b/packages/hoppscotch-app/static/images/states/light/validation.svg new file mode 100644 index 00000000..f7b77898 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/validation.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/hoppscotch-app/static/images/states/light/youre_lost.svg b/packages/hoppscotch-app/static/images/states/light/youre_lost.svg new file mode 100644 index 00000000..b696c801 --- /dev/null +++ b/packages/hoppscotch-app/static/images/states/light/youre_lost.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +