From dff644ace647999c00e0a672b238390dc5f4784e Mon Sep 17 00:00:00 2001 From: Juraj Kapsiar Date: Thu, 9 Aug 2018 09:42:43 +0200 Subject: [PATCH 1/2] add selection property to child items in ListExampleSelection so that styles and roles are applied properly --- CHANGELOG.md | 4 ++++ .../examples/components/List/Types/ListExampleSelection.tsx | 3 +++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09de9f74e..5c2b57636 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Fixes + +- Add selection property to child items in ListExampleSelection so that styles and roles are applied properly @jurokapsiar ([#66](https://github.com/stardust-ui/react/pull/66)) + ## [v0.2.6](https://github.com/stardust-ui/react/tree/v0.2.6) (2018-08-09) [Compare changes](https://github.com/stardust-ui/react/compare/v0.2.5...v0.2.6) diff --git a/docs/src/examples/components/List/Types/ListExampleSelection.tsx b/docs/src/examples/components/List/Types/ListExampleSelection.tsx index e62cce2d0..c483cddd5 100644 --- a/docs/src/examples/components/List/Types/ListExampleSelection.tsx +++ b/docs/src/examples/components/List/Types/ListExampleSelection.tsx @@ -8,18 +8,21 @@ const ListExampleSelection = ({ knobs }) => ( header="Irving Kuhic" headerMedia="7:26:56 AM" content="Program the sensor to the SAS alarm through the haptic SQL card!" + selection={knobs.selection} /> } header="Skyler Parks" headerMedia="11:30:17 PM" content="Use the online FTP application to input the multi-byte application!" + selection={knobs.selection} /> } header="Dante Schneider" headerMedia="5:22:40 PM" content="The GB pixel is down, navigate the virtual interface!" + selection={knobs.selection} /> ) From eae2b908b3fd19578ae2eaf081bdd38fe26991eb Mon Sep 17 00:00:00 2001 From: Juraj Kapsiar Date: Thu, 9 Aug 2018 09:47:45 +0200 Subject: [PATCH 2/2] bump pull request number --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c2b57636..29dc47aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Fixes -- Add selection property to child items in ListExampleSelection so that styles and roles are applied properly @jurokapsiar ([#66](https://github.com/stardust-ui/react/pull/66)) +- Add selection property to child items in ListExampleSelection so that styles and roles are applied properly @jurokapsiar ([#70](https://github.com/stardust-ui/react/pull/70)) ## [v0.2.6](https://github.com/stardust-ui/react/tree/v0.2.6) (2018-08-09)