Core utilities and base functionality for PrimeVue UI component library
52
Quality
Pending
Does it follow best practices?
Impact
52%
1.15xAverage score across 10 eval scenarios
A single-page inventory browser that uses the UI component suite to render product data in both table and card layouts.
loading is true. @test@generates
export interface Product {
id: number;
name: string;
category: string;
price: number;
stock: number;
}
export interface InventoryViewerProps {
products: Product[];
loading?: boolean;
}
export default function InventoryViewer(props: InventoryViewerProps): unknown;UI component suite providing tabular and virtualized data renderers plus input controls.
Application framework for rendering the view.
Install with Tessl CLI
npx tessl i tessl/npm-primevue--coreevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10