diff --git a/packages/demo/CHANGELOG.md b/packages/demo/CHANGELOG.md index 3f688a4149..8e733a89df 100644 --- a/packages/demo/CHANGELOG.md +++ b/packages/demo/CHANGELOG.md @@ -5,18 +5,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [5.13.0](https://github.com/coveo/react-vapor/compare/v5.12.1...v5.13.0) (2020-02-21) - ### Features -* **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) - - - - +- **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) # [5.12.0](https://github.com/coveo/react-vapor/compare/v5.11.0...v5.12.0) (2020-02-20) - ### Features -* **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) +- **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) diff --git a/packages/demo/src/styles/Menu.tsx b/packages/demo/src/styles/Menu.tsx index 9db5f5c39e..bfac47b1bc 100644 --- a/packages/demo/src/styles/Menu.tsx +++ b/packages/demo/src/styles/Menu.tsx @@ -56,12 +56,6 @@ const Navigation: React.FunctionComponent = () => ( - - - - - - diff --git a/packages/demo/src/styles/form-layouts/FormChild.tsx b/packages/demo/src/styles/form-layouts/FormChild.tsx deleted file mode 100644 index a8058d33a3..0000000000 --- a/packages/demo/src/styles/form-layouts/FormChild.tsx +++ /dev/null @@ -1,132 +0,0 @@ -import * as React from 'react'; - -import {Svg} from 'react-vapor'; -import VaporComponent from '../../demo-building-blocs/VaporComponent'; - -export const FormChild = () => ( - -
-
- - -
-
- - -
-
-
-
-
-
-
- A radio-select -
-
- - -
-
- - -
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-); - -export default FormChild; diff --git a/packages/demo/src/styles/form-layouts/FormChildSection.tsx b/packages/demo/src/styles/form-layouts/FormChildSection.tsx deleted file mode 100644 index 3ce759aaf1..0000000000 --- a/packages/demo/src/styles/form-layouts/FormChildSection.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import * as React from 'react'; - -import VaporComponent from '../../demo-building-blocs/VaporComponent'; - -export const FormChildSection = () => ( - -
-
-
-
- Default Option - -
-
-
-
-
- Default Option - -
-
-
- - -
-
-
- -
-
-
- Default Option - -
-
-
-
- - -
-
- - -
-
-
-
-
-); - -export default FormChildSection; diff --git a/packages/demo/src/styles/form-layouts/FormGroups.tsx b/packages/demo/src/styles/form-layouts/FormGroups.tsx deleted file mode 100644 index 90afe31899..0000000000 --- a/packages/demo/src/styles/form-layouts/FormGroups.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import * as React from 'react'; - -import VaporComponent from '../../demo-building-blocs/VaporComponent'; - -export const FormGroups = () => ( - -
-
- {/* fieldset tag is optional, you can use a simple div */} - - -
-
- - -
-
- - -
-
-
-); - -export default FormGroups; diff --git a/packages/demo/src/styles/form-layouts/SplitLayout.tsx b/packages/demo/src/styles/form-layouts/SplitLayout.tsx deleted file mode 100644 index d5b1deea31..0000000000 --- a/packages/demo/src/styles/form-layouts/SplitLayout.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import * as React from 'react'; - -import VaporComponent from '../../demo-building-blocs/VaporComponent'; - -export const SplitLayout = () => ( - -
-
-
-

- Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque - laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto - beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut - odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. - Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, - sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat - voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit - laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui - in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat - quo voluptas nulla pariatur? -

-
-
-
    -
  • - -
    -

    Lorem ipsum dolor sit amet.

    -
    -
  • -
  • - -
    -
    -
    - - -
    -
    - - -
    -
    -
    -
  • -
-
-
-
-
-); - -export default SplitLayout; diff --git a/packages/demo/src/styles/form-layouts/index.tsx b/packages/demo/src/styles/form-layouts/index.tsx deleted file mode 100644 index 9a0ba50fde..0000000000 --- a/packages/demo/src/styles/form-layouts/index.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import * as React from 'react'; -import {Redirect, Route, RouteComponentProps} from 'react-router-dom'; - -import FormChild from './FormChild'; -import FormChildSection from './FormChildSection'; -import FormGroups from './FormGroups'; -import SplitLayout from './SplitLayout'; - -const FormLayout: React.FunctionComponent = ({match}) => { - return ( - <> - - - - - } /> - - ); -}; - -export default FormLayout; diff --git a/packages/demo/src/styles/index.tsx b/packages/demo/src/styles/index.tsx index 21800bf670..396f389a08 100644 --- a/packages/demo/src/styles/index.tsx +++ b/packages/demo/src/styles/index.tsx @@ -6,7 +6,6 @@ import Colors from './colors'; import Components from './components'; import Filtering from './filtering'; import FormControls from './form'; -import FormLayout from './form-layouts'; import GeneralGuidelines from './general-guidelines'; import Headers from './headers'; import Icons from './icons'; @@ -30,7 +29,6 @@ const Styles: React.FunctionComponent = ({match}) => { - diff --git a/packages/react-vapor/CHANGELOG.md b/packages/react-vapor/CHANGELOG.md index cd14436d96..cb05d34bfb 100644 --- a/packages/react-vapor/CHANGELOG.md +++ b/packages/react-vapor/CHANGELOG.md @@ -5,61 +5,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [5.13.0](https://github.com/coveo/react-vapor/compare/v5.12.1...v5.13.0) (2020-02-21) - ### Features -* **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) - - - - +- **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) ## [5.12.1](https://github.com/coveo/react-vapor/compare/v5.12.0...v5.12.1) (2020-02-20) **Note:** Version bump only for package react-vapor - - - - # [5.12.0](https://github.com/coveo/react-vapor/compare/v5.11.0...v5.12.0) (2020-02-20) - ### Features -* **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) - - - - +- **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) # [5.11.0](https://github.com/coveo/react-vapor/compare/v5.10.1...v5.11.0) (2020-02-20) - ### Features -* **blankslate:** add classname props ([#1449](https://github.com/coveo/react-vapor/issues/1449)) ([b1f40e9](https://github.com/coveo/react-vapor/commit/b1f40e9b04bb2ddc55cbc20adfcc4cd3e8ae0c66)) - - - - +- **blankslate:** add classname props ([#1449](https://github.com/coveo/react-vapor/issues/1449)) ([b1f40e9](https://github.com/coveo/react-vapor/commit/b1f40e9b04bb2ddc55cbc20adfcc4cd3e8ae0c66)) ## [5.10.1](https://github.com/coveo/react-vapor/compare/v5.10.0...v5.10.1) (2020-02-20) **Note:** Version bump only for package react-vapor - - - - # [5.10.0](https://github.com/coveo/react-vapor/compare/v5.9.0...v5.10.0) (2020-02-19) **Note:** Version bump only for package react-vapor - - - - # [5.9.0](https://github.com/coveo/react-vapor/compare/v5.8.0...v5.9.0) (2020-02-19) ### Features diff --git a/packages/vapor/CHANGELOG.md b/packages/vapor/CHANGELOG.md index 97a7844fae..d61963c063 100644 --- a/packages/vapor/CHANGELOG.md +++ b/packages/vapor/CHANGELOG.md @@ -5,44 +5,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline # [5.13.0](https://github.com/coveo/react-vapor/compare/v5.12.1...v5.13.0) (2020-02-21) - ### Features -* **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) - - - - +- **demo:** move all example files into the demo package ([ec3b532](https://github.com/coveo/react-vapor/commit/ec3b532f85e8586f32f4e44f52aa25d33c1a14ce)) ## [5.12.1](https://github.com/coveo/react-vapor/compare/v5.12.0...v5.12.1) (2020-02-20) **Note:** Version bump only for package coveo-styleguide - - - - # [5.12.0](https://github.com/coveo/react-vapor/compare/v5.11.0...v5.12.0) (2020-02-20) - ### Features -* **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) - - - - +- **demo:** create the new package with a minimalistic demo ([617f29d](https://github.com/coveo/react-vapor/commit/617f29d6ce835b7f7d22e805a82251f3f320bbcc)) # [5.10.0](https://github.com/coveo/react-vapor/compare/v5.9.0...v5.10.0) (2020-02-19) - ### Features -* readded setto ([dbfcdd2](https://github.com/coveo/react-vapor/commit/dbfcdd273702e8cea98b2773f454cedb32e45b5b)) - - - - +- readded setto ([dbfcdd2](https://github.com/coveo/react-vapor/commit/dbfcdd273702e8cea98b2773f454cedb32e45b5b)) ## [5.7.1](https://github.com/coveo/react-vapor/compare/v5.7.0...v5.7.1) (2020-02-11)