Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions examples/kendo-unstyled-tailwind-v4/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
38 changes: 38 additions & 0 deletions examples/kendo-unstyled-tailwind-v4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Kendo React Unstyled + Tailwind CSS v4

A feature request form built with unstyled Kendo React components and styled with Tailwind CSS v4.

## Quick Start

```bash
npm install
npm run dev
```

## What's Inside

- **React 19** + **TypeScript** + **Vite**
- **Kendo React** components (unstyled)
- **Tailwind CSS v4** for styling
- Custom form components with validation
- Responsive design

## Key Files

- `src/App.tsx` - Main form component
- `src/tailwind-preset.ts` - Tailwind styling for Kendo components
- `src/components/fields/` - Custom form fields
- `src/data.ts` - Form options data

## Scripts

- `npm run dev` - Start development server
- `npm run build` - Build for production
- `npm run preview` - Preview production build

## Features

- Unstyled Kendo React components with full styling control
- Dynamic form fields based on user selections
- Form validation and error handling
- Mobile-responsive design
13 changes: 13 additions & 0 deletions examples/kendo-unstyled-tailwind-v4/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading