Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@ark-ui/vue
Advanced tools
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
@ark-ui/vue
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/vue
offers the following components:
To install @ark-ui/vue
, run the following command:
npm install @ark-ui/vue
or with yarn:
yarn add @ark-ui/vue
To use a component from @ark-ui/vue
, import it and include it in your application:
<script setup lang="ts">
import { ref } from 'vue'
import {
Slider,
SliderControl,
SliderLabel,
SliderOutput,
SliderRange,
SliderThumb,
SliderTrack,
type SliderProps,
} from '@ark-ui/vue'
const sliderValue = ref<SliderProps['modelValue']>(30)
</script>
<template>
<Slider :min="-50" :max="50" v-model="sliderValue">
<SliderLabel>Label</SliderLabel>
<SliderOutput>{{ sliderValue }}</SliderOutput>
<SliderControl>
<SliderTrack>
<SliderRange />
</SliderTrack>
<SliderThumb />
</SliderControl>
</Slider>
</template>
For more detailed documentation and examples, please visit the official documentation.
We welcome contributions to @ark-ui/vue
. 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 Vue, utilizing state machines for seamless interaction.
The npm package @ark-ui/vue receives a total of 5,430 weekly downloads. As such, @ark-ui/vue popularity was classified as popular.
We found that @ark-ui/vue 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.