WIP: 65% complete Autonomous Angular Fork v5.0.4
Pixel perfect mobile UI components built with Tailwind CSS for Angular. Features iOS and Material Design components optimized for mobile applications.
This is an autonomous fork of the original Konsta UI project, focused exclusively on Angular support with modern exports and package structure.
- 65+ Angular components
- iOS and Material Design themes
- Built with Tailwind CSS
- TypeScript support
- Standalone component architecture
- Modern package exports
- Zero dependencies (except peer dependencies)
npm install konstanpm install @angular/common @angular/core tailwindcssImport components and styles in your Angular application:
import { Component } from '@angular/core';
import { KButton } from 'konsta';
import 'konsta/theme.css';
@Component({
selector: 'app-root',
standalone: true,
imports: [KButton],
template: `
<k-button>Click me</k-button>
`
})
export class AppComponent {}First, install all dependencies:
npm installTo build the production version:
npm run buildCompiled results will be available in the package/ folder.
To run the Kitchen Sink demo with development environment:
npm run devor
npm run angularsrc/angular/- Angular component source codesrc/shared/- Framework-agnostic utilities and classessrc/styles/- Global CSS styleskitchen-sink/angular/- Demo application
All changes should be committed to src/ files only.
MIT
This is an autonomous fork of Konsta UI by Vladimir Kharlampidi.