diff --git a/CHANGELOG.md b/CHANGELOG.md index 415252c..7eaf6fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.3.0 - 2018-06-01 + +* General design updates +* Improved default logo / favicon +* Improved default card-og.png +* Improved contact page layout +* Update +* Change normalize.css to modern-normalize +* Add react-feather icons +* Remove AOS + ## 0.2.9 - 2018-05-30 * IE11 support updates diff --git a/README.md b/README.md index e066ec5..5d1d5a1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 🌶 Netlify CMS + React Starter +# Netlify CMS + React Starter [![Standard - JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](http://standardjs.com/) [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) @@ -18,18 +18,18 @@ I aim to include commonly used components and best-practices e.g. forms, setting [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/Jinksi/netlify-cms-react-starter) -1. Hit the **Deploy to Netlify** button. This will: +1. Hit the **Deploy to Netlify** button. This will: * Clone the repo into your Github account * Create you a new project on Netlify, build & deploy -1. Once your Netlify project has been created, change a couple of settings: +1. Once your Netlify project has been created, change a couple of settings: * Enable **Identity** * Change **Registration Preferences** to **Invite Only** * Enable **Git Gateway** -1. Invite users (probably yourself) to enable admin access +1. Invite users (probably yourself) to enable admin access * Open the **Identity** tab and hit **Invite Users** @@ -39,21 +39,21 @@ The CMS lives at [\_\_YOUR_SITE_NAME\_\_.netlify.com/admin](https://__YOUR_SITE_ ## Developing -1. Clone your repo to your local machine +1. Clone your repo to your local machine -1. Install dependencies +1. Install dependencies `yarn` or `npm install` -1. Run the development server +1. Run the development server `yarn start` or `npm run start` If you are adding or editing content locally in the CMS, a couple of things to note: -1. Changes will be pushed to the remote repo. +1. Changes will be pushed to the remote repo. -1. You will be prompted to enter your site's url, this is necessary for Netlify Identity to manage user login. This is stored in `localStorage`, so you might have to empty your browser cache if you are switching projects but remaining on `localhost:3000`. +1. You will be prompted to enter your site's url, this is necessary for Netlify Identity to manage user login. This is stored in `localStorage`, so you might have to empty your browser cache if you are switching projects but remaining on `localhost:3000`. ## Editing CMS fields diff --git a/cms/cms.js b/cms/cms.js index 3d63aeb..5da9f8e 100644 --- a/cms/cms.js +++ b/cms/cms.js @@ -4,8 +4,9 @@ import '../src/globalStyles.css' import data from '../src/data.json' import Home from '../src/views/Home' import About from '../src/views/About' -import SinglePost from '../src/views/SinglePost' import Contact from '../src/views/Contact' +import Blog from '../src/views/Blog' +import SinglePost from '../src/views/SinglePost' console.log('React version', React.version) @@ -17,7 +18,10 @@ CMS.registerPreviewStyle('/admin/cms.bundle.css') const getDocument = (collection, name) => data[collection] && data[collection].filter(page => page.name === name)[0] +const getDocuments = (collection, name) => data[collection] + const globalSettings = getDocument('settings', 'global') +const posts = getDocuments('posts') // Preview Templates CMS.registerPreviewTemplate('home-page', ({ entry }) => ( @@ -29,6 +33,9 @@ CMS.registerPreviewTemplate('about-page', ({ entry }) => ( CMS.registerPreviewTemplate('contact-page', ({ entry }) => ( )) +CMS.registerPreviewTemplate('blog-page', ({ entry }) => ( + +)) CMS.registerPreviewTemplate('posts', ({ entry }) => ( )) diff --git a/content/pages/about.md b/content/pages/about.md index 4da7686..0ba7e1a 100644 --- a/content/pages/about.md +++ b/content/pages/about.md @@ -1,9 +1,8 @@ --- title: About page title -subtitle: featuredImage: /images/uploads/tim-marshall-155597.jpg section1: |- - ## Hello World! + ## Lorem Ipsum Netlify CMS works with both `.md` and `.json`. @@ -15,10 +14,9 @@ section1: |- -section2: >- +section2: |- ## This is a Container component - A sem vel nec sodales mi vivamus senectus sed potenti a parturient nascetur tincidunt nisi pulvinar rhoncus a. Risus imperdiet taciti suspendisse facilisi a per metus cubilia varius a nostra adipiscing amet ultrices quisque ac mi a. @@ -28,9 +26,7 @@ section2: >- bibendum duis netus a consectetur dui magnis ac aliquet sem posuere tincidunt vestibulum. - The image below will have a `srcset` attribute generated: - ![Tim Marshall](/images/uploads/tim-marshall-155597.jpg) --- diff --git a/content/pages/blog.md b/content/pages/blog.md new file mode 100644 index 0000000..21cb506 --- /dev/null +++ b/content/pages/blog.md @@ -0,0 +1,4 @@ +--- +title: Blog +featuredImage: /images/uploads/ng-32703.jpg +--- diff --git a/content/pages/contact.md b/content/pages/contact.md index ac27925..7d3bb8e 100644 --- a/content/pages/contact.md +++ b/content/pages/contact.md @@ -1,13 +1,18 @@ --- -title: Contact -subtitle: +title: Contact us +subtitle: '' +featuredImage: '/images/uploads/mark-chang-74-3.jpg' +address: 404 James St, Burleigh Heads QLD 4220 +phone: 0987 123 456 +email: example@example.com --- + # Example contact form This form is setup to use Netlify's form handling: -- the form action is set to the current absolute url: `action: '/contact/'` -- a name attribute is sent with the form's data `'form-name': 'Contact'` -- netlify data attributes are added to the form `data-netlify data-netlify-honeypot` +* the form action is set to the current absolute url: `action: '/contact/'` +* a name attribute is sent with the form's data `'form-name': 'Contact'` +* netlify data attributes are added to the form `data-netlify data-netlify-honeypot` Find out more in the [Netlify Docs](https://www.netlify.com/docs/form-handling/). diff --git a/content/pages/home.md b/content/pages/home.md index 5cbdee2..c26c2f3 100644 --- a/content/pages/home.md +++ b/content/pages/home.md @@ -1,13 +1,10 @@ --- title: Hello World! -subtitle: +subtitle: This is the home page subtitle +featuredImage: '/images/uploads/isabella juskova.jpg' --- -# 🌶 Netlify CMS + React Starter - -[![Standard - JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](http://standardjs.com/) -[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) -[![dependencies](https://david-dm.org/jinksi/netlify-cms-react-starter.svg)](https://david-dm.org/jinksi/netlify-cms-react-starter) +# Netlify CMS + React Starter A starter project for creating lightning-fast, offline-first websites with [Netlify CMS](https://netlifycms.org) and React. @@ -17,50 +14,6 @@ A starter project for creating lightning-fast, offline-first websites with [Netl * **[React Snapshot](https://github.com/geelen/react-snapshot)** for pre-rendering to static html so it works without Javascript ⭐️ * **[Netlify CMS](https://github.com/netlify/netlify-cms)** for content management -I aim to include commonly used components and best-practices e.g. forms, settings, tags, lazy-loading images, etc. - -## Get going - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/Jinksi/netlify-cms-react-starter) - -1. Hit the **Deploy to Netlify** button. This will: - - * Clone the repo into your Github account - * Create you a new project on Netlify, build & deploy - -1. Once your Netlify project has been created, change a couple of settings: - - * Enable **Identity** - * Change **Registration Preferences** to **Invite Only** - * Enable **Git Gateway** - -1. Invite users (probably yourself) to enable admin access - * Open the **Identity** tab and hit **Invite Users** - -## Developing - -1. Clone your repo to your local machine - -1. Install dependencies - - `yarn` or `npm install` - -1. Run the development server - - `yarn start` or `npm run start` - -If you are adding or editing content locally in the CMS, a couple of things to note: - -* Changes will be pushed to the remote repo. - -* You will be prompted to enter your site's url, this is necessary for Netlify Identity to manage user login. This is stored in `localStorage`, so you might have to empty your browser cache if you are switching projects but remaining on `localhost:3000`. - -## Editing CMS fields - -The Netlify CMS configuration is located in `public/admin/config.yml`. This is where you will configure the pages, fields, posts and settings that are editable by the CMS. - -Find out more in the [Netlify CMS Docs](https://www.netlifycms.org/docs/#configuration). - ## See also [Netlify CMS Docs](https://www.netlifycms.org/docs/) diff --git a/content/postCategories/fluff.md b/content/postCategories/fluff.md deleted file mode 100644 index 01303ba..0000000 --- a/content/postCategories/fluff.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: Fluff ---- - diff --git a/content/postCategories/updates.md b/content/postCategories/updates.md new file mode 100644 index 0000000..b411e21 --- /dev/null +++ b/content/postCategories/updates.md @@ -0,0 +1,3 @@ +--- +title: Updates +--- diff --git a/content/posts/2018-05-25-testing-1-8-2.md b/content/posts/2018-05-25-testing-1-8-2.md index 16e6727..1bcee19 100644 --- a/content/posts/2018-05-25-testing-1-8-2.md +++ b/content/posts/2018-05-25-testing-1-8-2.md @@ -1,8 +1,11 @@ --- -title: Testing 1.8.2 +title: Post Three status: Published date: '2018-05-25' postFeaturedImage: /images/uploads/isabella juskova.jpg -excerpt: Test +excerpt: This is placeholder text that our web designers put here to make sure words appear properly on your website. This text is going to be replaced once the website is completed. You are currently reading text that is written in English, not any other language. --- -Test + +This is placeholder text that our web designers put here to make sure words appear properly on your website. This text is going to be replaced once the website is completed. You are currently reading text that is written in English, not any other language. + +Be careful not to waste too much time reading placeholder text! This text isn’t going to remain here because it doesn't pertain to the website. This paragraph has been copied from a program that automatically generates paragraphs like this. It is useful for web designers to use placeholder text so they can easily see what different fonts look like on a realistic paragraph. diff --git a/content/posts/post-two.md b/content/posts/post-two.md index a9664e8..d2a9a7e 100644 --- a/content/posts/post-two.md +++ b/content/posts/post-two.md @@ -2,7 +2,7 @@ title: Post Two status: Published categories: - - category: Fluff + - category: Updates date: '2018-03-28' postFeaturedImage: /images/uploads/vyouw5byhlc.jpeg excerpt: This is an excerpt of Post Two diff --git a/package.json b/package.json index 94d2443..d7983ca 100644 --- a/package.json +++ b/package.json @@ -31,17 +31,17 @@ }, "dependencies": { "@researchgate/react-intersection-observer": "^0.7.0", - "aos": "^2.2.0", "core-js": "^2.5.3", "date-fns": "^1.29.0", "dom-form-serializer": "^1.0.7", "intersection-observer": "^0.5.0", "lodash": "^4.17.10", + "modern-normalize": "^0.4.0", "moveto": "^1.7.1", "netlify-identity-widget": "^1.2.0", - "normalize.css": "^8.0.0", "react": "^16.0.0", "react-dom": "^16.0.0", + "react-feather": "^1.1.0", "react-helmet": "^5.1.3", "react-markdown": "3", "react-router-dom": "^4.1.1", diff --git a/public/admin/admin.css b/public/admin/admin.css index 30e8c7f..eed5f78 100644 --- a/public/admin/admin.css +++ b/public/admin/admin.css @@ -53,7 +53,7 @@ /* Custom logo */ -/* .nc-githubAuthenticationPage-logo { +.nc-githubAuthenticationPage-logo { background-image: url(/images/logo.svg); background-position: center; background-repeat: no-repeat; @@ -79,4 +79,4 @@ transform: translate(-50%, -50%); width: auto; text-indent: 0; -} */ +} diff --git a/public/admin/config.yml b/public/admin/config.yml index 4daa8eb..6101dab 100644 --- a/public/admin/config.yml +++ b/public/admin/config.yml @@ -14,30 +14,42 @@ collections: # A list of collections the CMS should be able to edit editor: preview: true files: - - file: "content/pages/home.md" - label: "Home Page" - name: "home-page" + - file: "content/pages/contact.md" + label: "Contact Page" + name: "contact-page" fields: - {label: Title, name: title, widget: string} - - {label: Subtitle, name: subtitle, widget: string} + - {label: Subtitle, name: subtitle, widget: markdown} + - {label: Featured Image, name: featuredImage, widget: image} - {label: Body, name: body, widget: markdown} + - {label: Address, name: address, widget: text} + - {label: Phone, name: phone, widget: string} + - {label: Email Address, name: email, widget: string} + + - file: "content/pages/blog.md" + label: "Blog Page" + name: "blog-page" + fields: + - {label: Title, name: title, widget: string} + - {label: Subtitle, name: subtitle, widget: markdown} + - {label: Featured Image, name: featuredImage, widget: image} - file: "content/pages/about.md" label: "About Page" name: "about-page" fields: - {label: Title, name: title, widget: string} - - {label: Subtitle, name: subtitle, widget: string} + - {label: Subtitle, name: subtitle, widget: markdown} - {label: Featured Image, name: featuredImage, widget: image} - {label: Section 1, name: section1, widget: markdown} - {label: Section 2, name: section2, widget: markdown} - - file: "content/pages/contact.md" - label: "Contact Page" - name: "contact-page" + - file: "content/pages/home.md" + label: "Home Page" + name: "home-page" fields: - {label: Title, name: title, widget: string} - - {label: Subtitle, name: subtitle, widget: string} + - {label: Subtitle, name: subtitle, widget: markdown} - {label: Body, name: body, widget: markdown} diff --git a/public/favicon.ico b/public/favicon.ico index d6282f8..652c842 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/images/logo.png b/public/images/logo.png index 86b9fd4..d12b45e 100644 Binary files a/public/images/logo.png and b/public/images/logo.png differ diff --git a/public/images/logo.svg b/public/images/logo.svg index bfe61df..2bf969f 100644 --- a/public/images/logo.svg +++ b/public/images/logo.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/public/images/uploads/card-og.png b/public/images/uploads/card-og.png index cfb50a1..1bd8100 100644 Binary files a/public/images/uploads/card-og.png and b/public/images/uploads/card-og.png differ diff --git a/public/images/uploads/ng-32703.jpg b/public/images/uploads/ng-32703.jpg new file mode 100644 index 0000000..6454149 Binary files /dev/null and b/public/images/uploads/ng-32703.jpg differ diff --git a/public/index.html b/public/index.html index 0a66ebc..27932d0 100644 --- a/public/index.html +++ b/public/index.html @@ -31,16 +31,16 @@ --> + // check for netlifyIdentity, redirect to admin if user is logging in +if (window.localStorage && window.netlifyIdentity) { + netlifyIdentity.on('init', function(user) { + if (!user) { + netlifyIdentity.on('login', function() { + document.location.href = '/admin/' + }) + } + }) +} + diff --git a/src/App.js b/src/App.js index 101f7c0..02958ac 100644 --- a/src/App.js +++ b/src/App.js @@ -15,7 +15,6 @@ import Nav from './components/Nav' import Footer from './components/Footer' import GithubCorner from './components/GithubCorner' import ServiceWorkerNotifications from './components/ServiceWorkerNotifications' -import AOS from './components/AOS' import data from './data.json' import { slugify } from './util/url' import { documentHasTerm, getCollectionTerms } from './util/collection' @@ -52,7 +51,6 @@ class App extends Component { return (
- @@ -111,6 +109,7 @@ class App extends Component { exact render={props => ( return ( slugify(item.title) === slug ) const singlePost = posts[singlePostID] - const nextPost = posts[singlePostID + 1] - const prevPost = posts[singlePostID - 1] + const nextPost = posts[singlePostID - 1] + const prevPost = posts[singlePostID + 1] if (!singlePost) return return ( { - // See more: https://github.com/michalsnik/aos - const defaultOptions = { - offset: 300, - duration: 300, - easing: 'ease-out-sine', - delay: 0, - once: true - } - - AOS.init({ ...defaultOptions, ...options }) - - return ( - - - - ) -} diff --git a/src/components/BackgroundImage.css b/src/components/BackgroundImage.css index 59d1da2..0c20437 100644 --- a/src/components/BackgroundImage.css +++ b/src/components/BackgroundImage.css @@ -5,7 +5,8 @@ bottom: 0; right: 0; background-position: center; - transition: opacity 0.5s ease; + transform: translate3d(0, 0, 0); + transition: filter 0.3s ease-in-out; overflow: hidden; } diff --git a/src/components/BackgroundImage.js b/src/components/BackgroundImage.js index 236fa59..b4d9b22 100644 --- a/src/components/BackgroundImage.js +++ b/src/components/BackgroundImage.js @@ -54,8 +54,22 @@ export default class BackgroundImage extends React.Component { } render () { - let { className, contain, opacity, lazy } = this.props + let { className, contain, opacity, lazy, imageSize } = this.props let { loaded, src } = this.state + + if (!lazy) { + return ( +
+ ) + } + if (loaded) className += ' BackgroundImage-lazy-loaded' if (lazy) className += ' BackgroundImage-lazy' const options = { @@ -68,7 +82,6 @@ export default class BackgroundImage extends React.Component {
* + * { - margin-top: 1.5rem; + margin-top: 2rem; } .EnquiryForm--Label { @@ -21,21 +21,19 @@ .EnquiryForm--Input { font-family: inherit; - font-weight: 400; flex-grow: 1; box-sizing: border-box; display: block; margin: 0; - border: none; - border-bottom: 1px solid #bababa; - padding: 0.75rem 0.5rem; - line-height: 1; + border: 1px solid #bababa; + padding: 1.5rem 2rem; + border-radius: var(--borderRadius); + line-height: 1.25em; transition: border-color 0.2s; resize: none; } .EnquiryForm--Select { - border-radius: 0; background: none; appearance: none; } @@ -43,7 +41,7 @@ .EnquiryForm--Label.has-arrow:after { content: ''; position: absolute; - right: 3px; + right: 2.5rem; top: 50%; border-right: 1px solid; border-bottom: 1px solid; diff --git a/src/components/Footer.css b/src/components/Footer.css index c64a6da..3b60975 100644 --- a/src/components/Footer.css +++ b/src/components/Footer.css @@ -1,14 +1,4 @@ .Footer { - background: var(--primary); - color: white; -} - -.Footer--Lower { - background: var(--primary); - padding: 1rem 0; - font-weight: 100; -} - -.Footer--Lower a { - color: inherit; + padding: 3rem 0; + background: var(--lightGrey); } diff --git a/src/components/Footer.js b/src/components/Footer.js index af8e749..55a5fa6 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -4,10 +4,8 @@ import './Footer.css' export default ({ globalSettings, socialSettings, navLinks }) => (
-
-
- © 2017 All rights reserved. -
+
+ © 2017 All rights reserved.
) diff --git a/src/components/GithubCorner.css b/src/components/GithubCorner.css index c3e89aa..15ac354 100644 --- a/src/components/GithubCorner.css +++ b/src/components/GithubCorner.css @@ -7,8 +7,10 @@ .GithubCorner svg { color: #fff; border: 0; - max-width: 12.5vmin; - max-height: 12.5vmin; + width: 12vmin; + height: 12vmin; + max-width: 6rem; + max-height: 6rem; } .GithubCorner .octo-arm { diff --git a/src/components/Logo.css b/src/components/Logo.css index 718f9c1..cf6bcfe 100644 --- a/src/components/Logo.css +++ b/src/components/Logo.css @@ -1,9 +1,10 @@ .Logo { - display: block; + display: flex; background-size: contain; background-repeat: no-repeat; background-position: center; height: 2.5rem; width: 2.5rem; - margin-right: 1rem; + align-items: center; + justify-content: center; } diff --git a/src/components/Nav.css b/src/components/Nav.css index 274fea6..c65dcdd 100644 --- a/src/components/Nav.css +++ b/src/components/Nav.css @@ -7,4 +7,10 @@ .Nav--Container { display: flex; + align-items: center; + height: 6rem; +} + +.Nav .Logo { + margin-right: 3rem; } diff --git a/src/components/NavLink.css b/src/components/NavLink.css index 8393813..d58b1f3 100644 --- a/src/components/NavLink.css +++ b/src/components/NavLink.css @@ -1,14 +1,18 @@ .NavLink { padding: 0.5rem 1rem; display: block; - font-weight: 400; + font-weight: 500; transition: color 0.2s, border-bottom-color 0.2s; color: inherit; text-decoration: none; - border-bottom: 1px solid; + border-bottom: 2px solid; border-bottom-color: transparent; } +.NavLink + .NavLink { + margin-left: 1rem; +} + .NavLink:hover, .NavLink.active, .NavLink:focus { diff --git a/src/components/PageHeader.css b/src/components/PageHeader.css index 0fd2571..044c51d 100644 --- a/src/components/PageHeader.css +++ b/src/components/PageHeader.css @@ -1,13 +1,19 @@ .PageHeader { - line-height: 1em; - color: var(--primary); - background: var(--primary); + background-color: var(--darkGrey); color: white; + padding: 15rem 0; +} + +.PageHeader-large { + padding: 20rem 0; } .PageHeader--Title { + font-size: 6rem; + margin-bottom: 0; } .PageHeader--Subtitle { - font-weight: 200; + font-weight: 400; + font-size: 1.8rem; } diff --git a/src/components/PageHeader.js b/src/components/PageHeader.js index c50dbef..5ee48fa 100644 --- a/src/components/PageHeader.js +++ b/src/components/PageHeader.js @@ -1,31 +1,32 @@ import React from 'react' import PropTypes from 'prop-types' +import Content from './Content' import BackgroundImage from './BackgroundImage' import './PageHeader.css' -const PageHeader = ({ title, subtitle, backgroundImage }) => ( -
- {backgroundImage && } -
-

- {title} -

- {subtitle ? ( -

- {subtitle} -

- ) : ( - '' +const PageHeader = ({ + title, + subtitle, + backgroundImage, + large, + className = '' +}) => { + if (large) className += ' PageHeader-large' + return ( +
+ {backgroundImage && ( + )} +
+

{title}

+ {subtitle && ( + + )} +
-
-) - + ) +} PageHeader.propTypes = { title: PropTypes.string, subtitle: PropTypes.string diff --git a/src/components/PostCard.css b/src/components/PostCard.css index 545ad71..b5920f0 100644 --- a/src/components/PostCard.css +++ b/src/components/PostCard.css @@ -1,7 +1,19 @@ .PostCard { text-decoration: none; - margin: 4rem 2rem; + margin: 2rem; background: white; + color: inherit; + border: 1px solid var(--lightGrey); + border-radius: var(--borderRadius); + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); + transition: all 0.15s ease-in-out; + overflow: hidden; +} + +.PostCard:hover, +.PostCard:focus { + transform: translateY(-1px); + box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15); } .PostCard--Image { @@ -10,16 +22,15 @@ height: 15rem; } +.PostCard--Title { + margin: 0; +} + +.PostCard--Content { + padding: 0 2.5rem 2.5rem; +} + .PostCard--Category { font-size: 1rem; text-align: right; } - -.PostCard--Content { - margin: 0 auto; - width: 90%; -} - -.PostCard--Title { - margin: 2rem 0; -} diff --git a/src/components/PostCategoriesNav.css b/src/components/PostCategoriesNav.css index 86580ae..a9ac3a6 100644 --- a/src/components/PostCategoriesNav.css +++ b/src/components/PostCategoriesNav.css @@ -1,5 +1,5 @@ .PostCategoriesNav { - margin: 4rem 0; + margin: 2rem 0; display: flex; align-items: center; justify-content: flex-start; diff --git a/src/components/PostSection.css b/src/components/PostSection.css index ff1f1eb..20e3674 100644 --- a/src/components/PostSection.css +++ b/src/components/PostSection.css @@ -1,3 +1,6 @@ +.PostSection { + padding: 2rem 0; +} .PostSection .PostCard { width: calc(33.33% - 4rem); } @@ -7,6 +10,7 @@ align-items: flex-start; justify-content: center; flex-wrap: wrap; + align-items: stretch; } @supports (display: grid) { diff --git a/src/components/PostSection.js b/src/components/PostSection.js index b082323..380b1d1 100644 --- a/src/components/PostSection.js +++ b/src/components/PostSection.js @@ -34,7 +34,7 @@ class PostSection extends React.Component { .slice(0, limit || posts.length) return ( -
+
{title &&

{title}

} {!!visiblePosts.length && ( @@ -46,12 +46,12 @@ class PostSection extends React.Component { )} {showLoadMore && visiblePosts.length < posts.length && ( -
- -
- )} +
+ +
+ )}
) diff --git a/src/globalStyles.css b/src/globalStyles.css index d715849..3ab9b81 100644 --- a/src/globalStyles.css +++ b/src/globalStyles.css @@ -1,9 +1,10 @@ :root { - --primary: #ff3d3d; - --primary-light: #ff6f6f; + --primary: #0984d2; + --primary-light: #6fadff; --secondary: #212121; --lightGrey: whitesmoke; --midGrey: #cacaca; + --darkGrey: #272727; --danger: #ff3d3d; --font-primary: 'Open Sans', sans-serif; --font-system: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', @@ -26,18 +27,12 @@ body { background: white; color: var(--secondary); font-size: 1.6em; - font-weight: 300; + font-weight: 400; letter-spacing: 0.01em; line-height: 1.6; -webkit-font-smoothing: antialiased; } -*, -*:before, -*:after { - box-sizing: border-box; -} - a { color: var(--primary); } @@ -140,13 +135,13 @@ blockquote { .section { width: 100%; - padding: 5rem 0; + padding: 7.5rem 0; } .section.thick { padding: 10rem 0; } .section.thin { - padding: 2.5rem 0; + padding: 3.5rem 0; } .section.noPadding { padding: 0; @@ -171,11 +166,11 @@ blockquote { color: white; text-transform: uppercase; text-decoration: none; - font-weight: 400; - letter-spacing: 0.15em; + font-weight: 700; + letter-spacing: 0.05em; font-size: 1.4rem; display: inline-block; - padding: 1rem 2rem; + padding: 1.25rem 3rem; border: none; transition: all 0.2s ease; cursor: pointer; diff --git a/src/index.js b/src/index.js index 55be430..5821e49 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ import 'core-js/es6' import React from 'react' import { render } from 'react-snapshot' -import 'normalize.css' +import 'modern-normalize/modern-normalize.css' import './globalStyles.css' import App from './App' import registerServiceWorker, { unregister } from './registerServiceWorker' diff --git a/src/views/About.js b/src/views/About.js index d40de37..67e9801 100644 --- a/src/views/About.js +++ b/src/views/About.js @@ -6,27 +6,30 @@ import LazyImage from '../components/LazyImage' import Content from '../components/Content.js' import './About.css' -export default ({ page }) => ( -
- - {page.title} - - -
-
- +export default ({ page }) => { + const { title, subtitle, featuredImage, section1, section2 } = page + return ( +
+ + {title} + + +
+
+ +
+
+
+
+ +

The image below is a {''}

+ +
-
-
- -

The image below is a {''}

- -
-
-
-) + ) +} diff --git a/src/views/Blog.js b/src/views/Blog.js index 6737d18..38df724 100644 --- a/src/views/Blog.js +++ b/src/views/Blog.js @@ -8,17 +8,30 @@ import PostSection from '../components/PostSection' import './Blog.css' -export default ({ page, posts, postCategories, showFeatured = true }) => { +export default ({ + page, + posts = [], + postCategories = [], + showFeatured = true +}) => { + const { title, subtitle, featuredImage } = page posts = _sortBy(posts, ['date']).reverse() return (
- Blog + {title} - - + + + {!!postCategories.length && ( + + )} {!!posts.length && }
) diff --git a/src/views/Contact.css b/src/views/Contact.css index a5c31ad..fc57605 100644 --- a/src/views/Contact.css +++ b/src/views/Contact.css @@ -1,2 +1,38 @@ .Contact { } + +.Contact--Details { + margin-top: 3rem; +} + +.Contact--Details--Item { + display: flex; + padding: 2rem 0; + border-top: 1px solid var(--lightGrey); + font-weight: 500; + text-decoration: none; + color: inherit; + transition: color 0.2s ease-in-out; +} + +.Contact--Details--Item:hover, +.Contact--Details--Item:focus { + color: var(--primary); +} + +.Contact--Details--Item svg { + margin-right: 1.5rem; + color: var(--primary); +} + +@media (min-width: 750px) { + .Contact--Section1--Container { + display: flex; + justify-content: space-between; + align-items: flex-start; + } + + .Contact--Section1--Container > * { + width: calc(50% - 2rem); + } +} diff --git a/src/views/Contact.js b/src/views/Contact.js index 50b2bbf..102405c 100644 --- a/src/views/Contact.js +++ b/src/views/Contact.js @@ -1,35 +1,61 @@ import React from 'react' import Helmet from 'react-helmet' +import { MapPin, Smartphone, Mail } from 'react-feather' import PageHeader from '../components/PageHeader' -import EnquiryFormControlled from '../components/EnquiryFormControlled' -import EnquiryFormSimple from '../components/EnquiryFormSimple' import EnquiryFormSimpleAjax from '../components/EnquiryFormSimpleAjax' import Content from '../components/Content' import './Contact.css' -export default ({ page, siteTitle }) => ( -
- -
-
- -

{''}

- -
-

{''}

- -
-

{''}

- -
- Note: these will only work when deployed on Netlify -
- Also, they are active and I will receive submissions 😉 +export default ({ page }) => { + const { title, subtitle, featuredImage, address, phone, email } = page + return ( +
+ + {page.title} + + + + +
+
+
+ + +
+ {address && ( + + {address} + + )} + {phone && ( + + {phone} + + )} + {email && ( + + {email} + + )} +
+
+ +
+ +
+
- - {page.title} - -
-) + ) +} diff --git a/src/views/Home.js b/src/views/Home.js index 84eb4cb..a90f9c3 100644 --- a/src/views/Home.js +++ b/src/views/Home.js @@ -6,18 +6,23 @@ import PageHeader from '../components/PageHeader' import './Home.css' export default ({ page }) => { - const { title, subtitle, body } = page + const { title, subtitle, featuredImage, body } = page return (
- -
+ + {title} + + +
- - {title} -
) } diff --git a/src/views/SinglePost.css b/src/views/SinglePost.css index 4893214..d08fce0 100644 --- a/src/views/SinglePost.css +++ b/src/views/SinglePost.css @@ -5,6 +5,27 @@ height: 50rem; } +.SinglePost--BackButton { + color: white; + position: relative; + display: flex; + align-items: center; + font-weight: 600; + text-decoration: none; + letter-spacing: 0.1em; +} + +.SinglePost--BackButton svg { + transition: transform 0.2s ease-out; + transform: translateX(0); + height: 1.2em; +} + +.SinglePost--BackButton:hover svg, +.SinglePost--BackButton:focus svg { + transform: translateX(-0.25em); +} + .SinglePost--Content { background: white; margin-top: 30rem; @@ -43,10 +64,19 @@ } .SinglePost--Pagination { - margin: 6rem 0 0 0; + margin: 4rem 0 0 0; + display: flex; + align-items: center; + justify-content: space-between; } .SinglePost--Pagination--Link { text-transform: uppercase; font-size: 1.2rem; + font-weight: 600; + text-decoration: none; +} + +.SinglePost--Pagination--Link.next { + margin-left: auto; } diff --git a/src/views/SinglePost.js b/src/views/SinglePost.js index 89b4b3d..d221f7a 100644 --- a/src/views/SinglePost.js +++ b/src/views/SinglePost.js @@ -1,6 +1,7 @@ import React from 'react' import Helmet from 'react-helmet' import { Link } from 'react-router-dom' +import { ChevronLeft } from 'react-feather' import Content from '../components/Content' import BackgroundImage from '../components/BackgroundImage' @@ -9,12 +10,13 @@ import { dateFormatted } from '../util/date' import './SinglePost.css' export default ({ singlePost, nextPostURL, prevPostURL }) => { - const { body, categories, postFeaturedImage, title, date } = singlePost + const { title, date, postFeaturedImage, body, categories = [] } = singlePost return (
{title} + {postFeaturedImage && ( { )}
+ + BACK +
- {!!categories && + {!!categories.length && categories.map(obj => ( {obj.category} @@ -45,15 +50,21 @@ export default ({ singlePost, nextPostURL, prevPostURL }) => {
-
- {nextPostURL && ( - - Next Post +
+ {prevPostURL && ( + + Previous Post )} - {prevPostURL && ( - - Previous Post + {nextPostURL && ( + + Next Post )}
diff --git a/yarn.lock b/yarn.lock index f372c0d..039a394 100644 --- a/yarn.lock +++ b/yarn.lock @@ -164,41 +164,16 @@ lodash "^4.17.4" "@researchgate/react-intersection-observer@^0.7.0": - version "0.7.0" - resolved "https://registry.yarnpkg.com/@researchgate/react-intersection-observer/-/react-intersection-observer-0.7.0.tgz#84d742d1f03d333af9791effafbd8c694ad156f6" + version "0.7.2" + resolved "https://registry.yarnpkg.com/@researchgate/react-intersection-observer/-/react-intersection-observer-0.7.2.tgz#8b48596b82e2c380f452938c03003c19e32d7a48" dependencies: - "@storybook/addon-knobs" "^3.4.4" invariant "^2.2.2" prop-types "^15.6.0" - -"@storybook/addon-knobs@^3.4.4": - version "3.4.4" - resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-3.4.4.tgz#96043d68ac382084a9e9d208a084fe58e968377f" - dependencies: - "@storybook/components" "3.4.4" - babel-runtime "^6.26.0" - deep-equal "^1.0.1" - global "^4.3.2" - insert-css "^2.0.0" - lodash.debounce "^4.0.8" - moment "^2.21.0" - prop-types "^15.6.1" - react-color "^2.14.0" - react-datetime "^2.14.0" - react-textarea-autosize "^5.2.1" - util-deprecate "^1.0.2" - -"@storybook/components@3.4.4": - version "3.4.4" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-3.4.4.tgz#272bcbdb2ac28583de049f75352f9eec76835641" - dependencies: - glamor "^2.20.40" - glamorous "^4.12.1" - prop-types "^15.6.1" + warning "^3.0.0" "@types/node@*": - version "10.1.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-10.1.0.tgz#2783ee1b6c47cbd4044f4a233976c1ac5fa9e942" + version "10.3.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.0.tgz#078516315a84d56216b5d4fed8f75d59d3b16cac" abab@^1.0.3: version "1.0.4" @@ -242,8 +217,8 @@ acorn@^4.0.3, acorn@^4.0.4: resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" acorn@^5.0.0, acorn@^5.5.0: - version "5.5.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" + version "5.6.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.6.0.tgz#572bedb377a1c61b7a289e72b8c5cfeb7baaf0bf" address@1.0.3, address@^1.0.1: version "1.0.3" @@ -341,14 +316,6 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" -aos@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/aos/-/aos-2.2.0.tgz#e388a873324c99e5dae0c5169226d1163dee5135" - dependencies: - classlist-polyfill "^1.0.3" - lodash.debounce "^4.0.6" - lodash.throttle "^4.0.1" - append-transform@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" @@ -360,8 +327,8 @@ aproba@^1.0.3: resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" are-we-there-yet@~1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" dependencies: delegates "^1.0.0" readable-stream "^2.0.6" @@ -501,10 +468,10 @@ async@^1.4.0, async@^1.5.2: resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" async@^2.1.2, async@^2.1.4, async@^2.4.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" + version "2.6.1" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" dependencies: - lodash "^4.14.0" + lodash "^4.17.10" asynckit@^0.4.0: version "0.4.0" @@ -1342,22 +1309,6 @@ boolbase@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" -boom@4.x.x: - version "4.3.1" - resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" - dependencies: - hoek "4.x.x" - -boom@5.x.x: - version "5.2.0" - resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" - dependencies: - hoek "4.x.x" - -bowser@^1.7.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.9.3.tgz#6643ae4d783f31683f6d23156976b74183862162" - boxen@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" @@ -1400,10 +1351,6 @@ braces@^2.3.0, braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -brcast@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/brcast/-/brcast-3.0.1.tgz#6256a8349b20de9eed44257a9b24d71493cd48dd" - brorand@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" @@ -1492,24 +1439,24 @@ bser@^2.0.0: dependencies: node-int64 "^0.4.0" -buffer-alloc-unsafe@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz#ffe1f67551dd055737de253337bfe853dfab1a6a" +buffer-alloc-unsafe@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" buffer-alloc@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.1.0.tgz#05514d33bf1656d3540c684f65b1202e90eca303" + version "1.2.0" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" dependencies: - buffer-alloc-unsafe "^0.1.0" - buffer-fill "^0.1.0" + buffer-alloc-unsafe "^1.1.0" + buffer-fill "^1.0.0" -buffer-fill@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-0.1.1.tgz#76d825c4d6e50e06b7a31eb520c04d08cc235071" +buffer-fill@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" buffer-from@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" buffer-indexof@^1.0.0: version "1.1.1" @@ -1620,12 +1567,12 @@ caniuse-api@^2.0.0: lodash.uniq "^4.5.0" caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000841" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000841.tgz#dba400895990348e2de3b71795a50e837f13b3f6" + version "1.0.30000847" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000847.tgz#ff4072a5468809fec0ae9ac3b4035ef891e5b144" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000748, caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805: - version "1.0.30000841" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000841.tgz#200079f853ca2839cb80852348d09a551f92f70a" + version "1.0.30000847" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000847.tgz#be77f439be29bbc57ae08004b1e470b653b1ec1d" capture-stack-trace@^1.0.0: version "1.0.0" @@ -1790,10 +1737,6 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" -classlist-polyfill@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz#935bc2dfd9458a876b279617514638bcaa964a2e" - clean-css@4.1.x: version "4.1.11" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.11.tgz#2ecdf145aba38f54740f26cefd0ff3e03e125d6a" @@ -2078,8 +2021,8 @@ core-js@^1.0.0: resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" core-js@^2.4.0, core-js@^2.5.0, core-js@^2.5.3: - version "2.5.6" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" + version "2.5.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" @@ -2131,14 +2074,6 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -create-react-class@^15.5.2: - version "15.6.3" - resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" - dependencies: - fbjs "^0.8.9" - loose-envify "^1.3.1" - object-assign "^4.1.1" - cross-spawn@5.1.0, cross-spawn@^5.0.1, cross-spawn@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" @@ -2157,12 +2092,6 @@ cross-spawn@^6.0.4: shebang-command "^1.2.0" which "^1.2.9" -cryptiles@3.x.x: - version "3.1.2" - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" - dependencies: - boom "5.x.x" - crypto-browserify@^3.11.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" @@ -2214,13 +2143,6 @@ css-groups@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/css-groups/-/css-groups-0.1.1.tgz#532bc6dcb21ddcca6cd4109d02498fc98ffb04ef" -css-in-js-utils@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99" - dependencies: - hyphenate-style-name "^1.0.2" - isobject "^3.0.1" - css-loader@0.28.7: version "0.28.7" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b" @@ -2354,10 +2276,6 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": dependencies: cssom "0.3.x" -csstype@^2.2.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.5.2.tgz#4534308476ceede8fbe148b9b99f9baf1c80fa06" - currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -2430,10 +2348,14 @@ deep-equal@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" -deep-extend@^0.5.0, deep-extend@^0.5.1: +deep-extend@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" @@ -2634,10 +2556,6 @@ dom-urls@^1.1.0: dependencies: urijs "^1.16.1" -dom-walk@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" - domain-browser@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" @@ -2725,8 +2643,8 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.30: - version "1.3.47" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz#764e887ca9104d01a0ac8eabee7dfc0e2ce14104" + version "1.3.48" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" elliptic@^6.0.0: version "6.4.0" @@ -2790,8 +2708,8 @@ error-ex@^1.2.0, error-ex@^1.3.1: is-arrayish "^0.2.1" es-abstract@^1.4.3, es-abstract@^1.7.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" + version "1.12.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" dependencies: es-to-primitive "^1.1.1" function-bind "^1.1.1" @@ -2808,8 +2726,8 @@ es-to-primitive@^1.1.1: is-symbol "^1.0.1" es5-ext@^0.10.12, es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: - version "0.10.42" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.42.tgz#8c07dd33af04d5dcd1310b5cef13bea63a89ba8d" + version "0.10.44" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.44.tgz#7a877e994bb190aebd4718aa2d62784a12e2ca20" dependencies: es6-iterator "~2.0.3" es6-symbol "~3.1.1" @@ -2956,8 +2874,8 @@ eslint-plugin-import@2.8.0: read-pkg-up "^2.0.0" eslint-plugin-import@^2.7.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.11.0.tgz#15aeea37a67499d848e8e981806d4627b5503816" + version "2.12.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.12.0.tgz#dad31781292d6664b25317fd049d2e2b2f02205d" dependencies: contains-path "^0.1.0" debug "^2.6.8" @@ -3006,7 +2924,11 @@ eslint-plugin-node@^6.0.1, eslint-plugin-node@~6.0.0: resolve "^1.3.3" semver "^5.4.1" -eslint-plugin-promise@^3.5.0, eslint-plugin-promise@~3.7.0: +eslint-plugin-promise@^3.5.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621" + +eslint-plugin-promise@~3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" @@ -3434,10 +3356,6 @@ fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" -fast-memoize@^2.2.7: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fast-memoize/-/fast-memoize-2.3.2.tgz#f6b9eb8e06a754029cca25b4cd3945f2f6242c90" - fastparse@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" @@ -3466,7 +3384,7 @@ fb-watchman@^2.0.0: dependencies: bser "^2.0.0" -fbjs@^0.8.12, fbjs@^0.8.16, fbjs@^0.8.9: +fbjs@^0.8.16: version "0.8.16" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" dependencies: @@ -3607,8 +3525,8 @@ flatten@^1.0.2: resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" follow-redirects@^1.0.0, follow-redirects@^1.2.5: - version "1.4.1" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.4.1.tgz#d8120f4518190f55aac65bb6fc7b85fcd666d6aa" + version "1.5.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.0.tgz#234f49cf770b7f35b40e790f636ceba0c3a0ab77" dependencies: debug "^3.1.0" @@ -3660,7 +3578,7 @@ fs-constants@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" -fs-copy-file-sync@^1.0.1: +fs-copy-file-sync@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/fs-copy-file-sync/-/fs-copy-file-sync-1.1.1.tgz#11bf32c096c10d126e5f6b36d06eece776062918" @@ -3741,8 +3659,8 @@ gauge@~2.7.3: wide-align "^1.1.0" gaze@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" + version "1.1.3" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" dependencies: globule "^1.0.0" @@ -3784,29 +3702,6 @@ github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" -glamor@^2.20.40: - version "2.20.40" - resolved "https://registry.yarnpkg.com/glamor/-/glamor-2.20.40.tgz#f606660357b7cf18dface731ad1a2cfa93817f05" - dependencies: - fbjs "^0.8.12" - inline-style-prefixer "^3.0.6" - object-assign "^4.1.1" - prop-types "^15.5.10" - through "^2.3.8" - -glamorous@^4.12.1: - version "4.13.0" - resolved "https://registry.yarnpkg.com/glamorous/-/glamorous-4.13.0.tgz#4ac5cb05633aa49a0396d409f665dd9b614f1b5a" - dependencies: - brcast "^3.0.0" - csstype "^2.2.0" - fast-memoize "^2.2.7" - html-tag-names "^1.1.1" - is-function "^1.0.1" - is-plain-object "^2.0.4" - react-html-attributes "^1.4.2" - svg-tag-names "^1.1.0" - glob-base@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" @@ -3866,13 +3761,6 @@ global-prefix@^1.0.1: is-windows "^1.0.1" which "^1.2.14" -global@^4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" - dependencies: - min-document "^2.19.0" - process "~0.5.1" - globals@^11.0.1, globals@^11.1.0: version "11.5.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642" @@ -3914,11 +3802,11 @@ globby@^7.1.1: slash "^1.0.0" globule@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" + version "1.2.1" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" dependencies: glob "~7.1.1" - lodash "~4.17.4" + lodash "~4.17.10" minimatch "~3.0.2" got@^6.7.1: @@ -4058,15 +3946,6 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.0" -hawk@~6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" - dependencies: - boom "4.x.x" - cryptiles "3.x.x" - hoek "4.x.x" - sntp "2.x.x" - he@1.1.x: version "1.1.1" resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" @@ -4118,10 +3997,6 @@ hmac-drbg@^1.0.0: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" -hoek@4.x.x: - version "4.2.1" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" - hoist-non-react-statics@^2.3.0: version "2.5.0" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.0.tgz#d2ca2dfc19c5a91c5a6615ce8e564ef0347e2a40" @@ -4164,10 +4039,6 @@ html-comment-regex@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" -html-element-attributes@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/html-element-attributes/-/html-element-attributes-1.3.1.tgz#9fa6a2e37e6b61790a303e87ddbbb9746e8c035f" - html-encoding-sniffer@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" @@ -4179,8 +4050,8 @@ html-entities@^1.2.0: resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" html-minifier@^3.2.3: - version "3.5.15" - resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.15.tgz#f869848d4543cbfd84f26d5514a2a87cbf9a05e0" + version "3.5.16" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.16.tgz#39f5aabaf78bdfc057fe67334226efd7f3851175" dependencies: camel-case "3.0.x" clean-css "4.1.x" @@ -4190,10 +4061,6 @@ html-minifier@^3.2.3: relateurl "0.2.x" uglify-js "3.3.x" -html-tag-names@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/html-tag-names/-/html-tag-names-1.1.3.tgz#f81f75e59d626cb8a958a19e58f90c1d69707b82" - html-tags@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" @@ -4252,8 +4119,8 @@ http-errors@~1.6.2: statuses ">= 1.4.0 < 2" http-parser-js@>=0.4.0: - version "0.4.12" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.12.tgz#b9cfbf4a2cf26f0fc34b10ca1489a27771e3474f" + version "0.4.13" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" http-proxy-middleware@^0.17.4, http-proxy-middleware@~0.17.4: version "0.17.4" @@ -4284,10 +4151,6 @@ https-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" -hyphenate-style-name@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.2.tgz#31160a36930adaf1fc04c6074f7eb41465d4ec4b" - iconv-lite@0.4.19: version "0.4.19" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" @@ -4374,13 +4237,6 @@ ini@^1.3.4, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" -inline-style-prefixer@^3.0.6: - version "3.0.8" - resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz#8551b8e5b4d573244e66a34b04f7d32076a2b534" - dependencies: - bowser "^1.7.3" - css-in-js-utils "^2.0.0" - inquirer@3.3.0, inquirer@^3.0.6: version "3.3.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" @@ -4400,10 +4256,6 @@ inquirer@3.3.0, inquirer@^3.0.6: strip-ansi "^4.0.0" through "^2.3.6" -insert-css@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/insert-css/-/insert-css-2.0.0.tgz#eb5d1097b7542f4c79ea3060d3aee07d053880f4" - internal-ip@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" @@ -4591,10 +4443,6 @@ is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" -is-function@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" - is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" @@ -4848,8 +4696,8 @@ istanbul-lib-source-maps@^1.1.0: source-map "^0.5.3" istanbul-lib-source-maps@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" + version "1.2.5" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" dependencies: debug "^3.1.0" istanbul-lib-coverage "^1.2.0" @@ -5075,8 +4923,8 @@ jest@20.0.4: jest-cli "^20.0.4" js-base64@^2.1.9: - version "2.4.3" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582" + version "2.4.5" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.5.tgz#e293cd3c7c82f070d700fc7a1ca0a2e69f101f92" js-beautify@^1.7.4: version "1.7.5" @@ -5376,10 +5224,6 @@ lodash.cond@^4.3.0: version "4.5.2" resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" -lodash.debounce@^4.0.6, lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - lodash.defaults@^4.0.1, lodash.defaults@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" @@ -5437,10 +5281,6 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "~3.0.0" -lodash.throttle@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" - lodash.unescape@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" @@ -5449,7 +5289,7 @@ lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" -"lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4: +"lodash@>=3.5 <5", lodash@^4.1.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.10: version "4.17.10" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" @@ -5525,10 +5365,6 @@ lru-queue@0.1: dependencies: es5-ext "~0.10.2" -macaddress@^0.2.8: - version "0.2.8" - resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" - make-dir@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" @@ -5567,10 +5403,6 @@ matches-selector@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/matches-selector/-/matches-selector-1.2.0.tgz#d1814e7e8f43e69d22ac33c9af727dc884ecf12a" -material-colors@^1.2.1: - version "1.2.5" - resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.5.tgz#5292593e6754cb1bcc2b98030e4e0d6a3afc9ea1" - math-expression-evaluator@^1.2.14: version "1.2.17" resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" @@ -5728,12 +5560,6 @@ mimic-response@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e" -min-document@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" - dependencies: - dom-walk "^0.1.0" - minimalistic-assert@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" @@ -5766,11 +5592,11 @@ minimist@~0.0.1: version "0.0.10" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" -minipass@^2.2.1, minipass@^2.2.4: - version "2.3.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.0.tgz#2e11b1c46df7fe7f1afbe9a490280add21ffe384" +minipass@^2.2.1, minipass@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" dependencies: - safe-buffer "^5.1.1" + safe-buffer "^5.1.2" yallist "^3.0.0" minizlib@^1.1.0: @@ -5792,9 +5618,9 @@ mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@ dependencies: minimist "0.0.8" -moment@^2.21.0: - version "2.22.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.22.1.tgz#529a2e9bf973f259c9643d237fda84de3a26e8ad" +modern-normalize@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-0.4.0.tgz#1ccbc52861e1bce258144d28e890dc709b120ed2" moveto@^1.7.1: version "1.7.3" @@ -5996,10 +5822,6 @@ normalize-url@^1.4.0: query-string "^4.1.0" sort-keys "^1.0.0" -normalize.css@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.0.tgz#14ac5e461612538a4ce9be90a7da23f86e718493" - npm-bundled@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" @@ -6066,10 +5888,6 @@ object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^ version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" -object-assign@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" - object-copy@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" @@ -6713,11 +6531,10 @@ postcss-email-important@^1.0.0: postcss "^6.0.11" postcss-filter-plugins@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" + version "2.0.3" + resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec" dependencies: postcss "^5.0.4" - uniqid "^4.0.0" postcss-flexbugs-fixes@3.2.0: version "3.2.0" @@ -7123,9 +6940,9 @@ postcss@^6.0, postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.10, postcss@^6.0.11, source-map "^0.6.1" supports-color "^5.4.0" -prebuild-install@^2.5.3: - version "2.5.3" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-2.5.3.tgz#9f65f242782d370296353710e9bc843490c19f69" +prebuild-install@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-4.0.0.tgz#206ce8106ce5efa4b6cf062fc8a0a7d93c17f3a8" dependencies: detect-libc "^1.0.3" expand-template "^1.0.2" @@ -7189,10 +7006,6 @@ process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" -process@~0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" - progress@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" @@ -7209,7 +7022,7 @@ promise@^7.1.1: dependencies: asap "~2.0.3" -prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, prop-types@^15.6.0, prop-types@^15.6.1: +prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.0, prop-types@^15.6.1: version "15.6.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" dependencies: @@ -7275,8 +7088,8 @@ punycode@^1.2.4, punycode@^1.4.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" punycode@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" q@^1.1.2: version "1.5.1" @@ -7354,33 +7167,14 @@ raw-body@2.3.2: unpipe "1.0.0" rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" dependencies: - deep-extend "^0.5.1" + deep-extend "^0.6.0" ini "~1.3.0" minimist "^1.2.0" strip-json-comments "~2.0.1" -react-color@^2.14.0: - version "2.14.1" - resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.14.1.tgz#db8ad4f45d81e74896fc2e1c99508927c6d084e0" - dependencies: - lodash "^4.0.1" - material-colors "^1.2.1" - prop-types "^15.5.10" - reactcss "^1.2.0" - tinycolor2 "^1.4.1" - -react-datetime@^2.14.0: - version "2.14.0" - resolved "https://registry.yarnpkg.com/react-datetime/-/react-datetime-2.14.0.tgz#c7859c5b765275d7980f1cca27c03a727ff9ccef" - dependencies: - create-react-class "^15.5.2" - object-assign "^3.0.0" - prop-types "^15.5.7" - react-onclickoutside "^6.5.0" - react-dev-utils@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-5.0.1.tgz#1f396e161fe44b595db1b186a40067289bf06613" @@ -7405,8 +7199,8 @@ react-dev-utils@^5.0.1: text-table "0.2.0" react-dom@^16.0.0: - version "16.3.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.3.2.tgz#cb90f107e09536d683d84ed5d4888e9640e0e4df" + version "16.4.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.4.0.tgz#099f067dd5827ce36a29eaf9a6cdc7cbf6216b1e" dependencies: fbjs "^0.8.16" loose-envify "^1.1.0" @@ -7417,6 +7211,10 @@ react-error-overlay@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-4.0.0.tgz#d198408a85b4070937a98667f500c832f86bd5d4" +react-feather@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/react-feather/-/react-feather-1.1.0.tgz#f0aa692497de952237ca1f3b118ebcb5427152e1" + react-helmet@^5.1.3: version "5.2.0" resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-5.2.0.tgz#a81811df21313a6d55c5f058c4aeba5d6f3d97a7" @@ -7426,12 +7224,6 @@ react-helmet@^5.1.3: prop-types "^15.5.4" react-side-effect "^1.1.0" -react-html-attributes@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/react-html-attributes/-/react-html-attributes-1.4.2.tgz#0d2ccf134fc79b2d3543837dc1591d32b7b903f9" - dependencies: - html-element-attributes "^1.0.0" - react-markdown@3: version "3.3.2" resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-3.3.2.tgz#35d305e8a29b640717b9dac4658a1caeafd44c94" @@ -7442,10 +7234,6 @@ react-markdown@3: unist-util-visit "^1.3.0" xtend "^4.0.1" -react-onclickoutside@^6.5.0: - version "6.7.1" - resolved "https://registry.yarnpkg.com/react-onclickoutside/-/react-onclickoutside-6.7.1.tgz#6a5b5b8b4eae6b776259712c89c8a2b36b17be93" - react-router-dom@^4.1.1: version "4.2.2" resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.2.2.tgz#c8a81df3adc58bba8a76782e946cbd4eae649b8d" @@ -7533,27 +7321,15 @@ react-snapshot@^1.1.0: mkdirp "^0.5.1" safe-commander "^2.11.1" -react-textarea-autosize@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-5.2.1.tgz#2b78f9067180f41b08ac59f78f1581abadd61e54" - dependencies: - prop-types "^15.6.0" - react@^16.0.0: - version "16.3.2" - resolved "https://registry.yarnpkg.com/react/-/react-16.3.2.tgz#fdc8420398533a1e58872f59091b272ce2f91ea9" + version "16.4.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.4.0.tgz#402c2db83335336fba1962c08b98c6272617d585" dependencies: fbjs "^0.8.16" loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.0" -reactcss@^1.2.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/reactcss/-/reactcss-1.2.3.tgz#c00013875e557b1cf0dfd9a368a1c3dab3b548dd" - dependencies: - lodash "^4.0.1" - read-cache@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" @@ -7811,8 +7587,8 @@ replace-ext@1.0.0: resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" request@^2.78.0, request@^2.79.0: - version "2.86.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.86.0.tgz#2b9497f449b0a32654c081a5cf426bbfb5bf5b69" + version "2.87.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" dependencies: aws-sign2 "~0.7.0" aws4 "^1.6.0" @@ -7822,7 +7598,6 @@ request@^2.78.0, request@^2.79.0: forever-agent "~0.6.1" form-data "~2.3.1" har-validator "~5.0.3" - hawk "~6.0.2" http-signature "~1.2.0" is-typedarray "~1.0.0" isstream "~0.1.2" @@ -7924,8 +7699,8 @@ rgb-regex@^1.0.1: resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" rgb2hex@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.0.tgz#ccd55f860ae0c5c4ea37504b958e442d8d12325b" + version "0.1.1" + resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.1.tgz#81abc922b60e9087a42c3e1ce20bf62d2359e400" rgb@~0.1.0: version "0.1.0" @@ -8171,18 +7946,18 @@ shallowequal@^1.0.1: resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.0.2.tgz#1561dbdefb8c01408100319085764da3fcf83f8f" sharp@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.20.2.tgz#f2c8a9a33e83352fa5915eb4936cc817ef0ce6d0" + version "0.20.3" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.20.3.tgz#315cbd44c36a0c403433a5d7b50bcbdf81b0ede0" dependencies: color "^3.0.0" detect-libc "^1.0.3" - fs-copy-file-sync "^1.0.1" + fs-copy-file-sync "^1.1.1" nan "^2.10.0" npmlog "^4.1.2" - prebuild-install "^2.5.3" + prebuild-install "^4.0.0" semver "^5.5.0" simple-get "^2.8.1" - tar "^4.4.1" + tar "^4.4.4" tunnel-agent "^0.6.0" shebang-command@^1.2.0: @@ -8294,12 +8069,6 @@ snazzy@^7.0.0: strip-ansi "^4.0.0" text-table "^0.2.0" -sntp@2.x.x: - version "2.1.0" - resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" - dependencies: - hoek "4.x.x" - sockjs-client@1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" @@ -8447,8 +8216,8 @@ standard-engine@~8.0.0: pkg-conf "^2.0.0" standard-json@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.2.tgz#82dea4a14c78cd9e35d38cde4b88ac6b62596a23" + version "1.0.3" + resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.3.tgz#5b5b21d9418810dc5644c113d5163541dcd8faa6" dependencies: concat-stream "^1.5.0" @@ -8530,7 +8299,7 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" dependencies: @@ -8644,10 +8413,6 @@ supports-color@^5.3.0, supports-color@^5.4.0: dependencies: has-flag "^3.0.0" -svg-tag-names@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/svg-tag-names/-/svg-tag-names-1.1.1.tgz#9641b29ef71025ee094c7043f7cdde7d99fbd50a" - svgo@^0.7.0: version "0.7.2" resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" @@ -8741,13 +8506,13 @@ tar-stream@^1.1.2: to-buffer "^1.1.0" xtend "^4.0.0" -tar@^4, tar@^4.4.1: - version "4.4.2" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462" +tar@^4, tar@^4.4.4: + version "4.4.4" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" dependencies: chownr "^1.0.1" fs-minipass "^1.2.5" - minipass "^2.2.4" + minipass "^2.3.3" minizlib "^1.1.0" mkdirp "^0.5.0" safe-buffer "^5.1.2" @@ -8777,7 +8542,7 @@ throat@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" -through@2, through@^2.3.6, through@^2.3.8, through@~2.3, through@~2.3.1: +through@2, through@^2.3.6, through@~2.3, through@~2.3.1: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -8808,10 +8573,6 @@ timsort@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" -tinycolor2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8" - tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" @@ -8930,8 +8691,8 @@ ua-parser-js@^0.7.9: resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" uglify-js@3.3.x, uglify-js@^3.0.13: - version "3.3.25" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.25.tgz#3266ccb87c5bea229f69041a0296010d6477d539" + version "3.3.28" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.28.tgz#0efb9a13850e11303361c1051f64d2ec68d9be06" dependencies: commander "~2.15.0" source-map "~0.6.1" @@ -8992,12 +8753,6 @@ uniq@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" -uniqid@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" - dependencies: - macaddress "^0.2.8" - uniqs@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" @@ -9078,8 +8833,8 @@ upper-case@^1.1.1: resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" uri-js@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.1.tgz#4595a80a51f356164e22970df64c7abd6ade9850" + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" dependencies: punycode "^2.1.0" @@ -9132,7 +8887,7 @@ use@^3.1.0: dependencies: kind-of "^6.0.2" -util-deprecate@^1.0.2, util-deprecate@~1.0.1: +util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -9405,16 +9160,16 @@ which-pm-runs@^1.0.0: resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" dependencies: isexe "^2.0.0" wide-align@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" dependencies: - string-width "^1.0.2" + string-width "^1.0.2 || 2" widest-line@^2.0.0: version "2.0.0"