![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@threespot/expand-toggle
Advanced tools
Simple and accessible expandable functionality, similar to jQuery’s `slideToggle()` method.
Simple and accessible expandable functionality, similar to jQuery’s slideToggle()
method.
Inspired by:
yarn add @threespot/expand-toggle
JavaScript
import ExpandToggle from "@threespot/expand-toggle";
document.querySelectorAll("[data-expands]").forEach(el => new ExpandToggle(el));
Markup
<button type="button" data-expands="demo" data-expands-class="is-expanded">
<span data-expands-text="Close">Open</span>
</button>
<div class="expandable" id="demo">
<div class="expandable-wrap">
<p>This content will be hidden to start.</p>
</div>
</div>
Styles
The following minimum styles are required:
// This class name is just an example
.expandable {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 250ms ease;
&[aria-hidden="false"],
.no-js & {
grid-template-rows: 1fr;
}
&-wrap {
overflow: hidden;
}
}
data-expands-class
defines a class (or multiple classes) to apply to the toggle button and expandable element when expanded
data-expands-text
defines button text to use when expanded
data-expanded
will expand the element by default
The following options can be set via JavaScript:
new ExpandToggle(el, {
expandedClasses: "", // string, accepts multiple space-separated classes
activeToggleText: "", // expanded state toggle button text
shouldStartExpanded: false, // component starts expanded on init
onReady: null // ready callback function
});
Since the ready
event may be trigger immediately, bind using the onReady
option:
const toggle = new ExpandToggle(el, {
onReady: function() {
console.log('ready');
}
});
Triggered when component is expanded
toggle.on('expand', function() {
console.log('expand');
});
Triggered when component is collapsed
toggle.on('collapse', function() {
console.log('collapse');
});
Triggered when component is destroyed
toggle.on('destroy', function() {
console.log('destroy');
});
This is free software and may be redistributed under the terms of the MIT license.
Threespot is an independent digital agency hell-bent on helping those, and only those, who are committed to helping others. Find out more at https://www.threespot.com.
FAQs
Simple and accessible expandable functionality, similar to jQuery’s `slideToggle()` method.
The npm package @threespot/expand-toggle receives a total of 101 weekly downloads. As such, @threespot/expand-toggle popularity was classified as not popular.
We found that @threespot/expand-toggle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.