-
Notifications
You must be signed in to change notification settings - Fork 555
Closed as not planned
Description
Copilot Configuration
- Target repository: algolia/docs-new
- Create as: Draft PR
- Model: Claude Sonnet 4.5
Summary
Update documentation for react-instantsearch v7.23.0 release.
Priority: high
Suggested content types: widget-docs, release-notes
Important: This issue is for updating documentation in the algolia/docs-new repository.
When working on this issue, please select algolia/docs-new as the target repository.
Changes to Document
New Widgets
- FilterSuggestions - add
FilterSuggestionswidget (#6861)
Modified Components
- autocomplete - add
transformItemsprop (#6853) - chat - add default memory tools (#6873)
- chat - support prompt suggestions (#6831)
Source Reference
Target Repository
Create your PR in: algolia/docs-new
The documentation lives in the algolia/docs-new repository, not in this repository (instantsearch).
When Copilot starts working on this issue, make sure to select algolia/docs-new as the working repository.
Instructions
- Work in the algolia/docs-new repository (not instantsearch)
- Look at the existing widget docs in
doc/api-reference/widgets/for format reference - For new widgets/connectors/hooks, create new MDX files following the existing patterns
- For modified components, update the existing documentation to include new props/options
- Follow the
<ParamField>component pattern for props documentation - Include TypeScript types and code examples where appropriate
- For breaking changes, update the migration guide if applicable
Documentation Format Reference
Widget/Hook documentation should follow this MDX structure:
---
title: ComponentName
description: Brief description of the component
---
<ParamField path="propName" type="string" required>
Description of the prop.
</ParamField>
<ParamField path="optionalProp" type="boolean" default="false">
Description of the optional prop.
</ParamField>Checklist
- New component docs created (if applicable)
- Existing docs updated with new props/options
- Code examples added/updated
- TypeScript types documented
- Breaking changes noted in migration guide (if applicable)
Reactions are currently unavailable