From c8610f3557117207ee745d0284e5e1180bc27bb5 Mon Sep 17 00:00:00 2001 From: Asher Nguyen Date: Mon, 19 Aug 2019 10:53:41 +1000 Subject: [PATCH 1/3] added new icons --- packages/hooks/package.json | 22 ++++++++++++++++++++++ packages/icons/package.json | 3 ++- packages/icons/src/Compass.tsx | 19 +++++++++++++++++++ packages/icons/src/RobotVacuum.tsx | 22 ++++++++++++++++++++++ packages/icons/src/index.ts | 2 ++ 5 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 packages/hooks/package.json create mode 100644 packages/icons/src/Compass.tsx create mode 100644 packages/icons/src/RobotVacuum.tsx diff --git a/packages/hooks/package.json b/packages/hooks/package.json new file mode 100644 index 0000000..00e5809 --- /dev/null +++ b/packages/hooks/package.json @@ -0,0 +1,22 @@ +{ + "name": "@react-yuki/icons", + "version": "0.0.32", + "description": "A collection of React hooks", + "keywords": [ + "React", + "hooks" + ], + "main": "lib/index", + "types": "lib/index.d.ts", + "files": [ + "lib/**/*" + ], + "devDependencies": { + "typescript": "^3.5.2" + }, + "publishConfig": { + "access": "public" + }, + "author": "Asher Nguyen ", + "license": "MIT" +} diff --git a/packages/icons/package.json b/packages/icons/package.json index a4df8ee..3a91a25 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -12,7 +12,8 @@ "lib/**/*" ], "dependencies": { - "@react-yuki/ui": "^0.0.32" + "@react-yuki/ui": "^0.0.32", + "@react-yuki/hooks": "^0.0.32" }, "devDependencies": { "typescript": "^3.5.2" diff --git a/packages/icons/src/Compass.tsx b/packages/icons/src/Compass.tsx new file mode 100644 index 0000000..c6a5b59 --- /dev/null +++ b/packages/icons/src/Compass.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import withIcon from './utils/withIcons'; + +export default withIcon('Compass', ({ color }) => ( + + + + + + + + + + + + + + +)); diff --git a/packages/icons/src/RobotVacuum.tsx b/packages/icons/src/RobotVacuum.tsx new file mode 100644 index 0000000..a5c786a --- /dev/null +++ b/packages/icons/src/RobotVacuum.tsx @@ -0,0 +1,22 @@ +import React from 'react'; +import withIcon from './utils/withIcons'; + +export default withIcon('RobotVacuum', ({ color }) => ( + + + + + + + + + + + + + + + + + +)); diff --git a/packages/icons/src/index.ts b/packages/icons/src/index.ts index 9b0ffe0..a5ea8fc 100644 --- a/packages/icons/src/index.ts +++ b/packages/icons/src/index.ts @@ -39,6 +39,8 @@ export { default as User } from './User'; export { default as Spaceship } from './Spaceship'; export { default as Code } from './Code'; export { default as Copy } from './Copy'; +export { default as Compass } from './Compass'; +export { default as RobotVacuum } from './RobotVacuum'; // Social icons export { default as Codepen } from './Codepen'; From 7216f7bb2540f40d1d7f7dae1ecb402b69e4e248 Mon Sep 17 00:00:00 2001 From: Asher Nguyen Date: Mon, 19 Aug 2019 10:54:19 +1000 Subject: [PATCH 2/3] added new icons --- packages/hooks/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 00e5809..9402c2a 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,5 +1,5 @@ { - "name": "@react-yuki/icons", + "name": "@react-yuki/hooks", "version": "0.0.32", "description": "A collection of React hooks", "keywords": [ From e7a08dac809b9110a35a3a2f4cb7cef431cfd908 Mon Sep 17 00:00:00 2001 From: Asher Nguyen Date: Mon, 19 Aug 2019 10:54:38 +1000 Subject: [PATCH 3/3] v0.0.33 --- CHANGELOG.md | 8 ++++++++ lerna.json | 2 +- packages/hooks/CHANGELOG.md | 8 ++++++++ packages/hooks/package.json | 2 +- packages/icons/CHANGELOG.md | 8 ++++++++ packages/icons/package.json | 6 +++--- packages/ui/CHANGELOG.md | 8 ++++++++ packages/ui/package.json | 2 +- 8 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 packages/hooks/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index f6eb937..162e644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.33](https://github.com/kidjp85/react-yuki/compare/v0.0.32...v0.0.33) (2019-08-19) + +**Note:** Version bump only for package react-yuki + + + + + ## [0.0.32](https://github.com/kidjp85/react-yuki/compare/v0.0.31...v0.0.32) (2019-08-19) **Note:** Version bump only for package react-yuki diff --git a/lerna.json b/lerna.json index a3eab04..5631951 100644 --- a/lerna.json +++ b/lerna.json @@ -7,5 +7,5 @@ "access": "public", "npmClient": "yarn", "useWorkspaces": true, - "version": "0.0.32" + "version": "0.0.33" } diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md new file mode 100644 index 0000000..395f61f --- /dev/null +++ b/packages/hooks/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.0.33](https://github.com/kidjp85/react-yuki/compare/v0.0.32...v0.0.33) (2019-08-19) + +**Note:** Version bump only for package @react-yuki/hooks diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 9402c2a..ee8a5cf 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,6 +1,6 @@ { "name": "@react-yuki/hooks", - "version": "0.0.32", + "version": "0.0.33", "description": "A collection of React hooks", "keywords": [ "React", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 2cb98b8..997079f 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.33](https://github.com/kidjp85/react-yuki/compare/v0.0.32...v0.0.33) (2019-08-19) + +**Note:** Version bump only for package @react-yuki/icons + + + + + ## [0.0.32](https://github.com/kidjp85/react-yuki/compare/v0.0.31...v0.0.32) (2019-08-19) **Note:** Version bump only for package @react-yuki/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index 3a91a25..98ea6b2 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@react-yuki/icons", - "version": "0.0.32", + "version": "0.0.33", "description": "Svg icon React components", "keywords": [ "React", @@ -12,8 +12,8 @@ "lib/**/*" ], "dependencies": { - "@react-yuki/ui": "^0.0.32", - "@react-yuki/hooks": "^0.0.32" + "@react-yuki/hooks": "^0.0.33", + "@react-yuki/ui": "^0.0.33" }, "devDependencies": { "typescript": "^3.5.2" diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 9f6736f..3c23d26 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.33](https://github.com/kidjp85/react-yuki/compare/v0.0.32...v0.0.33) (2019-08-19) + +**Note:** Version bump only for package @react-yuki/ui + + + + + ## [0.0.32](https://github.com/kidjp85/react-yuki/compare/v0.0.31...v0.0.32) (2019-08-19) **Note:** Version bump only for package @react-yuki/ui diff --git a/packages/ui/package.json b/packages/ui/package.json index 4960477..581c8f8 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@react-yuki/ui", - "version": "0.0.32", + "version": "0.0.33", "description": "Simple React components built with styled-system", "keywords": [ "React",