2025-03-24 08:55:27 +00:00
|
|
|
import * as translation from "../translation.js";
|
|
|
|
|
|
|
|
export interface IDocumentTheme {
|
|
|
|
colorPrimaryForeground?: string;
|
|
|
|
colorPrimaryBackground?: string;
|
|
|
|
colorAccentForeground?: string;
|
|
|
|
colorAccentBackground?: string;
|
|
|
|
fontFamily?: string;
|
|
|
|
pageBackground?: string;
|
|
|
|
coverPageBackground?: string;
|
|
|
|
}
|
2024-12-01 23:04:28 +01:00
|
|
|
|
2024-11-30 20:54:15 +01:00
|
|
|
export interface IDocumentSettings {
|
|
|
|
enableTopDraftText?: boolean;
|
|
|
|
enableDefaultHeader?: boolean;
|
|
|
|
enableDefaultFooter?: boolean;
|
2025-03-24 08:55:27 +00:00
|
|
|
enableFoldMarks?: boolean;
|
|
|
|
enableInvoiceContractRefSection?: boolean;
|
|
|
|
languageCode?: translation.LanguageCode;
|
|
|
|
dateStyle?: Intl.DateTimeFormatOptions["dateStyle"];
|
2024-12-05 01:33:16 +01:00
|
|
|
vatGroupPositions?: boolean;
|
2025-03-24 08:55:27 +00:00
|
|
|
theme?: IDocumentTheme;
|
|
|
|
}
|