# XWUIHrSetupTimePage

Shell page for the HR Setup → Time configuration domain (attendance, schedules, leave rules). It extends `HrSetupPage` (fixed `domain = 'time'`), pulls its entries from `hrApi.listSetupSections('time')`, and renders them as a `xwui-hr-setup-list` where each section shows a bold label over its description. Page chrome (title `Setup - Time`, breadcrumbs, asides, sticky actions, footer) is provided by `XWUIShellPage`; override the heading with `data.title`/`titleAr` and choose the data source / language through `conf_comp.hrApiOptions`, `conf_comp.hrApi`, or `conf_comp.locale`.

## Basic Usage

Mounts the Time setup page against a sandbox mock HR API (`hrApiOptions: { env: 'sandbox' }`, `locale: 'en'`) with a custom title and description; time setup sections load asynchronously after DOM setup.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Renders the Time setup page with a sandbox mock IHrApi and English locale, loading its setup sections on mount.
```

## 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 time setup page in Arabic with a right-to-left layout and an Arabic heading via titleAr.
```

## 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 time setup list in a 720px centred column with breadcrumbs hidden, for an embedded settings panel.
```

```api
```
