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

Commit 6cd4346

Browse files
committed
v0.4.0
1 parent 9adf3a5 commit 6cd4346

File tree

9 files changed

+41
-29
lines changed

9 files changed

+41
-29
lines changed

.yarn/versions/97a94915.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

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

55

6-
## [v0.3.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.2.0...v0.3.0) (2021-01-28 11:33:30 +0100)
6+
## [v0.4.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.3.0...v0.4.0) (2021-02-01 12:42:59 +0100)
7+
8+
### 🚀 Features
9+
10+
- richer palette and default theme ([352ea5b](https://github.com/AxisCommunications/practical-react-components/commit/352ea5b8471fcde51c080878836598c6510402c3))
11+
12+
### 🧰 Refactoring
13+
14+
- split out selector from base select ([9adf3a5](https://github.com/AxisCommunications/practical-react-components/commit/9adf3a5435b1bb55a6b2747ea49a3044f8995ec1))
15+
16+
### 📝 Documentation
17+
18+
- change width of docs content ([3d99b18](https://github.com/AxisCommunications/practical-react-components/commit/3d99b181a99a0b5525bef611a98c044f4679f6db))
19+
- minor Select improvements ([335f28d](https://github.com/AxisCommunications/practical-react-components/commit/335f28d2c0ed4efd1d5110f56c05033f5e84ec6e))
20+
- better component name for icons page ([920ea69](https://github.com/AxisCommunications/practical-react-components/commit/920ea692b8f5558ca6dcf805d175a38b519a570f))
21+
- fix filename of PracticalProvider ([e2152e2](https://github.com/AxisCommunications/practical-react-components/commit/e2152e2c0c8be0d3d98255fda706eeb7d67acdbf))
22+
23+
## [v0.3.0](https://github.com/AxisCommunications/practical-react-components/compare/v0.2.0...v0.3.0) (2021-01-28 11:36:16 +0100)
724

825
### 🚀 Features
926

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.3.0",
3+
"version": "0.4.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.3.0",
3+
"version": "0.4.0",
44
"main": "build/index.js",
55
"files": [
66
"build"
@@ -9,7 +9,7 @@
99
"@juggle/resize-observer": "3.2.0",
1010
"focus-trap-react": "8.4.1",
1111
"no-scroll": "2.1.1",
12-
"practical-react-components-icons": "0.3.0",
12+
"practical-react-components-icons": "0.4.0",
1313
"react-hooks-shareable": "1.11.0"
1414
},
1515
"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.3.0",
4+
"version": "0.4.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.3.0",
19-
"practical-react-components-formik": "0.3.0",
20-
"practical-react-components-icons": "0.3.0",
18+
"practical-react-components-core": "0.4.0",
19+
"practical-react-components-formik": "0.4.0",
20+
"practical-react-components-icons": "0.4.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,12 +1,12 @@
11
{
22
"name": "practical-react-components-formik",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"main": "build/index.js",
55
"files": [
66
"build"
77
],
88
"dependencies": {
9-
"practical-react-components-core": "0.3.0"
9+
"practical-react-components-core": "0.4.0"
1010
},
1111
"devDependencies": {
1212
"@babel/cli": "7.12.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.3.0",
3+
"version": "0.4.0",
44
"main": "build/index.js",
55
"files": [
66
"build",

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.3.0",
4+
"version": "0.4.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.3.0",
14-
"practical-react-components-icons": "0.3.0",
13+
"practical-react-components-core": "0.4.0",
14+
"practical-react-components-icons": "0.4.0",
1515
"react": "17.0.1",
1616
"react-dom": "17.0.1",
1717
"react-hooks-shareable": "1.11.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11744,7 +11744,7 @@ __metadata:
1174411744
languageName: node
1174511745
linkType: hard
1174611746

11747-
"practical-react-components-core@0.3.0, practical-react-components-core@workspace:packages/core":
11747+
"practical-react-components-core@0.4.0, practical-react-components-core@workspace:packages/core":
1174811748
version: 0.0.0-use.local
1174911749
resolution: "practical-react-components-core@workspace:packages/core"
1175011750
dependencies:
@@ -11768,7 +11768,7 @@ __metadata:
1176811768
jest-styled-components: 7.0.3
1176911769
no-scroll: 2.1.1
1177011770
pepjs: 0.5.3
11771-
practical-react-components-icons: 0.3.0
11771+
practical-react-components-icons: 0.4.0
1177211772
prop-types: 15.7.2
1177311773
react: 17.0.1
1177411774
react-dom: 17.0.1
@@ -11821,9 +11821,9 @@ __metadata:
1182111821
file-loader: 6.2.0
1182211822
formik: 2.2.6
1182311823
html-webpack-plugin: 4.5.1
11824-
practical-react-components-core: 0.3.0
11825-
practical-react-components-formik: 0.3.0
11826-
practical-react-components-icons: 0.3.0
11824+
practical-react-components-core: 0.4.0
11825+
practical-react-components-formik: 0.4.0
11826+
practical-react-components-icons: 0.4.0
1182711827
prism-react-renderer: 1.1.1
1182811828
react: 17.0.1
1182911829
react-docgen-typescript: 1.20.5
@@ -11849,7 +11849,7 @@ __metadata:
1184911849
languageName: unknown
1185011850
linkType: soft
1185111851

11852-
"practical-react-components-formik@0.3.0, practical-react-components-formik@workspace:packages/formik":
11852+
"practical-react-components-formik@0.4.0, practical-react-components-formik@workspace:packages/formik":
1185311853
version: 0.0.0-use.local
1185411854
resolution: "practical-react-components-formik@workspace:packages/formik"
1185511855
dependencies:
@@ -11865,7 +11865,7 @@ __metadata:
1186511865
"@types/styled-components": 5.1.7
1186611866
core-js: 3.8.3
1186711867
formik: 2.2.6
11868-
practical-react-components-core: 0.3.0
11868+
practical-react-components-core: 0.4.0
1186911869
react: 17.0.1
1187011870
react-is: 17.0.1
1187111871
styled-components: 5.2.1
@@ -11880,7 +11880,7 @@ __metadata:
1188011880
languageName: unknown
1188111881
linkType: soft
1188211882

11883-
"practical-react-components-icons@0.3.0, practical-react-components-icons@workspace:packages/icons":
11883+
"practical-react-components-icons@0.4.0, practical-react-components-icons@workspace:packages/icons":
1188411884
version: 0.0.0-use.local
1188511885
resolution: "practical-react-components-icons@workspace:packages/icons"
1188611886
dependencies:
@@ -11933,8 +11933,8 @@ __metadata:
1193311933
cypress: 6.3.0
1193411934
file-loader: 6.2.0
1193511935
html-webpack-plugin: 4.5.1
11936-
practical-react-components-core: 0.3.0
11937-
practical-react-components-icons: 0.3.0
11936+
practical-react-components-core: 0.4.0
11937+
practical-react-components-icons: 0.4.0
1193811938
react: 17.0.1
1193911939
react-dom: 17.0.1
1194011940
react-hooks-shareable: 1.11.0

0 commit comments

Comments
 (0)