dependabot[bot] opened a new pull request, #55075:
URL: https://github.com/apache/airflow/pull/55075

   Bumps the core-ui-package-updates group with 4 updates in the 
/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui directory: 
[@chakra-ui/react](https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react),
 
[@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react),
 
[@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)
 and [typescript](https://github.com/microsoft/TypeScript).
   
   Updates `@chakra-ui/react` from 3.25.0 to 3.26.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/chakra-ui/chakra-ui/releases";><code>@​chakra-ui/react</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2><code>@​chakra-ui/react</code><a 
href="https://github.com/3";><code>@​3</code></a>.26.0</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li>
   <p><a 
href="https://github.com/chakra-ui/chakra-ui/commit/b9eede50a104bee4e74cb54704f121c973652a0b";><code>b9eede5</code></a>
   Thanks <a 
href="https://github.com/segunadebayo";><code>@​segunadebayo</code></a>! - - 
<strong>Listbox
   [New]</strong>: Add new component with support for single/multi-select, 
grouping,
   virtualization, controlled state, icons, descriptions, and accessibility
   features.</p>
   <p>This component can be used to build command palettes, dropdowns with 
search,
   and much more.</p>
   <pre lang="tsx"><code>&lt;Listbox.Root collection={frameworks} 
width=&quot;320px&quot;&gt;
     &lt;Listbox.Label&gt;Select framework&lt;/Listbox.Label&gt;
     &lt;Listbox.Content&gt;
       {frameworks.items.map((framework) =&gt; (
         &lt;Listbox.Item item={framework} key={framework.value}&gt;
           &lt;Listbox.ItemText&gt;{framework.label}&lt;/Listbox.ItemText&gt;
           &lt;Listbox.ItemIndicator /&gt;
         &lt;/Listbox.Item&gt;
       ))}
     &lt;/Listbox.Content&gt;
   &lt;/Listbox.Root&gt;
   </code></pre>
   <ul>
   <li><strong>Hover Card</strong>: Add support for <code>disabled</code> 
prop</li>
   <li><strong>Select, Menu</strong>: Fix issue where disabled items could be 
reached via
   typeahead</li>
   <li><strong>Color Picker</strong>: Fix issue where color picker was not 
working correctly in
   RTL mode</li>
   <li><strong>Number Input</strong>
   <ul>
   <li>Omit the input <code>pattern</code> when <code>formatOptions</code> is 
provided. This prevents
   native pattern validation from conflicting with formatted values (e.g.,
   currency or percent).</li>
   <li>Handle empty values consistently across all format options.</li>
   <li>Add <code>data-scrubbing</code> attribute to the number input parts.</li>
   </ul>
   </li>
   </ul>
   </li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p><a 
href="https://github.com/chakra-ui/chakra-ui/commit/b9eede50a104bee4e74cb54704f121c973652a0b";><code>b9eede5</code></a>
   Thanks <a 
href="https://github.com/segunadebayo";><code>@​segunadebayo</code></a>! - 
<strong>CodeBlock</strong>: Add
   configurable theme support and sync loading for Shiki adapter</p>
   <ul>
   <li><strong>Theme configuration is now required</strong> - The 
<code>theme</code> property must be
   explicitly provided to <code>createShikiAdapter</code></li>
   <li><strong>Removed hard-coded theme fallbacks</strong> - Missing themes now 
throw
   descriptive errors</li>
   <li><strong>Optional sync loading</strong> with <code>loadSync</code> method 
for better performance</li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/chakra-ui/chakra-ui/blob/main/packages/react/CHANGELOG.md";><code>@​chakra-ui/react</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2>3.26.0</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li>
   <p><a 
href="https://github.com/chakra-ui/chakra-ui/commit/b9eede50a104bee4e74cb54704f121c973652a0b";><code>b9eede5</code></a>
   Thanks <a 
href="https://github.com/segunadebayo";><code>@​segunadebayo</code></a>! - - 
<strong>Listbox
   [New]</strong>: Add new component with support for single/multi-select, 
grouping,
   virtualization, controlled state, icons, descriptions, and accessibility
   features.</p>
   <p>This component can be used to build command palettes, dropdowns with 
search,
   and much more.</p>
   <pre lang="tsx"><code>&lt;Listbox.Root collection={frameworks} 
width=&quot;320px&quot;&gt;
     &lt;Listbox.Label&gt;Select framework&lt;/Listbox.Label&gt;
     &lt;Listbox.Content&gt;
       {frameworks.items.map((framework) =&gt; (
         &lt;Listbox.Item item={framework} key={framework.value}&gt;
           &lt;Listbox.ItemText&gt;{framework.label}&lt;/Listbox.ItemText&gt;
           &lt;Listbox.ItemIndicator /&gt;
         &lt;/Listbox.Item&gt;
       ))}
     &lt;/Listbox.Content&gt;
   &lt;/Listbox.Root&gt;
   </code></pre>
   <ul>
   <li><strong>Hover Card</strong>: Add support for <code>disabled</code> 
prop</li>
   <li><strong>Select, Menu</strong>: Fix issue where disabled items could be 
reached via
   typeahead</li>
   <li><strong>Color Picker</strong>: Fix issue where color picker was not 
working correctly in
   RTL mode</li>
   <li><strong>Number Input</strong>
   <ul>
   <li>Omit the input <code>pattern</code> when <code>formatOptions</code> is 
provided. This prevents
   native pattern validation from conflicting with formatted values (e.g.,
   currency or percent).</li>
   <li>Handle empty values consistently across all format options.</li>
   <li>Add <code>data-scrubbing</code> attribute to the number input parts.</li>
   </ul>
   </li>
   </ul>
   </li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/b9eede50a104bee4e74cb54704f121c973652a0b";><code>b9eede5</code></a>
   Thanks <a 
href="https://github.com/segunadebayo";><code>@​segunadebayo</code></a>! - 
<strong>CodeBlock</strong>: Add
   configurable theme support and sync loading for Shiki adapter
   <ul>
   <li><strong>Theme configuration is now required</strong> - The 
<code>theme</code> property must be
   explicitly provided to <code>createShikiAdapter</code></li>
   <li><strong>Removed hard-coded theme fallbacks</strong> - Missing themes now 
throw
   descriptive errors</li>
   <li><strong>Optional sync loading</strong> with <code>loadSync</code> method 
for better performance</li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/d17db11124904e12215213e2adc8e3a3871e9f48";><code>d17db11</code></a>
 Version Packages (<a 
href="https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react/issues/10273";>#10273</a>)</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/a8ae90cb02044b54a2bb221d619b997793697244";><code>a8ae90c</code></a>
 docs: scroll-area + menu</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/5dc39b9948c861984ec2e5ed463d9172657627c1";><code>5dc39b9</code></a>
 docs: menu with overflow</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/51bf9f0747198d793075e35d09af4e6987410ff6";><code>51bf9f0</code></a>
 chore: bump ark-ui</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/42e115f55f041e56ed45126b1b4101fc8de0ca1e";><code>42e115f</code></a>
 fix(pagination): export pagination types (<a 
href="https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react/issues/10277";>#10277</a>)</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/2dd0617b2f8b7e416e6deaef3edafc6acac957b0";><code>2dd0617</code></a>
 docs: radiomark</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/b9eede50a104bee4e74cb54704f121c973652a0b";><code>b9eede5</code></a>
 refactor: code block thems</li>
   <li><a 
href="https://github.com/chakra-ui/chakra-ui/commit/5be1e5aa3acf0a68bfaeac8c424f507717f332dd";><code>5be1e5a</code></a>
 feat: listbox component (<a 
href="https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/react/issues/10262";>#10262</a>)</li>
   <li>See full diff in <a 
href="https://github.com/chakra-ui/chakra-ui/commits/@chakra-ui/[email protected]/packages/react";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@types/react` from 19.1.11 to 19.1.12
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@types/react-dom` from 19.1.8 to 19.1.9
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `typescript` from 5.8.3 to 5.9.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/microsoft/TypeScript/releases";>typescript's 
releases</a>.</em></p>
   <blockquote>
   <h2>TypeScript 5.9</h2>
   <p>For release notes, check out the <a 
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/";>release
 announcement</a></p>
   <ul>
   <li><a 
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+";>fixed
 issues query for Typescript 5.9.0 (Beta)</a>.</li>
   <li><a 
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+";>fixed
 issues query for Typescript 5.9.1 (RC)</a>.</li>
   <li><em>No specific changes for TypeScript 5.9.2 (Stable)</em></li>
   </ul>
   <p>Downloads are available on:</p>
   <ul>
   <li><a href="https://www.npmjs.com/package/typescript";>npm</a></li>
   </ul>
   <h2>TypeScript 5.9 RC</h2>
   <p>For release notes, check out the <a 
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9-rc/";>release
 announcement</a></p>
   <ul>
   <li><a 
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+";>fixed
 issues query for Typescript 5.9.0 (Beta)</a>.</li>
   <li><a 
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+";>fixed
 issues query for Typescript 5.9.1 (RC)</a>.</li>
   </ul>
   <p>Downloads are available on:</p>
   <ul>
   <li><a href="https://www.npmjs.com/package/typescript";>npm</a></li>
   </ul>
   <h2>TypeScript 5.9 Beta</h2>
   <p>For release notes, check out the <a 
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9-beta/";>release
 announcement</a>.</p>
   <ul>
   <li><a 
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+";>fixed
 issues query for Typescript 5.9.0 (Beta)</a>.</li>
   </ul>
   <p>Downloads are available on:</p>
   <ul>
   <li><a href="https://www.npmjs.com/package/typescript";>npm</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/be8678315541e814da14316848a9468e8f90ab11";><code>be86783</code></a>
 Give more specific errors for <code>verbatimModuleSyntax</code> (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/62113";>#62113</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/22ef57786f5ca99837c430439bc6003c068fe1d2";><code>22ef577</code></a>
 LEGO: Pull request from 
lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/d5a414cd1dceb209fd2569e89d1096812218e8c5";><code>d5a414c</code></a>
 Don't use <code>noErrorTruncation</code> when printing types with 
<code>maximumLength</code> set (#...</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/f14b5c8a2f0be503ac455054a91573c63f0e5088";><code>f14b5c8</code></a>
 Remove unused and confusing dom.iterable.d.ts file (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/62037";>#62037</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/2778e84ed88894156e2c5a17d74a25c73cc96ffe";><code>2778e84</code></a>
 Restore AbortSignal.abort (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/62086";>#62086</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/65cb4bd2d52cd882f2c3a503681479eb2ed291ca";><code>65cb4bd</code></a>
 LEGO: Pull request from 
lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/9e20e032effad965567d4a1e1c30d5433b0a3332";><code>9e20e03</code></a>
 Clear out checker-level stacks on pop (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/62016";>#62016</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/87740bc7fe3d8d2af47d767db081491f40b8a90d";><code>87740bc</code></a>
 Fix for Issue 61081 (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/61221";>#61221</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/833a8d492c728d606454865e8c0fee84842f9f10";><code>833a8d4</code></a>
 Fix Symbol completion priority and cursor positioning (<a 
href="https://redirect.github.com/microsoft/TypeScript/issues/61945";>#61945</a>)</li>
   <li><a 
href="https://github.com/microsoft/TypeScript/commit/0018c9ff12e657b84997dc1843818fea0a2ce850";><code>0018c9f</code></a>
 LEGO: Pull request from 
lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </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]

Reply via email to