From 9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf Mon Sep 17 00:00:00 2001 From: Ming-jun Lu <40516784+mingjunlu@users.noreply.github.com> Date: Wed, 28 Feb 2024 10:43:24 +0800 Subject: [PATCH] Fix TypeScript type definitions for `Code` component (#10251) Co-authored-by: Florian Lefebvre --- .changeset/wicked-houses-occur.md | 5 +++++ packages/astro/components/Code.astro | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/wicked-houses-occur.md diff --git a/.changeset/wicked-houses-occur.md b/.changeset/wicked-houses-occur.md new file mode 100644 index 0000000000..61248c948b --- /dev/null +++ b/.changeset/wicked-houses-occur.md @@ -0,0 +1,5 @@ +--- +"astro": patch +--- + +Fixes TypeScript type definitions for `Code` component `theme` and `experimentalThemes` props diff --git a/packages/astro/components/Code.astro b/packages/astro/components/Code.astro index 44d81b7144..ab2d88696c 100644 --- a/packages/astro/components/Code.astro +++ b/packages/astro/components/Code.astro @@ -1,7 +1,7 @@ --- +import type { ThemePresets } from '@astrojs/markdown-remark'; import type { BuiltinLanguage, - BuiltinTheme, LanguageRegistration, SpecialLanguage, ThemeRegistration, @@ -28,12 +28,12 @@ interface Props { * * @default "github-dark" */ - theme?: BuiltinTheme | ThemeRegistration | ThemeRegistrationRaw; + theme?: ThemePresets | ThemeRegistration | ThemeRegistrationRaw; /** * Multiple themes to style with -- alternative to "theme" option. * Supports all themes found above; see https://github.com/antfu/shikiji#lightdark-dual-themes for more information. */ - experimentalThemes?: Record; + experimentalThemes?: Record; /** * Enable word wrapping. * - true: enabled.