JohnDeved / dropper

2 stars 0 forks source link

Bump rsuite from 4.8.0 to 5.22.0 #134

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps rsuite from 4.8.0 to 5.22.0.

Release notes

Sourced from rsuite's releases.

v5.22.0

New features

DatePicker shortcuts on the left-hand side

by @​daggmano in rsuite/rsuite#2851

Now you can add placement: 'left' to a shortcut config to place it to the left-hand side against the calendar view of DatePicker, just like what you could do with DateRangePicker since earlier releases.

<DatePicker
  ranges={[
    {
      label: 'yesterday',
      value: addDays(new Date(), -1),
+     placement: 'left'
    },
    {
      label: 'today',
      value: new Date(),
+     placement: 'left'
    }
  ]}
/>

Learn details at https://rsuitejs.com/components/date-picker/#custom-short-options

Reveal full content when hovering a Table cell

by @​simonguo in rsuite/rsuite#2862

Add fullText flag to Column to let the cells reveal full content when mouse is hovering.

<Column width={130} fullText>
  <HeaderCell>Name</HeaderCell>
  <Cell dataKey="name" />
</Column>

https://user-images.githubusercontent.com/1203827/199677220-f1f2f5d8-544c-40cf-b4ac-91434f4c7317.mp4

Learn details at https://rsuitejs.com/components/table/#show-full-text-of-cells

Bug fixes

... (truncated)

Changelog

Sourced from rsuite's changelog.

5.22.0 (2022-11-03)

Bug Fixes

  • DateRangePicker: fix end time not using time on second calendar (#2852) (b243567)
  • Table: remove transition on hover of table row (#2858) (9d26226)

Features

  • DatePicker: allow ranges on left of calendar (#2851) (ba2f7ee), closes #2845
  • Table: support for show full text when hovering over a cell (#2862) (f8b7eeb)
  • Table: support for show full text when hovering over a cell (#2862) (5528225)
  • Table: support for show full text when hovering over a cell (#2862) (fe2d769)
  • Table: support for show full text when hovering over a cell (#2862) (6c4cf18)

5.21.0 (2022-10-27)

Bug Fixes

  • DateRangePicker: fix end time will change with the start time (#2841) (7fb38dd)

Features

5.20.0 (2022-10-21)

Bug Fixes

  • DatePicker: reset calendar selection after closing picker menu (#2807) (1ef91a8)
  • Form.Control: when shouldResetWithUnmount should remove value and error (#2802) (f8d108a)

Features

  • SelectPicker,CheckPicker: add loading prop (#2808) (3a5e5d5)

5.19.1 (2022-10-13)

Bug Fixes

  • Cascader,MultiCascader: fix sub-columns not being removed when a leaf node is selected (#2792) (619c7de)
  • CheckTreePicker: fix children node can't uncheck when setting virtualized (#2782) (#2783) (50f7b89)
  • DateRangePicker: fix predefined range affecting calendar height (#2794) (957ce4e)
  • TreePicker, CheckTreePicker: ignore backspace when setting cleanable=false or disabled=true (#2798) (eefe0eb)
  • TreePicker,CheckTreePicker: fix renderExtraFooter causing the … (#2745) (d7279d1), closes #2758
  • TreePicker,CheckTreePicker: fix value being cleared internally when value is controlled (#2788) (4521a27), closes #2784

Features

... (truncated)

Commits
  • 836a840 build: bump 5.22.0
  • 3d7798c build(deps): upgrade @​babel/runtime from 7.19.0 to 7.19.4 (#2856)
  • 91f3743 build(example-gatsby): upgrade gatsby from 4.24.2 to 4.24.4 (#2859)
  • 60fd7ec build(example-preact): upgrade preact-render-to-string from 5.2.4 to 5.2.5 (#...
  • f2b5575 docs(Form): fix unrendered examples (#2860)
  • f8b7eeb feat(Table): support for show full text when hovering over a cell (#2862)
  • 5528225 feat(Table): support for show full text when hovering over a cell (#2862)
  • fe2d769 feat(Table): support for show full text when hovering over a cell (#2862)
  • 6c4cf18 feat(Table): support for show full text when hovering over a cell (#2862)
  • 9d26226 fix(Table): remove transition on hover of table row (#2858)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #138.