Files
taskpile/frontend/node_modules/@testing-library/jest-dom/dist/matchers.js
Alvis f1d51b8cc8 Add side panels, task selection, graph animation, and project docs
- 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>
2026-04-08 11:23:06 +00:00

46 lines
1.9 KiB
JavaScript

'use strict';
var matchers = require('./matchers-98b869c1.js');
require('redent');
require('@adobe/css-tools');
require('dom-accessibility-api');
require('aria-query');
require('picocolors');
require('css.escape');
exports.toAppearAfter = matchers.toAppearAfter;
exports.toAppearBefore = matchers.toAppearBefore;
exports.toBeChecked = matchers.toBeChecked;
exports.toBeDisabled = matchers.toBeDisabled;
exports.toBeEmpty = matchers.toBeEmpty;
exports.toBeEmptyDOMElement = matchers.toBeEmptyDOMElement;
exports.toBeEnabled = matchers.toBeEnabled;
exports.toBeInTheDOM = matchers.toBeInTheDOM;
exports.toBeInTheDocument = matchers.toBeInTheDocument;
exports.toBeInvalid = matchers.toBeInvalid;
exports.toBePartiallyChecked = matchers.toBePartiallyChecked;
exports.toBePartiallyPressed = matchers.toBePartiallyPressed;
exports.toBePressed = matchers.toBePressed;
exports.toBeRequired = matchers.toBeRequired;
exports.toBeValid = matchers.toBeValid;
exports.toBeVisible = matchers.toBeVisible;
exports.toContainElement = matchers.toContainElement;
exports.toContainHTML = matchers.toContainHTML;
exports.toHaveAccessibleDescription = matchers.toHaveAccessibleDescription;
exports.toHaveAccessibleErrorMessage = matchers.toHaveAccessibleErrorMessage;
exports.toHaveAccessibleName = matchers.toHaveAccessibleName;
exports.toHaveAttribute = matchers.toHaveAttribute;
exports.toHaveClass = matchers.toHaveClass;
exports.toHaveDescription = matchers.toHaveDescription;
exports.toHaveDisplayValue = matchers.toHaveDisplayValue;
exports.toHaveErrorMessage = matchers.toHaveErrorMessage;
exports.toHaveFocus = matchers.toHaveFocus;
exports.toHaveFormValues = matchers.toHaveFormValues;
exports.toHaveRole = matchers.toHaveRole;
exports.toHaveSelection = matchers.toHaveSelection;
exports.toHaveStyle = matchers.toHaveStyle;
exports.toHaveTextContent = matchers.toHaveTextContent;
exports.toHaveValue = matchers.toHaveValue;