mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
customers, items, invoices, estimates, shared document form 77 files, 14451 lines. Typed layouts (CompanyLayout, AuthLayout, header, sidebar, company switcher), auth views (login, register, forgot/reset password), admin feature (dashboard, companies, users, settings with typed store), company features (dashboard with chart/ stats, customers CRUD, items CRUD, invoices CRUD with full store, estimates CRUD with full store), and shared document form components (items table, item row, totals, notes, tax popup, template select, exchange rate converter, calculation composable). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
934 B
TypeScript
26 lines
934 B
TypeScript
export { default as DocumentItemsTable } from './DocumentItemsTable.vue'
|
|
export { default as DocumentItemRow } from './DocumentItemRow.vue'
|
|
export { default as DocumentItemRowTax } from './DocumentItemRowTax.vue'
|
|
export { default as DocumentTotals } from './DocumentTotals.vue'
|
|
export { default as DocumentNotes } from './DocumentNotes.vue'
|
|
export { default as TaxSelectPopup } from './TaxSelectPopup.vue'
|
|
export { default as NoteSelectPopup } from './NoteSelectPopup.vue'
|
|
export { default as TemplateSelectButton } from './TemplateSelectButton.vue'
|
|
export { default as ExchangeRateConverter } from './ExchangeRateConverter.vue'
|
|
|
|
export {
|
|
useDocumentCalculations,
|
|
calcItemSubtotal,
|
|
calcItemDiscountVal,
|
|
calcItemTotal,
|
|
calcTaxAmount,
|
|
} from './use-document-calculations'
|
|
|
|
export type {
|
|
DocumentItem,
|
|
DocumentFormData,
|
|
DocumentTax,
|
|
DocumentStore,
|
|
UseDocumentCalculationsOptions,
|
|
} from './use-document-calculations'
|