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

@ -5,18 +5,21 @@ import type { KeyboardEvent, MouseEvent } from 'react';
import React, { useRef, useState } from 'react';
import classNames from 'classnames';
import { ContextMenu, ContextMenuTrigger, MenuItem } from 'react-contextmenu';
import { ConfirmationDialog } from './ConfirmationDialog';
import { CustomColorEditor } from './CustomColorEditor';
import { Modal } from './Modal';
import type { ConversationColorType, CustomColorType } from '../types/Colors';
import { ConversationColors } from '../types/Colors';
import type { ConversationType } from '../state/ducks/conversations';
import type { LocalizerType } from '../types/Util';
import { SampleMessageBubbles } from './SampleMessageBubbles';
import { PanelRow } from './conversation/conversation-details/PanelRow';
import { getCustomColorStyle } from '../util/getCustomColorStyle';
import { ConfirmationDialog } from './ConfirmationDialog.js';
import { CustomColorEditor } from './CustomColorEditor.js';
import { Modal } from './Modal.js';
import type {
ConversationColorType,
CustomColorType,
} from '../types/Colors.js';
import { ConversationColors } from '../types/Colors.js';
import type { ConversationType } from '../state/ducks/conversations.js';
import type { LocalizerType } from '../types/Util.js';
import { SampleMessageBubbles } from './SampleMessageBubbles.js';
import { PanelRow } from './conversation/conversation-details/PanelRow.js';
import { getCustomColorStyle } from '../util/getCustomColorStyle.js';
import { useDelayedRestoreFocus } from '../hooks/useRestoreFocus';
import { useDelayedRestoreFocus } from '../hooks/useRestoreFocus.js';
type CustomColorDataType = {
id?: string;