Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit d718013

Browse files
committed
0.8.1 release
1 parent 4338327 commit d718013

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,45 @@
11
## CHANGELOG
2+
3+
### 0.8.1
4+
5+
Move back to controlling DOM updates through React
6+
7+
Update & clean dependencies [#89](https://github.com/souporserious/react-popper/pull/89)
8+
29
### 0.8.0
10+
311
Upgrade PopperJS dependency to `1.12.9`
412

513
Fix `Popper` ref getting called too many times [#81](https://github.com/souporserious/react-popper/issues/81)
614

715
Let PopperJS style DOM for better performance as described in [vjeux's talk](https://speakerdeck.com/vjeux/react-rally-animated-react-performance-toolbox).
816

917
### 0.7.5
18+
1019
Fix PopperJS instantiation [#77](https://github.com/souporserious/react-popper/pull/77)
1120

1221
### 0.7.4
22+
1323
Allow React 16 as a peerDependency [#59](https://github.com/souporserious/react-popper/pull/59)
1424

1525
Updates TypeScript definition for IPopperChildrenProps [#61](https://github.com/souporserious/react-popper/pull/61)
1626

1727
Made scripts platform independent [#63](https://github.com/souporserious/react-popper/pull/63)
1828

1929
### 0.7.3
30+
2031
Upgraded dependencies [#44](https://github.com/souporserious/react-popper/pull/44)
2132

2233
Fix missing data-x-out-of-boundaries attribute [#45](https://github.com/souporserious/react-popper/pull/45)
2334

2435
Update how react-popper.d.ts imports PopperJS [#51](https://github.com/souporserious/react-popper/pull/51)
2536

2637
### 0.7.2
38+
2739
Fix `top` and `left` arrow calculation. Disregard the note below about changing the CSS positioning, this was an error on `react-popper`'s part.
2840

2941
### 0.7.1
42+
3043
Support `top` and `left` arrow offsets together, be aware this most likely broke any prior CSS positioning your arrows [#37](https://github.com/souporserious/react-popper/pull/37)
3144

3245
Fix `scheduleUpdate` call if `this._popper` does not exist [#38](https://github.com/souporserious/react-popper/pull/38)
@@ -36,38 +49,47 @@ Add typescript definitions [#40](https://github.com/souporserious/react-popper/p
3649
Upgrade to Popper.js 1.10.8
3750

3851
### 0.7.0
52+
3953
Change `Target`, `Popper`, and `Arrow` component's `tag` prop to `component` to allow custom components to be passed in.
4054

4155
Upgrade PopperJS 1.10.2
4256

4357
### 0.6.6
58+
4459
Upgrade PopperJS to 1.9.9
4560

4661
### 0.6.5
62+
4763
Call `innerRef` in _all_ component child functions
4864

4965
### 0.6.4
66+
5067
Call `innerRef` in child function as well
5168

5269
### 0.6.3
70+
5371
Upgrade PopperJS to 1.9.5
5472

5573
### 0.6.2
74+
5675
Replace `lodash.isequal` with `is-equal-shallow`
5776

5877
### 0.6.1
78+
5979
Pass down `scheduleUpdate` to `Popper` child function to allow programatic updates
6080

6181
Upgrade to Popper.js 1.9.4
6282

6383
Fix `modifier.function` is deprecated, use `modifier.fn` [#22](https://github.com/souporserious/react-popper/pull/22)
6484

6585
### 0.6.0
86+
6687
Make sure to pass props from above down to child function, fixes [#13](https://github.com/souporserious/react-popper/issues/13)
6788

6889
Recalculate size of `Popper` when children change, fixes [#15](https://github.com/souporserious/react-popper/issues/15)
6990

7091
### 0.5.0
92+
7193
Use `prop-types` package instead of React PropTypes [#9](https://github.com/souporserious/react-popper/pull/9)
7294

7395
Make updateState modifier return data object [#11](https://github.com/souporserious/react-popper/pull/11)
@@ -79,34 +101,43 @@ Moved back to `tag` instead of `component`. Use a child function now for custom
79101
Removed default classNames for `popper` and `popper__arrow` so we can be unopinionated about styling.
80102

81103
### 0.4.3
104+
82105
Allow passing children through to components
83106

84107
### 0.4.2
108+
85109
Move back to `translate3d` and round values since half pixel placement was the culprit for causing blurry text
86110

87111
### 0.4.1
112+
88113
Don't use `translate3d` since it causes blurry text on lower res displays
89114

90115
### 0.4.0
116+
91117
Remove `getRef` function since it seems to be causing problems.
92118

93119
Move functional components to classes so we can get nodes more reliably.
94120

95121
Spread modifier styles inside `_getPopperStyle` [#6](https://github.com/souporserious/react-popper/pull/6)
96122

97123
### 0.3.0
124+
98125
Renamed `PopperManager` -> `Manager`
99126

100127
Added `getRef` prop to `Target`, `Popper`, and `Arrow` components
101128

102129
### 0.2.2
130+
103131
Bundle popper.js with dist build
104132

105133
### 0.2.1
134+
106135
Remove React ARIA from demos for now
107136

108137
### 0.2.0
138+
109139
New API see README for full docs
110140

111141
### 0.1.0
142+
112143
Initial release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-popper",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "React wrapper around PopperJS.",
55
"main": "lib/react-popper.js",
66
"types": "react-popper.d.ts",

0 commit comments

Comments
 (0)