- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# DOMException
|
|
|
|
This package implements the [`DOMException`](https://heycam.github.io/webidl/#idl-DOMException) class, from web browsers. It exists in service of [jsdom](https://github.com/jsdom/jsdom) and related packages.
|
|
|
|
Example usage:
|
|
|
|
```js
|
|
const DOMException = require("domexception");
|
|
|
|
const e1 = new DOMException("Something went wrong", "BadThingsError");
|
|
console.assert(e1.name === "BadThingsError");
|
|
console.assert(e1.code === 0);
|
|
|
|
const e2 = new DOMException("Another exciting error message", "NoModificationAllowedError");
|
|
console.assert(e2.name === "NoModificationAllowedError");
|
|
console.assert(e2.code === 7);
|
|
|
|
console.assert(DOMException.INUSE_ATTRIBUTE_ERR === 10);
|
|
```
|
|
|
|
## APIs
|
|
|
|
This package exposes two flavors of the `DOMException` interface depending on the imported module.
|
|
|
|
### `domexception` module
|
|
|
|
This module default-exports the `DOMException` interface constructor.
|
|
|
|
### `domexception/webidl2js-wrapper` module
|
|
|
|
This module exports the `DOMException` [interface wrapper API](https://github.com/jsdom/webidl2js#for-interfaces) generated by [webidl2js](https://github.com/jsdom/webidl2js).
|