# XWUIInputRecurrencePicker

XWUIInputRecurrencePicker Component Configure recurring task patterns (daily, weekly, monthly, yearly, custom).

## Basic Usage

A daily recurrence (`pattern.type: "daily"`). Switching the type reveals the weekday or day-of-month controls.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Daily recurrence repeating every day.
```

## Real-World

InputRecurrencePicker in a realistic application context.

```example
file: examples/RealWorld.ts
html: examples/RealWorld.html
title: Real-World
description: InputRecurrencePicker in a realistic application context.
```

## Weekly On Selected Days

`type: "weekly"` exposes a weekday picker; `daysOfWeek` (0=Sun..6=Sat) selects which days, and `interval` sets the every-N-weeks cadence.

```example
file: examples/Weekly.ts
html: examples/Weekly.html
title: Weekly On Selected Days
description: Every 2 weeks on Mon, Wed, Fri.
```

## Monthly By Date

`type: "monthly"` with `dayOfMonth` pins the recurrence to a fixed date each month; `occurrences` ends the series after a set count.

```example
file: examples/MonthlyByDate.ts
html: examples/MonthlyByDate.html
title: Monthly By Date
description: The 1st of every month, ending after 12 occurrences.
```

```api
```
