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

Commit 44cdc9f

Browse files
committed
v0.20.0
1 parent 8d656b1 commit 44cdc9f

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.19.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.18.0...v0.19.0) (2021-03-25 12:59:58 +0100)
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)
7+
8+
### 🚀 Features
9+
10+
- **icons**: add discovered-device icon ([4f3e961](https://github.com/AxisCommunications/practical-react-components/commit/4f3e961a8e19ac08f2964f150f3c4824ec7dbd2a))
11+
- **slider**: add slider with ticks (#59) ([ffd6373](https://github.com/AxisCommunications/practical-react-components/commit/ffd63731a4f4c7d9649eca36877e05272344124a))
12+
13+
### 🐛 Bug fixes
14+
15+
- **docs**: CardHeader in Basic usage in docs ([8d656b1](https://github.com/AxisCommunications/practical-react-components/commit/8d656b1841ce8fbb60621506f80a810d36679c15))
16+
17+
### 🚧 Maintenance
18+
19+
- update dependencies to latest versions (#68) ([1cdcf37](https://github.com/AxisCommunications/practical-react-components/commit/1cdcf37c29afb971e8389352df166824f82e7954))
20+
21+
## [v0.19.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.18.0...v0.19.0) (2021-03-25 13:04:30 +0100)
722

823
### 🚀 Features
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.19.0",
3+
"version": "0.20.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.19.0",
3+
"version": "0.20.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.19.0",
15+
"practical-react-components-icons": "0.20.0",
1616
"react-hooks-shareable": "1.23.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.19.0",
4+
"version": "0.20.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.0",
1717
"formik": "2.2.6",
18-
"practical-react-components-core": "0.19.0",
19-
"practical-react-components-formik": "0.19.0",
20-
"practical-react-components-icons": "0.19.0",
18+
"practical-react-components-core": "0.20.0",
19+
"practical-react-components-formik": "0.20.0",
20+
"practical-react-components-icons": "0.20.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.19.0",
3+
"version": "0.20.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.19.0"
12+
"practical-react-components-core": "0.20.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.19.0",
3+
"version": "0.20.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.19.0",
4+
"version": "0.20.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.0",
13-
"practical-react-components-core": "0.19.0",
14-
"practical-react-components-icons": "0.19.0",
13+
"practical-react-components-core": "0.20.0",
14+
"practical-react-components-icons": "0.20.0",
1515
"react": "17.0.2",
1616
"react-dom": "17.0.2",
1717
"react-hooks-shareable": "1.23.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10478,7 +10478,7 @@ __metadata:
1047810478
languageName: node
1047910479
linkType: hard
1048010480

10481-
"practical-react-components-core@0.19.0, practical-react-components-core@workspace:packages/core":
10481+
"practical-react-components-core@0.20.0, practical-react-components-core@workspace:packages/core":
1048210482
version: 0.0.0-use.local
1048310483
resolution: "practical-react-components-core@workspace:packages/core"
1048410484
dependencies:
@@ -10502,7 +10502,7 @@ __metadata:
1050210502
jest-styled-components: 7.0.3
1050310503
no-scroll: 2.1.1
1050410504
pepjs: 0.5.3
10505-
practical-react-components-icons: 0.19.0
10505+
practical-react-components-icons: 0.20.0
1050610506
prop-types: 15.7.2
1050710507
react: 17.0.2
1050810508
react-dom: 17.0.2
@@ -10555,9 +10555,9 @@ __metadata:
1055510555
formik: 2.2.6
1055610556
html-webpack-plugin: 5.3.1
1055710557
license-webpack-plugin: 2.3.16
10558-
practical-react-components-core: 0.19.0
10559-
practical-react-components-formik: 0.19.0
10560-
practical-react-components-icons: 0.19.0
10558+
practical-react-components-core: 0.20.0
10559+
practical-react-components-formik: 0.20.0
10560+
practical-react-components-icons: 0.20.0
1056110561
prism-react-renderer: 1.2.0
1056210562
react: 17.0.2
1056310563
react-docgen-typescript: 1.22.0
@@ -10583,7 +10583,7 @@ __metadata:
1058310583
languageName: unknown
1058410584
linkType: soft
1058510585

10586-
"practical-react-components-formik@0.19.0, practical-react-components-formik@workspace:packages/formik":
10586+
"practical-react-components-formik@0.20.0, practical-react-components-formik@workspace:packages/formik":
1058710587
version: 0.0.0-use.local
1058810588
resolution: "practical-react-components-formik@workspace:packages/formik"
1058910589
dependencies:
@@ -10599,7 +10599,7 @@ __metadata:
1059910599
"@types/styled-components": 5.1.9
1060010600
core-js: 3.10.0
1060110601
formik: 2.2.6
10602-
practical-react-components-core: 0.19.0
10602+
practical-react-components-core: 0.20.0
1060310603
react: 17.0.2
1060410604
react-is: 17.0.2
1060510605
styled-components: 5.2.3
@@ -10614,7 +10614,7 @@ __metadata:
1061410614
languageName: unknown
1061510615
linkType: soft
1061610616

10617-
"practical-react-components-icons@0.19.0, practical-react-components-icons@workspace:packages/icons":
10617+
"practical-react-components-icons@0.20.0, practical-react-components-icons@workspace:packages/icons":
1061810618
version: 0.0.0-use.local
1061910619
resolution: "practical-react-components-icons@workspace:packages/icons"
1062010620
dependencies:
@@ -10667,8 +10667,8 @@ __metadata:
1066710667
cypress: 6.8.0
1066810668
file-loader: 6.2.0
1066910669
html-webpack-plugin: 5.3.1
10670-
practical-react-components-core: 0.19.0
10671-
practical-react-components-icons: 0.19.0
10670+
practical-react-components-core: 0.20.0
10671+
practical-react-components-icons: 0.20.0
1067210672
react: 17.0.2
1067310673
react-dom: 17.0.2
1067410674
react-hooks-shareable: 1.23.0

0 commit comments

Comments
 (0)