bcgov / nr-silva-webapp

NR SILVA Web Application - With React TS
Apache License 2.0
1 stars 0 forks source link

fix(deps): update dependency @aws-amplify/ui-react to v5 #8

Open bcgov-devops opened 1 year ago

bcgov-devops commented 1 year ago

This PR contains the following updates:

Package Type Update Change Pending
@aws-amplify/ui-react dependencies major ^4.6.4 -> ^5.0.0 5.1.1

Release Notes

aws-amplify/amplify-ui (@​aws-amplify/ui-react) ### [`v5.1.0`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#510) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.7...@aws-amplify/ui-react@5.1.0) ##### Minor Changes - [#​4288](https://togithub.com/aws-amplify/amplify-ui/pull/4288) [`30624bd4f`](https://togithub.com/aws-amplify/amplify-ui/commit/30624bd4f165ed07a1cc94071a2d5550510b07b7) Thanks [@​dbanksdesign](https://togithub.com/dbanksdesign)! - New component: Breadcrumbs! A composable component for displaying breadcrumb navigation ```jsx ``` ```jsx {breadcrumbs.map(({ href, label }, idx) => { const isCurrent = breadcrumbs.length - 1 === idx; return ( {label} {isCurrent ? null : /} ); })} ``` ##### Patch Changes - [#​4321](https://togithub.com/aws-amplify/amplify-ui/pull/4321) [`d0d9ac2de`](https://togithub.com/aws-amplify/amplify-ui/commit/d0d9ac2de9714c5e3d020bdac486291c50761441) Thanks [@​thaddmt](https://togithub.com/thaddmt)! - chore: set amplify dependencies to be ^ instead of >= - Updated dependencies \[[`d0d9ac2de`](https://togithub.com/aws-amplify/amplify-ui/commit/d0d9ac2de9714c5e3d020bdac486291c50761441), [`30624bd4f`](https://togithub.com/aws-amplify/amplify-ui/commit/30624bd4f165ed07a1cc94071a2d5550510b07b7)]: - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.29 - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).7.0 ### [`v5.0.7`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#507) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.6...@aws-amplify/ui-react@5.0.7) ##### Patch Changes - [#​4301](https://togithub.com/aws-amplify/amplify-ui/pull/4301) [`e7e75874d`](https://togithub.com/aws-amplify/amplify-ui/commit/e7e75874dea238046c94e4fdd965029620171254) Thanks [@​hbuchel](https://togithub.com/hbuchel)! - fix(react/ui): update paddingInlineEnd and icon placement on small and large Select primitives with related tokens for theming. - Updated dependencies \[[`e7e75874d`](https://togithub.com/aws-amplify/amplify-ui/commit/e7e75874dea238046c94e4fdd965029620171254), [`0417bd41c`](https://togithub.com/aws-amplify/amplify-ui/commit/0417bd41c065673eb70dd916c9008d88671445c9)]: - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).6.9 - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.28 ### [`v5.0.6`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#506) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.5...@aws-amplify/ui-react@5.0.6) ##### Patch Changes - [#​4271](https://togithub.com/aws-amplify/amplify-ui/pull/4271) [`6b71ec46c`](https://togithub.com/aws-amplify/amplify-ui/commit/6b71ec46ccbf63c4605c9a57d3ecff098a42938a) Thanks [@​dbanksdesign](https://togithub.com/dbanksdesign)! - fix(primitives): fix border color token for SwitchField thumb - Updated dependencies \[[`6b71ec46c`](https://togithub.com/aws-amplify/amplify-ui/commit/6b71ec46ccbf63c4605c9a57d3ecff098a42938a)]: - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).6.8 - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.27 ### [`v5.0.5`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#505) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.4...@aws-amplify/ui-react@5.0.5) ##### Patch Changes - [#​4227](https://togithub.com/aws-amplify/amplify-ui/pull/4227) [`d3ee05415`](https://togithub.com/aws-amplify/amplify-ui/commit/d3ee054159e1de81861bcd9273be9b1c87924cf4) Thanks [@​dbanksdesign](https://togithub.com/dbanksdesign)! - fix(react-native): border widths, spacing, font sizes, opacities in the theme don't throw runtime errors. These are all valid in a theme now: ```typescript const theme: Theme = { tokens: { borderWidths: { small: '4', medium: '1rem', large: 6, }, opacities: { '10': '0.2', }, space: { small: 4, medium: '6', large: '{space.small.value}', }, fontSizes: { small: '1rem', }, }, }; ``` - [#​3646](https://togithub.com/aws-amplify/amplify-ui/pull/3646) [`165a8abbd`](https://togithub.com/aws-amplify/amplify-ui/commit/165a8abbda8aa3e95fb9466fc60f8694c646d5bc) Thanks [@​Rogue-striker](https://togithub.com/Rogue-striker)! - Allow PasswordField visibility toggle icon border color to indicate error - [#​4216](https://togithub.com/aws-amplify/amplify-ui/pull/4216) [`f0b32d275`](https://togithub.com/aws-amplify/amplify-ui/commit/f0b32d27509cbc00013e96f6cfc735695b7784c8) Thanks [@​zchenwei](https://togithub.com/zchenwei)! - chore: mark internal used props as deprecated. - [#​4235](https://togithub.com/aws-amplify/amplify-ui/pull/4235) [`c3a418d8d`](https://togithub.com/aws-amplify/amplify-ui/commit/c3a418d8d8bd057c27de59379033c2c538762141) Thanks [@​dbanksdesign](https://togithub.com/dbanksdesign)! - fix(authenticator-react): force new password header and footer Adding Header and Footer components to ForceNewPassword screen - [#​4262](https://togithub.com/aws-amplify/amplify-ui/pull/4262) [`aea82ff1b`](https://togithub.com/aws-amplify/amplify-ui/commit/aea82ff1bb6e066ed8b70433f4d72cd34bf0ccae) Thanks [@​zchenwei](https://togithub.com/zchenwei)! - feat(ui-react-storage): Add a new connected component `StorageImage`. It allows you load the images managed by Amplify Storage. *Example:* ```jsx import { StorageImage } from '@​aws-amplify/ui-react-storage'; ; ``` - Updated dependencies \[[`78fdfd6c8`](https://togithub.com/aws-amplify/amplify-ui/commit/78fdfd6c8268c56204f905402162ad8cb40a0c8e), [`d3ee05415`](https://togithub.com/aws-amplify/amplify-ui/commit/d3ee054159e1de81861bcd9273be9b1c87924cf4), [`165a8abbd`](https://togithub.com/aws-amplify/amplify-ui/commit/165a8abbda8aa3e95fb9466fc60f8694c646d5bc), [`13098b36a`](https://togithub.com/aws-amplify/amplify-ui/commit/13098b36a75452d839955d141bd25f57538b1a22), [`37e490d39`](https://togithub.com/aws-amplify/amplify-ui/commit/37e490d3997a1dc55e2998c277790945921e6dc3), [`6d14bf3f3`](https://togithub.com/aws-amplify/amplify-ui/commit/6d14bf3f386523bacd6832e56cc5903f644da88e), [`aea82ff1b`](https://togithub.com/aws-amplify/amplify-ui/commit/aea82ff1bb6e066ed8b70433f4d72cd34bf0ccae)]: - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).6.7 - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.26 ### [`v5.0.4`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#504) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.3...@aws-amplify/ui-react@5.0.4) ##### Patch Changes - [#​4200](https://togithub.com/aws-amplify/amplify-ui/pull/4200) [`572730f7b`](https://togithub.com/aws-amplify/amplify-ui/commit/572730f7b16b87a6b2ab0c40116a4c8c5acdbd36) Thanks [@​zchenwei](https://togithub.com/zchenwei)! - fix: fix implicit `any` type inference for event handlers' event parameter. ### [`v5.0.3`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#503) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.2...@aws-amplify/ui-react@5.0.3) ##### Patch Changes - [#​4161](https://togithub.com/aws-amplify/amplify-ui/pull/4161) [`b0e16e78c`](https://togithub.com/aws-amplify/amplify-ui/commit/b0e16e78c6a41945aa79f3e14fa3f9e6cb0e5e76) Thanks [@​judygab](https://togithub.com/judygab)! - Add `borderColor`, `borderWidth`, and `borderStyle` style props - [#​4168](https://togithub.com/aws-amplify/amplify-ui/pull/4168) [`d930e2ed1`](https://togithub.com/aws-amplify/amplify-ui/commit/d930e2ed17f3e638e2b62699ba2dd164b32f8118) Thanks [@​calebpollman](https://togithub.com/calebpollman)! - chore(RWA/RNA): deprecate passwordSettings prop - Updated dependencies \[[`b0e16e78c`](https://togithub.com/aws-amplify/amplify-ui/commit/b0e16e78c6a41945aa79f3e14fa3f9e6cb0e5e76), [`d930e2ed1`](https://togithub.com/aws-amplify/amplify-ui/commit/d930e2ed17f3e638e2b62699ba2dd164b32f8118)]: - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).6.6 - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.25 ### [`v5.0.2`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#502) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.1...@aws-amplify/ui-react@5.0.2) ##### Patch Changes - Updated dependencies \[[`23180b470`](https://togithub.com/aws-amplify/amplify-ui/commit/23180b470c7b3b78a5970d00f8c2dc5ce8773eff), [`3cecd0765`](https://togithub.com/aws-amplify/amplify-ui/commit/3cecd0765b46c77c49af24fae7cfb9054ebe2cdb)]: - [@​aws-amplify/ui-react-core](https://togithub.com/aws-amplify/ui-react-core)[@​2](https://togithub.com/2).1.24 - [@​aws-amplify/ui](https://togithub.com/aws-amplify/ui)[@​5](https://togithub.com/5).6.5 ### [`v5.0.1`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#501) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@5.0.0...@aws-amplify/ui-react@5.0.1) ##### Patch Changes - [#​4099](https://togithub.com/aws-amplify/amplify-ui/pull/4099) [`be856b057`](https://togithub.com/aws-amplify/amplify-ui/commit/be856b057750f9d2706c2a1e43c6ff1669e50a7b) Thanks [@​calebpollman](https://togithub.com/calebpollman)! - fix(react): omit ReactNode from Collection children prop ### [`v5.0.0`](https://togithub.com/aws-amplify/amplify-ui/blob/HEAD/packages/react/CHANGELOG.md#500) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@4.6.5...@aws-amplify/ui-react@5.0.0) ##### Major Changes - [#​4048](https://togithub.com/aws-amplify/amplify-ui/pull/4048) [`c19278b0b`](https://togithub.com/aws-amplify/amplify-ui/commit/c19278b0bee7c9b499bd619c8ee0f458cbb5da83) Thanks [@​calebpollman](https://togithub.com/calebpollman)! - **Breaking Changes**: - `@aws-amplify/ui-react@5.x` removes the `to` prop on `Link` component and instead have it extended from the underlying rendered third-party `Link` if it contains a `to` prop ([PR](https://togithub.com/aws-amplify/amplify-ui/pull/4011)). - `@aws-amplify/ui-react@5.x` strictly types the `View` component and updates all component types to include the underlying rendered HTML element's attributes ([PR](https://togithub.com/aws-amplify/amplify-ui/pull/4011)). ### [`v4.6.5`](https://togithub.com/aws-amplify/amplify-ui/releases/tag/%40aws-amplify/ui-react%404.6.5) [Compare Source](https://togithub.com/aws-amplify/amplify-ui/compare/@aws-amplify/ui-react@4.6.4...@aws-amplify/ui-react@4.6.5) ##### Patch Changes - [#​4325](https://togithub.com/aws-amplify/amplify-ui/pull/4325) [`4da3e2595`](https://togithub.com/aws-amplify/amplify-ui/commit/4da3e2595fc83e390684b06d4dc062d2910a5ab5) Thanks [@​thaddmt](https://togithub.com/thaddmt)! - fix(react): update 4.x version to use ^ version of aws-amplify

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 is behind base branch, 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 Renovate Bot.