Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2026-09-11

### Changed

- Move the `@askrjs/askr` peer range and the `@askrjs/vite` dependency to
`>=0.3.0 <0.4.0` for the coordinated 0.3.0 release. No component API changes.

## [0.2.4] - 2026-08-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ For the full surface and composition examples, start with the docs above.

## Themes catalog boundary

`@askrjs/themes` also publishes styling-only compatibility anatomy for Tabs,
`@askrjs/themes` also publishes styling-only catalog anatomy for Tabs,
Combobox, Calendar/DatePicker, Command, NavigationMenu, Carousel,
ResizablePanelGroup, and InputOTP. Those names are not `@askrjs/ui`
primitives and do not provide widget state, keyboard interaction, focus
Expand Down
94 changes: 41 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@askrjs/ui",
"version": "0.2.4",
"version": "0.3.0",
"description": "Headless Askr components",
"keywords": [
"accessible",
Expand Down Expand Up @@ -243,8 +243,8 @@
"test:integrity": "vp test run -c vitest.test.integrity.config.ts"
},
"devDependencies": {
"@askrjs/askr": ">=0.2.3 <0.3.0",
"@askrjs/vite": ">=0.2.1 <0.3.0",
"@askrjs/askr": ">=0.3.0 <0.4.0",
"@askrjs/vite": ">=0.3.0 <0.4.0",
"@playwright/test": "1.62.1",
"@types/node": "^26.3.0",
"axe-core": "^4.13.0",
Expand All @@ -257,7 +257,7 @@
"vite-plus": "^0.3.1"
},
"peerDependencies": {
"@askrjs/askr": ">=0.2.3 <0.3.0"
"@askrjs/askr": ">=0.3.0 <0.4.0"
},
"engines": {
"node": ">=24.0.0"
Expand Down
6 changes: 4 additions & 2 deletions tests/browser/components/textarea/a11y.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ test.describe('Textarea - Accessibility', () => {
expect(
await textarea.evaluate((node: HTMLTextAreaElement) => node.disabled)
).toBe(true);
// `disabled` is a boolean attribute: presence is the semantic, and its
// serialized value is the empty string. Assert presence, not a value.
await expect(textarea).toHaveAttribute(
contract.DISABLED_ATTRIBUTES.asChild,
'true'
/.*/
);
});

Expand All @@ -59,7 +61,7 @@ test.describe('Textarea - Accessibility', () => {
).toBe(true);
await expect(host).toHaveAttribute(
contract.DISABLED_ATTRIBUTES.asChild,
'true'
/.*/
);
});

Expand Down
2 changes: 1 addition & 1 deletion tests/integrity/docs/docs-contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ describe('Docs contract', () => {
expect(readme, family).toContain(family);
}

expect(readme).toContain('styling-only compatibility anatomy');
expect(readme).toContain('styling-only catalog anatomy');
expect(readme).toContain('do not provide widget state');
expect(readme).toContain('Themes may then compose');
expect(readme).toContain('rather than reproducing its state');
Expand Down
Loading