feat: remember pane sizes (#2556)

Co-authored-by: Sagar <sagar@Sagars-MacBook-Pro.local>
This commit is contained in:
Sagar
2022-08-10 05:41:03 +06:00
committed by GitHub
parent a9e1a3002e
commit 2e1ca0cbb0
8 changed files with 75 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="docs">
<template #primary>
<div class="flex items-start justify-between p-4">
<label>

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="graphql">
<template #primary>
<GraphqlRequest :conn="gqlConn" />
<GraphqlRequestOptions :conn="gqlConn" />

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="http">
<template #primary>
<HttpRequest />
<HttpRequestOptions />

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="mqtt">
<template #primary>
<div
class="sticky top-0 z-10 flex flex-shrink-0 p-4 overflow-x-auto space-x-2 bg-primary hide-scrollbar"

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="socketio">
<template #primary>
<div
class="sticky top-0 z-10 flex flex-shrink-0 p-4 overflow-x-auto space-x-2 bg-primary hide-scrollbar"

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="sse">
<template #primary>
<div
class="sticky top-0 z-10 flex flex-shrink-0 p-4 overflow-x-auto space-x-2 bg-primary hide-scrollbar"

View File

@@ -1,5 +1,5 @@
<template>
<AppPaneLayout>
<AppPaneLayout layout-id="websocket">
<template #primary>
<div
class="sticky top-0 z-10 flex flex-shrink-0 p-4 overflow-x-auto space-x-2 bg-primary hide-scrollbar"