dependabot[bot] opened a new pull request, #48275: URL: https://github.com/apache/airflow/pull/48275
Bumps [chakra-react-select](https://github.com/csandman/chakra-react-select) from 6.0.0-next.2 to 6.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/csandman/chakra-react-select/releases">chakra-react-select's releases</a>.</em></p> <blockquote> <h2>6.0.1</h2> <h2>What's Changed</h2> <ul> <li>[ImgBot] Optimize images by <a href="https://github.com/imgbot"><code>@imgbot</code></a> in <a href="https://redirect.github.com/csandman/chakra-react-select/pull/349">csandman/chakra-react-select#349</a></li> <li>fix: Re-add relative positioning to MenuList by <a href="https://github.com/csandman"><code>@csandman</code></a> in <a href="https://redirect.github.com/csandman/chakra-react-select/pull/355">csandman/chakra-react-select#355</a></li> <li>Clean up the docs and improved the demo</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/csandman/chakra-react-select/compare/v6.0.0...v6.0.1">https://github.com/csandman/chakra-react-select/compare/v6.0.0...v6.0.1</a></p> <h2>6.0.0</h2> <p>Finally, a <a href="https://www.chakra-ui.com/blog/00-announcing-v3">Chakra V3</a> compatible version of Chakra React Select is ready to go! There were many breaking changes in the V3 release of Chakra UI, so this version took a while, but it's now ready for use in production. Thanks to everyone who tested out the pre-releases and gave feedback.</p> <p>The docs should be fully updated, but if anything doesn't make sense after the release, don't hesitate to <a href="https://github.com/csandman/chakra-react-select/issues/new?assignees=csandman&labels=Bug&projects=&template=bug_report.yml&title=%5BBUG%5D+">post an issue</a> or <a href="https://github.com/csandman/chakra-react-select/discussions/new?category=q-a">a discussion</a>. Unfortunately, due to the size of this release, there won't be a codemod available for migrating (similar to the core Chakra library). Here are all of the breaking changes that should be noted when upgrading.</p> <h2>Breaking Changes</h2> <ul> <li>Most of the styles pulled from the theme are now using styles from Chakra's new <a href="https://www.chakra-ui.com/docs/components/select"><code>Select</code> component</a>. <ul> <li>The exceptions are the <code>Control</code>, which still uses styles from the <code>Input</code> theme, and the <code>MultiValue</code> components, which still pull their styles from the <code>Tag</code> theme. The docs have been updated to list out which theme styles are being used for each React Select sub-component: <a href="https://github.com/csandman/chakra-react-select#theme-styles">https://github.com/csandman/chakra-react-select#theme-styles</a>.</li> </ul> </li> <li>Everything that was previously named <code>colorScheme</code> is now named <code>colorPalette</code>: <a href="https://www.chakra-ui.com/docs/get-started/migration#colorscheme-prop">https://www.chakra-ui.com/docs/get-started/migration#colorscheme-prop</a> <ul> <li><code>tagColorScheme</code> is now <code>tagColorPalette</code>.</li> <li><code>selectedOptionColorScheme</code> is now <code>selectedOptionColorPalette</code>.</li> <li>An individual option's <code>colorScheme</code> key is now <code>colorPalette</code>.</li> </ul> </li> <li>Some props were replaced on <code>chakraComponents.LoadingIndicator</code>: <ul> <li><code>emptyColor</code> is now <code>trackColor</code> (this isn't a real prop, but it maps to <a href="https://www.chakra-ui.com/docs/components/spinner#track-color">the <code>--spinner-track-color</code> css variable</a>).</li> <li><code>speed</code> is now <a href="https://www.chakra-ui.com/docs/components/spinner#custom-speed"><code>animationDuration</code></a>.</li> <li><code>thickness</code> is now <a href="https://www.chakra-ui.com/docs/components/spinner#thickness"><code>borderWidth</code></a>.</li> <li>The prop <a href="https://www.chakra-ui.com/docs/components/spinner#colors"><code>colorPalette</code></a> was also added to the loading indicator which can be used to set the color without specifying a token number (responds better to changes between light and dark mode).</li> </ul> </li> <li>The <code>LoadingIndicator</code> component no longer changes size in response to changes to the root <code>size</code> prop. With the new default size, the default spinner size ended up looking the best across all three select sizes.</li> <li><code>focusBorderColor</code> was replaced with <a href="https://www.chakra-ui.com/docs/styling/focus-ring#ring-color"><code>focusRingColor</code></a> and <code>errorBorderColor</code> was removed, as there is no longer any equivalent prop that exists.</li> <li>All boolean props have had the <code>is</code> prefix removed: <a href="https://www.chakra-ui.com/docs/get-started/migration#boolean-props">https://www.chakra-ui.com/docs/get-started/migration#boolean-props</a> <ul> <li><code>isRequired</code> is now the <code>required</code> attribute that's already built-in to <code>react-select</code>. It will behave the same as the <code>required</code> prop on any other Chakra component.</li> <li><code>isReadOnly</code> is now <code>readOnly</code></li> <li><code>isInvalid</code> is now <code>invalid</code>. This prop was removed from the core <code>Input</code>, <code>Select</code>, and <code>Textarea</code> components in the Chakra UI library in favor of passing them into a wrapping <code>Field.Root</code>. However, they were left on this package due to many users not always wrapping the <code>Select</code>: <a href="https://www.chakra-ui.com/docs/get-started/migration#input-select-textarea">https://www.chakra-ui.com/docs/get-started/migration#input-select-textarea</a></li> <li>Adds <code>disabled</code>, which will override the <code>isDisabled</code> prop built-in to <code>react-select</code> <ul> <li>This is just to keep the props consistent with the other Chakra prop names. The <code>isDisabled</code> prop from React Select will still function as it did previously.</li> </ul> </li> </ul> </li> <li>Add a default for the <code>menuPlacement</code> of <code>"auto"</code>. This is to more closely match the default flipping behavior of the Chakra <code>Select</code>.</li> </ul> <hr /> <p>One other change to note is that most of the other custom StackBlitz demos were removed from the readme. These were very time consuming to maintain, so they were removed to prevent confusion. However, most of the advanced examples were added to the main demo, so if you'd like to see how any of them have changed, you can check there.</p> <p>The main demo is now a direct copy of the demo project included in this repo. This should make maintenance much easier going forward, as this will always be the basis for testing future changes.</p> <hr /> <p><strong>Full Changelog</strong>: <a href="https://github.com/csandman/chakra-react-select/compare/v5.0.2...v6.0.0">https://github.com/csandman/chakra-react-select/compare/v5.0.2...v6.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csandman/chakra-react-select/commit/9dc874bb5de95db4c9926341c40d1f7fd3a06615"><code>9dc874b</code></a> 6.0.1</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/228e9518d76c6b5e1302911393916f7be069fb19"><code>228e951</code></a> Merge pull request <a href="https://redirect.github.com/csandman/chakra-react-select/issues/355">#355</a> from csandman/fix/menu-list-positioning</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/e92624b970907d28e3221cc6108da1529bb53ee2"><code>e92624b</code></a> Re-add relative positioning to MenuList</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/baedc047171dc147077a32839487901d0fefb2b7"><code>baedc04</code></a> Add advanced example for Dialog menu portal target</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/52c9bfed4285586be25ea2ca2f559b8cc69a2bd4"><code>52c9bfe</code></a> Add default tags</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/9f4fd9043af99928de2fb946a82df9f32b07c891"><code>9f4fd90</code></a> Clean up Readme</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/6cf5081978dbbbc74af2fa51447e3842f35a7107"><code>6cf5081</code></a> Merge pull request <a href="https://redirect.github.com/csandman/chakra-react-select/issues/349">#349</a> from csandman/imgbot</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/da4e30096d3d3a0e196ae19098156d4a9c3e0d44"><code>da4e300</code></a> Remove dead TOC links from readme</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/75ed3393533cd7e3ddf646fd6bd18abd5226248a"><code>75ed339</code></a> Update demo package lock</li> <li><a href="https://github.com/csandman/chakra-react-select/commit/216c4b39ecaf888862c7f126123646fde5207c55"><code>216c4b3</code></a> 6.0.0</li> <li>Additional commits viewable in <a href="https://github.com/csandman/chakra-react-select/compare/v6.0.0-next.2...v6.0.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
