@alquimia-ai/ui 1.0.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 +42 -0
- package/dist/chunk-6EP6KTGV.mjs +1529 -0
- package/dist/chunk-6EP6KTGV.mjs.map +1 -0
- package/dist/chunk-HGMICDIH.mjs +21 -0
- package/dist/chunk-HGMICDIH.mjs.map +1 -0
- package/dist/index.d.mts +653 -0
- package/dist/index.d.ts +653 -0
- package/dist/index.js +4344 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1663 -0
- package/dist/index.mjs.map +1 -0
- package/dist/pdf-viewer-J3ENKRHZ.mjs +177 -0
- package/dist/pdf-viewer-J3ENKRHZ.mjs.map +1 -0
- package/dist/plain-text-viewer-Q3O4LAOE.mjs +244 -0
- package/dist/plain-text-viewer-Q3O4LAOE.mjs.map +1 -0
- package/package.json +93 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @alquimia-ai/ui
|
|
2
|
+
|
|
3
|
+
UI components for Alquimia SDK.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Installation](#installation)
|
|
8
|
+
- [Usage](#usage)
|
|
9
|
+
- [Available Components](#available-components)
|
|
10
|
+
- [Development](#development)
|
|
11
|
+
- [Contributing](#contributing)
|
|
12
|
+
- [License](#license)
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
To install the `@alquimia-ai/ui` package, use the following command:
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
yarn add @alquimia-ai/ui
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or with npm:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
npm install @alquimia-ai/ui
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Available Components
|
|
29
|
+
|
|
30
|
+
- **Input**: A customizable input component.
|
|
31
|
+
- **Select**: A customizable select component.
|
|
32
|
+
- **Avatar**: A component for displaying user avatars.
|
|
33
|
+
- **ScrollArea**: A component for creating scrollable areas.
|
|
34
|
+
- **RichText**: A component for rendering rich text content.
|
|
35
|
+
- **Skeleton**: A component for displaying skeleton loaders.
|
|
36
|
+
- **Card**: A component for displaying card layouts.
|
|
37
|
+
- **Drawer**: A component for creating drawers.
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
This project is licensed under the MIT License. See the LICENSE file for more details.
|