mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-02 04:33:40 +00:00
- gateStats(): items cleared through the gate today, average arrival→gate turnaround (hours, 30d), and clearances per hour over the last 24h → new GateThroughputCard in the dashboard Performance section. - Live board: every dashboard query (dashboard, ops, throughput, dwell, cycle, on-time, zone occupancy, accrual, gate) now auto-refreshes on a 60s interval, with a "Live" indicator in the header. New endpoint GET /warehouse-inventory/gate-stats (guarded). Deferred (need upstream data): capacity forecast, labour productivity, WebSocket push, yard map. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
38 lines
2.1 KiB
TypeScript
38 lines
2.1 KiB
TypeScript
export * from './badges';
|
|
export * from './options';
|
|
export { WarehouseFilters } from './WarehouseFilters';
|
|
export type { WarehouseView } from './WarehouseFilters';
|
|
export { WarehouseTable } from './WarehouseTable';
|
|
export { WarehouseCardView } from './WarehouseCardView';
|
|
export { WarehouseInventoryTable } from './WarehouseInventoryTable';
|
|
export { WarehouseInquiryTable } from './WarehouseInquiryTable';
|
|
export { CreateWarehouseModal } from './CreateWarehouseModal';
|
|
export { CreateYardModal } from './CreateYardModal';
|
|
export { CreateZoneModal } from './CreateZoneModal';
|
|
export { ReceiveInventoryModal, WarehouseFlowWorkbench } from './ReceiveInventoryModal';
|
|
export { WarehouseInfoCard } from './WarehouseInfoCard';
|
|
export { MoveInventoryModal } from './MoveInventoryModal';
|
|
export { ReserveInventoryModal } from './ReserveInventoryModal';
|
|
export { InventoryMovementHistoryTable } from './InventoryMovementHistoryTable';
|
|
export { ActivityTimeline } from './ActivityTimeline';
|
|
export { InventoryHistoryModal } from './InventoryHistoryModal';
|
|
export { InventoryDetailModal } from './InventoryDetailModal';
|
|
export { InventoryInquiryDetailModal } from './InventoryInquiryDetailModal';
|
|
export { InventoryWorkbench } from './InventoryWorkbench';
|
|
export { BookingSelect } from './BookingSelect';
|
|
export { WagonSelect } from './WagonSelect';
|
|
export { LoadInventoryModal } from './LoadInventoryModal';
|
|
export { FreightVisual } from './FreightVisual';
|
|
export type { FreightVisualVariant } from './FreightVisual';
|
|
export { WarehouseHero } from './WarehouseHero';
|
|
export { VisualEmptyState } from './VisualEmptyState';
|
|
export { WarehouseDashboardCharts } from './WarehouseDashboardCharts';
|
|
export { InspectionReportModal } from './InspectionReportModal';
|
|
export { FeePreviewModal } from './FeePreviewModal';
|
|
export { ZoneOccupancyHeatmap } from './ZoneOccupancyHeatmap';
|
|
export { WarehouseOpsKpiStrip } from './WarehouseOpsKpiStrip';
|
|
export { AccrualDashboard } from './AccrualDashboard';
|
|
export { DwellAgingCard } from './DwellAgingCard';
|
|
export { CycleTimeCard } from './CycleTimeCard';
|
|
export { GateThroughputCard } from './GateThroughputCard';
|