Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1667 from bbc/bumping-dependencies
Browse files Browse the repository at this point in the history
bump dependencies
  • Loading branch information
thekp authored Aug 7, 2019
2 parents 038a0bf + a57097a commit f066c5c
Show file tree
Hide file tree
Showing 9 changed files with 77 additions and 75 deletions.
1 change: 1 addition & 0 deletions packages/components/psammead-caption/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- prettier-ignore -->
| Version | Description |
|---------|-------------|
| 2.1.2 | [PR#1667](https://github.com/bbc/psammead/pull/1667) Bump dependencies |
| 2.1.1 | [PR#1365](https://github.com/bbc/psammead/pull/1365) Bump psammead-styles to 1.2.0 |
| 2.1.0 | [PR#1233](https://github.com/bbc/psammead/pull/1233) Add ESM modules entry |
| 2.0.3 | [PR#1203](https://github.com/bbc/psammead/pull/1203) use `gel-foundations@3.0.3`, `psammead-styles@1.1.3` and bump devDependencies |
Expand Down
52 changes: 26 additions & 26 deletions packages/components/psammead-caption/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions packages/components/psammead-caption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/psammead-caption",
"version": "2.1.1",
"version": "2.1.2",
"main": "dist/index.js",
"module": "esm/index.js",
"sideEffects": false,
Expand All @@ -19,15 +19,15 @@
},
"homepage": "https://github.com/bbc/psammead/blob/latest/packages/components/psammead-caption/README.md",
"dependencies": {
"@bbc/gel-foundations": "^3.0.3",
"@bbc/psammead-styles": "^1.2.0"
"@bbc/gel-foundations": "^3.2.0",
"@bbc/psammead-styles": "^2.0.1"
},
"devDependencies": {
"@bbc/psammead-inline-link": "^1.1.10",
"@bbc/psammead-paragraph": "^2.0.4",
"@bbc/psammead-storybook-helpers": "^3.1.3",
"@bbc/psammead-test-helpers": "^1.0.2",
"@bbc/psammead-visually-hidden-text": "^1.0.7",
"@bbc/psammead-inline-link": "^1.2.2",
"@bbc/psammead-paragraph": "^2.1.2",
"@bbc/psammead-storybook-helpers": "^3.3.2",
"@bbc/psammead-test-helpers": "^1.1.0",
"@bbc/psammead-visually-hidden-text": "^1.1.1",
"react": "^16.8.6",
"styled-components": "^4.3.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ exports[`Caption should render with some offscreen text and arabic script typogr
font-size: 1.0625rem;
line-height: 1.5rem;
color: #6E6E73;
font-family: NassimPersian,Arial,Verdana,Geneva,Helvetica,sans-serif;
font-family: "BBC Nassim Persian",Arial,Verdana,Geneva,Helvetica,sans-serif;
font-weight: 400;
font-style: normal;
padding: 0.5rem 0.5rem 0;
Expand Down
4 changes: 2 additions & 2 deletions packages/components/psammead-caption/src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import {
import { getLongPrimer } from '@bbc/gel-foundations/typography';
import { C_METAL } from '@bbc/psammead-styles/colours';
import { scriptPropType } from '@bbc/gel-foundations/prop-types';
import { getSansItalic } from '@bbc/psammead-styles/font-styles';
import { getSansRegularItalic } from '@bbc/psammead-styles/font-styles';

const Caption = styled.figcaption`
${props => (props.script ? getLongPrimer(props.script) : '')};
color: ${C_METAL};
${({ service }) => getSansItalic(service)}
${({ service }) => getSansRegularItalic(service)}
padding: ${GEL_SPACING} ${GEL_MARGIN_BELOW_400PX} 0;
width: 100%;
@media (min-width: ${GEL_GROUP_2_SCREEN_WIDTH_MIN}) and (max-width: ${GEL_GROUP_3_SCREEN_WIDTH_MAX}) {
Expand Down
1 change: 1 addition & 0 deletions packages/components/psammead-story-promo-list/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- prettier-ignore -->
| Version | Description |
| ------- | ----------- |
| 1.1.2 | [PR#1667](https://github.com/bbc/psammead/pull/1667) Bump dependencies |
| 1.1.1 | [PR#1365](https://github.com/bbc/psammead/pull/1365) Bump psammead-styles to 1.2.0 |
| 1.1.0 | [PR#1233](https://github.com/bbc/psammead/pull/1233) Add ESM modules entry |
| 1.0.7 | [PR#1203](https://github.com/bbc/psammead/pull/1203) use `gel-foundations@3.0.3`, `psammead-styles@1.1.3`, bump devDependencies and pass `service` prop to required components in test. |
Expand Down
54 changes: 27 additions & 27 deletions packages/components/psammead-story-promo-list/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions packages/components/psammead-story-promo-list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/psammead-story-promo-list",
"version": "1.1.1",
"version": "1.1.2",
"main": "dist/index.js",
"module": "esm/index.js",
"sideEffects": false,
Expand All @@ -19,15 +19,15 @@
},
"homepage": "https://github.com/bbc/psammead/blob/latest/packages/components/psammead-story-promo-list/README.md",
"dependencies": {
"@bbc/gel-foundations": "^3.0.3",
"@bbc/psammead-styles": "^1.2.0"
"@bbc/gel-foundations": "^3.2.0",
"@bbc/psammead-styles": "^2.0.1"
},
"devDependencies": {
"@bbc/psammead-image": "^1.0.6",
"@bbc/psammead-storybook-helpers": "^3.1.3",
"@bbc/psammead-story-promo": "^2.0.3",
"@bbc/psammead-test-helpers": "^1.0.2",
"@bbc/psammead-timestamp": "^2.0.4",
"@bbc/psammead-image": "^1.1.2",
"@bbc/psammead-storybook-helpers": "^3.3.2",
"@bbc/psammead-story-promo": "^2.3.1",
"@bbc/psammead-test-helpers": "^1.1.0",
"@bbc/psammead-timestamp": "^2.1.2",
"react": "^16.8.6",
"styled-components": "^4.3.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ exports[`StoryPromo list should render correctly 1`] = `
padding: 0;
}
@supports (display:grid) {
@supports (grid-template-columns:fit-content(200px)) {
.c2 {
display: grid;
grid-template-columns: repeat(6,1fr);
Expand All @@ -81,7 +81,7 @@ exports[`StoryPromo list should render correctly 1`] = `
}
}
@supports (display:grid) {
@supports (grid-template-columns:fit-content(200px)) {
.c3 {
display: block;
width: initial;
Expand Down Expand Up @@ -157,7 +157,7 @@ exports[`StoryPromo list should render correctly 1`] = `
}
}
@supports (display:grid) {
@supports (grid-template-columns:fit-content(200px)) {
.c5 {
display: block;
width: initial;
Expand Down

0 comments on commit f066c5c

Please sign in to comment.