quail-ui 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -6
- package/dist/index.css +1 -1
- package/dist/index.js +1634 -1590
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +9 -9
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,13 @@ A Vue 3 component library for [Quaily](https://quaily.com).
|
|
|
4
4
|
|
|
5
5
|
[Live Demo](https://quailyquaily.github.io/quail-ui/)
|
|
6
6
|
|
|
7
|
+
## AI Agent Entry
|
|
8
|
+
|
|
9
|
+
If you are an AI coding agent integrating Quail UI into another frontend project, start with these two files:
|
|
10
|
+
|
|
11
|
+
- [docs/AI_AGENT_GUIDE.md](docs/AI_AGENT_GUIDE.md) for the full integration guide, real component APIs, theme tokens, icons, helper classes, and demo map
|
|
12
|
+
- [quaily_ui_skill/SKILL.md](quaily_ui_skill/SKILL.md) for the compact agent workflow and file-loading instructions
|
|
13
|
+
|
|
7
14
|
## Features
|
|
8
15
|
|
|
9
16
|
- 26+ UI components (Button, Input, Dialog, Menu, Tabs, etc.)
|
|
@@ -18,12 +25,6 @@ A Vue 3 component library for [Quaily](https://quaily.com).
|
|
|
18
25
|
npm install quail-ui
|
|
19
26
|
```
|
|
20
27
|
|
|
21
|
-
or with yarn
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
yarn add quail-ui
|
|
25
|
-
```
|
|
26
|
-
|
|
27
28
|
## Usage
|
|
28
29
|
|
|
29
30
|
Initialize Quaily UI in your main.js/main.ts file:
|