-
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.
- Loading branch information
1 parent
aa6750c
commit 594edf8
Showing
9 changed files
with
134 additions
and
104 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
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,29 @@ | ||
/** 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: "Accessibility" | "Documentation" | "Functionality" | "Styles"; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
export const changelogData = [ | ||
{ | ||
date: "Prerelease", | ||
version: "Prerelease", | ||
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.", | ||
], | ||
}, | ||
]; |
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,26 @@ | ||
/** 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: "Accessibility" | "Documentation" | "Functionality" | "Styles"; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
export const changelogData = [ | ||
{ | ||
date: "Prerelease", | ||
version: "Prerelease", | ||
type: "Update", | ||
affects: "Accessibility, Styles", | ||
notes: ["Remove the underline on the component's `Privacy Policy` link."], | ||
}, | ||
{ | ||
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.", | ||
], | ||
}, | ||
]; |
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,28 @@ | ||
/** 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: "Accessibility" | "Documentation" | "Functionality" | "Styles"; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
export const changelogData = [ | ||
{ | ||
date: "Prerelease", | ||
version: "Prerelease", | ||
type: "Bug Fix", | ||
affects: "Functionality", | ||
notes: [ | ||
"Fixes an issue with `backgroundColor` and `foregroundColor` props not prioritizing the passed design token values for the `Hero` component.", | ||
], | ||
}, | ||
{ | ||
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.", | ||
], | ||
}, | ||
] as const; |
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,26 @@ | ||
/** 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: "Accessibility" | "Documentation" | "Functionality" | "Styles"; | ||
* notes: array (will render as a bulleted list, add one array element for each list element) | ||
*/ | ||
export const changelogData = [ | ||
{ | ||
date: "Prerelease", | ||
version: "Prerelease", | ||
type: "Bug Fix", | ||
affects: "Functionality", | ||
notes: [ | ||
"Updated to use appropriate aria-label values for the slider thumbs and text input fields.", | ||
], | ||
}, | ||
{ | ||
date: "2023-9-28", | ||
version: "2.0.0", | ||
type: "Update", | ||
affects: "Styles", | ||
notes: ["Applied Typo2023 styles, including font size and font color."], | ||
}, | ||
]; |
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