mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 05:41:09 +02:00
- Add shared-feedback-types package with TypeScript types - Add shared-feedback-service package with factory function - Add shared-feedback-ui package with Svelte 5 components - Add feedback module to mana-core-auth backend - Add AI service using Gemini 2.0 Flash for title/category generation - Add database schema and migration for feedback tables - Integrate feedback page into Chat web app - Add CORS support for X-App-Id header - Add COMMANDS.md documentation for all dev commands 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
646 B
TypeScript
20 lines
646 B
TypeScript
/**
|
|
* Shared feedback UI components for Manacore monorepo
|
|
*
|
|
* This package provides Svelte 5 components for feedback functionality
|
|
* that can be used across all web apps.
|
|
*/
|
|
|
|
// Page components
|
|
export { default as FeedbackPage } from './FeedbackPage.svelte';
|
|
|
|
// Form components
|
|
export { default as FeedbackForm } from './FeedbackForm.svelte';
|
|
|
|
// List components
|
|
export { default as FeedbackList } from './FeedbackList.svelte';
|
|
export { default as FeedbackCard } from './FeedbackCard.svelte';
|
|
|
|
// Utility components
|
|
export { default as VoteButton } from './VoteButton.svelte';
|
|
export { default as StatusBadge } from './StatusBadge.svelte';
|