https://github.com/mielo-ui/docs
Documentation for Mielo UI, with hybrid desktop app on tauri & electron
https://github.com/mielo-ui/docs
adwaita components documentation gnome mielo react react-components
Last synced: over 1 year ago
JSON representation
Documentation for Mielo UI, with hybrid desktop app on tauri & electron
- Host: GitHub
- URL: https://github.com/mielo-ui/docs
- Owner: mielo-ui
- Created: 2024-07-18T17:00:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T22:27:28.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T09:37:05.737Z (over 1 year ago)
- Topics: adwaita, components, documentation, gnome, mielo, react, react-components
- Language: TypeScript
- Homepage: https://mielo-ui.github.io/
- Size: 1.84 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Documentation
Mielo UI Documentation site with examples.

Website & documentation for [mielo.css](https://github.com/mielo-ui/mielo.css) framework & for react wrapper.
## Browser Support
Mielo is compatible with **recent** versions of:
- Chrome
- Edge
- Firefox
- Opera
- Safari
Internet Explorer is not supported.
# Development
For build library from source:
``` sh
git clone https://github.com/friktor/mielo-docs
cd mielo-docs
npm install # or "yarn"
npm run fmt # format & linting components
npm run build # build module library with .d.ts
npm run dev # or yarn dev, for start vite dev server
```
# Tauri
Also this app can build as desktop app with tauri.
Development:
``` sh
yarn tauri dev
# or if have acceleration problems on linux/arch like:
# https://bugs.webkit.org/show_bug.cgi?id=180739
WEBKIT_DISABLE_DMABUF_RENDERER=1 yarn tauri dev
```
### Building:
```sh
yarn tauri build
```
### Thoubleshoting
`Could not find dependency: libicui18n.so.72` on Arch - try run `yay -S icu72`.
`Could not find dependency: libavif.so.15` on Arch - `sudo ln -s /usr/lib/libavif.so.16 /usr/lib/libavif.so.15`
`/usr/bin/strip: Unable to recognise the format of the input file...` on any linux - `NO_STRIP=true yarn tauri build`
If have acceleration problems on linux/arch, or not show window - try run with env `WEBKIT_DISABLE_DMABUF_RENDERER=1`, like
``