Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

3 anni fa
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. ## CHANGELOG
  2. Here are listed the changelogs until 0.8.2, if you are looking for more recent releases changelog please refer to the dedicated GitHub [releases](https://github.com/souporserious/react-popper/releases) page, where you will find all the releases plus the changelog for each of them.
  3. ----------
  4. ### 0.8.2
  5. fix es5 build [#90](https://github.com/souporserious/react-popper/pull/90)
  6. ### 0.8.1
  7. Move back to controlling DOM updates through React
  8. Update & clean dependencies [#89](https://github.com/souporserious/react-popper/pull/89)
  9. ### 0.8.0
  10. Upgrade PopperJS dependency to `1.12.9`
  11. Fix `Popper` ref getting called too many times [#81](https://github.com/souporserious/react-popper/issues/81)
  12. Let PopperJS style DOM for better performance as described in [vjeux's talk](https://speakerdeck.com/vjeux/react-rally-animated-react-performance-toolbox).
  13. ### 0.7.5
  14. Fix PopperJS instantiation [#77](https://github.com/souporserious/react-popper/pull/77)
  15. ### 0.7.4
  16. Allow React 16 as a peerDependency [#59](https://github.com/souporserious/react-popper/pull/59)
  17. Updates TypeScript definition for IPopperChildrenProps [#61](https://github.com/souporserious/react-popper/pull/61)
  18. Made scripts platform independent [#63](https://github.com/souporserious/react-popper/pull/63)
  19. ### 0.7.3
  20. Upgraded dependencies [#44](https://github.com/souporserious/react-popper/pull/44)
  21. Fix missing data-x-out-of-boundaries attribute [#45](https://github.com/souporserious/react-popper/pull/45)
  22. Update how react-popper.d.ts imports PopperJS [#51](https://github.com/souporserious/react-popper/pull/51)
  23. ### 0.7.2
  24. Fix `top` and `left` arrow calculation. Disregard the note below about changing the CSS positioning, this was an error on `react-popper`'s part.
  25. ### 0.7.1
  26. 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)
  27. Fix `scheduleUpdate` call if `this._popper` does not exist [#38](https://github.com/souporserious/react-popper/pull/38)
  28. Add typescript definitions [#40](https://github.com/souporserious/react-popper/pull/40)
  29. Upgrade to Popper.js 1.10.8
  30. ### 0.7.0
  31. Change `Target`, `Popper`, and `Arrow` component's `tag` prop to `component` to allow custom components to be passed in.
  32. Upgrade PopperJS 1.10.2
  33. ### 0.6.6
  34. Upgrade PopperJS to 1.9.9
  35. ### 0.6.5
  36. Call `innerRef` in _all_ component child functions
  37. ### 0.6.4
  38. Call `innerRef` in child function as well
  39. ### 0.6.3
  40. Upgrade PopperJS to 1.9.5
  41. ### 0.6.2
  42. Replace `lodash.isequal` with `is-equal-shallow`
  43. ### 0.6.1
  44. Pass down `scheduleUpdate` to `Popper` child function to allow programatic updates
  45. Upgrade to Popper.js 1.9.4
  46. Fix `modifier.function` is deprecated, use `modifier.fn` [#22](https://github.com/souporserious/react-popper/pull/22)
  47. ### 0.6.0
  48. Make sure to pass props from above down to child function, fixes [#13](https://github.com/souporserious/react-popper/issues/13)
  49. Recalculate size of `Popper` when children change, fixes [#15](https://github.com/souporserious/react-popper/issues/15)
  50. ### 0.5.0
  51. Use `prop-types` package instead of React PropTypes [#9](https://github.com/souporserious/react-popper/pull/9)
  52. Make updateState modifier return data object [#11](https://github.com/souporserious/react-popper/pull/11)
  53. Removed `findDOMNode` 🎉
  54. Moved back to `tag` instead of `component`. Use a child function now for custom components and pass down the provided ref to the proper component.
  55. Removed default classNames for `popper` and `popper__arrow` so we can be unopinionated about styling.
  56. ### 0.4.3
  57. Allow passing children through to components
  58. ### 0.4.2
  59. Move back to `translate3d` and round values since half pixel placement was the culprit for causing blurry text
  60. ### 0.4.1
  61. Don't use `translate3d` since it causes blurry text on lower res displays
  62. ### 0.4.0
  63. Remove `getRef` function since it seems to be causing problems.
  64. Move functional components to classes so we can get nodes more reliably.
  65. Spread modifier styles inside `_getPopperStyle` [#6](https://github.com/souporserious/react-popper/pull/6)
  66. ### 0.3.0
  67. Renamed `PopperManager` -> `Manager`
  68. Added `getRef` prop to `Target`, `Popper`, and `Arrow` components
  69. ### 0.2.2
  70. Bundle popper.js with dist build
  71. ### 0.2.1
  72. Remove React ARIA from demos for now
  73. ### 0.2.0
  74. New API see README for full docs
  75. ### 0.1.0
  76. Initial release