Files
Ivan 422f5c4f29 feat(pos): add point of sale UI
- Add ProductGrid component with category filters and search
- Add Cart component with quantity controls and totals
- Add PaymentDialog with cash/card/transfer payment methods
- Add CashRegisterStatus for opening/closing register
- Add POS page with 70/30 layout (products/cart)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 07:03:59 +00:00

6 lines
228 B
TypeScript

export { ProductGrid } from "./product-grid";
export { Cart } from "./cart";
export type { CartItem } from "./cart";
export { PaymentDialog } from "./payment-dialog";
export { CashRegisterStatus } from "./cash-register-status";