# XWUIHrSetupSecurityPage

Shell page for the HR Setup → Security configuration domain. It extends `HrSetupPage` (fixed `domain = 'security'`), loads its entries through `hrApi.listSetupSections('security')`, and renders them as a `xwui-hr-setup-list` with each section's label in bold above its description. Page chrome (title `Setup - Security`, breadcrumbs, asides, sticky actions, footer) comes from `XWUIShellPage`; override the heading via `data.title`/`titleAr` and select the data source / language with `conf_comp.hrApiOptions`, `conf_comp.hrApi`, or `conf_comp.locale`.

## Basic Usage

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

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Renders the Security 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 security 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 security setup sections in a 720px centred column with breadcrumbs hidden, for an embedded settings panel.
```

```api
```
