eunchurn / mullae-instant

#mullaeinstant project page.
https://mullaeinstant.com
6 stars 6 forks source link

fix(deps): update dependency react-draggable to v4.4.5 #35

Open renovate[bot] opened 3 years ago

renovate[bot] commented 3 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-draggable 4.2.0 -> 4.4.5 age adoption passing confidence

Release Notes

react-grid-layout/react-draggable ### [`v4.4.5`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​445-Apr-26-2022) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.4.4...v4.4.5) - Fix: `grid` prop unused in `handleDragStop` [#​621](https://togithub.com/react-grid-layout/react-draggable/issues/621) - Fix: `children` prop missing in TypeScript definition [#​648](https://togithub.com/react-grid-layout/react-draggable/issues/648) - Internal: Various devDep updates ### [`v4.4.4`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​444-Aug-27-2021) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.4.3...v4.4.4) - Fix: Ensure `documentElement.style` actually exists. Fixes crashes in some obscure environments. [#​574](https://togithub.com/react-grid-layout/react-draggable/issues/574) [#​575](https://togithub.com/react-grid-layout/react-draggable/issues/575) - Fix: Add react/react-dom as `peerDependencies` again to fix Yarn PnP - Size: Replace `classnames` with `clsx` to save a few bytes - Internal: Additional tests on `ref` functionality and additional README content on `nodeRef` - Internal: Lots of devDependencies updates - Docs: Various README and demo updates, see git commits ### [`v4.4.3`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​443-June-8-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.4.2...v4.4.3) - Add `nodeRef` to TypeScript definitions ### [`v4.4.2`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​442-May-14-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.4.1...v4.4.2) - Fix: Remove "module" from package.json (it is no longer being built) - Fixes [#​482](https://togithub.com/react-grid-layout/react-draggable/issues/482) ### [`v4.4.1`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​441-May-12-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.4.0...v4.4.1) - Fix: Remove "module" definition in package.json - Giving up on this: there isn't a great reason to publish modules here as they won't be significantly tree-shook, and it bloats the published package. - Fixes incompatiblity in 4.4.0 with webpack, where webpack is now selecting "module" because "browser" is no longer present. ### [`v4.4.0`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​440-May-12-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.3.1...v4.4.0) - Add `nodeRef`: - If running in React Strict mode, ReactDOM.findDOMNode() is deprecated. Unfortunately, in order for `` to work properly, we need raw access to the underlying DOM node. If you want to avoid the warning, pass a `nodeRef` as in this example: ```js function MyComponent() { const nodeRef = React.useRef(null); return (
Example Target
); } ``` This can be used for arbitrarily nested components, so long as the ref ends up pointing to the actual child DOM node and not a custom component. Thanks to react-transition-group for the inspiration. `nodeRef` is also available on ``. - Remove "browser" field in "package.json": - There is nothing special in the browser build that is actually practical for modern use. The "browser" field, as defined in https://github.com/defunctzombie/package-browser-field-spec#overview, indicates that you should use it if you are directly accessing globals, using browser-specific features, dom manipulation, etc. React components like react-draggable are built to do minimal raw DOM manipulation, and to always gate this behind conditionals to ensure that server-side rendering still works. We don't make any changes to any of that for the "browser" build, so it's entirely redundant. This should also fix the "Super expression must either be null or a function" error ([#​472](https://togithub.com/react-grid-layout/react-draggable/issues/472)) that some users have experienced with particular bundler configurations. The browser build may still be imported at "build/web/react-draggable.min.js". This is to prevent breakage only. The file is no longer minified to prevent possible [terser bugs](https://togithub.com/terser/terser/issues/308). - The browser build will likely be removed entirely in 5.0. - Fix: Make `bounds` optional in TypeScript [#​473](https://togithub.com/strml/react-draggable/pull/473) ### [`v4.3.1`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​431-Apr-11-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.3.0...v4.3.1) > This is a bugfix release. - Happy Easter! - Fixed a serious bug that caused `` not to pass styles. - `React.cloneElement` has an odd quirk. When you do: ```js return React.cloneElement(this.props.children, {style: this.props.children.props.style}); ``` , `style` ends up undefined. - Fixed a bug that caused debug output to show up in the build. - `babel-loader` cache does not invalidate when it should. I had modified webpack.config.js in the last version but it reused stale cache. ### [`v4.3.0`](https://togithub.com/react-grid-layout/react-draggable/blob/HEAD/CHANGELOG.md#​430-Apr-10-2020) [Compare Source](https://togithub.com/react-grid-layout/react-draggable/compare/v4.2.0...v4.3.0) - Fix setState warning after dismount if drag still active. Harmless, but prints a warning. [#​424](https://togithub.com/mzabriskie/react-draggable/pull/424) - Fix a long-standing issue where text inputs would unfocus upon dismounting a ``. - Thanks [@​schnerd](https://togithub.com/schnerd), [#​450](https://togithub.com/mzabriskie/react-draggable/pull/450) - Fix an issue where the insides of a `` were not scrollable on touch devices due to the outer container having `touch-action: none`. - This was a long-standing hack for mobile devices. Without it, the page will scroll while you drag the element. - The new solution will simply cancel the touch event `e.preventDefault()`. However, due to changes in Chrome >= 56, this is only possible on non-passive event handlers. To fix this, we now add/remove the touchEvent on lifecycle events rather than using React's event system. - [#​465](https://togithub.com/mzabriskie/react-draggable/pull/465) - Upgrade devDeps and fix security warnings. None of them actually applied to this module.

Configuration

šŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

šŸš¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.

ā™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

šŸ”• Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 1 year ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

āš ļø Warning: custom changes will be lost.