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

Commit 7f2032f

Browse files
committed
v0.11.0
1 parent 73e0e0c commit 7f2032f

File tree

8 files changed

+36
-24
lines changed

8 files changed

+36
-24
lines changed

CHANGELOG.md

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

55

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)
6+
## [v0.11.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.10.0...v0.11.0) (2021-02-23 08:57:14 +0100)
7+
8+
### 🚀 Features
9+
10+
- **formik**: add generics to checkbox and radio button groups ([73e0e0c](https://github.com/AxisCommunications/practical-react-components/commit/73e0e0c58a54c9aa28e5365d6422af3efd7ba477))
11+
- **basemenu**: **BREAKING** refactors `BaseMenu` to use `ReactNode` for menu button ([f9305c1](https://github.com/AxisCommunications/practical-react-components/commit/f9305c1410b4af5c7634d242164b171bb8985619))
12+
13+
### 🐛 Bug fixes
14+
15+
- **select**: call onBlur prop on blur ([96324a1](https://github.com/AxisCommunications/practical-react-components/commit/96324a135c582c3dab90d35095809f78988cd6e3))
16+
- **docs**: use relative licenses.txt path ([5384d07](https://github.com/AxisCommunications/practical-react-components/commit/5384d0733b428ea1fc2a009fe19ea2ba6c96926b))
17+
18+
## [v0.10.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.9.0...v0.10.0) (2021-02-16 09:39:31 +0100)
719

820
### 🚀 Features
921

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.10.0",
3+
"version": "0.11.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.10.0",
3+
"version": "0.11.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.10.0",
15+
"practical-react-components-icons": "0.11.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.10.0",
4+
"version": "0.11.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.10.0",
19-
"practical-react-components-formik": "0.10.0",
20-
"practical-react-components-icons": "0.10.0",
18+
"practical-react-components-core": "0.11.0",
19+
"practical-react-components-formik": "0.11.0",
20+
"practical-react-components-icons": "0.11.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.10.0",
3+
"version": "0.11.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.10.0"
12+
"practical-react-components-core": "0.11.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.10.0",
3+
"version": "0.11.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.10.0",
4+
"version": "0.11.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.10.0",
14-
"practical-react-components-icons": "0.10.0",
13+
"practical-react-components-core": "0.11.0",
14+
"practical-react-components-icons": "0.11.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.10.0, practical-react-components-core@workspace:packages/core":
10786+
"practical-react-components-core@0.11.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.10.0
10810+
practical-react-components-icons: 0.11.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.10.0
10864-
practical-react-components-formik: 0.10.0
10865-
practical-react-components-icons: 0.10.0
10863+
practical-react-components-core: 0.11.0
10864+
practical-react-components-formik: 0.11.0
10865+
practical-react-components-icons: 0.11.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.10.0, practical-react-components-formik@workspace:packages/formik":
10891+
"practical-react-components-formik@0.11.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.10.0
10907+
practical-react-components-core: 0.11.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.10.0, practical-react-components-icons@workspace:packages/icons":
10922+
"practical-react-components-icons@0.11.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.10.0
10976-
practical-react-components-icons: 0.10.0
10975+
practical-react-components-core: 0.11.0
10976+
practical-react-components-icons: 0.11.0
1097710977
react: 17.0.1
1097810978
react-dom: 17.0.1
1097910979
react-hooks-shareable: 1.15.0

0 commit comments

Comments
 (0)