From 78a2771dcbdc95a6249bbc592dee409b4297ef4b Mon Sep 17 00:00:00 2001 From: Eric Gauzens Date: Fri, 28 Jan 2022 11:00:25 -0500 Subject: [PATCH 1/2] latest round of review changes --- .../ContentOverviewCard/ContentOverviewCard.stories.js | 6 +++--- src/components/EventCard/src/EventCard.vue | 4 ++-- src/components/ListCard/src/ListCardItem.vue | 4 ++-- src/components/Pagination/src/Pagination.vue | 1 + src/components/SparcCheckbox/src/SparcCheckbox.vue | 4 ++-- src/components/SparcRadio/src/SparcRadio.vue | 5 +++++ 6 files changed, 15 insertions(+), 9 deletions(-) diff --git a/src/components/ContentOverviewCard/ContentOverviewCard.stories.js b/src/components/ContentOverviewCard/ContentOverviewCard.stories.js index 5eb5095c..011b1cd6 100644 --- a/src/components/ContentOverviewCard/ContentOverviewCard.stories.js +++ b/src/components/ContentOverviewCard/ContentOverviewCard.stories.js @@ -59,15 +59,15 @@ export const Primary = () => createDemo({ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing", image: "https://via.placeholder.com/736", metadata: [{ - title: 'NIH Award', + title: 'NIH AWARD', value: '000000000000' }, { - title: 'Principal Investigator', + title: 'PRINCIPAL INVESTIGATOR', value: 'Fynn Blackwell' }, { - title: 'Institution', + title: 'INSTITUTION', value: 'University of California Los Angeles' } ] diff --git a/src/components/EventCard/src/EventCard.vue b/src/components/EventCard/src/EventCard.vue index 4b1c4eae..8c329215 100644 --- a/src/components/EventCard/src/EventCard.vue +++ b/src/components/EventCard/src/EventCard.vue @@ -24,11 +24,11 @@
-

{{ getDateRange(startDate, endDate) }}

+
{{ getDateRange(startDate, endDate) }}
-

{{ location }}

+
{{ location }}
diff --git a/src/components/ListCard/src/ListCardItem.vue b/src/components/ListCard/src/ListCardItem.vue index 62574745..8a4ec9bf 100644 --- a/src/components/ListCard/src/ListCardItem.vue +++ b/src/components/ListCard/src/ListCardItem.vue @@ -9,14 +9,14 @@

{{ formattedDate }} diff --git a/src/components/Pagination/src/Pagination.vue b/src/components/Pagination/src/Pagination.vue index cb044c5f..5e6a92f0 100644 --- a/src/components/Pagination/src/Pagination.vue +++ b/src/components/Pagination/src/Pagination.vue @@ -71,6 +71,7 @@ export default { .el-pager li { min-width: 0; margin: 0 .5em; + font-size: 14px; } } diff --git a/src/components/SparcCheckbox/src/SparcCheckbox.vue b/src/components/SparcCheckbox/src/SparcCheckbox.vue index 58b7eb57..bdd20282 100644 --- a/src/components/SparcCheckbox/src/SparcCheckbox.vue +++ b/src/components/SparcCheckbox/src/SparcCheckbox.vue @@ -61,9 +61,9 @@ export default { } } } - &.is-focus:not(.is-checked) { + &:not(.is-checked) { .el-checkbox__inner { - border-color: $lineColor1; + border-color: $lightGrey; } } } diff --git a/src/components/SparcRadio/src/SparcRadio.vue b/src/components/SparcRadio/src/SparcRadio.vue index c1e0fc94..79df6901 100644 --- a/src/components/SparcRadio/src/SparcRadio.vue +++ b/src/components/SparcRadio/src/SparcRadio.vue @@ -61,6 +61,11 @@ export default { } } } + &:not(.is-checked) { + .el-radio__inner { + border-color: $lightGrey; + } + } } .el-radio { From b3b4be190789b8fe1fc5ffb0614c1303b3f7b87b Mon Sep 17 00:00:00 2001 From: Eric Gauzens Date: Fri, 28 Jan 2022 11:03:21 -0500 Subject: [PATCH 2/2] version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 95a6fd6e..14c40237 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nih-sparc/sparc-design-system-components", - "version": "0.21.0", + "version": "0.22.0", "private": false, "scripts": { "serve": "vue-cli-service serve",