Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny 2025-09-16 17:39:03 -07:00 committed by GitHub
commit c02565eaa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2096 changed files with 14955 additions and 14023 deletions

View file

@ -8,15 +8,15 @@ import { animated } from '@react-spring/web';
import classNames from 'classnames';
import { noop } from 'lodash';
import { FocusScope } from 'react-aria';
import type { ModalConfigType } from '../hooks/useAnimated';
import type { Theme } from '../util/theme';
import { assertDev } from '../util/assert';
import { getClassNamesFor } from '../util/getClassNamesFor';
import { themeClassName } from '../util/theme';
import { useEscapeHandling } from '../hooks/useEscapeHandling';
import { usePrevious } from '../hooks/usePrevious';
import { handleOutsideClick } from '../util/handleOutsideClick';
import { createLogger } from '../logging/log';
import type { ModalConfigType } from '../hooks/useAnimated.js';
import type { Theme } from '../util/theme.js';
import { assertDev } from '../util/assert.js';
import { getClassNamesFor } from '../util/getClassNamesFor.js';
import { themeClassName } from '../util/theme.js';
import { useEscapeHandling } from '../hooks/useEscapeHandling.js';
import { usePrevious } from '../hooks/usePrevious.js';
import { handleOutsideClick } from '../util/handleOutsideClick.js';
import { createLogger } from '../logging/log.js';
const log = createLogger('ModalHost');