Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Currently, this repo is in Prerelease. When it is released, this project will ad

## Prerelease

## 4.1.5 (March 5, 2026)

### Fixes

- Fixed the double application of styles when a custom svg is passed into the `Icon` component.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nypl/design-system-react-components",
"version": "4.1.4",
"version": "4.1.5",
"description": "NYPL Reservoir Design System React Components",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/Icon.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { changelogData } from "./iconChangelogData";
componentName="Icon"
summary="Renders commonly used icons in SVG format"
versionAdded="0.0.4"
versionLatest="Prerelease"
versionLatest="4.1.5"
/>

<Canvas of={IconStories.WithControls} />
Expand Down
4 changes: 2 additions & 2 deletions src/components/Icons/iconChangelogData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { ChangelogData } from "../../utils/ComponentChangelogTable";

export const changelogData: ChangelogData[] = [
{
date: "Prerelease",
version: "Prerelease",
date: "2026-03-05",
version: "4.1.5",
type: "Bug Fix",
affects: ["Functionality", "Styles"],
notes: [
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/Select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { changelogData } from "./selectChangelogData";
componentName="Select"
summary="Input element that allows a user to pick a single value from a list of related options"
versionAdded="0.7.0"
versionLatest="Prerelease"
versionLatest="4.1.5"
/>

<Canvas of={SelectStories.WithControls} />
Expand Down
4 changes: 2 additions & 2 deletions src/components/Select/selectChangelogData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { ChangelogData } from "../../utils/ComponentChangelogTable";

export const changelogData: ChangelogData[] = [
{
date: "Prerelease",
version: "Prerelease",
date: "2026-03-05",
version: "4.1.5",
type: "Update",
affects: ["Styles"],
notes: ["Fixes the RTL styles for the dropdown arrow."],
Expand Down
Loading