Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
170b16e
API visual first pass
royendo Feb 3, 2026
b50943c
nit
royendo Feb 3, 2026
737d298
args
royendo Feb 3, 2026
05a5b87
simpler, prettier
royendo Feb 3, 2026
8614d13
web code qual
royendo Feb 3, 2026
74ad9bb
code qual
royendo Feb 3, 2026
cd82c30
Update VisualAPIEditor.svelte
royendo Feb 3, 2026
7cc6139
Update VisualAPIEditor.svelte
royendo Feb 3, 2026
a96efa5
fixed heights and JSON view
royendo Feb 3, 2026
08b2ef7
prettier
royendo Feb 3, 2026
2d1f1f5
code qual
royendo Feb 3, 2026
0a45bdc
Update APIWorkspace.svelte
royendo Feb 3, 2026
7d6e002
Merge branch 'main' into feat/visual-editor-api
royendo Feb 20, 2026
425ecfb
Update errors.ts
royendo Feb 20, 2026
83779f2
themeing css
royendo Feb 20, 2026
05d2383
remove viz editor, consolidate tests into text editor
royendo Mar 5, 2026
563a773
Merge branch 'main' into feat/visual-editor-api
royendo Mar 5, 2026
813ad67
rename
royendo Mar 5, 2026
c34565b
reset review on nav
royendo Mar 5, 2026
8272f9b
reset
royendo Mar 5, 2026
1dbc8f3
template overwrites
royendo Mar 5, 2026
b04e4b9
local PR reviews
royendo Mar 5, 2026
c63a253
Remove unused `mapParseErrorsToLines` import in `+page.svelte`
royendo Mar 11, 2026
a6f6529
Merge branch 'main' into feat/visual-editor-api
royendo Mar 11, 2026
c1ff4d6
importing runtime changes
royendo Mar 11, 2026
2c5ec94
Merge remote-tracking branch 'origin/main' into feat/visual-editor-api
royendo Mar 30, 2026
4b68698
migration svelte/vite
royendo Mar 30, 2026
08af507
prettier
royendo Mar 30, 2026
e670982
prettier
royendo Mar 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reset
  • Loading branch information
royendo committed Mar 5, 2026
commit 8272f9b1e687637cd2b99ee3b8ead5355bd8d7cc
14 changes: 2 additions & 12 deletions web-common/src/features/apis/editor/APITestPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
import Trash from "@rilldata/web-common/components/icons/Trash.svelte";
import Resizer from "@rilldata/web-common/layout/Resizer.svelte";
import { copyToClipboard } from "@rilldata/web-common/lib/actions/copy-to-clipboard";
import {
PlusIcon,
PlayIcon,
ChevronDownIcon,
CopyIcon,
} from "lucide-svelte";
import { PlusIcon, PlayIcon, ChevronDownIcon, CopyIcon } from "lucide-svelte";
import APIResponsePreview from "./APIResponsePreview.svelte";
import type { Arg } from "./types";

Expand Down Expand Up @@ -104,12 +99,7 @@
style:min-height="100px"
style:max-height="60%"
>
<Resizer
max={500}
direction="NS"
side="top"
bind:dimension={previewHeight}
/>
<Resizer max={500} direction="NS" side="top" bind:dimension={previewHeight} />

<div class="flex items-center gap-x-3 px-3 py-2 border-b">
<div class="flex items-center gap-x-2 flex-1 min-w-0">
Expand Down
4 changes: 1 addition & 3 deletions web-common/src/features/workspaces/APIWorkspace.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,7 @@
</DropdownMenu.Trigger>
<DropdownMenu.Content align="end" class="w-56">
{#each templates as template}
<DropdownMenu.Item
on:click={() => applyTemplate(template.clause)}
>
<DropdownMenu.Item on:click={() => applyTemplate(template.clause)}>
<span class="text-sm">{template.label}</span>
</DropdownMenu.Item>
{/each}
Expand Down