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.
@ark-ui/solid
Advanced tools
A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.
@ark-ui/solid
is an open-source UI component library designed to make building high-quality, accessible web applications easier. The library focuses on providing low-level UI components with an emphasis on accessibility, customization, and developer experience.
At the moment, @ark-ui/solid
offers the following components:
To install @ark-ui/solid
, run the following command:
npm install @ark-ui/solid
or with yarn:
yarn add @ark-ui/solid
To use a component from @ark-ui/solid
, import it and include it in your application:
import {
Slider,
SliderControl,
SliderLabel,
SliderOutput,
SliderRange,
SliderThumb,
SliderTrack,
} from '@ark-ui/solid'
import { createSignal } from 'solid-js'
export const MySlider = () => {
const [value, setValue] = createSignal(30)
return (
<Slider min={-50} max={50} value={value()} onChange={(e) => setValue(e.value)}>
<SliderLabel>Label</SliderLabel>
<SliderOutput>{value}</SliderOutput>
<SliderControl>
<SliderTrack>
<SliderRange />
</SliderTrack>
<SliderThumb />
</SliderControl>
</Slider>
)
}
For more detailed documentation and examples, please visit the official documentation.
We welcome contributions to @ark-ui/solid
. Please read our contributing guidelines for more information on how to contribute.
This project is licensed under the terms of the MIT license.
FAQs
A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.
The npm package @ark-ui/solid receives a total of 0 weekly downloads. As such, @ark-ui/solid popularity was classified as not popular.
We found that @ark-ui/solid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.