- Added columns definition for Code Pedimento Regimens including ID, Pedimento Code, Regimen Code, Type, and Actions. - Created DataTableActions component for handling actions on each row. - Developed data-table component to manage pagination and rendering of the data table. - Introduced helper functions for rendering components and snippets in table cells. - Integrated API call in the server-side load function to fetch Code Pedimento Regimens data with pagination support. - Updated package.json to include lucide-svelte dependency for icons.
21 lines
479 B
Svelte
21 lines
479 B
Svelte
<script lang="ts">
|
|
import { cn, type WithElementRef } from "$lib/utils.js";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLTableSectionElement>> = $props();
|
|
</script>
|
|
|
|
<tfoot
|
|
bind:this={ref}
|
|
data-slot="table-footer"
|
|
class={cn("bg-muted/50 border-t font-medium [&>tr]:last:border-b-0", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</tfoot>
|