Coverage for src / lexigram / ui / atoms / inputs / selection / __init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-08-10 04:11 +0800
« prev ^ index » next coverage.py v7.13.5, created at 2026-08-10 04:11 +0800
1"""Selection input components — split from atoms/inputs/selection.py."""
3from __future__ import annotations
5from lexigram.ui.atoms.inputs.selection.choice import CheckboxList, MultiSelect, Radio
6from lexigram.ui.atoms.inputs.selection.relational import BelongsTo, MorphTo
7from lexigram.ui.atoms.inputs.selection.select import (
8 LazySelect,
9 NativeMultiSelect,
10 Select,
11)
13__all__ = [
14 "BelongsTo",
15 "CheckboxList",
16 "LazySelect",
17 "MorphTo",
18 "MultiSelect",
19 "NativeMultiSelect",
20 "Radio",
21 "Select",
22]