Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@
"svelte-preprocess"
]
},
"packageManager": "pnpm@10.18.3"
"packageManager": "pnpm@10.20.0"
}
2 changes: 0 additions & 2 deletions src/lib/actions/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ export enum Click {
DatabaseTableDelete = 'click_table_delete',
DatabaseDatabaseDelete = 'click_database_delete',
DatabaseImportCsv = 'click_database_import_csv',
DatabaseExportCsv = 'click_database_export_csv',
DomainCreateClick = 'click_domain_create',
DomainDeleteClick = 'click_domain_delete',
DomainRetryDomainVerificationClick = 'click_domain_retry_domain_verification',
Expand Down Expand Up @@ -278,7 +277,6 @@ export enum Submit {
DatabaseDelete = 'submit_database_delete',
DatabaseUpdateName = 'submit_database_update_name',
DatabaseImportCsv = 'submit_database_import_csv',
DatabaseExportCsv = 'submit_database_export_csv',

ColumnCreate = 'submit_column_create',
ColumnUpdate = 'submit_column_update',
Expand Down
281 changes: 0 additions & 281 deletions src/lib/components/csvExportBox.svelte

This file was deleted.

1 change: 0 additions & 1 deletion src/lib/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export { default as Copy } from './copy.svelte';
export { default as CopyInput } from './copyInput.svelte';
export { default as UploadBox } from './uploadBox.svelte';
export { default as BackupRestoreBox } from './backupRestoreBox.svelte';
export { default as CsvExportBox } from './csvExportBox.svelte';
export { default as List } from './list.svelte';
export { default as ListItem } from './listItem.svelte';
export { default as Empty } from './empty.svelte';
Expand Down
3 changes: 0 additions & 3 deletions src/lib/elements/forms/inputCheckbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
indeterminate?: boolean;
size?: 's' | 'm';
description?: string;
truncate?: boolean;
}

export let id: string = '';
Expand All @@ -23,7 +22,6 @@
export let element: HTMLInputElement | undefined = undefined;
export let size: $$Props['size'] = 's';
export let description = '';
export let truncate: boolean = false;
let error: string;

const handleInvalid = (event: Event) => {
Expand Down Expand Up @@ -52,7 +50,6 @@
{label}
{required}
{description}
{truncate}
on:invalid={handleInvalid}
on:click
on:change />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { BackupRestoreBox, MigrationBox, UploadBox, CsvExportBox } from '$lib/components';
import { BackupRestoreBox, MigrationBox, UploadBox } from '$lib/components';
import { realtime } from '$lib/stores/sdk';
import { onMount } from 'svelte';
import { project, stats } from './store';
Expand Down Expand Up @@ -119,7 +119,6 @@
<MigrationBox />
<BackupRestoreBox />
<CsvImportBox />
<CsvExportBox />
</div>

<style>
Expand Down
Loading