-
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 branch 'release' into gh-pages
* release: (103 commits) Prep for Release v2.1.0 dark mode styles for NewsletterSignup Updating tests and new rc Adding ref to FC cleanup for NewsletterSignup stories style cleanup for NewsletterSignup 2.1.0 RC update Text styles, fix typo for privacyPolicyLink, update tests change html tags to ds components update breakpoint - the one that got away update breakpoints, remove reduntant content update props, comments as discussed, update test and doc accordingly update snapshots update as per PR comments remove styling, fix typos removing errant comments Adding FeaturedContent's changelog adding better typing and better docs updates based on feedback code formatting cleanup ...
- Loading branch information
Showing
48 changed files
with
9,475 additions
and
12,729 deletions.
There are no files selected for viewing
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
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
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,31 @@ | ||
/** 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-10-18", | ||
version: "2.1.0", | ||
type: "Update", | ||
affects: ["Accessibility"], | ||
notes: [ | ||
"Updates to pass a secondaryHelperTextId to its TextInput if needed so that the aria-describedby value can be associated with all relevant helperTexts.", | ||
"Updates so that focus remains on input after value is changed.", | ||
], | ||
}, | ||
{ | ||
date: "2023-9-28", | ||
version: "2.0.0", | ||
type: "Update", | ||
affects: ["Styles"], | ||
notes: [ | ||
"Applied Typo2023 styles, including font size, font color, and text link patterns.", | ||
], | ||
}, | ||
]; |
Oops, something went wrong.