@uppy/examples: Add new examples (#5942)

Had to create a new PR since after the 5.0 merge, #5818 was throwing
errors.

## Examples Added

- **React Router v7**
- Uppy Dashboard with Tus, XHR, and Transloadit , tus server implemented
using react-router/express adapter , rest using regular resource routes
- This still doesn't have hot reloading in the dev server though , can
be added through nodemon

- **Next.js**
  - Uppy Dashboard with Tus, XHR, and Transloadit  

- **Angular**
  - Uppy Dashboard and Dashboard Modal with Tus
This commit is contained in:
Prakash 2025-09-10 21:46:19 +05:30 committed by GitHub
parent fc3e483fcb
commit 567be4efab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
56 changed files with 8507 additions and 3533 deletions

View file

@ -1,3 +1,19 @@
/* You can add global styles to this file, and also import other style files */
@import "@uppy/core/dist/style.css";
@import "@uppy/dashboard/dist/style.css";
/* Global styles for the Angular Uppy example */
@import "@uppy/core/css/style.css";
@import "@uppy/dashboard/css/style.css";
@import "@uppy/webcam/css/style.css";
@import "@uppy/drag-drop/css/style.css";
@import "@uppy/status-bar/css/style.css";
/* Global reset and base styles */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}