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

Commit 8bee718

Browse files
committed
v0.14.0
1 parent 362906c commit 8bee718

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.13.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.12.0...v0.13.0) (2021-02-24 23:56:17 +0100)
6+
## [v0.14.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.13.0...v0.14.0) (2021-03-02 12:57:56 +0100)
7+
8+
### 🚀 Features
9+
10+
- **toast**: support two lines label in Toast (#49) ([deac97f](https://github.com/AxisCommunications/practical-react-components/commit/deac97f97640582631d971c8ebb344b407252272))
11+
12+
### 🐛 Bug fixes
13+
14+
- **simpletable**: limit transition property (#52) ([362906c](https://github.com/AxisCommunications/practical-react-components/commit/362906cdf02c0c0bffc0819efd8bfeacddd3005f))
15+
- **select**: only style select arrow, not all svgs ([442d445](https://github.com/AxisCommunications/practical-react-components/commit/442d445a98ccb5b9fcbb5480738a8803e4789ace))
16+
17+
### 🚧 Maintenance
18+
19+
- update dependencies to latest versions ([e3605e7](https://github.com/AxisCommunications/practical-react-components/commit/e3605e778b51bbe91230f1c17ddac3ae2261f92c))
20+
21+
## [v0.13.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.12.0...v0.13.0) (2021-02-25 08:17:34 +0100)
722

823
### 🐛 Bug fixes
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.13.0",
3+
"version": "0.14.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.13.0",
3+
"version": "0.14.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.13.0",
15+
"practical-react-components-icons": "0.14.0",
1616
"react-hooks-shareable": "1.17.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.13.0",
4+
"version": "0.14.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.13.0",
19-
"practical-react-components-formik": "0.13.0",
20-
"practical-react-components-icons": "0.13.0",
18+
"practical-react-components-core": "0.14.0",
19+
"practical-react-components-formik": "0.14.0",
20+
"practical-react-components-icons": "0.14.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.13.0",
3+
"version": "0.14.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.13.0"
12+
"practical-react-components-core": "0.14.0"
1313
},
1414
"devDependencies": {
1515
"@babel/cli": "7.13.0",

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.13.0",
3+
"version": "0.14.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.13.0",
4+
"version": "0.14.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.13.0",
14-
"practical-react-components-icons": "0.13.0",
13+
"practical-react-components-core": "0.14.0",
14+
"practical-react-components-icons": "0.14.0",
1515
"react": "17.0.1",
1616
"react-dom": "17.0.1",
1717
"react-hooks-shareable": "1.17.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10950,7 +10950,7 @@ __metadata:
1095010950
languageName: node
1095110951
linkType: hard
1095210952

10953-
"practical-react-components-core@0.13.0, practical-react-components-core@workspace:packages/core":
10953+
"practical-react-components-core@0.14.0, practical-react-components-core@workspace:packages/core":
1095410954
version: 0.0.0-use.local
1095510955
resolution: "practical-react-components-core@workspace:packages/core"
1095610956
dependencies:
@@ -10974,7 +10974,7 @@ __metadata:
1097410974
jest-styled-components: 7.0.3
1097510975
no-scroll: 2.1.1
1097610976
pepjs: 0.5.3
10977-
practical-react-components-icons: 0.13.0
10977+
practical-react-components-icons: 0.14.0
1097810978
prop-types: 15.7.2
1097910979
react: 17.0.1
1098010980
react-dom: 17.0.1
@@ -11027,9 +11027,9 @@ __metadata:
1102711027
formik: 2.2.6
1102811028
html-webpack-plugin: 5.2.0
1102911029
license-webpack-plugin: 2.3.14
11030-
practical-react-components-core: 0.13.0
11031-
practical-react-components-formik: 0.13.0
11032-
practical-react-components-icons: 0.13.0
11030+
practical-react-components-core: 0.14.0
11031+
practical-react-components-formik: 0.14.0
11032+
practical-react-components-icons: 0.14.0
1103311033
prism-react-renderer: 1.2.0
1103411034
react: 17.0.1
1103511035
react-docgen-typescript: 1.21.0
@@ -11055,7 +11055,7 @@ __metadata:
1105511055
languageName: unknown
1105611056
linkType: soft
1105711057

11058-
"practical-react-components-formik@0.13.0, practical-react-components-formik@workspace:packages/formik":
11058+
"practical-react-components-formik@0.14.0, practical-react-components-formik@workspace:packages/formik":
1105911059
version: 0.0.0-use.local
1106011060
resolution: "practical-react-components-formik@workspace:packages/formik"
1106111061
dependencies:
@@ -11071,7 +11071,7 @@ __metadata:
1107111071
"@types/styled-components": 5.1.7
1107211072
core-js: 3.9.1
1107311073
formik: 2.2.6
11074-
practical-react-components-core: 0.13.0
11074+
practical-react-components-core: 0.14.0
1107511075
react: 17.0.1
1107611076
react-is: 17.0.1
1107711077
styled-components: 5.2.1
@@ -11086,7 +11086,7 @@ __metadata:
1108611086
languageName: unknown
1108711087
linkType: soft
1108811088

11089-
"practical-react-components-icons@0.13.0, practical-react-components-icons@workspace:packages/icons":
11089+
"practical-react-components-icons@0.14.0, practical-react-components-icons@workspace:packages/icons":
1109011090
version: 0.0.0-use.local
1109111091
resolution: "practical-react-components-icons@workspace:packages/icons"
1109211092
dependencies:
@@ -11139,8 +11139,8 @@ __metadata:
1113911139
cypress: 6.6.0
1114011140
file-loader: 6.2.0
1114111141
html-webpack-plugin: 5.2.0
11142-
practical-react-components-core: 0.13.0
11143-
practical-react-components-icons: 0.13.0
11142+
practical-react-components-core: 0.14.0
11143+
practical-react-components-icons: 0.14.0
1114411144
react: 17.0.1
1114511145
react-dom: 17.0.1
1114611146
react-hooks-shareable: 1.17.0

0 commit comments

Comments
 (0)