![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@zendeskgarden/container-scrollregion
Advanced tools
Containers relating to scroll region in the Garden Design System
This package includes containers relating to scroll region in the Garden Design System.
npm install @zendeskgarden/container-scrollregion
Check out storybook for live examples.
A scroll region is an area of the web page that contains scrollable content. The
scroll region hook allows keyboard users to focus and scroll the region. A
scroll region with a dynamic layout should use the dependency
option. The hook
re-calculates the tab-index when the dependency
value changes. If there are
multiple dependency values, a memoized object can be used as the dependency
value.
import { useScrollRegion } from '@zendeskgarden/container-scrollregion';
const ScrollRegion = () => {
const containerRef = useRef();
const containerTabIndex = useScrollRegion({ containerRef });
return (
<div ref={containerRef} tabIndex={containerTabIndex}>
<p>Turnip greens yarrow ricebean rutabaga endive cauliflower sea.</p>
</div>
);
};
import { ScrollRegionContainer } from '@zendeskgarden/container-scrollregion';
const ScrollRegion = () => {
const containerRef = useRef();
return (
<ScrollRegionContainer containerRef={containerRef}>
{containerTabIndex => (
<div ref={containerRef} tabIndex={containerTabIndex}>
<p>Turnip greens yarrow ricebean rutabaga endive cauliflower sea.</p>
</div>
)}
</ScrollRegionContainer>;
)
}
FAQs
Containers relating to scroll region in the Garden Design System
The npm package @zendeskgarden/container-scrollregion receives a total of 0 weekly downloads. As such, @zendeskgarden/container-scrollregion popularity was classified as not popular.
We found that @zendeskgarden/container-scrollregion 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.