fix(deps): update typescript-projects (#16945)

* fix(deps): update typescript-projects

* fix: very weird variables

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot]
2025-03-18 20:29:21 +00:00
committed by GitHub
parent 4d723f4b56
commit db8155f738
7 changed files with 373 additions and 331 deletions

View File

@@ -9,10 +9,11 @@
interface Props {
data: PageData;
isShowKeyboardShortcut?: boolean;
}
let { data, isShowKeyboardShortcut = $bindable(false) }: Props = $props();
let { data }: Props = $props();
let isShowKeyboardShortcut = $state(false);
</script>
<UserPageLayout title={data.meta.title}>

View File

@@ -23,15 +23,12 @@
interface Props {
data: PageData;
isShowKeyboardShortcut?: boolean;
isShowDuplicateInfo?: boolean;
}
let {
data = $bindable(),
isShowKeyboardShortcut = $bindable(false),
isShowDuplicateInfo = $bindable(false),
}: Props = $props();
let { data = $bindable() }: Props = $props();
let isShowKeyboardShortcut = $state(false);
let isShowDuplicateInfo = $state(false);
interface Shortcuts {
general: ExplainedShortcut[];