Autocomplete works with array and objects
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s

This commit is contained in:
2026-05-02 20:52:35 +02:00
parent 098508d12a
commit 97f481e22f
13 changed files with 74 additions and 39 deletions

View File

@@ -36,9 +36,9 @@ Unlike heavy frameworks, SigPro UI focuses on a **"Zero-Build"** philosophy, all
### ESM / Bundler
```bash
npm install sigpro sigpro-ui
npm install sigpro-ui
# or
bun add sigpro sigpro-ui
bun add sigpro-ui
```
### CDN (Browser - All-in-One)
@@ -57,8 +57,7 @@ bun add sigpro sigpro-ui
### ESM / Modular (Tree Shaking)
```javascript
import { $, mount, watch, h } from "sigpro";
import { Button, Modal, Input, Alert } from "sigpro-ui";
import { $, mount, watch, h, Button, Modal, Input, Alert } from "sigpro-ui";
import "sigpro-ui/css";
const App = () => {