✓
v1.0.0July 2025released
Initial release
- Built-in password rules and typed React APIs
- Default and structural-only CSS themes
- Controlled checklist component and headless validation hook
★
v1.1.0September 2025current
Expanded validation toolkit
- Strength scoring with entropy estimates
- Async validators with pending state
- Localization, RTL, and personal-information checks
→
v1.2.0Plannedplanned
Form library integrations
- First-class adapters for popular React form libraries
- Improved field-level error mapping
- Examples for accessible signup and reset flows
<PasswordChecklist control={control} name="password" />
◇
v1.3.0Plannedplanned
More customization
- Custom rule groups and ordering
- Additional strength scoring strategies
- More flexible checklist item rendering
<PasswordChecklist rules={rules} renderRule={renderRule} />
?
v2.0.0Ideationideation
Composable headless architecture
- Composable rule, result, and presentation primitives
- Streamlined server-safe validation utilities
- A smaller, tree-shakable headless entry point
const { results, isValid } = usePasswordValidation({ password, rules });