Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ coverage
# Dependency directories
node_modules/

# Optional npm cache directory
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is already in the .gitignore on the head of main which you are not on yet

.nx/cache/

# Optional npm cache directory
.npm

Expand Down Expand Up @@ -144,3 +147,7 @@ lodashReplacer.js
muiReplacer.js
ajvReplacer.js

# jest
build_tmp/
__mocks__/

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@ should change the heading of the (upcoming) version to include a major version b

-->

# 6.0.0

## @rjsf/uswds

- Added new USWDS theme, mapping [trussworks/react-uswds](https://github.com/trussworks/react-uswds) types to `@rjsf/core` and `@rjsf/utils` types.
- new theme package, `@rjsf/uswds`, implements the [U.S. Web Design System (USWDS) v3](designsystem.digital.gov) for `react-jsonschema-form`.

Key features include:
* Templates for all standard RJSF fields (`Object`, `Array`, `String`, `Number`, `Boolean`, etc.) styled according to USWDS.
* Widgets leveraging USWDS form controls (`usa-input`, `usa-textarea`, `usa-checkbox`, `usa-radio`, `usa-select`, etc.).
* Array and Object field templates using USWDS `fieldset`, `legend`, and grid layout (`grid-row`, `grid-col`).
* Action buttons (`Add`, `Remove`, `Move Up`, `Move Down`) using USWDS button styles (`usa-button`, `usa-button--outline`, `usa-button--unstyled`) and icons loaded from the official USWDS CDN.
* Error display using USWDS error states (`usa-form-group--error`, `usa-label--error`, `usa-error-message`).
* Required field indication using `usa-label--required`.
* Refactored button implementation for better maintainability.

# 5.24.9

## @rjsf/antd
Expand Down
Loading