百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
A

ark

> 前端框架
开源

为您的设计系统提供无样式的可访问的 UI 组件。可在 React、Vue、Solid 和 Svelte 中使用。

5.3K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

为您的设计系统提供无样式的可访问的 UI 组件。可在 React、Vue、Solid 和 Svelte 中使用。


Build scalable design systems with unstyled, accessible UI components

Documentation • Installation • Features • Components • Roadmap • Contributing


Overview

Ark UI is a headless component library that provides the foundation for building high-quality, accessible design systems and web applications. Built on top of Zag.js state machines, Ark UI delivers robust, framework-agnostic component logic with perfect parity across React, Solid, Vue, and Svelte.

Why Ark UI?

  • ** Completely Unstyled** - Zero styling opinions. Bring your own styles with CSS-in-JS, Tailwind, vanilla CSS, or any styling solution
  • ♿️ Accessibility First - WCAG compliant components tested with real assistive technologies out of the box
  • ** State Machine Powered** - Predictable, testable behavior powered by Zag.js finite state machines
  • ** Multi-Framework** - Same API across React, Solid, Vue, and Svelte - write once, use everywhere
  • ** Truly Composable** - Granular component primitives that work together seamlessly
  • ⚡️ Production Ready - Battle-tested in products like Chakra UI, used by teams at OVHCloud, PluralSight, and more
  • ** Type-Safe** - Fully typed with TypeScript for exceptional developer experience

Installation

Choose your framework and install the corresponding package:

bash
# React
npm install @ark-ui/react

# Solid
npm install @ark-ui/solid

# Vue
npm install @ark-ui/vue

# Svelte
npm install @ark-ui/svelte

Quick Start

Here's a simple example showing how consistent the API is across frameworks:

React

typescript
import { Dialog } from '@ark-ui/react/dialog'

export const MyDialog = () => (
  <Dialog.Root>
    <Dialog.Trigger>Open Dialog</Dialog.Trigger>
    <Dialog.Backdrop />
    <Dialog.Positioner>
      <Dialog.Content>
        <Dialog.Title>Dialog Title</Dialog.Title>
        <Dialog.Description>Dialog description</Dialog.Description>
        <Dialog.CloseTrigger>Close</Dialog.CloseTrigger>
      </Dialog.Content>
    </Dialog.Positioner>
  </Dialog.Root>
)

Vue

xml
<script setup lang="ts">
import { Dialog } from '@ark-ui/vue/dialog'
</script>

<template>
  <Dialog.Root>
    <Dialog.Trigger>Open Dialog</Dialog.Trigger>
    <Dialog.Backdrop />
    <Dialog.Positioner>
      <Dialog.Content>
        <Dialog.Title>Dialog Title</Dialog.Title>
        <Dialog.Description>Dialog description</Dialog.Description>
        <Dialog.CloseTrigger>Close</Dialog.CloseTrigger>
      </Dialog.Content>
    </Dialog.Positioner>
  </Dialog.Root>
</template>

Solid

typescript
import { Dialog } from '@ark-ui/solid/dialog'

export const MyDialog = () => (
  <Dialog.Root>
    <Dialog.Trigger>Open Dialog</Dialog.Trigger>
    <Dialog.Backdrop />
    <Dialog.Positioner>
      <Dialog.Content>
        <Dialog.Title>Dialog Title</Dialog.Title>
        <Dialog.Description>Dialog description</Dialog.Description>
        <Dialog.CloseTrigger>Close</Dialog.CloseTrigger>
      </Dialog.Content>
    </Dialog.Positioner>
  </Dialog.Root>
)

Svelte

svelte
<script lang="ts">
  import { Dialog } from '@ark-ui/svelte/dialog'
</script>

<Dialog.Root>
  <Dialog.Trigger>Open Dialog</Dialog.Trigger>
  <Dialog.Backdrop />
  <Dialog.Positioner>
    <Dialog.Content>
      <Dialog.Title>Dialog Title</Dialog.Title>
      <Dialog.Description>Dialog description</Dialog.Description>
      <Dialog.CloseTrigger>Close</Dialog.CloseTrigger>
    </Dialog.Content>
  </Dialog.Positioner>
</Dialog.Root>

Features

Zero-Styling Freedom

Every component is completely unstyled, giving you total control over your design. Use any styling solution:

typescript
// Tailwind CSS
<Dialog.Trigger className="px-4 py-2 bg-blue-500 rounded">Open</Dialog.Trigger>

// CSS-in-JS
<Dialog.Trigger css={{ padding: '8px 16px', background: 'blue' }}>Open</Dialog.Trigger>

// Vanilla CSS
<Dialog.Trigger className="my-button">Open</Dialog.Trigger>

Accessibility Built-In

All components follow WAI-ARIA design patterns and are tested with screen readers:

  • ✅ Proper ARIA attributes and roles
  • ✅ Keyboard navigation support
  • ✅ Focus management
  • ✅ Screen reader announcements
  • ✅ RTL support

State Machine Architecture

Powered by Zag.js, each component uses finite state machines for predictable behavior:

  • Type-safe state transitions
  • Easier to test and debug
  • Fewer edge cases and bugs
  • Visualizable component logic

Framework Parity

Maintain a single design system across multiple frameworks without rewriting component logic:

typescript
// Same API, same behavior, different frameworks
const packages = ['@ark-ui/react', '@ark-ui/solid', '@ark-ui/vue', '@ark-ui/svelte']

Components

Ark UI provides 45+ production-ready components covering common UI patterns:

Layout & Navigation

  • Accordion
  • Tabs
  • Splitter
  • Steps
  • Tree View
  • Tour

Overlays & Dialogs

  • Dialog
  • Popover
  • Tooltip
  • Hover Card
  • Bottom Sheet
  • Floating Panel

Forms & Inputs

  • Checkbox
  • Radio Group
  • Select
  • Combobox
  • Number Input
  • Pin Input
  • Tags Input
  • Editable
  • File Upload
  • Color Picker
  • Date Picker
  • Password Input
  • Signature Pad
  • Slider
  • Angle Slider
  • Rating Group
  • Switch
  • Toggle / Toggle Group

Data Display

  • Avatar
  • Highlight
  • Progress
  • QR Code
  • Format
  • JSON Tree View
  • Marquee

Utilities

  • Carousel
  • Clipboard
  • Collapsible
  • Field / Fieldset
  • Menu
  • Pagination
  • Portal
  • Presence
  • Scroll Area
  • Segment Group
  • Timer
  • Toast
  • Client Only
  • Download Trigger
  • Focus Trap
  • Frame
  • Collection
  • Listbox

View all components →

Documentation

Visit ark-ui.com for:

  • Comprehensive guides and tutorials
  • Detailed API references for each component
  • Interactive examples and recipes
  • Styling guides for popular frameworks
  • TypeScript usage patterns

Ecosystem

Built with Ark UI

  • Chakra UI v3 - A simple, modular component library
  • Park UI - Beautifully designed components built with Ark UI and Panda CSS
  • Tark UI - Ark UI components styled with Tailwind CSS

Styling Libraries

Ark UI works seamlessly with:

  • Panda CSS
  • Tailwind CSS
  • Styled Components
  • Emotion
  • Vanilla CSS, CSS Modules, and more

Developer Tools

  • MCP Server - AI-assisted development with Claude and other AI agents

Community

  • Discord - Join our community for help and discussions
  • Twitter - Follow us for updates and announcements
  • ️ Roadmap - Request features and vote on upcoming work
  • Blog - Read about releases and technical deep dives

Contributing

We welcome contributions! Please read our Contributing Guide to learn about:

  • Setting up your development environment
  • Our development workflow
  • Code conventions and standards
  • How to submit pull requests

Support

  • Check our documentation
  • Ask questions on Discord
  • Report bugs via GitHub Issues
  • Request features on our Roadmap

Sponsors

Ark UI is maintained by Christian Schröter, Segun Adebayo, and the Chakra UI team. Development is supported by our amazing sponsors:

Become a sponsor →

License

MIT © Chakra Systems Inc.


Made with ❤️ by the Ark UI Community

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

TypeScriptcomponentsdesign-systemheadlessprimitives

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类前端框架
定价开源

> 相关工具

R
React
用于构建用户界面的 JavaScript 库
V
Vue.js
渐进式 JavaScript 框架
N
Next.js
基于 React 的全栈 Web 框架