# XWUIHrTransfersPage

Payroll transfers page that lists bulk disbursement batches across payment channels. Built on `HrPageBase`, it fetches rows via `hrApi.listTransfers()` and renders a table (using the shared benefits table/styling helpers) with columns for transfer method, batch ID, a combined payroll group plus period cell, a money-formatted amount, and a colored status pill. Supports English/Arabic via `locale` and accepts the standard shell `conf_comp` layout keys (`maxWidth`, `centered`, `padding`, `hideHeader`, asides). Use it to review payroll payout batches and their settlement status.

## Basic Usage

Mounts the page against `#app` with a title and description, loading sample transfer batches from `createHrApi({ env: 'sandbox' })` in English.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Transfers page wired to the sandbox HR API, rendering the disbursement-batch table with method, batch ID, payroll/period, amount, and status.
```

## Arabic (RTL)

The page rendered in Arabic with a right-to-left layout - built-in labels, status pills, and loading text localize, and `titleAr` supplies the heading.

```example
file: examples/ArabicLocale.ts
html: examples/ArabicLocale.html
title: Arabic (RTL)
description: The employee-transfers page in Arabic with a right-to-left layout; statuses and labels localize and titleAr drives the heading.
```

## Embedded Panel

A width-constrained, centred layout (`maxWidth: '720px'`, `centered: true`) with the breadcrumb row hidden - the shape used when the page is dropped into a narrow settings column.

```example
file: examples/EmbeddedPanel.ts
html: examples/EmbeddedPanel.html
title: Embedded Panel
description: The transfers list in a 720px centred column with breadcrumbs hidden, for an embedded HR-operations panel.
```

```api
```
