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

Commit ab4cc8a

Browse files
committed
v0.21.0
1 parent 46a876c commit ab4cc8a

File tree

8 files changed

+34
-24
lines changed

8 files changed

+34
-24
lines changed

CHANGELOG.md

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

55

6-
## [v0.20.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.19.0...v0.20.0) (2021-04-06 10:14:47 +0200)
6+
## [v0.21.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.20.0...v0.21.0) (2021-04-13 13:25:57 +0200)
7+
8+
### 🐛 Bug fixes
9+
10+
- **menu**: close when click on menu button ([3d7dd3c](https://github.com/AxisCommunications/practical-react-components/commit/3d7dd3cf86b65b62a1a22918380f85da41ddd80d))
11+
12+
### 🚧 Maintenance
13+
14+
- update dependencies to latest versions ([46a876c](https://github.com/AxisCommunications/practical-react-components/commit/46a876ca05d2ee605da30fda7684f9a515dce2ce))
15+
16+
## [v0.20.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.19.0...v0.20.0) (2021-04-06 10:47:00 +0200)
717

818
### 🚀 Features
919

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.20.0",
3+
"version": "0.21.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.20.0",
3+
"version": "0.21.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.3.0",
1313
"focus-trap-react": "8.4.2",
1414
"no-scroll": "2.1.1",
15-
"practical-react-components-icons": "0.20.0",
15+
"practical-react-components-icons": "0.21.0",
1616
"react-hooks-shareable": "1.24.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.20.0",
4+
"version": "0.21.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.10.1",
1717
"formik": "2.2.6",
18-
"practical-react-components-core": "0.20.0",
19-
"practical-react-components-formik": "0.20.0",
20-
"practical-react-components-icons": "0.20.0",
18+
"practical-react-components-core": "0.21.0",
19+
"practical-react-components-formik": "0.21.0",
20+
"practical-react-components-icons": "0.21.0",
2121
"prism-react-renderer": "1.2.0",
2222
"react": "17.0.2",
2323
"react-dom": "17.0.2",

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.20.0",
3+
"version": "0.21.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.20.0"
12+
"practical-react-components-core": "0.21.0"
1313
},
1414
"devDependencies": {
1515
"@babel/cli": "7.13.14",

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.20.0",
3+
"version": "0.21.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.20.0",
4+
"version": "0.21.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.10.1",
13-
"practical-react-components-core": "0.20.0",
14-
"practical-react-components-icons": "0.20.0",
13+
"practical-react-components-core": "0.21.0",
14+
"practical-react-components-icons": "0.21.0",
1515
"react": "17.0.2",
1616
"react-dom": "17.0.2",
1717
"react-hooks-shareable": "1.24.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10520,7 +10520,7 @@ __metadata:
1052010520
languageName: node
1052110521
linkType: hard
1052210522

10523-
"practical-react-components-core@0.20.0, practical-react-components-core@workspace:packages/core":
10523+
"practical-react-components-core@0.21.0, practical-react-components-core@workspace:packages/core":
1052410524
version: 0.0.0-use.local
1052510525
resolution: "practical-react-components-core@workspace:packages/core"
1052610526
dependencies:
@@ -10544,7 +10544,7 @@ __metadata:
1054410544
jest-styled-components: 7.0.3
1054510545
no-scroll: 2.1.1
1054610546
pepjs: 0.5.3
10547-
practical-react-components-icons: 0.20.0
10547+
practical-react-components-icons: 0.21.0
1054810548
prop-types: 15.7.2
1054910549
react: 17.0.2
1055010550
react-dom: 17.0.2
@@ -10597,9 +10597,9 @@ __metadata:
1059710597
formik: 2.2.6
1059810598
html-webpack-plugin: 5.3.1
1059910599
license-webpack-plugin: 2.3.17
10600-
practical-react-components-core: 0.20.0
10601-
practical-react-components-formik: 0.20.0
10602-
practical-react-components-icons: 0.20.0
10600+
practical-react-components-core: 0.21.0
10601+
practical-react-components-formik: 0.21.0
10602+
practical-react-components-icons: 0.21.0
1060310603
prism-react-renderer: 1.2.0
1060410604
react: 17.0.2
1060510605
react-docgen-typescript: 1.22.0
@@ -10625,7 +10625,7 @@ __metadata:
1062510625
languageName: unknown
1062610626
linkType: soft
1062710627

10628-
"practical-react-components-formik@0.20.0, practical-react-components-formik@workspace:packages/formik":
10628+
"practical-react-components-formik@0.21.0, practical-react-components-formik@workspace:packages/formik":
1062910629
version: 0.0.0-use.local
1063010630
resolution: "practical-react-components-formik@workspace:packages/formik"
1063110631
dependencies:
@@ -10641,7 +10641,7 @@ __metadata:
1064110641
"@types/styled-components": 5.1.9
1064210642
core-js: 3.10.1
1064310643
formik: 2.2.6
10644-
practical-react-components-core: 0.20.0
10644+
practical-react-components-core: 0.21.0
1064510645
react: 17.0.2
1064610646
react-is: 17.0.2
1064710647
styled-components: 5.2.3
@@ -10656,7 +10656,7 @@ __metadata:
1065610656
languageName: unknown
1065710657
linkType: soft
1065810658

10659-
"practical-react-components-icons@0.20.0, practical-react-components-icons@workspace:packages/icons":
10659+
"practical-react-components-icons@0.21.0, practical-react-components-icons@workspace:packages/icons":
1066010660
version: 0.0.0-use.local
1066110661
resolution: "practical-react-components-icons@workspace:packages/icons"
1066210662
dependencies:
@@ -10709,8 +10709,8 @@ __metadata:
1070910709
cypress: 6.8.0
1071010710
file-loader: 6.2.0
1071110711
html-webpack-plugin: 5.3.1
10712-
practical-react-components-core: 0.20.0
10713-
practical-react-components-icons: 0.20.0
10712+
practical-react-components-core: 0.21.0
10713+
practical-react-components-icons: 0.21.0
1071410714
react: 17.0.2
1071510715
react-dom: 17.0.2
1071610716
react-hooks-shareable: 1.24.0

0 commit comments

Comments
 (0)