-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1474 from NYPL/development
Release v2.1.3
- Loading branch information
Showing
93 changed files
with
6,960 additions
and
2,148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/components/AlphabetFilter/alphabetFilterChangelogData.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** This data is used to populate the ComponentChangelogTable component. | ||
* | ||
* date: string (when adding new entry during development, set value as "Prerelease") | ||
* version: string (when adding new entry during development, set value as "Prerelease") | ||
* type: "Bug Fix" | "New Feature" | "Update"; | ||
* affects: array["Accessibility" | "Documentation" | "Functionality" | "Styles"]; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
import { ChangelogData } from "../../utils/ComponentChangelogTable"; | ||
|
||
export const changelogData: ChangelogData[] = [ | ||
{ | ||
date: "2023-12-07", | ||
version: "2.1.3", | ||
type: "Update", | ||
affects: ["Accessibility", "Documentation"], | ||
notes: [ | ||
"Updated the `headingText` prop to allow JSX to render custom heading elements for accessible heading hierarchy.", | ||
], | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** This data is used to populate the ComponentChangelogTable component. | ||
* | ||
* date: string (when adding new entry during development, set value as "Prerelease") | ||
* version: string (when adding new entry during development, set value as "Prerelease") | ||
* type: "Bug Fix" | "New Feature" | "Update"; | ||
* affects: array["Accessibility" | "Documentation" | "Functionality" | "Styles"]; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
import { ChangelogData } from "../../utils/ComponentChangelogTable"; | ||
|
||
export const changelogData: ChangelogData[] = [ | ||
{ | ||
date: "2023-12-07", | ||
version: "2.1.3", | ||
type: "Update", | ||
affects: ["Accessibility", "Documentation"], | ||
notes: [ | ||
"Updated the `headingText` prop to allow JSX to render custom heading elements for accessible heading hierarchy.", | ||
], | ||
}, | ||
]; |
Oops, something went wrong.