Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@ark-ui/solid
Advanced tools
A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.
Ark UI is a headless, open-source UI library with over 30+ components designed for building reusable, scalable Design Systems. It supports a wide range of JavaScript frameworks, offering dedciated packages for each supported framework.
Ark UI is available for the following JavaScript frameworks:
@ark-ui/react
@ark-ui/solid
@ark-ui/vue
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, type SliderProps } from '@ark-ui/solid'
import { createSignal } from 'solid-js'
export const MySlider = (props: SliderProps) => {
const [value, setValue] = createSignal([42])
return (
<Slider.Root
min={0}
max={100}
value={value()}
onValueChange={(e) => setValue(e.value)}
{...props}
>
<Slider.Label>Label</Slider.Label>
<Slider.ValueText />
<Slider.Control>
<Slider.Track>
<Slider.Range />
</Slider.Track>
<Slider.Thumb index={0} />
</Slider.Control>
<Slider.MarkerGroup>
<Slider.Marker value={25}>25</Slider.Marker>
<Slider.Marker value={50}>50</Slider.Marker>
<Slider.Marker value={75}>75</Slider.Marker>
</Slider.MarkerGroup>
</Slider.Root>
)
}
For more detailed documentation and examples, please visit the official documentation.
You can request, vote for, and check upcoming features on our roadmap.
We welcome contributions to Ark UI. 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 12,518 weekly downloads. As such, @ark-ui/solid popularity was classified as 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 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.