dependabot[bot] opened a new pull request, #24127: URL: https://github.com/apache/camel/pull/24127
Bumps `tamboui-version` from 0.3.0 to 0.4.0. Updates `dev.tamboui:tamboui-tui` from 0.3.0 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tamboui/tamboui/releases">dev.tamboui:tamboui-tui's releases</a>.</em></p> <blockquote> <h2>Release v0.4.0</h2> <h1>TamboUI 0.4.0 Release Notes</h1> <p><strong>74 commits · 6,100+ lines added · 12 contributors</strong></p> <p>TamboUI 0.4.0 brings new widgets, enhanced sparklines, a scrollable container element, braille spinners, and a batch of important fixes across platforms.</p> <hr /> <h2>✨ New Features</h2> <h3>DualSparkline Widget</h3> <p>A brand-new widget for visualizing two time-series datasets as vertical bars growing in opposite directions from a shared centre axis — think macOS Activity Monitor's network graphs. Available both as a low-level widget and as a Toolkit DSL element.</p> <pre lang="java"><code>DualSparkline chart = DualSparkline.builder() .topData(inRates) .bottomData(outRates) .topStyle(Style.EMPTY.fg(Color.GREEN)) .bottomStyle(Style.EMPTY.fg(Color.BLUE)) .xLabels("-60s", "-30s", "now") .build(); </code></pre> <!-- raw HTML omitted --> <h3>Enhanced Sparkline: Multi-Row Rendering & Axis Labels</h3> <p>The existing <code>Sparkline</code> widget gained major upgrades:</p> <ul> <li><strong>Multi-row rendering</strong> — sparklines can now span multiple rows for higher-resolution visualization</li> <li><strong>Y-axis labels</strong> — toggle a maximum-value label on the left</li> <li><strong>X-axis labels</strong> — add evenly-distributed labels below the chart</li> </ul> <!-- raw HTML omitted --> <h3>ScrollableElement (Toolkit)</h3> <p>A new <code>ScrollableElement</code> container with a built-in vertical scrollbar. Each child is one scrollable unit, with keyboard (↑/↓, PgUp/PgDn) and mouse wheel support out of the box. Closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>.</p> <!-- raw HTML omitted --> <h3>Braille Spinner Animations</h3> <p>New <code>BRAILLE_WAVE</code> spinner style using Unicode braille characters for smooth, compact loading indicators. The underlying <code>BraillePatterns</code> API (renamed from <code>BrailleGridFrames</code>) is cleaner and more flexible.</p> <!-- raw HTML omitted --> <h3>Panel Title Alignment</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tamboui/tamboui/commit/8036f47833e298829e2386a750fb677e678c6dd0"><code>8036f47</code></a> [release] Releasing version 0.4.0</li> <li><a href="https://github.com/tamboui/tamboui/commit/c79e16993724c118f6a2839a5e894355f05853a3"><code>c79e169</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/327">#327</a> from ncovercash/add-scrollable</li> <li><a href="https://github.com/tamboui/tamboui/commit/54411e27cc88a6a00f295af2081e5962aa0d689a"><code>54411e2</code></a> fix: address review feedback on ScrollableElement</li> <li><a href="https://github.com/tamboui/tamboui/commit/cf11f1b6b968a8e36ae961d3d06b26f203e5507f"><code>cf11f1b</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/326">#326</a> from ncovercash/inputs-before-labels</li> <li><a href="https://github.com/tamboui/tamboui/commit/9be467f654e8ac762ac497aa1e5c3812655445f3"><code>9be467f</code></a> Add demo</li> <li><a href="https://github.com/tamboui/tamboui/commit/a50a61dd314a7f891b80a98f694f53acaee3c91e"><code>a50a61d</code></a> fix formatting</li> <li><a href="https://github.com/tamboui/tamboui/commit/9fa9f0f83633fd48250302e1bdfc73edbc5300ea"><code>9fa9f0f</code></a> expose state</li> <li><a href="https://github.com/tamboui/tamboui/commit/5b68131ad59d2f88216569d38c31563d3d3642db"><code>5b68131</code></a> Rename to ScrollableElement, for consistency</li> <li><a href="https://github.com/tamboui/tamboui/commit/77f9b1e6ffcf17f3e28c19cb226d56b38d75171c"><code>77f9b1e</code></a> Add new Scrollable element (closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>)</li> <li><a href="https://github.com/tamboui/tamboui/commit/9eb14cdbdc06297aef74e9120ca5d1fa3e5ce019"><code>9eb14cd</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/360">#360</a> from acltabontabon/main</li> <li>Additional commits viewable in <a href="https://github.com/tamboui/tamboui/compare/v0.3.0...v0.4.0">compare view</a></li> </ul> </details> <br /> Updates `dev.tamboui:tamboui-widgets` from 0.3.0 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tamboui/tamboui/releases">dev.tamboui:tamboui-widgets's releases</a>.</em></p> <blockquote> <h2>Release v0.4.0</h2> <h1>TamboUI 0.4.0 Release Notes</h1> <p><strong>74 commits · 6,100+ lines added · 12 contributors</strong></p> <p>TamboUI 0.4.0 brings new widgets, enhanced sparklines, a scrollable container element, braille spinners, and a batch of important fixes across platforms.</p> <hr /> <h2>✨ New Features</h2> <h3>DualSparkline Widget</h3> <p>A brand-new widget for visualizing two time-series datasets as vertical bars growing in opposite directions from a shared centre axis — think macOS Activity Monitor's network graphs. Available both as a low-level widget and as a Toolkit DSL element.</p> <pre lang="java"><code>DualSparkline chart = DualSparkline.builder() .topData(inRates) .bottomData(outRates) .topStyle(Style.EMPTY.fg(Color.GREEN)) .bottomStyle(Style.EMPTY.fg(Color.BLUE)) .xLabels("-60s", "-30s", "now") .build(); </code></pre> <!-- raw HTML omitted --> <h3>Enhanced Sparkline: Multi-Row Rendering & Axis Labels</h3> <p>The existing <code>Sparkline</code> widget gained major upgrades:</p> <ul> <li><strong>Multi-row rendering</strong> — sparklines can now span multiple rows for higher-resolution visualization</li> <li><strong>Y-axis labels</strong> — toggle a maximum-value label on the left</li> <li><strong>X-axis labels</strong> — add evenly-distributed labels below the chart</li> </ul> <!-- raw HTML omitted --> <h3>ScrollableElement (Toolkit)</h3> <p>A new <code>ScrollableElement</code> container with a built-in vertical scrollbar. Each child is one scrollable unit, with keyboard (↑/↓, PgUp/PgDn) and mouse wheel support out of the box. Closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>.</p> <!-- raw HTML omitted --> <h3>Braille Spinner Animations</h3> <p>New <code>BRAILLE_WAVE</code> spinner style using Unicode braille characters for smooth, compact loading indicators. The underlying <code>BraillePatterns</code> API (renamed from <code>BrailleGridFrames</code>) is cleaner and more flexible.</p> <!-- raw HTML omitted --> <h3>Panel Title Alignment</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tamboui/tamboui/commit/8036f47833e298829e2386a750fb677e678c6dd0"><code>8036f47</code></a> [release] Releasing version 0.4.0</li> <li><a href="https://github.com/tamboui/tamboui/commit/c79e16993724c118f6a2839a5e894355f05853a3"><code>c79e169</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/327">#327</a> from ncovercash/add-scrollable</li> <li><a href="https://github.com/tamboui/tamboui/commit/54411e27cc88a6a00f295af2081e5962aa0d689a"><code>54411e2</code></a> fix: address review feedback on ScrollableElement</li> <li><a href="https://github.com/tamboui/tamboui/commit/cf11f1b6b968a8e36ae961d3d06b26f203e5507f"><code>cf11f1b</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/326">#326</a> from ncovercash/inputs-before-labels</li> <li><a href="https://github.com/tamboui/tamboui/commit/9be467f654e8ac762ac497aa1e5c3812655445f3"><code>9be467f</code></a> Add demo</li> <li><a href="https://github.com/tamboui/tamboui/commit/a50a61dd314a7f891b80a98f694f53acaee3c91e"><code>a50a61d</code></a> fix formatting</li> <li><a href="https://github.com/tamboui/tamboui/commit/9fa9f0f83633fd48250302e1bdfc73edbc5300ea"><code>9fa9f0f</code></a> expose state</li> <li><a href="https://github.com/tamboui/tamboui/commit/5b68131ad59d2f88216569d38c31563d3d3642db"><code>5b68131</code></a> Rename to ScrollableElement, for consistency</li> <li><a href="https://github.com/tamboui/tamboui/commit/77f9b1e6ffcf17f3e28c19cb226d56b38d75171c"><code>77f9b1e</code></a> Add new Scrollable element (closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>)</li> <li><a href="https://github.com/tamboui/tamboui/commit/9eb14cdbdc06297aef74e9120ca5d1fa3e5ce019"><code>9eb14cd</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/360">#360</a> from acltabontabon/main</li> <li>Additional commits viewable in <a href="https://github.com/tamboui/tamboui/compare/v0.3.0...v0.4.0">compare view</a></li> </ul> </details> <br /> Updates `dev.tamboui:tamboui-jline3-backend` from 0.3.0 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tamboui/tamboui/releases">dev.tamboui:tamboui-jline3-backend's releases</a>.</em></p> <blockquote> <h2>Release v0.4.0</h2> <h1>TamboUI 0.4.0 Release Notes</h1> <p><strong>74 commits · 6,100+ lines added · 12 contributors</strong></p> <p>TamboUI 0.4.0 brings new widgets, enhanced sparklines, a scrollable container element, braille spinners, and a batch of important fixes across platforms.</p> <hr /> <h2>✨ New Features</h2> <h3>DualSparkline Widget</h3> <p>A brand-new widget for visualizing two time-series datasets as vertical bars growing in opposite directions from a shared centre axis — think macOS Activity Monitor's network graphs. Available both as a low-level widget and as a Toolkit DSL element.</p> <pre lang="java"><code>DualSparkline chart = DualSparkline.builder() .topData(inRates) .bottomData(outRates) .topStyle(Style.EMPTY.fg(Color.GREEN)) .bottomStyle(Style.EMPTY.fg(Color.BLUE)) .xLabels("-60s", "-30s", "now") .build(); </code></pre> <!-- raw HTML omitted --> <h3>Enhanced Sparkline: Multi-Row Rendering & Axis Labels</h3> <p>The existing <code>Sparkline</code> widget gained major upgrades:</p> <ul> <li><strong>Multi-row rendering</strong> — sparklines can now span multiple rows for higher-resolution visualization</li> <li><strong>Y-axis labels</strong> — toggle a maximum-value label on the left</li> <li><strong>X-axis labels</strong> — add evenly-distributed labels below the chart</li> </ul> <!-- raw HTML omitted --> <h3>ScrollableElement (Toolkit)</h3> <p>A new <code>ScrollableElement</code> container with a built-in vertical scrollbar. Each child is one scrollable unit, with keyboard (↑/↓, PgUp/PgDn) and mouse wheel support out of the box. Closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>.</p> <!-- raw HTML omitted --> <h3>Braille Spinner Animations</h3> <p>New <code>BRAILLE_WAVE</code> spinner style using Unicode braille characters for smooth, compact loading indicators. The underlying <code>BraillePatterns</code> API (renamed from <code>BrailleGridFrames</code>) is cleaner and more flexible.</p> <!-- raw HTML omitted --> <h3>Panel Title Alignment</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tamboui/tamboui/commit/8036f47833e298829e2386a750fb677e678c6dd0"><code>8036f47</code></a> [release] Releasing version 0.4.0</li> <li><a href="https://github.com/tamboui/tamboui/commit/c79e16993724c118f6a2839a5e894355f05853a3"><code>c79e169</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/327">#327</a> from ncovercash/add-scrollable</li> <li><a href="https://github.com/tamboui/tamboui/commit/54411e27cc88a6a00f295af2081e5962aa0d689a"><code>54411e2</code></a> fix: address review feedback on ScrollableElement</li> <li><a href="https://github.com/tamboui/tamboui/commit/cf11f1b6b968a8e36ae961d3d06b26f203e5507f"><code>cf11f1b</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/326">#326</a> from ncovercash/inputs-before-labels</li> <li><a href="https://github.com/tamboui/tamboui/commit/9be467f654e8ac762ac497aa1e5c3812655445f3"><code>9be467f</code></a> Add demo</li> <li><a href="https://github.com/tamboui/tamboui/commit/a50a61dd314a7f891b80a98f694f53acaee3c91e"><code>a50a61d</code></a> fix formatting</li> <li><a href="https://github.com/tamboui/tamboui/commit/9fa9f0f83633fd48250302e1bdfc73edbc5300ea"><code>9fa9f0f</code></a> expose state</li> <li><a href="https://github.com/tamboui/tamboui/commit/5b68131ad59d2f88216569d38c31563d3d3642db"><code>5b68131</code></a> Rename to ScrollableElement, for consistency</li> <li><a href="https://github.com/tamboui/tamboui/commit/77f9b1e6ffcf17f3e28c19cb226d56b38d75171c"><code>77f9b1e</code></a> Add new Scrollable element (closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>)</li> <li><a href="https://github.com/tamboui/tamboui/commit/9eb14cdbdc06297aef74e9120ca5d1fa3e5ce019"><code>9eb14cd</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/360">#360</a> from acltabontabon/main</li> <li>Additional commits viewable in <a href="https://github.com/tamboui/tamboui/compare/v0.3.0...v0.4.0">compare view</a></li> </ul> </details> <br /> Updates `dev.tamboui:tamboui-image` from 0.3.0 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tamboui/tamboui/releases">dev.tamboui:tamboui-image's releases</a>.</em></p> <blockquote> <h2>Release v0.4.0</h2> <h1>TamboUI 0.4.0 Release Notes</h1> <p><strong>74 commits · 6,100+ lines added · 12 contributors</strong></p> <p>TamboUI 0.4.0 brings new widgets, enhanced sparklines, a scrollable container element, braille spinners, and a batch of important fixes across platforms.</p> <hr /> <h2>✨ New Features</h2> <h3>DualSparkline Widget</h3> <p>A brand-new widget for visualizing two time-series datasets as vertical bars growing in opposite directions from a shared centre axis — think macOS Activity Monitor's network graphs. Available both as a low-level widget and as a Toolkit DSL element.</p> <pre lang="java"><code>DualSparkline chart = DualSparkline.builder() .topData(inRates) .bottomData(outRates) .topStyle(Style.EMPTY.fg(Color.GREEN)) .bottomStyle(Style.EMPTY.fg(Color.BLUE)) .xLabels("-60s", "-30s", "now") .build(); </code></pre> <!-- raw HTML omitted --> <h3>Enhanced Sparkline: Multi-Row Rendering & Axis Labels</h3> <p>The existing <code>Sparkline</code> widget gained major upgrades:</p> <ul> <li><strong>Multi-row rendering</strong> — sparklines can now span multiple rows for higher-resolution visualization</li> <li><strong>Y-axis labels</strong> — toggle a maximum-value label on the left</li> <li><strong>X-axis labels</strong> — add evenly-distributed labels below the chart</li> </ul> <!-- raw HTML omitted --> <h3>ScrollableElement (Toolkit)</h3> <p>A new <code>ScrollableElement</code> container with a built-in vertical scrollbar. Each child is one scrollable unit, with keyboard (↑/↓, PgUp/PgDn) and mouse wheel support out of the box. Closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>.</p> <!-- raw HTML omitted --> <h3>Braille Spinner Animations</h3> <p>New <code>BRAILLE_WAVE</code> spinner style using Unicode braille characters for smooth, compact loading indicators. The underlying <code>BraillePatterns</code> API (renamed from <code>BrailleGridFrames</code>) is cleaner and more flexible.</p> <!-- raw HTML omitted --> <h3>Panel Title Alignment</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tamboui/tamboui/commit/8036f47833e298829e2386a750fb677e678c6dd0"><code>8036f47</code></a> [release] Releasing version 0.4.0</li> <li><a href="https://github.com/tamboui/tamboui/commit/c79e16993724c118f6a2839a5e894355f05853a3"><code>c79e169</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/327">#327</a> from ncovercash/add-scrollable</li> <li><a href="https://github.com/tamboui/tamboui/commit/54411e27cc88a6a00f295af2081e5962aa0d689a"><code>54411e2</code></a> fix: address review feedback on ScrollableElement</li> <li><a href="https://github.com/tamboui/tamboui/commit/cf11f1b6b968a8e36ae961d3d06b26f203e5507f"><code>cf11f1b</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/326">#326</a> from ncovercash/inputs-before-labels</li> <li><a href="https://github.com/tamboui/tamboui/commit/9be467f654e8ac762ac497aa1e5c3812655445f3"><code>9be467f</code></a> Add demo</li> <li><a href="https://github.com/tamboui/tamboui/commit/a50a61dd314a7f891b80a98f694f53acaee3c91e"><code>a50a61d</code></a> fix formatting</li> <li><a href="https://github.com/tamboui/tamboui/commit/9fa9f0f83633fd48250302e1bdfc73edbc5300ea"><code>9fa9f0f</code></a> expose state</li> <li><a href="https://github.com/tamboui/tamboui/commit/5b68131ad59d2f88216569d38c31563d3d3642db"><code>5b68131</code></a> Rename to ScrollableElement, for consistency</li> <li><a href="https://github.com/tamboui/tamboui/commit/77f9b1e6ffcf17f3e28c19cb226d56b38d75171c"><code>77f9b1e</code></a> Add new Scrollable element (closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>)</li> <li><a href="https://github.com/tamboui/tamboui/commit/9eb14cdbdc06297aef74e9120ca5d1fa3e5ce019"><code>9eb14cd</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/360">#360</a> from acltabontabon/main</li> <li>Additional commits viewable in <a href="https://github.com/tamboui/tamboui/compare/v0.3.0...v0.4.0">compare view</a></li> </ul> </details> <br /> Updates `dev.tamboui:tamboui-markdown` from 0.3.0 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tamboui/tamboui/releases">dev.tamboui:tamboui-markdown's releases</a>.</em></p> <blockquote> <h2>Release v0.4.0</h2> <h1>TamboUI 0.4.0 Release Notes</h1> <p><strong>74 commits · 6,100+ lines added · 12 contributors</strong></p> <p>TamboUI 0.4.0 brings new widgets, enhanced sparklines, a scrollable container element, braille spinners, and a batch of important fixes across platforms.</p> <hr /> <h2>✨ New Features</h2> <h3>DualSparkline Widget</h3> <p>A brand-new widget for visualizing two time-series datasets as vertical bars growing in opposite directions from a shared centre axis — think macOS Activity Monitor's network graphs. Available both as a low-level widget and as a Toolkit DSL element.</p> <pre lang="java"><code>DualSparkline chart = DualSparkline.builder() .topData(inRates) .bottomData(outRates) .topStyle(Style.EMPTY.fg(Color.GREEN)) .bottomStyle(Style.EMPTY.fg(Color.BLUE)) .xLabels("-60s", "-30s", "now") .build(); </code></pre> <!-- raw HTML omitted --> <h3>Enhanced Sparkline: Multi-Row Rendering & Axis Labels</h3> <p>The existing <code>Sparkline</code> widget gained major upgrades:</p> <ul> <li><strong>Multi-row rendering</strong> — sparklines can now span multiple rows for higher-resolution visualization</li> <li><strong>Y-axis labels</strong> — toggle a maximum-value label on the left</li> <li><strong>X-axis labels</strong> — add evenly-distributed labels below the chart</li> </ul> <!-- raw HTML omitted --> <h3>ScrollableElement (Toolkit)</h3> <p>A new <code>ScrollableElement</code> container with a built-in vertical scrollbar. Each child is one scrollable unit, with keyboard (↑/↓, PgUp/PgDn) and mouse wheel support out of the box. Closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>.</p> <!-- raw HTML omitted --> <h3>Braille Spinner Animations</h3> <p>New <code>BRAILLE_WAVE</code> spinner style using Unicode braille characters for smooth, compact loading indicators. The underlying <code>BraillePatterns</code> API (renamed from <code>BrailleGridFrames</code>) is cleaner and more flexible.</p> <!-- raw HTML omitted --> <h3>Panel Title Alignment</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tamboui/tamboui/commit/8036f47833e298829e2386a750fb677e678c6dd0"><code>8036f47</code></a> [release] Releasing version 0.4.0</li> <li><a href="https://github.com/tamboui/tamboui/commit/c79e16993724c118f6a2839a5e894355f05853a3"><code>c79e169</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/327">#327</a> from ncovercash/add-scrollable</li> <li><a href="https://github.com/tamboui/tamboui/commit/54411e27cc88a6a00f295af2081e5962aa0d689a"><code>54411e2</code></a> fix: address review feedback on ScrollableElement</li> <li><a href="https://github.com/tamboui/tamboui/commit/cf11f1b6b968a8e36ae961d3d06b26f203e5507f"><code>cf11f1b</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/326">#326</a> from ncovercash/inputs-before-labels</li> <li><a href="https://github.com/tamboui/tamboui/commit/9be467f654e8ac762ac497aa1e5c3812655445f3"><code>9be467f</code></a> Add demo</li> <li><a href="https://github.com/tamboui/tamboui/commit/a50a61dd314a7f891b80a98f694f53acaee3c91e"><code>a50a61d</code></a> fix formatting</li> <li><a href="https://github.com/tamboui/tamboui/commit/9fa9f0f83633fd48250302e1bdfc73edbc5300ea"><code>9fa9f0f</code></a> expose state</li> <li><a href="https://github.com/tamboui/tamboui/commit/5b68131ad59d2f88216569d38c31563d3d3642db"><code>5b68131</code></a> Rename to ScrollableElement, for consistency</li> <li><a href="https://github.com/tamboui/tamboui/commit/77f9b1e6ffcf17f3e28c19cb226d56b38d75171c"><code>77f9b1e</code></a> Add new Scrollable element (closes <a href="https://redirect.github.com/tamboui/tamboui/issues/289">#289</a>)</li> <li><a href="https://github.com/tamboui/tamboui/commit/9eb14cdbdc06297aef74e9120ca5d1fa3e5ce019"><code>9eb14cd</code></a> Merge pull request <a href="https://redirect.github.com/tamboui/tamboui/issues/360">#360</a> from acltabontabon/main</li> <li>Additional commits viewable in <a href="https://github.com/tamboui/tamboui/compare/v0.3.0...v0.4.0">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 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]
