tag:github.com,2008:https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/releases Release notes from fetch-loading 2025-08-05T08:21:16Z tag:github.com,2008:Repository/932337169/v0.0.7 2025-08-05T08:21:16Z v0.0.7 <p>Merge branch 'main' of github.com:StackOverflowIsBetterThanAnyAI/fetc…</p> MichaelMuenzenhofer tag:github.com,2008:Repository/932337169/v0.0.7_alpha 2025-08-05T08:55:48Z v0.0.7_alpha <h2>What's Changed</h2> <h3>Feature</h3> <ul> <li>new optional ariaLabel attribute to enhance accessibility <ul> <li>specifying a value for ariaLabel adds role="status", aria-live="polite", aria-label={ariaLabel} to the component</li> </ul> </li> </ul> <h3>Dependencies</h3> <ul> <li>Bump typescript from 5.8.2 to 5.8.3 by <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/dependabot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dependabot">@dependabot</a>[bot] in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2976788361" data-permission-text="Title is private" data-url="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/issues/11" data-hovercard-type="pull_request" data-hovercard-url="/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/11/hovercard" href="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/11">#11</a></li> <li>Bump @rollup/plugin-commonjs from 28.0.3 to 28.0.6 by <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/dependabot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dependabot">@dependabot</a>[bot] in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3168337339" data-permission-text="Title is private" data-url="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/issues/28" data-hovercard-type="pull_request" data-hovercard-url="/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/28/hovercard" href="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/28">#28</a></li> <li>Bump @rollup/plugin-typescript from 12.1.2 to 12.1.4 by <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/dependabot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dependabot">@dependabot</a>[bot] in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3189004674" data-permission-text="Title is private" data-url="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/issues/32" data-hovercard-type="pull_request" data-hovercard-url="/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/32/hovercard" href="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/pull/32">#32</a></li> </ul> <p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading/compare/v0.0.6...v0.0.7"><tt>v0.0.6...v0.0.7</tt></a></p> StackOverflowIsBetterThanAnyAI tag:github.com,2008:Repository/932337169/v0.0.6 2025-04-03T08:06:42Z v0.0.6 <ul> <li>removed <code>-D</code> from installation guide as this is not a dev dependency</li> <li>moved <code>react</code> to <code>peer dependencies</code></li> <li>moved <code>rollup</code> and <code>rollup-plugin-postcss</code> to <code>dev dependencies</code></li> </ul> StackOverflowIsBetterThanAnyAI tag:github.com,2008:Repository/932337169/v0.0.5 2025-03-26T19:45:24Z v0.0.5 <p><strong>new:</strong></p> <ul> <li><code>theme</code> property can now be a Hex value with 3 or 6 digits</li> <li><code>theme</code> property can now be a Hex value with an alpha channel</li> <li><code>theme</code> property can now be an RGB value</li> <li><code>theme</code> property can now be an RGBA value</li> </ul> StackOverflowIsBetterThanAnyAI tag:github.com,2008:Repository/932337169/v0.0.4 2025-03-19T20:35:22Z v0.0.4 <p>fix error: missing type declarations<br> change output folder from /src to /dist</p> StackOverflowIsBetterThanAnyAI tag:github.com,2008:Repository/932337169/v0.0.3 2025-03-19T20:14:53Z v0.0.3 <p>fix implementation error</p> StackOverflowIsBetterThanAnyAI tag:github.com,2008:Repository/932337169/stable 2025-02-13T20:25:28Z v0.0.1 <p>Loading animation which can be displayed while data is fetched from an API.</p> <p>Pass any Hex-value as an argument for the <code>theme</code> property.</p> <h2>Usage</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { FetchLoading } from 'fetch-loading' ... &lt;FetchLoading /&gt; ### with no arguments being passed, the animation will fall back to its default color #52525c &lt;FetchLoading theme=&quot;#a2d1aa&quot; /&gt; &lt;FetchLoading theme=&quot;#fafafa&quot; /&gt; &lt;FetchLoading theme=&quot;#000000&quot; /&gt; ..."><pre class="notranslate"><code>import { FetchLoading } from 'fetch-loading' ... &lt;FetchLoading /&gt; ### with no arguments being passed, the animation will fall back to its default color #52525c &lt;FetchLoading theme="#a2d1aa" /&gt; &lt;FetchLoading theme="#fafafa" /&gt; &lt;FetchLoading theme="#000000" /&gt; ... </code></pre></div> StackOverflowIsBetterThanAnyAI