Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit cb3b362

Browse files
committed
v0.10.0
1 parent c25ee4e commit cb3b362

File tree

8 files changed

+41
-24
lines changed

8 files changed

+41
-24
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,24 @@
33
All notable changes to this project will be documented in this file.
44

55

6-
## [v0.9.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.8.0...v0.9.0) (2021-02-09 19:56:59 +0100)
6+
## [v0.10.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.9.0...v0.10.0) (2021-02-16 09:32:24 +0100)
7+
8+
### 🚀 Features
9+
10+
- **toasts**: export lower level toast components (#33) ([c25ee4e](https://github.com/AxisCommunications/practical-react-components/commit/c25ee4eb7ef9109ac930bd02782a7dbdee732a9d))
11+
- **icons**: add hdmi icon ([7f65e0d](https://github.com/AxisCommunications/practical-react-components/commit/7f65e0dbc9bfb8fe0fc190f3a7904de525a86a5b))
12+
13+
### 📝 Documentation
14+
15+
- show licenses in UI ([222cc4c](https://github.com/AxisCommunications/practical-react-components/commit/222cc4cde6f9b66eeb0d7f6f504259f9efd00964))
16+
17+
### 🚧 Maintenance
18+
19+
- update dependencies (#39) ([73c1592](https://github.com/AxisCommunications/practical-react-components/commit/73c1592716a8662e92c921d86b4b437c40bc51a6))
20+
- license clarification ([b52383b](https://github.com/AxisCommunications/practical-react-components/commit/b52383b925e2e1192931eb86b8633aabf623aef2))
21+
- run prettier on more files ([74449cc](https://github.com/AxisCommunications/practical-react-components/commit/74449ccf9b3583c6e43976d5a1be7c63f625ec05))
22+
23+
## [v0.9.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.8.0...v0.9.0) (2021-02-09 20:26:49 +0100)
724

825
### 📝 Documentation
926

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "practical-react-components",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"private": true,
55
"description": "Practical react components library",
66
"homepage": "https://github.com/AxisCommunications/practical-react-components",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "practical-react-components-core",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Practical react components library - Core",
55
"homepage": "https://github.com/AxisCommunications/practical-react-components",
66
"license": "MIT",
@@ -12,7 +12,7 @@
1212
"@juggle/resize-observer": "3.2.0",
1313
"focus-trap-react": "8.4.2",
1414
"no-scroll": "2.1.1",
15-
"practical-react-components-icons": "0.9.0",
15+
"practical-react-components-icons": "0.10.0",
1616
"react-hooks-shareable": "1.15.0"
1717
},
1818
"devDependencies": {

packages/docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "practical-react-components-docs",
33
"private": true,
4-
"version": "0.9.0",
4+
"version": "0.10.0",
55
"license": "MIT",
66
"scripts": {
77
"props": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" ts-node scripts/docs-props-gen.ts --source ../core/src/index.ts --source ../formik/src/index.ts --dest src --tsconfig tsconfig.json",
@@ -15,9 +15,9 @@
1515
"@mdx-js/react": "1.6.22",
1616
"core-js": "3.8.3",
1717
"formik": "2.2.6",
18-
"practical-react-components-core": "0.9.0",
19-
"practical-react-components-formik": "0.9.0",
20-
"practical-react-components-icons": "0.9.0",
18+
"practical-react-components-core": "0.10.0",
19+
"practical-react-components-formik": "0.10.0",
20+
"practical-react-components-icons": "0.10.0",
2121
"prism-react-renderer": "1.1.1",
2222
"react": "17.0.1",
2323
"react-dom": "17.0.1",

packages/formik/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "practical-react-components-formik",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Practical react components library - Formik components",
55
"homepage": "https://github.com/AxisCommunications/practical-react-components",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"build"
1010
],
1111
"dependencies": {
12-
"practical-react-components-core": "0.9.0"
12+
"practical-react-components-core": "0.10.0"
1313
},
1414
"devDependencies": {
1515
"@babel/cli": "7.12.16",

packages/icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "practical-react-components-icons",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Practical react components library - Icons",
55
"homepage": "https://github.com/AxisCommunications/practical-react-components",
66
"license": "MIT AND Apache-2.0",

packages/ui-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "practical-react-components-ui-tests",
33
"private": true,
4-
"version": "0.9.0",
4+
"version": "0.10.0",
55
"license": "MIT",
66
"scripts": {
77
"build:ts": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" --env.NODE_ENV=docs",
@@ -10,8 +10,8 @@
1010
},
1111
"dependencies": {
1212
"core-js": "3.8.3",
13-
"practical-react-components-core": "0.9.0",
14-
"practical-react-components-icons": "0.9.0",
13+
"practical-react-components-core": "0.10.0",
14+
"practical-react-components-icons": "0.10.0",
1515
"react": "17.0.1",
1616
"react-dom": "17.0.1",
1717
"react-hooks-shareable": "1.15.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10783,7 +10783,7 @@ __metadata:
1078310783
languageName: node
1078410784
linkType: hard
1078510785

10786-
"practical-react-components-core@0.9.0, practical-react-components-core@workspace:packages/core":
10786+
"practical-react-components-core@0.10.0, practical-react-components-core@workspace:packages/core":
1078710787
version: 0.0.0-use.local
1078810788
resolution: "practical-react-components-core@workspace:packages/core"
1078910789
dependencies:
@@ -10807,7 +10807,7 @@ __metadata:
1080710807
jest-styled-components: 7.0.3
1080810808
no-scroll: 2.1.1
1080910809
pepjs: 0.5.3
10810-
practical-react-components-icons: 0.9.0
10810+
practical-react-components-icons: 0.10.0
1081110811
prop-types: 15.7.2
1081210812
react: 17.0.1
1081310813
react-dom: 17.0.1
@@ -10860,9 +10860,9 @@ __metadata:
1086010860
formik: 2.2.6
1086110861
html-webpack-plugin: 5.1.0
1086210862
license-webpack-plugin: 2.3.13
10863-
practical-react-components-core: 0.9.0
10864-
practical-react-components-formik: 0.9.0
10865-
practical-react-components-icons: 0.9.0
10863+
practical-react-components-core: 0.10.0
10864+
practical-react-components-formik: 0.10.0
10865+
practical-react-components-icons: 0.10.0
1086610866
prism-react-renderer: 1.1.1
1086710867
react: 17.0.1
1086810868
react-docgen-typescript: 1.21.0
@@ -10888,7 +10888,7 @@ __metadata:
1088810888
languageName: unknown
1088910889
linkType: soft
1089010890

10891-
"practical-react-components-formik@0.9.0, practical-react-components-formik@workspace:packages/formik":
10891+
"practical-react-components-formik@0.10.0, practical-react-components-formik@workspace:packages/formik":
1089210892
version: 0.0.0-use.local
1089310893
resolution: "practical-react-components-formik@workspace:packages/formik"
1089410894
dependencies:
@@ -10904,7 +10904,7 @@ __metadata:
1090410904
"@types/styled-components": 5.1.7
1090510905
core-js: 3.8.3
1090610906
formik: 2.2.6
10907-
practical-react-components-core: 0.9.0
10907+
practical-react-components-core: 0.10.0
1090810908
react: 17.0.1
1090910909
react-is: 17.0.1
1091010910
styled-components: 5.2.1
@@ -10919,7 +10919,7 @@ __metadata:
1091910919
languageName: unknown
1092010920
linkType: soft
1092110921

10922-
"practical-react-components-icons@0.9.0, practical-react-components-icons@workspace:packages/icons":
10922+
"practical-react-components-icons@0.10.0, practical-react-components-icons@workspace:packages/icons":
1092310923
version: 0.0.0-use.local
1092410924
resolution: "practical-react-components-icons@workspace:packages/icons"
1092510925
dependencies:
@@ -10972,8 +10972,8 @@ __metadata:
1097210972
cypress: 6.5.0
1097310973
file-loader: 6.2.0
1097410974
html-webpack-plugin: 5.1.0
10975-
practical-react-components-core: 0.9.0
10976-
practical-react-components-icons: 0.9.0
10975+
practical-react-components-core: 0.10.0
10976+
practical-react-components-icons: 0.10.0
1097710977
react: 17.0.1
1097810978
react-dom: 17.0.1
1097910979
react-hooks-shareable: 1.15.0

0 commit comments

Comments
 (0)