friday-widgets
Version:
Professional embeddable accounting widgets for vertical SaaS platforms. Layer Financial-inspired design with comprehensive financial reporting capabilities.
29 lines • 882 B
TypeScript
/**
* Friday P&L Table Widget - Layer Financial Inspired Design
*
* Professional profit & loss table with expandable rows
*/
import { CSSResultGroup } from 'lit';
import { BaseWidget } from '../core/base-widget.js';
export declare class PnLTableWidget extends BaseWidget {
lockExpanded: boolean;
stringOverrides: {
grossProfitLabel: string;
profitBeforeTaxesLabel: string;
netProfitLabel: string;
};
showDemo: boolean;
private tableData;
private expandedItems;
static get styles(): CSSResultGroup;
protected loadData(): Promise<void>;
private loadDemoData;
private expandAllItems;
private toggleExpand;
private isExpanded;
private getAmountClass;
private renderTableRow;
private renderAllRows;
render(): import("lit-html").TemplateResult<1>;
}
//# sourceMappingURL=pnl-table-widget.d.ts.map