Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

1.7 KiB

Invoice Label Styles

Problem

Users need invoice labels such as “Invoice #”, “Issue Date”, “Due Date”, and totals-row labels to be stylable independently from their values. Today the invoice designer has limited preview-only label weight behavior, while production PDF rendering outputs field labels as plain spans.

Goals

  • Let users style field labels independently from field values and containers.
  • Support common typography controls: font weight, size, color, family, line height, italic/style, and text alignment where applicable.
  • Keep designer preview, saved template AST, imported templates, and production PDF rendering consistent.
  • Apply the same label-style data model to standalone totals rows and AST totals rows for consistency.

Non-goals

  • Rich text editing inside labels.
  • Per-character styling.
  • Changing invoice value styling in this work.

UX Notes

  • Add a Label Style panel to Data Field and Totals Row inspectors.
  • Controls write to a label-specific style object, not the container style.
  • Existing templates render unchanged unless label styles are explicitly set.

Data Model / Rendering

  • Add labelStyle?: TemplateNodeStyleRef to TemplateFieldNode.
  • Add labelStyle?: TemplateNodeStyleRef to TemplateTotalsRow.
  • Render field label spans and totals label spans with the resolved label style.
  • Import/export label styles via designer metadata at metadata.labelStyle.

Acceptance Criteria

  • A user can set field label style in the designer and see it in preview.
  • Exported AST includes labelStyle for styled labels.
  • Imported AST label styles round-trip without loss.
  • Production HTML/PDF renderer applies labelStyle to labels only.
  • Totals row labels support the same style object.