# XWUIHrApprovalsPage

List page for HR approval requests, built on `HrListPage`. It fetches rows via `hrApi.listApprovals()` (accepting either a bare array or a `{ items }` envelope) and renders them in a table with three columns - Requester (`requesterName`), Type (`requestType`), and Status (`status`). Use it as the shell page where managers and HR review the queue of pending requests with their requester and type at a glance. Accepts standard page-base `conf_comp` props plus `hrApiOptions` and `locale`.

## Basic Usage

Loads the page against the sandbox HR API and renders the approvals list table with Requester, Type, and Status columns.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Constructs the page with title/description data and `{ hrApiOptions: { env: 'sandbox' }, locale: 'en' }`, then fetches approvals and renders the Requester/Type/Status table.
```

## Arabic locale (RTL)

Passes `{ locale: 'ar' }` with a `titleAr` so the page resolves the Arabic title (`الموافقات`) and renders right-to-left.

```example
file: examples/ArabicLocale.ts
html: examples/ArabicLocale.html
title: Arabic locale (RTL)
description: Arabic title via titleAr plus locale 'ar' for a right-to-left page.
```

## Constrained, centered layout

Caps the content column at 1200px, centers it, and adds roomier padding via the shell-page config.

```example
file: examples/ConstrainedLayout.ts
html: examples/ConstrainedLayout.html
title: Constrained, centered layout
description: `{ maxWidth: '1200px', centered: true, padding: '2rem' }` constrains and centers the page column.
```

```api
```
