Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Adds support for passing named slots from.astro
=> Lit components.All slots are treated as Light DOM content.
@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Add support for passing named slots from.astro
=> framework components.Each
slot
is be passed as a top-level prop. For example:@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Add support for passing named slots from.astro
=> framework components.Each
slot
is be passed as a top-level prop. For example:@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Add support for passing named slots from.astro
=> framework components.Each
slot
is be passed as a top-level prop. For example:@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Adds support for passing named slots from.astro
=> framework components.Inside your components, use the built-in
slot
API as you normally would.@astrojs/[email protected]
Minor Changes
#3652
7373d61c
Thanks @natemoo-re! - Adds support for passing named slots from.astro
=> framework components.Inside your components, use the built-in
slot
API as you normally would.[email protected]
Patch Changes
#3652
7373d61c
Thanks @natemoo-re! - Add renderer support for passing named slots to framework components.BREAKING: integrations using the
addRenderer()
API are now passed all named slots viaRecord<string, string>
rather thanstring
. Previously only the default slot was passed.#3649
446f8c4f
Thanks @dc7290! - Added test for dir parameter in astro:build:done#3679
fa7ed3f3
Thanks @matthewp! - Moves head injection to happen during renderingThis change makes it so that head injection; to insert component stylesheets, hoisted scripts, for example, to happen during rendering than as a post-rendering step.
This is to enable streaming. This change will only be noticeable if you are rendering your
<head>
element inside of a framework component. If that is the case then the head items will be injected before the first non-head element in an Astro file instead.In the future we may offer a
<Astro.Head>
component as a way to control where these scripts/styles are inserted.@astrojs/[email protected]
Patch Changes
3f8ee70e
Thanks @bholmesdev! - Add warning log for sitemap + SSR adapter, with suggestion to use customPages configuration option