UNPKG

@plotinus/matrix-package-calculator

Version:

Calculator components for the Matrix framework - basic arithmetic operations with UI

22 lines (21 loc) 871 B
/** * @matrix/package-calculator * * Calculator components package for the Matrix framework with ESM browser runtime loading support. * This package demonstrates the standard Matrix package format that enables: * - npm install @matrix/package-calculator * - matrix add @matrix/package-calculator * - Browser runtime loading via CDN * - Unified loading via mcf-component-loader */ export { CalculatorComponent } from './components/calculator/calculator.component.js'; export { Calculation, CalculatorState } from './models/calculation.js'; export { CalculatorPresentationElement } from './presentation/calculator-presentation.js'; export declare const packageInfo: { name: string; version: string; packageType: string; components: string[]; matrixVersion: string; }; export declare function registerComponents(loader: any): Promise<string[]>;