From da0e900db9110e00737bcb6f42514b27b2786c0c Mon Sep 17 00:00:00 2001 From: Ian Bolton Date: Wed, 19 Dec 2018 17:34:43 -0500 Subject: [PATCH 1/2] chore(update): Upgrade to 1.0.7 pf-next --- .../patternfly-4/react-charts/package.json | 4 +-- packages/patternfly-4/react-core/package.json | 4 +-- .../AboutModal/AboutModalBoxLogo.d.ts | 8 ----- .../AboutModal/AboutModalBoxLogo.js | 28 ----------------- .../AboutModal/AboutModalBoxLogo.test.js | 8 ----- .../AboutModal/AboutModalContainer.js | 2 -- .../__snapshots__/AboutModalBox.test.js.snap | 4 +-- .../AboutModalBoxLogo.test.js.snap | 30 ------------------- .../AboutModalContainer.test.js.snap | 5 ---- .../__snapshots__/Backdrop.test.js.snap | 2 +- .../BackgroundImage/BackgroundImage.d.ts | 3 -- .../BackgroundImage/BackgroundImage.js | 15 ++-------- .../BackgroundImage/BackgroundImage.test.js | 5 +--- .../BackgroundImage.test.js.snap | 12 ++++---- .../examples/SimpleBackgroundImage.js | 3 -- .../__snapshots__/EmptyState.test.js.snap | 2 +- .../LoginPage/examples/SimpleLoginPage.js | 3 -- .../examples/PageLayoutDefaultNav.js | 3 -- .../examples/PageLayoutExpandableNav.js | 3 -- .../examples/PageLayoutGroupsNav.js | 3 -- .../examples/PageLayoutHorizontalNav.js | 3 -- .../examples/PageLayoutSimpleNav.js | 3 -- .../react-styled-system/package.json | 4 +-- .../patternfly-4/react-table/package.json | 4 +-- .../patternfly-4/react-tokens/package.json | 4 +-- packages/react-icons/package.json | 4 +-- yarn.lock | 19 +++++------- 27 files changed, 34 insertions(+), 154 deletions(-) delete mode 100644 packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.d.ts delete mode 100644 packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.js delete mode 100644 packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.test.js delete mode 100644 packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalBoxLogo.test.js.snap diff --git a/packages/patternfly-4/react-charts/package.json b/packages/patternfly-4/react-charts/package.json index 8af8a992a61..933eb7cbd10 100644 --- a/packages/patternfly-4/react-charts/package.json +++ b/packages/patternfly-4/react-charts/package.json @@ -45,10 +45,10 @@ "victory": "^30.1.0" }, "devDependencies": { - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "css": "^2.2.3", "fs-extra": "^6.0.1", "glob": "^7.1.2", "npmlog": "^4.1.2" } -} +} \ No newline at end of file diff --git a/packages/patternfly-4/react-core/package.json b/packages/patternfly-4/react-core/package.json index 35ecaaba725..74bc8d1d2cc 100644 --- a/packages/patternfly-4/react-core/package.json +++ b/packages/patternfly-4/react-core/package.json @@ -61,7 +61,7 @@ "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", "@babel/preset-typescript": "^7.0.0", - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "@patternfly/react-styles": "^2.3.0", "@types/enzyme": "^3.1.15", "@types/jest": "^23.3.10", @@ -83,4 +83,4 @@ "ts-jest": "^23.10.5", "typescript": "^3.1.5" } -} +} \ No newline at end of file diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.d.ts b/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.d.ts deleted file mode 100644 index 75b5be85928..00000000000 --- a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { SFC, HTMLProps } from 'react'; - -export interface AboutMoalLogoHeroProps extends HTMLProps { - src: string; - alt: string; -} -declare const AboutMoalLogoBrand: SFC; -export default AboutMoalLogoHeroProps; diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.js b/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.js deleted file mode 100644 index 86ce68c7a1b..00000000000 --- a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.js +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; -import { css } from '@patternfly/react-styles'; -import PropTypes from 'prop-types'; -import styles from '@patternfly/patternfly-next/components/AboutModalBox/about-modal-box.css'; - -const propTypes = { - /** additional classes added to the About Modal Hero */ - className: PropTypes.string, - /** the URL of the image for the Hero. */ - src: PropTypes.string.isRequired, - /** the alternate text of the Hero image. */ - alt: PropTypes.string.isRequired -}; - -const defaultProps = { - className: '' -}; - -const AboutModalBoxHero = ({ className, src, alt, ...props }) => ( -
- {alt} -
-); - -AboutModalBoxHero.propTypes = propTypes; -AboutModalBoxHero.defaultProps = defaultProps; - -export default AboutModalBoxHero; diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.test.js b/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.test.js deleted file mode 100644 index 905ad1b79c3..00000000000 --- a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalBoxLogo.test.js +++ /dev/null @@ -1,8 +0,0 @@ -import React from 'react'; -import { shallow } from 'enzyme'; -import AboutModalBoxLogo from './AboutModalBoxLogo'; - -test('test About Modal Brand', () => { - const view = shallow(); - expect(view).toMatchSnapshot(); -}); diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalContainer.js b/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalContainer.js index af0aa2ec175..f14b9837e24 100644 --- a/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalContainer.js +++ b/packages/patternfly-4/react-core/src/components/AboutModal/AboutModalContainer.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import AboutModalBoxContent from './AboutModalBoxContent'; import AboutModalBoxHeader from './AboutModalBoxHeader'; import AboutModalBoxHero from './AboutModalBoxHero'; -import AboutModalBoxLogo from './AboutModalBoxLogo'; import AboutModalBoxBrand from './AboutModalBoxBrand'; import AboutModalBoxCloseButton from './AboutModalBoxCloseButton'; import AboutModalBox from './AboutModalBox'; @@ -79,7 +78,6 @@ const ModalContent = ({ {children} - diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalBox.test.js.snap b/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalBox.test.js.snap index 35f2343051d..15e50d3b85f 100644 --- a/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalBox.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalBox.test.js.snap @@ -5,11 +5,11 @@ exports[`AboutModalBox Test 1`] = ` display: grid; z-index: 600; grid-template-rows: max-content max-content auto max-content; - grid-template-areas: "brand close" "header header" "content content" "logo logo"; + grid-template-areas: "brand close" "header header" "content content"; overflow-x: hidden; overflow-y: auto; background-color: #030303; - box-shadow: 0 0 100px 0 rgba(255,255,255,0.4); + box-shadow: 0 0 100px 0 rgba(255,255,255,0.05); }
- logo -
-`; diff --git a/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalContainer.test.js.snap b/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalContainer.test.js.snap index de18e296935..203b76b31ef 100644 --- a/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalContainer.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/AboutModal/__snapshots__/AboutModalContainer.test.js.snap @@ -40,11 +40,6 @@ exports[`About Modal Container Test isOpen 1`] = ` className="" src="heroImg..." /> - diff --git a/packages/patternfly-4/react-core/src/components/Backdrop/__snapshots__/Backdrop.test.js.snap b/packages/patternfly-4/react-core/src/components/Backdrop/__snapshots__/Backdrop.test.js.snap index c7eaa8722d3..3681a2fc9a4 100644 --- a/packages/patternfly-4/react-core/src/components/Backdrop/__snapshots__/Backdrop.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/Backdrop/__snapshots__/Backdrop.test.js.snap @@ -9,7 +9,7 @@ exports[`Backdrop Test 1`] = ` z-index: 600; width: 100%; height: 100%; - background-color: rgba(3, 3, 3, 0.32); + background-color: rgba(3, 3, 3, 0.62); }
{ const bgStyles = StyleSheet.create({ bgOverrides: `&.pf-c-background-image { ${Object.keys(variableOverrides).reduce( - (prev, size) => `${prev.length ? prev : ''}${variableMap[size]}: url('${variableOverrides[size]}');`, - {} - )} + (prev, size) => `${prev.length ? prev : ''}${variableMap[size]}: url('${variableOverrides[size]}');`, + {} + )} }` }); diff --git a/packages/patternfly-4/react-core/src/components/BackgroundImage/BackgroundImage.test.js b/packages/patternfly-4/react-core/src/components/BackgroundImage/BackgroundImage.test.js index f49ce513b18..4eeeba32627 100644 --- a/packages/patternfly-4/react-core/src/components/BackgroundImage/BackgroundImage.test.js +++ b/packages/patternfly-4/react-core/src/components/BackgroundImage/BackgroundImage.test.js @@ -4,11 +4,8 @@ import { shallow } from 'enzyme'; const images = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg' @@ -22,6 +19,6 @@ Object.values([true, false]).forEach(isRead => { }); test('allows passing in a single string as the image src', () => { - const view = shallow(); + const view = shallow(); expect(view).toMatchSnapshot(); }); diff --git a/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap b/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap index 18db13f36ae..85adee20ba8 100644 --- a/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap @@ -1,31 +1,31 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`BackgroundImage 1`] = ` -.pf-c-background-image.css-wv98h3 { +.pf-c-background-image.css-vyby8o { display: block; }
`; exports[`BackgroundImage 2`] = ` -.pf-c-background-image.css-wv98h3 { +.pf-c-background-image.css-vyby8o { display: block; }
`; exports[`allows passing in a single string as the image src 1`] = ` -.pf-c-background-image.css-f7zm90 { +.pf-c-background-image.css-i3a8u7 { display: block; }
`; diff --git a/packages/patternfly-4/react-core/src/components/BackgroundImage/examples/SimpleBackgroundImage.js b/packages/patternfly-4/react-core/src/components/BackgroundImage/examples/SimpleBackgroundImage.js index 00ac628c820..a49bf28b33c 100644 --- a/packages/patternfly-4/react-core/src/components/BackgroundImage/examples/SimpleBackgroundImage.js +++ b/packages/patternfly-4/react-core/src/components/BackgroundImage/examples/SimpleBackgroundImage.js @@ -6,11 +6,8 @@ import { BackgroundImage, BackgroundImageSrc } from '@patternfly/react-core'; */ const images = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/components/EmptyState/__snapshots__/EmptyState.test.js.snap b/packages/patternfly-4/react-core/src/components/EmptyState/__snapshots__/EmptyState.test.js.snap index 97f7efab654..62729d77b7c 100644 --- a/packages/patternfly-4/react-core/src/components/EmptyState/__snapshots__/EmptyState.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/EmptyState/__snapshots__/EmptyState.test.js.snap @@ -3,7 +3,7 @@ exports[`EmptyState Main 1`] = ` .pf-c-empty-state { display: block; - max-width: 25rem; + max-width: 37.5rem; padding: 2rem; text-align: center; } diff --git a/packages/patternfly-4/react-core/src/components/LoginPage/examples/SimpleLoginPage.js b/packages/patternfly-4/react-core/src/components/LoginPage/examples/SimpleLoginPage.js index 7c73cbf4845..9b893be4d42 100644 --- a/packages/patternfly-4/react-core/src/components/LoginPage/examples/SimpleLoginPage.js +++ b/packages/patternfly-4/react-core/src/components/LoginPage/examples/SimpleLoginPage.js @@ -17,11 +17,8 @@ import { const images = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutDefaultNav.js b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutDefaultNav.js index 74d85dddf97..c40bb78d36c 100644 --- a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutDefaultNav.js +++ b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutDefaultNav.js @@ -170,11 +170,8 @@ class PageLayoutDefaultNav extends React.Component { ); const bgImages = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutExpandableNav.js b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutExpandableNav.js index 54fcf395119..0d4ba86cc08 100644 --- a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutExpandableNav.js +++ b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutExpandableNav.js @@ -194,11 +194,8 @@ class PageLayoutExpandableNav extends React.Component { ); const bgImages = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutGroupsNav.js b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutGroupsNav.js index fbce0be4c2f..c383e872bcd 100644 --- a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutGroupsNav.js +++ b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutGroupsNav.js @@ -180,11 +180,8 @@ class PageLayoutGroupsNav extends React.Component { ); const bgImages = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutHorizontalNav.js b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutHorizontalNav.js index 26ffb431f3b..16f163aa701 100644 --- a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutHorizontalNav.js +++ b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutHorizontalNav.js @@ -170,11 +170,8 @@ class PageLayoutHorizontalNav extends React.Component { ); const bgImages = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutSimpleNav.js b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutSimpleNav.js index 0236fd68d49..25f27ff87f3 100644 --- a/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutSimpleNav.js +++ b/packages/patternfly-4/react-core/src/demos/PageLayout/examples/PageLayoutSimpleNav.js @@ -171,11 +171,8 @@ class PageLayoutSimpleNav extends React.Component { ); const bgImages = { [BackgroundImageSrc.lg]: '/assets/images/pfbg_1200.jpg', - [BackgroundImageSrc.md]: '/assets/images/pfbg_992.jpg', - [BackgroundImageSrc.md2x]: '/assets/images/pfbg_992@2x.jpg', [BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg', [BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg', - [BackgroundImageSrc.xl]: '/assets/images/pfbg_2000.jpg', [BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg', [BackgroundImageSrc.xs2x]: '/assets/images/pfbg_576@2x.jpg', [BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay' diff --git a/packages/patternfly-4/react-styled-system/package.json b/packages/patternfly-4/react-styled-system/package.json index 414c0fb8793..97ca957e756 100644 --- a/packages/patternfly-4/react-styled-system/package.json +++ b/packages/patternfly-4/react-styled-system/package.json @@ -43,7 +43,7 @@ "react": "^16.4.0" }, "devDependencies": { - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "css": "^2.2.3", "fs-extra": "^6.0.1", "glob": "^7.1.2", @@ -52,4 +52,4 @@ "optionalDependencies": { "@types/styled-system": "^3.0.7" } -} +} \ No newline at end of file diff --git a/packages/patternfly-4/react-table/package.json b/packages/patternfly-4/react-table/package.json index 19cbee7252a..2a2a4c8db50 100644 --- a/packages/patternfly-4/react-table/package.json +++ b/packages/patternfly-4/react-table/package.json @@ -51,10 +51,10 @@ "@patternfly/react-tokens": "^1.0.0" }, "devDependencies": { - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "css": "^2.2.3", "fs-extra": "^6.0.1", "glob": "^7.1.2", "npmlog": "^4.1.2" } -} +} \ No newline at end of file diff --git a/packages/patternfly-4/react-tokens/package.json b/packages/patternfly-4/react-tokens/package.json index b90eb8a0170..6301b7011b6 100644 --- a/packages/patternfly-4/react-tokens/package.json +++ b/packages/patternfly-4/react-tokens/package.json @@ -27,9 +27,9 @@ "build": "node build/generateTokens.js" }, "devDependencies": { - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "css": "^2.2.3", "fs-extra": "^6.0.1", "glob": "^7.1.2" } -} +} \ No newline at end of file diff --git a/packages/react-icons/package.json b/packages/react-icons/package.json index 98f18c88d37..e389181abb2 100644 --- a/packages/react-icons/package.json +++ b/packages/react-icons/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@fortawesome/free-solid-svg-icons": "^5.3.1", - "@patternfly/patternfly-next": "1.0.105", + "@patternfly/patternfly-next": "1.0.109", "fs-extra": "^6.0.1", "glob": "^7.1.2", "node-plop": "^0.15.0", @@ -44,4 +44,4 @@ "react": "^16.4.0", "react-dom": "^15.6.2 || ^16.4.0" } -} +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 05d105f367e..74eb3120b39 100644 --- a/yarn.lock +++ b/yarn.lock @@ -988,9 +988,10 @@ version "1.0.0" resolved "https://registry.yarnpkg.com/@novnc/novnc/-/novnc-1.0.0.tgz#76b0e89e6f8738ca8154195baf5b8e6a80bc9105" -"@patternfly/patternfly-next@1.0.105": - version "1.0.105" - resolved "https://registry.yarnpkg.com/@patternfly/patternfly-next/-/patternfly-next-1.0.105.tgz#fe83f1eab814d9333508cf25abbc677432ecc338" +"@patternfly/patternfly-next@1.0.109": + version "1.0.109" + resolved "https://registry.yarnpkg.com/@patternfly/patternfly-next/-/patternfly-next-1.0.109.tgz#5c1a8ca29ca48d030324d3d588af9954e2f36cea" + integrity sha512-jmDQbXCxAeBssoRfskLs+cgNMAxliHUZg8aodTkvEFRH+dTzU8lqbd+85cNy9zjw5hC507aqwArlCABc0Zpakw== "@sindresorhus/is@^0.7.0": version "0.7.0" @@ -16066,10 +16067,10 @@ unicode-property-aliases-ecmascript@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" -unidiff@^0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/unidiff/-/unidiff-0.0.4.tgz#257fc346ac6f134b0b75d08895320872a737e222" - integrity sha1-JX/DRqxvE0sLddCIlTIIcqc34iI= +unidiff@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/unidiff/-/unidiff-1.0.1.tgz#2ff8da0710a9abb4e1133e9da4c87747fb5ff508" + integrity sha512-n9pCo9OKQE+QWsUa45BdSy7Y0hpHpyPHwNxcEgqFgPqxb1Y8DH4d9WTepcJpmLsnDEWDch6hxh2g/sM0bvyxMA== dependencies: diff "^2.2.2" @@ -16312,10 +16313,6 @@ uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" -uuid@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" - uuid@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" From 5cdacc07a6e57975b8fa9a564dc0a9c1a7f126b6 Mon Sep 17 00:00:00 2001 From: Ian Bolton Date: Thu, 20 Dec 2018 09:42:56 -0500 Subject: [PATCH 2/2] update snapshot --- .../__snapshots__/BackgroundImage.test.js.snap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap b/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap index 85adee20ba8..04cb76816cb 100644 --- a/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap +++ b/packages/patternfly-4/react-core/src/components/BackgroundImage/__snapshots__/BackgroundImage.test.js.snap @@ -1,22 +1,22 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`BackgroundImage 1`] = ` -.pf-c-background-image.css-vyby8o { +.pf-c-background-image.css-1mxwfbc { display: block; }
`; exports[`BackgroundImage 2`] = ` -.pf-c-background-image.css-vyby8o { +.pf-c-background-image.css-1mxwfbc { display: block; }
`;