Skip to content

Commit ef17077

Browse files
authored
Merge pull request #81 from aeagle/add-proptypes-dependency
Add proptypes dependency
2 parents 7f8ee09 + c8a439f commit ef17077

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-spaces",
3-
"version": "0.1.27",
3+
"version": "0.1.28",
44
"main": "dist/index.js",
55
"module": "dist/es/index.js",
66
"types": "dist/index.d.ts",
@@ -27,7 +27,8 @@
2727
"license": "MIT",
2828
"description": "An easy to understand and nestable layout system, React Spaces allow you to divide a page or container into anchored, scrollable and resizable spaces enabling you to build desktop type user interfaces in the browser.",
2929
"dependencies": {
30-
"css-element-queries": "^1.2.1"
30+
"css-element-queries": "^1.2.1",
31+
"prop-types": "^15.7.2"
3132
},
3233
"devDependencies": {
3334
"@babel/core": "^7.5.5",
@@ -69,8 +70,7 @@
6970
},
7071
"peerDependencies": {
7172
"react": "^16.8.0",
72-
"react-dom": "^16.8.0",
73-
"prop-types": "^15.7.2"
73+
"react-dom": "^16.8.0"
7474
},
7575
"scripts": {
7676
"start": "rollup -c -w",

src/components/stories/00-docs/04-ChangeHistory.stories.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ import { CommonHeader } from "../Utils";
77

88
## Change history
99

10+
### 0.1.28
11+
12+
- Ensure proptypes added as direct dependency to library
13+
14+
### 0.1.27
15+
16+
- Fixed issue where handleSize property was not being passed to internal ResizeHandle component
17+
1018
### 0.1.26
1119

1220
- Fix for broken onResizeStart and onResizeEnd events

0 commit comments

Comments
 (0)