New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wtraore/ui

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wtraore/ui

WillUI is a personal UI library made for work with `React` + `UnoCSS` + `InertiaJS`

0.1.6
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

WillUI

WillUI is a personal UI library made for work with React + UnoCSS + InertiaJS

I don't recommand to install this library

This library is made for my utilisation and some breaking change can appear without communication about it.

All external issue will be automatically close.

Installation

npm i @wtraore/ui

CSS

import the css file in your project

import '@wtraore/ui/style.css';

UnoCSS configuration

import { defineConfig } from 'unocss';
import {
	presetAttributify,
	presetIcons,
	presetUno,
	presetWebFonts,
} from 'unocss';
import presetWill from '@wtraore/ui/preset';

export default defineConfig({
	content: {
		pipeline: {
			include: [
				'src/**/*.{js,jsx,ts,tsx}',
				/@wtraore\/ui\/[A-Za-z0-9]+\/[A-Za-z]+\.(es.js|js|ts|tsx)/,
			],
		},
	},
	presets: [
		presetWill(),
		presetUno(),
		presetAttributify(),
		presetWebFonts({
			provider: 'fontshare',
			fonts: {
				sans: ['Satoshi', 'ui-sans-serif'],
			},
		}),
		presetIcons({
			collections: {
				ri: () => import('@iconify-json/ri/icons.json').then((i) => i.default),
			},
		}),
	],
});

FAQs

Package last updated on 21 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts