mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-13 08:05:23 +00:00
* Remove $$props.field usage * Rename slots to ensure no hyphen * _props * _trigger * OnSelectedIteration type correct capitalization * rename _content * Remove afterUpdate * Migrate everything to svelte 5 * array bind * Fix popover * type never * nit fixes * Fixed many trivial errors * onClick * Fix errors * use let: * nit typing * fix: wrap state_referenced_locally vars with untrack() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add untrack import * Fix all syntax errors due to untrack migration * Fix undefined errors * Fix more undefined errors * untrack(() => initialOpen) * svelte-ignore * Fix state_descriptors_fixed error in Chart.svelte Use $state.snapshot() to pass plain copies of data/options to Chart.js instead of $state proxies. Chart.js's listenArrayEvents tries to define property descriptors on data arrays, which Svelte 5 proxies reject. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * nit typing * Merge issue * Fix "path is not set" error in resource picker / editor * Fix InputTransformForm error when rerunning some flows * fix npm run check --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
904 B
Svelte
42 lines
904 B
Svelte
<script lang="ts">
|
|
import { ChevronDown } from 'lucide-svelte'
|
|
import { slide } from 'svelte/transition'
|
|
import Button from './common/button/Button.svelte'
|
|
import Tooltip from './Tooltip.svelte'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
interface Props {
|
|
text: string;
|
|
tooltip?: string | undefined;
|
|
view?: boolean;
|
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
children?: import('svelte').Snippet;
|
|
}
|
|
|
|
let {
|
|
text,
|
|
tooltip = undefined,
|
|
view = $bindable(false),
|
|
size = 'md',
|
|
children
|
|
}: Props = $props();
|
|
</script>
|
|
|
|
<Button
|
|
color="light"
|
|
on:click={() => (view = !view)}
|
|
{size}
|
|
variant="border"
|
|
endIcon={{
|
|
icon: ChevronDown,
|
|
classes: twMerge('duration-300 ', view ? 'rotate-180' : 'rotate-0')
|
|
}}
|
|
>{text}
|
|
{#if tooltip}
|
|
<Tooltip wrapperClass="mx-1">{tooltip}</Tooltip>
|
|
{/if}
|
|
</Button>
|
|
{#if view}
|
|
<div class="my-4 px-2" transition:slide|local>{@render children?.()}</div>
|
|
{/if}
|