Merge branch 'refactor/ui' of https://github.com/hoppscotch/hoppscotch into refactor/ui

This commit is contained in:
Liyas Thomas
2021-07-06 18:13:49 +00:00
committed by GitHub
5 changed files with 52 additions and 55 deletions

View File

@@ -92,14 +92,6 @@ export default {
.hexPolygonResolution(3) .hexPolygonResolution(3)
.hexPolygonMargin(0.5) .hexPolygonMargin(0.5)
.hexPolygonColor(() => `#aaaaaa`) .hexPolygonColor(() => `#aaaaaa`)
// labels layer
// .labelsData(this.labelsData)
// .labelLat("lat")
// .labelLng("lng")
// .labelText("text")
// .labelColor("color")
// .labelSize(1.5)
// .labelDotRadius(0.5)
// labels layer // labels layer
.labelsData(this.labelsData) .labelsData(this.labelsData)

View File

@@ -20,7 +20,6 @@
@apply bg-primaryDark; @apply bg-primaryDark;
@apply text-secondary; @apply text-secondary;
@apply font-mono; @apply font-mono;
@apply border border-divider; @apply border border-divider;
} }

View File

@@ -140,3 +140,12 @@ export default {
}, },
} }
</script> </script>
<style lang="scss" scoped>
.splitpanes--vertical > .splitpanes__splitter {
display: none;
}
.splitpanes--horizontal > .splitpanes__splitter {
display: none;
}
</style>

View File

@@ -145,11 +145,7 @@
<div class="flex flex-1"> <div class="flex flex-1">
<span> <span>
<SmartToggle <SmartToggle
v-if="canListParameters"
:on="rawInput" :on="rawInput"
@change="rawInput = $event"
>
{{ $t("raw_input") }}
</SmartToggle> </SmartToggle>
</span> </span>
</div> </div>
@@ -177,9 +173,6 @@
</div> </div>
<div class="flex flex-1"> <div class="flex flex-1">
<span> <span>
<ButtonSecondary
@click.native="showCurlImportModal = !showCurlImportModal"
v-tippy="{ theme: 'tooltip' }"
:title="$t('import_curl')" :title="$t('import_curl')"
icon="import_export" icon="import_export"
/> />

View File

@@ -393,6 +393,10 @@
:id="'types'" :id="'types'"
ref="typesTab" ref="typesTab"
:label="$t('types')" :label="$t('types')"
>
<div
v-for="type in filteredGraphqlTypes"
:key="type.name"
> >
<div <div
v-for="type in filteredGraphqlTypes" v-for="type in filteredGraphqlTypes"