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

Commit 4b7c87e

Browse files
committed
v0.17.0
1 parent 5756acf commit 4b7c87e

File tree

8 files changed

+39
-24
lines changed

8 files changed

+39
-24
lines changed

CHANGELOG.md

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

55

6-
## [v0.16.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.15.0...v0.16.0) (2021-03-09 09:46:02 +0100)
6+
## [v0.17.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.16.0...v0.17.0) (2021-03-16 13:19:51 +0100)
7+
8+
### 🚀 Features
9+
10+
- **icons**: add user-add icon ([0e30b70](https://github.com/AxisCommunications/practical-react-components/commit/0e30b70451b1c006a43bc51d8f922deb1534636d))
11+
- **icons**: add first and last page icons ([3939343](https://github.com/AxisCommunications/practical-react-components/commit/3939343cb3dee0bf279dfc7a9983305d663c1c42))
12+
13+
### 🐛 Bug fixes
14+
15+
- **chip**: prevent to shrink icon in Chip (#56) ([5756acf](https://github.com/AxisCommunications/practical-react-components/commit/5756acfc7b54ad3323fe9d20d59cf10f2007dd78))
16+
17+
### 🚧 Maintenance
18+
19+
- update dependencies to latest versions ([a3d810f](https://github.com/AxisCommunications/practical-react-components/commit/a3d810f0053aaf221abdc171d253e4a43abf84d5))
20+
21+
## [v0.16.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.15.0...v0.16.0) (2021-03-09 09:49:39 +0100)
722

823
### 🚧 Maintenance
924

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.16.0",
3+
"version": "0.17.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.16.0",
3+
"version": "0.17.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.16.0",
15+
"practical-react-components-icons": "0.17.0",
1616
"react-hooks-shareable": "1.21.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.16.0",
4+
"version": "0.17.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.9.1",
1717
"formik": "2.2.6",
18-
"practical-react-components-core": "0.16.0",
19-
"practical-react-components-formik": "0.16.0",
20-
"practical-react-components-icons": "0.16.0",
18+
"practical-react-components-core": "0.17.0",
19+
"practical-react-components-formik": "0.17.0",
20+
"practical-react-components-icons": "0.17.0",
2121
"prism-react-renderer": "1.2.0",
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.16.0",
3+
"version": "0.17.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.16.0"
12+
"practical-react-components-core": "0.17.0"
1313
},
1414
"devDependencies": {
1515
"@babel/cli": "7.13.10",

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.16.0",
3+
"version": "0.17.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.16.0",
4+
"version": "0.17.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.9.1",
13-
"practical-react-components-core": "0.16.0",
14-
"practical-react-components-icons": "0.16.0",
13+
"practical-react-components-core": "0.17.0",
14+
"practical-react-components-icons": "0.17.0",
1515
"react": "17.0.1",
1616
"react-dom": "17.0.1",
1717
"react-hooks-shareable": "1.21.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10338,7 +10338,7 @@ __metadata:
1033810338
languageName: node
1033910339
linkType: hard
1034010340

10341-
"practical-react-components-core@0.16.0, practical-react-components-core@workspace:packages/core":
10341+
"practical-react-components-core@0.17.0, practical-react-components-core@workspace:packages/core":
1034210342
version: 0.0.0-use.local
1034310343
resolution: "practical-react-components-core@workspace:packages/core"
1034410344
dependencies:
@@ -10362,7 +10362,7 @@ __metadata:
1036210362
jest-styled-components: 7.0.3
1036310363
no-scroll: 2.1.1
1036410364
pepjs: 0.5.3
10365-
practical-react-components-icons: 0.16.0
10365+
practical-react-components-icons: 0.17.0
1036610366
prop-types: 15.7.2
1036710367
react: 17.0.1
1036810368
react-dom: 17.0.1
@@ -10415,9 +10415,9 @@ __metadata:
1041510415
formik: 2.2.6
1041610416
html-webpack-plugin: 5.3.1
1041710417
license-webpack-plugin: 2.3.15
10418-
practical-react-components-core: 0.16.0
10419-
practical-react-components-formik: 0.16.0
10420-
practical-react-components-icons: 0.16.0
10418+
practical-react-components-core: 0.17.0
10419+
practical-react-components-formik: 0.17.0
10420+
practical-react-components-icons: 0.17.0
1042110421
prism-react-renderer: 1.2.0
1042210422
react: 17.0.1
1042310423
react-docgen-typescript: 1.21.0
@@ -10443,7 +10443,7 @@ __metadata:
1044310443
languageName: unknown
1044410444
linkType: soft
1044510445

10446-
"practical-react-components-formik@0.16.0, practical-react-components-formik@workspace:packages/formik":
10446+
"practical-react-components-formik@0.17.0, practical-react-components-formik@workspace:packages/formik":
1044710447
version: 0.0.0-use.local
1044810448
resolution: "practical-react-components-formik@workspace:packages/formik"
1044910449
dependencies:
@@ -10459,7 +10459,7 @@ __metadata:
1045910459
"@types/styled-components": 5.1.9
1046010460
core-js: 3.9.1
1046110461
formik: 2.2.6
10462-
practical-react-components-core: 0.16.0
10462+
practical-react-components-core: 0.17.0
1046310463
react: 17.0.1
1046410464
react-is: 17.0.1
1046510465
styled-components: 5.2.1
@@ -10474,7 +10474,7 @@ __metadata:
1047410474
languageName: unknown
1047510475
linkType: soft
1047610476

10477-
"practical-react-components-icons@0.16.0, practical-react-components-icons@workspace:packages/icons":
10477+
"practical-react-components-icons@0.17.0, practical-react-components-icons@workspace:packages/icons":
1047810478
version: 0.0.0-use.local
1047910479
resolution: "practical-react-components-icons@workspace:packages/icons"
1048010480
dependencies:
@@ -10527,8 +10527,8 @@ __metadata:
1052710527
cypress: 6.7.1
1052810528
file-loader: 6.2.0
1052910529
html-webpack-plugin: 5.3.1
10530-
practical-react-components-core: 0.16.0
10531-
practical-react-components-icons: 0.16.0
10530+
practical-react-components-core: 0.17.0
10531+
practical-react-components-icons: 0.17.0
1053210532
react: 17.0.1
1053310533
react-dom: 17.0.1
1053410534
react-hooks-shareable: 1.21.0

0 commit comments

Comments
 (0)